summaryrefslogtreecommitdiffstats
path: root/infra/test-utils/test-tools/src/test/java/io/fd/honeycomb/test/tools/InjectionTestData.java
blob: 4d4ab5420934f5c9c94cbc7d7ec1880ec029f112 (plain)
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
/*
 * Copyright (c) 2017 Cisco and/or its affiliates.
 *
 * 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 io.fd.honeycomb.test.tools;

final class InjectionTestData {

    static final String CONTAINER_UNDER_LIST_DATA_PATH = "/hc-data:simple-container" +
            "/hc-data:simple-list[hc-data:name='nameUnderSimpleList']" +
            "/hc-data:cont-under-list";

    static final String SIMPLE_LIST_DATA_PATH = "/hc-data:simple-container" +
            "/hc-data:simple-list[hc-data:name='nameUnderSimpleList']";

    static final String NESTED_LIST_DATA_PATH = "/hc-data:simple-container" +
            "/hc-data:simple-list[hc-data:name='nameUnderSimpleList']" +
            "/hc-data:nested-list[hc-data:nested-name='nameUnderNestedList']";

    static final String ROOT_LIST_DATA_PATH = "/hc-data:root-list[hc-data:root-name='rootName']";
    static final String AUGMENT_LIST_DATA_PATH = "/hc-data:simple-container" +
            "/hc-data:augmented-container" +
            "/hc-data:list-in-augment[hc-data:key-in-augment='keyInAugment']";

    static final String CONTAINER_IN_ROOT_RESOURCE = "/simpleContainerEmpty.json";
    static final String CONTAINER_UNDER_LIST_RESOURCE = "/containerInList.json";
    static final String SIMPLES_LIST_RESOURCE = "/simpleListEntry.json";
    static final String NESTED_LIST_RESOURCE = "/nestedListEntry.json";
    static final String ROOT_LIST_RESOURCE = "/rootListEntry.json";
    static final String AUGMENT_LIST_RESOURCE = "/augmentListEntry.json";

    private InjectionTestData() {
    }
}