aboutsummaryrefslogtreecommitdiffstats
path: root/sdnr/wt/data-provider/provider/src/test/java/org/onap/ccsdk/features/sdnr/wt/dataprovider/test/TestFilterConversion.java
blob: 68d3676682f38211f31bda9c5445711326df888f (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
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
/*
 * ============LICENSE_START=======================================================
 * ONAP : ccsdk features
 * ================================================================================
 * Copyright (C) 2019 highstreet technologies GmbH Intellectual Property.
 * All rights reserved.
 * ================================================================================
 * 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.
 * ============LICENSE_END=========================================================
 *
 */
package org.onap.ccsdk.features.sdnr.wt.dataprovider.test;

import static org.junit.Assert.assertNotNull;
import static org.junit.Assert.assertTrue;
import static org.junit.Assert.fail;
import java.util.Arrays;
import java.util.List;
import org.junit.Test;
import org.mockito.Mockito;
import org.onap.ccsdk.features.sdnr.wt.common.database.queries.QueryBuilder;
import org.onap.ccsdk.features.sdnr.wt.dataprovider.data.rpctypehelper.QueryByFilter;
import org.onap.ccsdk.features.sdnr.wt.dataprovider.model.types.YangHelper2;
import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.data.provider.rev201110.EntityInput;
import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.data.provider.rev201110.SortOrder;
import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.data.provider.rev201110.entity.input.Filter;
import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.data.provider.rev201110.entity.input.FilterBuilder;
import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.data.provider.rev201110.entity.input.FilterKey;
import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.data.provider.rev201110.entity.input.Sortorder;
import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.data.provider.rev201110.entity.input.SortorderBuilder;
import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.data.provider.rev201110.entity.input.SortorderKey;

public class TestFilterConversion extends Mockito {

    private static final String PROPERTY = "node-id";
    private static final String PROPERTY2 = "_id";
    private static final String PROPERTY3 = "timestamp";

    @Test
    public void testQuestionMark1() {
        EntityInput input = mock(EntityInput.class);
        List<Filter> filters = Arrays.asList(new FilterBuilder().setProperty(PROPERTY).setFiltervalue("si?ba").build());
        when(input.getFilter()).thenReturn(YangHelper2.getListOrMap(FilterKey.class, filters));

        QueryBuilder query = new QueryByFilter(input).getQueryBuilderByFilter();
        System.out.println(query.toJSON());

        assertTrue(query.toJSON().contains("{1,1}"));
        assertNotNull(new QueryByFilter(input).getQueryBuilderByFilter(PROPERTY));

    }

    @Test
    public void testQuestionMarkExcpetion() {
        EntityInput input = mock(EntityInput.class);
        List<Filter> filters = Arrays.asList(new FilterBuilder().setProperty(PROPERTY).setFiltervalue("si?ba").build());
        when(input.getFilter()).thenReturn(YangHelper2.getListOrMap(FilterKey.class, filters));
        try {
            new QueryByFilter(input).getSearchRequestByFilter("test1", "test2", "test3", "test4");
            fail();
        } catch (IllegalArgumentException e) { // fails if type not correct

        }

    }

    @Test
    public void testQuestionMark2() {
        EntityInput input = mock(EntityInput.class);
        List<Filter> filters = Arrays.asList(new FilterBuilder().setProperty(PROPERTY).setFiltervalue("si?ba").build(),
                new FilterBuilder().setProperty(PROPERTY2).setFiltervalue("abc").build());
        when(input.getFilter()).thenReturn(YangHelper2.getListOrMap(FilterKey.class, filters));
        QueryBuilder query = new QueryByFilter(input).getQueryBuilderByFilter();
        System.out.println(query.toJSON());
        assertNotNull(new QueryByFilter(input).getQueryBuilderByFilter(PROPERTY2));
    }

    @Test
    public void testQuestionMark3() {
        EntityInput input = mock(EntityInput.class);
        List<Filter> filters = Arrays.asList(new FilterBuilder().setProperty(PROPERTY).setFiltervalue("si?ba").build(),
                new FilterBuilder().setProperty(PROPERTY3).setFiltervalue("<2019-06-13T15:00:12.0Z").build());
        List<Sortorder> sortorder =
                Arrays.asList(new SortorderBuilder().setProperty(PROPERTY).setSortorder(SortOrder.Ascending).build());
        when(input.getFilter()).thenReturn(YangHelper2.getListOrMap(FilterKey.class, filters));
        when(input.getSortorder()).thenReturn(YangHelper2.getListOrMap(SortorderKey.class, sortorder));

        assertNotNull(new QueryByFilter(input).getQueryBuilderByFilter(PROPERTY));
    }

    @Test
    public void testSortorder() {
        EntityInput input = mock(EntityInput.class);
        List<Sortorder> sortorder = Arrays
                .asList(new SortorderBuilder().setProperty("source-type").setSortorder(SortOrder.Ascending).build());
        when(input.getSortorder()).thenReturn(YangHelper2.getListOrMap(SortorderKey.class, sortorder));
        QueryBuilder query = new QueryByFilter(input).getQueryBuilderByFilter();
        System.out.println(query.toJSON());
    }
}