summaryrefslogtreecommitdiffstats
path: root/container-search/src/test/java/com/yahoo/search/query/profile/types/test/QueryProfileTypeTestCase.java
blob: d9dfc733f042a08fb6a9486810738839fe48c527 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
// Copyright 2016 Yahoo Inc. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.search.query.profile.types.test;

import com.yahoo.component.ComponentId;
import com.yahoo.container.jdisc.HttpRequest;
import com.yahoo.prelude.query.QueryException;
import com.yahoo.tensor.MapTensor;
import com.yahoo.tensor.Tensor;
import com.yahoo.yolean.Exceptions;
import com.yahoo.search.Query;
import com.yahoo.processing.request.CompoundName;
import com.yahoo.search.query.profile.QueryProfile;
import com.yahoo.search.query.profile.QueryProfileRegistry;
import com.yahoo.search.query.profile.compiled.CompiledQueryProfile;
import com.yahoo.search.query.profile.QueryProfileProperties;
import com.yahoo.search.query.profile.compiled.CompiledQueryProfileRegistry;
import com.yahoo.search.query.profile.types.FieldDescription;
import com.yahoo.search.query.profile.types.FieldType;
import com.yahoo.search.query.profile.types.QueryProfileType;
import com.yahoo.search.query.profile.types.QueryProfileTypeRegistry;

import java.io.UnsupportedEncodingException;
import java.net.URLEncoder;

import static org.hamcrest.CoreMatchers.containsString;
import static org.junit.Assert.assertThat;

/**
 * tests query profiles with/and types
 *
 * @author bratseth
 */
public class QueryProfileTypeTestCase extends junit.framework.TestCase {

    private QueryProfileRegistry registry;

    private QueryProfileType type, typeStrict, user, userStrict;

    @Override
    protected void setUp() {
        registry = new QueryProfileRegistry();

        type = new QueryProfileType(new ComponentId("testtype"));
        type.inherited().add(registry.getTypeRegistry().getComponent(new ComponentId("native")));
        typeStrict = new QueryProfileType(new ComponentId("testtypeStrict"));
        typeStrict.setStrict(true);
        user = new QueryProfileType(new ComponentId("user"));
        userStrict = new QueryProfileType(new ComponentId("userStrict"));
        userStrict.setStrict(true);

        registry.getTypeRegistry().register(type);
        registry.getTypeRegistry().register(typeStrict);
        registry.getTypeRegistry().register(user);
        registry.getTypeRegistry().register(userStrict);

        addTypeFields(type, registry.getTypeRegistry());
        type.addField(new FieldDescription("myUserQueryProfile",FieldType.fromString("query-profile:user",registry.getTypeRegistry())));
        addTypeFields(typeStrict, registry.getTypeRegistry());
        typeStrict.addField(new FieldDescription("myUserQueryProfile",FieldType.fromString("query-profile:userStrict",registry.getTypeRegistry())));
        addUserFields(user, registry.getTypeRegistry());
        addUserFields(userStrict, registry.getTypeRegistry());

    }

    private void addTypeFields(QueryProfileType type, QueryProfileTypeRegistry registry) {
        type.addField(new FieldDescription("myString", FieldType.fromString("string",registry)), registry);
        type.addField(new FieldDescription("myInteger",FieldType.fromString("integer",registry),"int"), registry);
        type.addField(new FieldDescription("myLong",FieldType.fromString("long",registry)), registry);
        type.addField(new FieldDescription("myFloat",FieldType.fromString("float",registry)), registry);
        type.addField(new FieldDescription("myDouble",FieldType.fromString("double",registry)), registry);
        type.addField(new FieldDescription("myBoolean",FieldType.fromString("boolean",registry)), registry);
        type.addField(new FieldDescription("myBoolean",FieldType.fromString("boolean",registry)), registry);
        type.addField(new FieldDescription("ranking.features.query(myTensor1)",FieldType.fromString("tensor",registry)), registry);
        type.addField(new FieldDescription("ranking.features.query(myTensor2)",FieldType.fromString("tensor(x[2],y[2])",registry)), registry);
        type.addField(new FieldDescription("ranking.features.query(myTensor3)",FieldType.fromString("tensor(x{})",registry)), registry);
        type.addField(new FieldDescription("myQuery",FieldType.fromString("query",registry)), registry);
        type.addField(new FieldDescription("myQueryProfile",FieldType.fromString("query-profile",registry),"qp"), registry);
    }

    private void addUserFields(QueryProfileType user, QueryProfileTypeRegistry registry) {
        user.addField(new FieldDescription("myUserString",FieldType.fromString("string",registry)), registry);
        user.addField(new FieldDescription("myUserInteger",FieldType.fromString("integer",registry),"uint"), registry);
    }

    public void testTypedOfPrimitivesAssignmentNonStrict() {
        QueryProfile profile=new QueryProfile("test");
        profile.setType(type);
        registry.register(profile);

        profile.set("myString","anyValue", registry);
        profile.set("nontypedString", "anyValueToo", registry); // legal because this is not strict
        assertWrongType(profile,"integer","myInteger","notInteger");
        assertWrongType(profile, "integer", "myInteger", "1.5");
        profile.set("myInteger", 3, registry);
        assertWrongType(profile,"long","myLong","notLong");
        assertWrongType(profile, "long", "myLong", "1.5");
        profile.set("myLong", 4000000000000l, registry);
        assertWrongType(profile, "float", "myFloat", "notFloat");
        profile.set("myFloat", 3.14f, registry);
        assertWrongType(profile, "double", "myDouble", "notDouble");
        profile.set("myDouble",2.18, registry);
        profile.set("myBoolean",true, registry);

        String tensorString1 = "{{a:a1, b:b1}:1.0, {a:a2}:2.0}}";
        profile.set("ranking.features.query(myTensor1)", tensorString1, registry);
        String tensorString2 = "{{x:0, y:0}:1.0, {x:0, y:1}:2.0}}";
        profile.set("ranking.features.query(myTensor2)", tensorString2, registry);
        String tensorString3 = "{{x:x1}:1.0, {x:x2}:2.0}}";
        profile.set("ranking.features.query(myTensor3)", tensorString3, registry);

        profile.set("myQuery", "...", registry); // TODO
        profile.set("myQueryProfile.anyString","value1", registry);
        profile.set("myQueryProfile.anyDouble",8.76, registry);
        profile.set("myUserQueryProfile.myUserString","value2", registry);
        profile.set("myUserQueryProfile.anyString", "value3", registry); // Legal because user is not strict
        assertWrongType(profile, "integer", "myUserQueryProfile.myUserInteger", "notInteger");
        profile.set("myUserQueryProfile.uint",1337, registry); // Set using alias
        profile.set("myUserQueryProfile.anyDouble", 9.13, registry); // Legal because user is not strict

        CompiledQueryProfileRegistry cRegistry = registry.compile();
        QueryProfileProperties properties = new QueryProfileProperties(cRegistry.findQueryProfile("test"));

        assertEquals("anyValue", properties.get("myString"));
        assertEquals("anyValueToo", properties.get("nontypedString"));
        assertEquals(3, properties.get("myInteger"));
        assertEquals(3, properties.get("Int"));
        assertEquals(4000000000000l, properties.get("myLong"));
        assertEquals(3.14f, properties.get("myFloat"));
        assertEquals(2.18, properties.get("myDouble"));
        assertEquals(true, properties.get("myBoolean"));
        assertEquals(Tensor.from(tensorString1),                      properties.get("ranking.features.query(myTensor1)"));
        assertEquals(Tensor.from("tensor(x[2],y[2])", tensorString2), properties.get("ranking.features.query(myTensor2)"));
        assertEquals(Tensor.from("tensor(x{})",       tensorString3), properties.get("ranking.features.query(myTensor3)"));
        // TODO: assertEquals(..., cprofile.get("myQuery"));
        assertEquals("value1", properties.get("myQueryProfile.anyString"));
        assertEquals("value1", properties.get("QP.anyString"));
        assertEquals(8.76, properties.get("myQueryProfile.anyDouble"));
        assertEquals(8.76, properties.get("qp.anyDouble"));
        assertEquals("value2", properties.get("myUserQueryProfile.myUserString"));
        assertEquals("value3", properties.get("myUserQueryProfile.anyString"));
        assertEquals(1337, properties.get("myUserQueryProfile.myUserInteger"));
        assertEquals(1337, properties.get("myUserQueryProfile.uint"));
        assertEquals(9.13, properties.get("myUserQueryProfile.anyDouble"));
        assertNull(properties.get("nonExisting"));

        properties.set("INt", 51);
        assertEquals(51, properties.get("InT"));
        assertEquals(51, properties.get("myInteger"));
    }

    public void testTypedOfPrimitivesAssignmentStrict() {
        QueryProfile profile=new QueryProfile("test");
        profile.setType(typeStrict);

        profile.set("myString", "anyValue", registry);
        assertNotPermitted(profile, "nontypedString", "anyValueToo"); // Illegal because this is strict
        assertWrongType(profile,"integer","myInteger","notInteger");
        assertWrongType(profile, "integer", "myInteger", "1.5");
        profile.set("myInteger", 3, registry);
        assertWrongType(profile,"long","myLong","notLong");
        assertWrongType(profile, "long", "myLong", "1.5");
        profile.set("myLong", 4000000000000l, registry);
        assertWrongType(profile, "float", "myFloat", "notFloat");
        profile.set("myFloat", 3.14f, registry);
        assertWrongType(profile, "double", "myDouble", "notDouble");
        profile.set("myDouble",2.18, registry);
        profile.set("myQueryProfile.anyString","value1", registry);
        profile.set("myQueryProfile.anyDouble",8.76, registry);
        profile.set("myUserQueryProfile.myUserString", "value2", registry);
        assertNotPermitted(profile, "myUserQueryProfile.anyString", "value3"); // Illegal because this is strict
        assertWrongType(profile, "integer", "myUserQueryProfile.myUserInteger", "notInteger");
        profile.set("myUserQueryProfile.myUserInteger", 1337, registry);
        assertNotPermitted(profile, "myUserQueryProfile.anyDouble", 9.13); // Illegal because this is strict

        CompiledQueryProfile cprofile = profile.compile(null);

        assertEquals("anyValue", cprofile.get("myString"));
        assertNull(cprofile.get("nontypedString"));
        assertEquals(3, cprofile.get("myInteger"));
        assertEquals(4000000000000l, cprofile.get("myLong"));
        assertEquals(3.14f, cprofile.get("myFloat"));
        assertEquals(2.18, cprofile.get("myDouble"));
        assertEquals("value1", cprofile.get("myQueryProfile.anyString"));
        assertEquals(8.76, cprofile.get("myQueryProfile.anyDouble"));
        assertEquals("value2", cprofile.get("myUserQueryProfile.myUserString"));
        assertNull(cprofile.get("myUserQueryProfile.anyString"));
        assertEquals(1337, cprofile.get("myUserQueryProfile.myUserInteger"));
        assertNull(cprofile.get("myUserQueryProfile.anyDouble"));
    }

    /** Tests assigning a subprofile directly */
    public void testTypedAssignmentOfQueryProfilesNonStrict() {
        QueryProfile profile=new QueryProfile("test");
        profile.setType(type);

        QueryProfile map1=new QueryProfile("myMap1");
        map1.set("key1","value1", registry);

        QueryProfile map2=new QueryProfile("myMap2");
        map2.set("key2","value2", registry);

        QueryProfile myUser=new QueryProfile("myUser");
        myUser.setType(user);
        myUser.set("myUserString","userValue1", registry);
        myUser.set("myUserInteger",442, registry);

        assertWrongType(profile,"reference to a query profile","myQueryProfile","aString");
        profile.set("myQueryProfile",map1, registry);
        profile.set("someMap",map2, registry); // Legal because this is not strict
        assertWrongType(profile,"reference to a query profile of type 'user'","myUserQueryProfile",map1);
        profile.set("myUserQueryProfile",myUser, registry);

        CompiledQueryProfile cprofile = profile.compile(null);

        assertEquals("value1", cprofile.get("myQueryProfile.key1"));
        assertEquals("value2", cprofile.get("someMap.key2"));
        assertEquals("userValue1", cprofile.get("myUserQueryProfile.myUserString"));
        assertEquals(442, cprofile.get("myUserQueryProfile.myUserInteger"));
    }

    /** Tests assigning a subprofile directly */
    public void testTypedAssignmentOfQueryProfilesStrict() {
        QueryProfile profile=new QueryProfile("test");
        profile.setType(typeStrict);

        QueryProfile map1=new QueryProfile("myMap1");
        map1.set("key1","value1", registry);

        QueryProfile map2=new QueryProfile("myMap2");
        map2.set("key2","value2", registry);

        QueryProfile myUser=new QueryProfile("myUser");
        myUser.setType(userStrict);
        myUser.set("myUserString","userValue1", registry);
        myUser.set("myUserInteger",442, registry);

        assertWrongType(profile,"reference to a query profile","myQueryProfile","aString");
        profile.set("myQueryProfile",map1, registry);
        assertNotPermitted(profile,"someMap",map2);
        assertWrongType(profile,"reference to a query profile of type 'userStrict'","myUserQueryProfile",map1);
        profile.set("myUserQueryProfile",myUser, registry);

        CompiledQueryProfile cprofile = profile.compile(null);

        assertEquals("value1", cprofile.get("myQueryProfile.key1"));
        assertNull(cprofile.get("someMap.key2"));
        assertEquals("userValue1", cprofile.get("myUserQueryProfile.myUserString"));
        assertEquals(442, cprofile.get("myUserQueryProfile.myUserInteger"));
    }

    /** Tests assigning a subprofile as an id string */
    public void testTypedAssignmentOfQueryProfileReferencesNonStrict() {
        QueryProfile profile = new QueryProfile("test");
        profile.setType(type);

        QueryProfile map1 = new QueryProfile("myMap1");
        map1.set("key1","value1", registry);

        QueryProfile map2 = new QueryProfile("myMap2");
        map2.set("key2","value2", registry);

        QueryProfile myUser = new QueryProfile("myUser");
        myUser.setType(user);
        myUser.set("myUserString","userValue1", registry);
        myUser.set("myUserInteger",442, registry);

        registry.register(profile);
        registry.register(map1);
        registry.register(map2);
        registry.register(myUser);

        assertWrongType(profile,"reference to a query profile", "myQueryProfile", "aString");
        registry.register(map1);
        profile.set("myQueryProfile", "myMap1", registry);
        registry.register(map2);
        profile.set("someMap", "myMap2", registry); // NOTICE: Will set as a string because we cannot know this is a reference
        assertWrongType(profile, "reference to a query profile of type 'user'", "myUserQueryProfile", "myMap1");
        registry.register(myUser);
        profile.set("myUserQueryProfile","myUser", registry);

        CompiledQueryProfileRegistry cRegistry = registry.compile();
        CompiledQueryProfile cprofile = cRegistry.getComponent("test");

        assertEquals("value1", cprofile.get("myQueryProfile.key1"));
        assertEquals("myMap2", cprofile.get("someMap"));
        assertNull("Asking for an value which cannot be completely resolved returns null", cprofile.get("someMap.key2"));
        assertEquals("userValue1", cprofile.get("myUserQueryProfile.myUserString"));
        assertEquals(442, cprofile.get("myUserQueryProfile.myUserInteger"));
    }

    /**
     * Tests overriding a subprofile as an id string through the query.
     * Here there exists a user profile already, and then a new one is overwritten
     */
    public void testTypedOverridingOfQueryProfileReferencesNonStrictThroughQuery() {
        QueryProfile profile=new QueryProfile("test");
        profile.setType(type);

        QueryProfile myUser=new QueryProfile("myUser");
        myUser.setType(user);
        myUser.set("myUserString","userValue1", registry);
        myUser.set("myUserInteger",442, registry);

        QueryProfile newUser=new QueryProfile("newUser");
        newUser.setType(user);
        newUser.set("myUserString","newUserValue1", registry);
        newUser.set("myUserInteger",845, registry);

        QueryProfileRegistry registry = new QueryProfileRegistry();
        registry.register(profile);
        registry.register(myUser);
        registry.register(newUser);
        CompiledQueryProfileRegistry cRegistry = registry.compile();
        CompiledQueryProfile cprofile = cRegistry.getComponent("test");

        Query query = new Query(HttpRequest.createTestRequest("?myUserQueryProfile=newUser", com.yahoo.jdisc.http.HttpRequest.Method.GET), cprofile);

        assertEquals(0, query.errors().size());

        assertEquals("newUserValue1", query.properties().get("myUserQueryProfile.myUserString"));
        assertEquals(845, query.properties().get("myUserQueryProfile.myUserInteger"));
    }

    /**
     * Tests overriding a subprofile as an id string through the query.
     * Here no user profile is set before it is assigned in the query
     */
    public void testTypedAssignmentOfQueryProfileReferencesNonStrictThroughQuery() {
        QueryProfile profile=new QueryProfile("test");
        profile.setType(type);

        QueryProfile newUser=new QueryProfile("newUser");
        newUser.setType(user);
        newUser.set("myUserString","newUserValue1", registry);
        newUser.set("myUserInteger",845, registry);

        registry.register(profile);
        registry.register(newUser);
        CompiledQueryProfileRegistry cRegistry = registry.compile();
        CompiledQueryProfile cprofile = cRegistry.getComponent("test");

        Query query = new Query(HttpRequest.createTestRequest("?myUserQueryProfile=newUser", com.yahoo.jdisc.http.HttpRequest.Method.GET), cprofile);

        assertEquals(0, query.errors().size());

        assertEquals("newUserValue1", query.properties().get("myUserQueryProfile.myUserString"));
        assertEquals(845, query.properties().get("myUserQueryProfile.myUserInteger"));
    }

    /**
     * Tests overriding a subprofile as an id string through the query.
     * Here no user profile is set before it is assigned in the query
     */
    public void testTypedAssignmentOfQueryProfileReferencesStrictThroughQuery() {
        QueryProfile profile=new QueryProfile("test");
        profile.setType(typeStrict);

        QueryProfile newUser=new QueryProfile("newUser");
        newUser.setType(userStrict);
        newUser.set("myUserString","newUserValue1", registry);
        newUser.set("myUserInteger",845, registry);

        registry.register(profile);
        registry.register(newUser);

        CompiledQueryProfileRegistry cRegistry = registry.compile();

        Query query = new Query(HttpRequest.createTestRequest("?myUserQueryProfile=newUser", com.yahoo.jdisc.http.HttpRequest.Method.GET), cRegistry.getComponent("test"));
        assertEquals(0, query.errors().size());

        assertEquals("newUserValue1",query.properties().get("myUserQueryProfile.myUserString"));
        assertEquals(845,query.properties().get("myUserQueryProfile.myUserInteger"));

        try {
            query.properties().set("myUserQueryProfile.someKey","value");
            fail("Should not be allowed to set this");
        }
        catch (IllegalArgumentException e) {
            assertEquals("Could not set 'myUserQueryProfile.someKey' to 'value': 'someKey' is not declared in query profile type 'userStrict', and the type is strict",
                         Exceptions.toMessageString(e));
        }

    }

    public void testTensorRankFeatureInRequest() throws UnsupportedEncodingException {
        QueryProfile profile=new QueryProfile("test");
        profile.setType(type);
        registry.register(profile);

        CompiledQueryProfileRegistry cRegistry = registry.compile();
        String tensorString = "{{a:a1, b:b1}:1.0, {a:a2}:2.0}}";
        Query query = new Query(HttpRequest.createTestRequest("?" + encode("ranking.features.query(myTensor1)") +
                                                              "=" + encode(tensorString),
                                                              com.yahoo.jdisc.http.HttpRequest.Method.GET), cRegistry.getComponent("test"));
        assertEquals(0, query.errors().size());
        assertEquals(MapTensor.from(tensorString), query.properties().get("ranking.features.query(myTensor1)"));
        assertEquals(MapTensor.from(tensorString), query.getRanking().getFeatures().getTensor("query(myTensor1)").get());
    }

    private String encode(String s) throws UnsupportedEncodingException {
        return URLEncoder.encode(s, "utf8");
    }

    public void testIllegalStrictAssignmentFromRequest() {
        QueryProfile profile=new QueryProfile("test");
        profile.setType(typeStrict);

        QueryProfile newUser=new QueryProfile("newUser");
        newUser.setType(userStrict);

        profile.set("myUserQueryProfile", newUser, registry);

        try {
            new Query(
                    HttpRequest.createTestRequest(
                            "?myUserQueryProfile.nondeclared=someValue",
                            com.yahoo.jdisc.http.HttpRequest.Method.GET),
                    profile.compile(null));
            fail("Above statement should throw");
        } catch (QueryException e) {
            // As expected.
            assertThat(
                    Exceptions.toMessageString(e),
                    containsString("Could not set 'myUserQueryProfile.nondeclared' to 'someValue': 'nondeclared' is not declared in query profile type 'userStrict', and the type is strict"));
        }
    }

    /**
     * Tests overriding a subprofile as an id string through the query.
     * Here there exists a user profile already, and then a new one is overwritten.
     * The whole thing is accessed through a two levels of nontyped top-level profiles
     */
    public void testTypedOverridingOfQueryProfileReferencesNonStrictThroughQueryNestedInAnUntypedProfile() {
        QueryProfile topMap=new QueryProfile("topMap");

        QueryProfile subMap=new QueryProfile("topSubMap");
        topMap.set("subMap",subMap, registry);

        QueryProfile test=new QueryProfile("test");
        test.setType(type);
        subMap.set("typeProfile",test, registry);

        QueryProfile myUser=new QueryProfile("myUser");
        myUser.setType(user);
        myUser.set("myUserString","userValue1", registry);
        myUser.set("myUserInteger",442, registry);
        test.set("myUserQueryProfile",myUser, registry);

        QueryProfile newUser=new QueryProfile("newUser");
        newUser.setType(user);
        newUser.set("myUserString","newUserValue1", registry);
        newUser.set("myUserInteger",845, registry);

        registry.register(topMap);
        registry.register(subMap);
        registry.register(test);
        registry.register(myUser);
        registry.register(newUser);
        CompiledQueryProfileRegistry cRegistry = registry.compile();

        Query query = new Query(HttpRequest.createTestRequest("?subMap.typeProfile.myUserQueryProfile=newUser", com.yahoo.jdisc.http.HttpRequest.Method.GET), cRegistry.getComponent("topMap"));

        assertEquals(0, query.errors().size());

        assertEquals("newUserValue1", query.properties().get("subMap.typeProfile.myUserQueryProfile.myUserString"));
        assertEquals(845, query.properties().get("subMap.typeProfile.myUserQueryProfile.myUserInteger"));
    }

    /**
     * Same as previous test but using the untyped myQueryProfile reference instead of the typed myUserQueryProfile
     */
    public void testAnonTypedOverridingOfQueryProfileReferencesNonStrictThroughQueryNestedInAnUntypedProfile() {
        QueryProfile topMap=new QueryProfile("topMap");

        QueryProfile subMap=new QueryProfile("topSubMap");
        topMap.set("subMap",subMap, registry);

        QueryProfile test=new QueryProfile("test");
        test.setType(type);
        subMap.set("typeProfile",test, registry);

        QueryProfile myUser=new QueryProfile("myUser");
        myUser.setType(user);
        myUser.set("myUserString","userValue1", registry);
        myUser.set("myUserInteger",442, registry);
        test.set("myQueryProfile",myUser, registry);

        QueryProfile newUser=new QueryProfile("newUser");
        newUser.setType(user);
        newUser.set("myUserString","newUserValue1", registry);
        newUser.set("myUserInteger",845, registry);

        registry.register(topMap);
        registry.register(subMap);
        registry.register(test);
        registry.register(myUser);
        registry.register(newUser);
        CompiledQueryProfileRegistry cRegistry = registry.compile();

        Query query = new Query(HttpRequest.createTestRequest("?subMap.typeProfile.myQueryProfile=newUser", com.yahoo.jdisc.http.HttpRequest.Method.GET), cRegistry.getComponent("topMap"));
        assertEquals(0, query.errors().size());

        assertEquals("newUserValue1",query.properties().get("subMap.typeProfile.myQueryProfile.myUserString"));
        assertEquals(845,query.properties().get("subMap.typeProfile.myQueryProfile.myUserInteger"));
    }

    /**
     * Tests setting a illegal value in a strict profile nested under untyped maps
     */
    public void testSettingValueInStrictTypeNestedUnderUntypedMaps() {
        QueryProfile topMap=new QueryProfile("topMap");

        QueryProfile subMap=new QueryProfile("topSubMap");
        topMap.set("subMap",subMap, registry);

        QueryProfile test=new QueryProfile("test");
        test.setType(typeStrict);
        subMap.set("typeProfile",test, registry);

        registry.register(topMap);
        registry.register(subMap);
        registry.register(test);
        CompiledQueryProfileRegistry cRegistry = registry.compile();

        try {
            new Query(
                    HttpRequest.createTestRequest(
                            "?subMap.typeProfile.someValue=value",
                            com.yahoo.jdisc.http.HttpRequest.Method.GET),
                    cRegistry.getComponent("topMap"));
            fail("Above statement should throw");
        } catch (QueryException e) {
            // As expected.
            assertThat(
                    Exceptions.toMessageString(e),
                    containsString("Could not set 'subMap.typeProfile.someValue' to 'value': 'someValue' is not declared in query profile type 'testtypeStrict', and the type is strict"));
        }
    }

    /**
     * Tests overriding a subprofile as an id string through the query.
     * Here, no user profile is set before it is assigned in the query
     * The whole thing is accessed through a two levels of nontyped top-level profiles
     */
    public void testTypedSettingOfQueryProfileReferencesNonStrictThroughQueryNestedInAnUntypedProfile() {
        QueryProfile topMap=new QueryProfile("topMap");

        QueryProfile subMap=new QueryProfile("topSubMap");
        topMap.set("subMap",subMap, registry);

        QueryProfile test=new QueryProfile("test");
        test.setType(type);
        subMap.set("typeProfile",test, registry);

        QueryProfile newUser=new QueryProfile("newUser");
        newUser.setType(user);
        newUser.set("myUserString","newUserValue1", registry);
        newUser.set("myUserInteger",845, registry);

        registry.register(topMap);
        registry.register(subMap);
        registry.register(test);
        registry.register(newUser);
        CompiledQueryProfileRegistry cRegistry = registry.compile();

        Query query = new Query(HttpRequest.createTestRequest("?subMap.typeProfile.myUserQueryProfile=newUser", com.yahoo.jdisc.http.HttpRequest.Method.GET), cRegistry.getComponent("topMap"));
        assertEquals(0, query.errors().size());

        assertEquals("newUserValue1", query.properties().get("subMap.typeProfile.myUserQueryProfile.myUserString"));
        assertEquals(845, query.properties().get("subMap.typeProfile.myUserQueryProfile.myUserInteger"));
    }

    private void assertWrongType(QueryProfile profile,String typeName,String name,Object value) {
        try {
            profile.set(name,value, registry);
            fail("Should fail setting " + name + " to " + value);
        }
        catch (IllegalArgumentException e) {
            assertEquals("Could not set '" + name + "' to '" + value + "': '" + value + "' is not a " + typeName,
                         Exceptions.toMessageString(e));
        }
    }

    private void assertNotPermitted(QueryProfile profile,String name,Object value) {
        String localName = new CompoundName(name).last();
        try {
            profile.set(name, value, registry);
            fail("Should fail setting " + name + " to " + value);
        }
        catch (IllegalArgumentException e) {
            assertTrue(Exceptions.toMessageString(e).startsWith("Could not set '" + name + "' to '" + value + "': '" + localName + "' is not declared"));
        }
    }

}