Merge branch 'master' into api_suggest_model_request_params_language_added

# Conflicts:
#	api/suggest/model.go
This commit is contained in:
Alexander Zhuravlev 2024-05-08 19:38:09 +03:00
commit 303ef9efe9
2 changed files with 32 additions and 3 deletions

View File

@ -40,9 +40,10 @@ type (
// RequestParams Request struct
RequestParams struct {
Query string `json:"query"` // user input for suggestion
Count int `json:"count"` // ligmit for results
Language string `json:"language"`
Type *PartyType `json:"type,omitempty"` // party type for the suggestion (user input)
Query string `json:"query"` // user input for suggestion
Count int `json:"count"` // ligmit for results
Language *string `json:"language,omitempty"`
Locations []*RequestParamsLocation `json:"locations"`
RestrictValue bool `json:"restrict_value"` // don't show restricts (region) on results

View File

@ -73,6 +73,34 @@ func (s *ApiSuggestIntegrationTest) TestParty() {
s.NotEmpty(res)
}
func (s *ApiSuggestIntegrationTest) TestPartyWithTypePositive() {
api := NewSuggestApi()
// positive: there are some legal entities "сбербанк"
legalParty := suggest.PartyTypeLegal
res, err := api.Party(context.Background(), &suggest.RequestParams{
Query: "сбербанк",
Type: &legalParty,
})
s.NoError(err)
s.NotEmpty(res)
}
func (s *ApiSuggestIntegrationTest) TestPartyWithTypeNegative() {
api := NewSuggestApi()
// there are no one individual entrepreneur "сбербанк"
individualParty := suggest.PartyTypeIndividual
res, err := api.Party(context.Background(), &suggest.RequestParams{
Query: "сбербанк",
Type: &individualParty,
})
s.NoError(err)
s.Empty(res)
}
func (s *ApiSuggestIntegrationTest) TestPartyById() {
api := NewSuggestApi()