// Copyright (c) 2014 Couchbase, Inc. // Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file // except in compliance with the License. You may obtain a copy of the License at // http://www.apache.org/licenses/LICENSE-2.0 // Unless required by applicable law or agreed to in writing, software distributed under the // License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, // either express or implied. See the License for the specific language governing permissions // and limitations under the License. package bleve import ( "encoding/json" "reflect" "testing" ) var mappingSource = []byte(`{ "types": { "beer": { "properties": { "name": { "fields": [ { "name": "name", "type": "text", "analyzer": "standard", "store": true, "index": true, "include_term_vectors": true, "include_in_all": true } ] } } }, "brewery": { } }, "type_field": "_type", "default_type": "_default" }`) func buildMapping() *IndexMapping { nameFieldMapping := NewTextFieldMapping() nameFieldMapping.Name = "name" nameFieldMapping.Analyzer = "standard" beerMapping := NewDocumentMapping() beerMapping.AddFieldMappingsAt("name", nameFieldMapping) breweryMapping := NewDocumentMapping() mapping := NewIndexMapping() mapping.AddDocumentMapping("beer", beerMapping) mapping.AddDocumentMapping("brewery", breweryMapping) return mapping } func TestUnmarshalMappingJSON(t *testing.T) { mapping := buildMapping() var indexMapping IndexMapping err := json.Unmarshal(mappingSource, &indexMapping) if err != nil { t.Fatal(err) } if !reflect.DeepEqual(&indexMapping, mapping) { t.Errorf("expected %#v,\n got %#v", mapping, &indexMapping) } }