From 37dac903ccd139cb208dda45f7620e5d94ffad16 Mon Sep 17 00:00:00 2001 From: Caleb Champlin Date: Sat, 17 Oct 2020 13:46:37 -0600 Subject: [PATCH] Fix formatting --- aggs_filter.go | 8 +-- aggs_filter_test.go | 18 +++---- aggs_nested.go | 8 +-- aggs_nested_test.go | 8 +-- highlight.go | 8 +-- highlight_test.go | 108 +++++++++++++++++++------------------- query_multi_match.go | 34 ++++++------ query_multi_match_test.go | 70 ++++++++++++------------ 8 files changed, 131 insertions(+), 131 deletions(-) diff --git a/aggs_filter.go b/aggs_filter.go index 9927f98..66770e2 100644 --- a/aggs_filter.go +++ b/aggs_filter.go @@ -1,16 +1,16 @@ package esquery type FilterAggregation struct { - name string - filter Mappable - aggs []Aggregation + name string + filter Mappable + aggs []Aggregation } // Filter creates a new aggregation of type "filter". The method name includes // the "Agg" suffix to prevent conflict with the "filter" query. func FilterAgg(name string, filter Mappable) *FilterAggregation { return &FilterAggregation{ - name: name, + name: name, filter: filter, } } diff --git a/aggs_filter_test.go b/aggs_filter_test.go index 1ec30aa..3c702a2 100644 --- a/aggs_filter_test.go +++ b/aggs_filter_test.go @@ -6,11 +6,11 @@ func TestFilterAggs(t *testing.T) { runMapTests(t, []mapTest{ { "filter agg: simple", - FilterAgg("filtered", Term("type","t-shirt")), + FilterAgg("filtered", Term("type", "t-shirt")), map[string]interface{}{ "filter": map[string]interface{}{ - "term": map[string]interface{} { - "type": map[string]interface{} { + "term": map[string]interface{}{ + "type": map[string]interface{}{ "value": "t-shirt", }, }, @@ -19,18 +19,18 @@ func TestFilterAggs(t *testing.T) { }, { "filter agg: with aggs", - FilterAgg("filtered", Term("type","t-shirt")). - Aggs(Avg("avg_price","price")), + FilterAgg("filtered", Term("type", "t-shirt")). + Aggs(Avg("avg_price", "price")), map[string]interface{}{ "filter": map[string]interface{}{ - "term": map[string]interface{} { - "type": map[string]interface{} { + "term": map[string]interface{}{ + "type": map[string]interface{}{ "value": "t-shirt", }, }, }, - "aggs": map[string]interface{} { - "avg_price": map[string]interface{} { + "aggs": map[string]interface{}{ + "avg_price": map[string]interface{}{ "avg": map[string]interface{}{ "field": "price", }, diff --git a/aggs_nested.go b/aggs_nested.go index 888f819..9b262a9 100644 --- a/aggs_nested.go +++ b/aggs_nested.go @@ -1,16 +1,16 @@ package esquery type NestedAggregation struct { - name string - path string - aggs []Aggregation + name string + path string + aggs []Aggregation } // NestedAgg creates a new aggregation of type "nested". The method name includes // the "Agg" suffix to prevent conflict with the "nested" query. func NestedAgg(name string, path string) *NestedAggregation { return &NestedAggregation{ - name: name, + name: name, path: path, } } diff --git a/aggs_nested_test.go b/aggs_nested_test.go index 7384e6c..87c014b 100644 --- a/aggs_nested_test.go +++ b/aggs_nested_test.go @@ -16,14 +16,14 @@ func TestNestedAggs(t *testing.T) { { "nested agg: with aggs", NestedAgg("more_nested", "authors"). - Aggs(TermsAgg("authors","name")), + Aggs(TermsAgg("authors", "name")), map[string]interface{}{ "nested": map[string]interface{}{ "path": "authors", }, - "aggs": map[string]interface{} { - "authors": map[string]interface{} { - "terms": map[string]interface{} { + "aggs": map[string]interface{}{ + "authors": map[string]interface{}{ + "terms": map[string]interface{}{ "field": "name", }, }, diff --git a/highlight.go b/highlight.go index 9c076bc..855f114 100644 --- a/highlight.go +++ b/highlight.go @@ -22,7 +22,7 @@ func (q *QueryHighlight) Map() map[string]interface{} { } type QueryHighlight struct { - highlightQuery Mappable `structs:"highlight_query,omitempty"` + highlightQuery Mappable `structs:"highlight_query,omitempty"` fields map[string]*QueryHighlight `structs:"fields"` params highlighParams } @@ -64,13 +64,13 @@ func newHighlight() *QueryHighlight { // PreTags sets the highlight query's pre_tags ignore unmapped field func (q *QueryHighlight) PreTags(s ...string) *QueryHighlight { - q.params.PreTags = append(q.params.PreTags,s...) + q.params.PreTags = append(q.params.PreTags, s...) return q } // PostTags sets the highlight query's post_tags ignore unmapped field func (q *QueryHighlight) PostTags(s ...string) *QueryHighlight { - q.params.PostTags = append(q.params.PostTags,s...) + q.params.PostTags = append(q.params.PostTags, s...) return q } @@ -166,7 +166,7 @@ func (q *QueryHighlight) HighlightQuery(b Mappable) *QueryHighlight { // MatchedFields sets the highlight query's matched_fields ignore unmapped field func (q *QueryHighlight) MatchedFields(s ...string) *QueryHighlight { - q.params.MatchedFields = append(q.params.MatchedFields,s...) + q.params.MatchedFields = append(q.params.MatchedFields, s...) return q } diff --git a/highlight_test.go b/highlight_test.go index 76456bf..ac95c57 100644 --- a/highlight_test.go +++ b/highlight_test.go @@ -10,7 +10,7 @@ func TestHighlight(t *testing.T) { "simple highlight", Highlight().Field("content"), map[string]interface{}{ - "fields": map[string]interface{} { + "fields": map[string]interface{}{ "content": map[string]interface{}{}, }, }, @@ -18,69 +18,69 @@ func TestHighlight(t *testing.T) { { "highlight all params", Highlight(). - PreTags("
","").
-			PostTags("","
"). - Field("content", + PreTags("
", "").
+				PostTags("", "
"). + Field("content", Highlight(). - BoundaryChars(".;,")). - FragmentSize(150). - NumberOfFragments(4). - Type(HighlighterPlain). - BoundaryChars("()[]"). - BoundaryMaxScan(32). - BoundaryScanner(BoundaryScannerChars). - BoundaryScannerLocale("en-US"). - Encoder(EncoderHtml). - ForceSource(true). - Fragmenter(FragmenterSimple). - FragmentOffset(6). - HighlightQuery( + BoundaryChars(".;,")). + FragmentSize(150). + NumberOfFragments(4). + Type(HighlighterPlain). + BoundaryChars("()[]"). + BoundaryMaxScan(32). + BoundaryScanner(BoundaryScannerChars). + BoundaryScannerLocale("en-US"). + Encoder(EncoderHtml). + ForceSource(true). + Fragmenter(FragmenterSimple). + FragmentOffset(6). + HighlightQuery( Bool(). - Must( - Match("author"). - Query("some guy"). - Analyzer("analyzer?"). - Fuzziness("fuzz"))). - MatchedFields("title","body"). - NoMatchSize(64). - Order(OrderScore). - PhraseLimit(512). - RequireFieldMatch(false). - TagsSchema(TagsSchemaStyled), + Must( + Match("author"). + Query("some guy"). + Analyzer("analyzer?"). + Fuzziness("fuzz"))). + MatchedFields("title", "body"). + NoMatchSize(64). + Order(OrderScore). + PhraseLimit(512). + RequireFieldMatch(false). + TagsSchema(TagsSchemaStyled), map[string]interface{}{ - "pre_tags": []string{"
",""},
-				"post_tags": []string{"","
"}, - "fragment_size": 150, - "number_of_fragments": 4, - "type": "plain", - "boundary_chars": "()[]", - "boundary_scanner": "chars", - "boundary_max_scan": 32, + "pre_tags": []string{"
", ""},
+				"post_tags":               []string{"", "
"}, + "fragment_size": 150, + "number_of_fragments": 4, + "type": "plain", + "boundary_chars": "()[]", + "boundary_scanner": "chars", + "boundary_max_scan": 32, "boundary_scanner_locale": "en-US", - "encoder": "html", - "force_source": true, - "fragment_offset": 6, - "fragmenter": "simple", - "matched_fields": []string{"title","body"}, - "no_match_size": 64, - "order": "score", - "phrase_limit": 512, - "require_field_match": false, - "tags_schema": "styled", + "encoder": "html", + "force_source": true, + "fragment_offset": 6, + "fragmenter": "simple", + "matched_fields": []string{"title", "body"}, + "no_match_size": 64, + "order": "score", + "phrase_limit": 512, + "require_field_match": false, + "tags_schema": "styled", "fields": map[string]interface{}{ "content": map[string]interface{}{ - "boundary_chars": ".;,", + "boundary_chars": ".;,", }, }, - "query": map[string]interface{} { - "bool": map[string]interface{} { - "must": []map[string]interface{} { + "query": map[string]interface{}{ + "bool": map[string]interface{}{ + "must": []map[string]interface{}{ { - "match": map[string]interface{} { - "author": map[string]interface{} { - "analyzer": "analyzer?", + "match": map[string]interface{}{ + "author": map[string]interface{}{ + "analyzer": "analyzer?", "fuzziness": "fuzz", - "query": "some guy", + "query": "some guy", }, }, }, diff --git a/query_multi_match.go b/query_multi_match.go index d1009ed..0d5f2a2 100644 --- a/query_multi_match.go +++ b/query_multi_match.go @@ -17,23 +17,23 @@ func (q *MultiMatchQuery) Map() map[string]interface{} { } type multiMatchParams struct { - Qry interface{} `structs:"query"` - Fields []string `structs:"fields"` - Type MultiMatchType `structs:"type,string,omitempty"` - TieBrk float32 `structs:"tie_breaker,omitempty"` - Boost float32 `structs:"boost,omitempty"` - Anl string `structs:"analyzer,omitempty"` - AutoGenerate *bool `structs:"auto_generate_synonyms_phrase_query,omitempty"` - Fuzz string `structs:"fuzziness,omitempty"` - MaxExp uint16 `structs:"max_expansions,omitempty"` - PrefLen uint16 `structs:"prefix_length,omitempty"` - Trans *bool `structs:"transpositions,omitempty"` - FuzzyRw string `structs:"fuzzy_rewrite,omitempty"` - Lent *bool `structs:"lenient,omitempty"` - Op MatchOperator `structs:"operator,string,omitempty"` - MinMatch string `structs:"minimum_should_match,omitempty"` - ZeroTerms ZeroTerms `structs:"zero_terms_query,string,omitempty"` - Slp uint16 `structs:"slop,omitempty"` + Qry interface{} `structs:"query"` + Fields []string `structs:"fields"` + Type MultiMatchType `structs:"type,string,omitempty"` + TieBrk float32 `structs:"tie_breaker,omitempty"` + Boost float32 `structs:"boost,omitempty"` + Anl string `structs:"analyzer,omitempty"` + AutoGenerate *bool `structs:"auto_generate_synonyms_phrase_query,omitempty"` + Fuzz string `structs:"fuzziness,omitempty"` + MaxExp uint16 `structs:"max_expansions,omitempty"` + PrefLen uint16 `structs:"prefix_length,omitempty"` + Trans *bool `structs:"transpositions,omitempty"` + FuzzyRw string `structs:"fuzzy_rewrite,omitempty"` + Lent *bool `structs:"lenient,omitempty"` + Op MatchOperator `structs:"operator,string,omitempty"` + MinMatch string `structs:"minimum_should_match,omitempty"` + ZeroTerms ZeroTerms `structs:"zero_terms_query,string,omitempty"` + Slp uint16 `structs:"slop,omitempty"` } // MultiMatch creates a new query of type "multi_match" diff --git a/query_multi_match_test.go b/query_multi_match_test.go index 1f61caa..084f666 100644 --- a/query_multi_match_test.go +++ b/query_multi_match_test.go @@ -8,53 +8,53 @@ func TestMultiMatch(t *testing.T) { runMapTests(t, []mapTest{ { "simple multi_match", - MultiMatch("value1","value2").Fields("title"), + MultiMatch("value1", "value2").Fields("title"), map[string]interface{}{ "multi_match": map[string]interface{}{ "fields": []string{"title"}, - "query": "value2", + "query": "value2", }, }, }, { "multi_match all params", MultiMatch("original"). - Query("test"). - Analyzer("stop"). - Fields("title","body"). - AutoGenerateSynonymsPhraseQuery(true). - Fuzziness("AUTO"). - MaxExpansions(16). - PrefixLength(12). - TieBreaker(0.3). - Boost(6.4). - Transpositions(true). - FuzzyRewrite("scoring_boolean"). - Lenient(true). - Operator(OperatorAnd). - Type(MatchTypePhrase). - MinimumShouldMatch("3<90%"). - Slop(2). - ZeroTermsQuery(ZeroTermsAll), + Query("test"). + Analyzer("stop"). + Fields("title", "body"). + AutoGenerateSynonymsPhraseQuery(true). + Fuzziness("AUTO"). + MaxExpansions(16). + PrefixLength(12). + TieBreaker(0.3). + Boost(6.4). + Transpositions(true). + FuzzyRewrite("scoring_boolean"). + Lenient(true). + Operator(OperatorAnd). + Type(MatchTypePhrase). + MinimumShouldMatch("3<90%"). + Slop(2). + ZeroTermsQuery(ZeroTermsAll), map[string]interface{}{ "multi_match": map[string]interface{}{ - "analyzer": "stop", + "analyzer": "stop", "auto_generate_synonyms_phrase_query": true, - "boost": 6.4, - "fuzziness": "AUTO", - "fuzzy_rewrite": "scoring_boolean", - "lenient": true, - "max_expansions": 16, - "minimum_should_match": "3<90%", - "prefix_length": 12, - "transpositions": true, - "type": "phrase", - "tie_breaker": 0.3, - "operator": "AND", - "zero_terms_query": "all", - "slop": 2, - "query": "test", - "fields": []string{"title","body"}, + "boost": 6.4, + "fuzziness": "AUTO", + "fuzzy_rewrite": "scoring_boolean", + "lenient": true, + "max_expansions": 16, + "minimum_should_match": "3<90%", + "prefix_length": 12, + "transpositions": true, + "type": "phrase", + "tie_breaker": 0.3, + "operator": "AND", + "zero_terms_query": "all", + "slop": 2, + "query": "test", + "fields": []string{"title", "body"}, }, }, },