Merge "Fix Absolute Path to list with Integer/String key"
[cps.git] / cps-service / src / test / groovy / org / onap / cps / utils / YangTextSchemaSourceSetSpec.groovy
1 /*
2  *  ============LICENSE_START=======================================================
3  *  Copyright (C) 2020-2021 Pantheon.tech
4  *  Modifications Copyright (C) 2020-2021 Nordix Foundation
5  *  Modifications Copyright (C) 2021 Bell Canada.
6  *  ================================================================================
7  *  Licensed under the Apache License, Version 2.0 (the "License");
8  *  you may not use this file except in compliance with the License.
9  *  You may obtain a copy of the License at
10  *
11  *        http://www.apache.org/licenses/LICENSE-2.0
12  *
13  *  Unless required by applicable law or agreed to in writing, software
14  *  distributed under the License is distributed on an "AS IS" BASIS,
15  *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  *  See the License for the specific language governing permissions and
17  *  limitations under the License.
18  *
19  *  SPDX-License-Identifier: Apache-2.0
20  *  ============LICENSE_END=========================================================
21  */
22
23 package org.onap.cps.utils
24
25 import org.onap.cps.TestUtils
26 import org.onap.cps.spi.exceptions.ModelValidationException
27 import org.onap.cps.yang.YangTextSchemaSourceSetBuilder
28 import org.opendaylight.yangtools.yang.common.Revision
29 import spock.lang.Specification
30
31 class YangTextSchemaSourceSetSpec extends Specification {
32
33     def 'Building a valid YangTextSchemaSourceSet using #filenameCase filename.'() {
34         given: 'a yang model (file)'
35             def yangResourceNameToContent = [filename: TestUtils.getResourceFileContent('bookstore.yang')]
36         when: 'the content is parsed'
37             def result = YangTextSchemaSourceSetBuilder.of(yangResourceNameToContent).getSchemaContext()
38         then: 'the result contains 1 module of the correct name and revision'
39             result.modules.size() == 1
40             def optionalModule = result.findModule('stores', Revision.of('2020-09-15'))
41             optionalModule.isPresent()
42         where:
43             filenameCase           | filename
44             'generic'              | 'bookstore'
45             'RFC-6020 recommended' | 'bookstore-test@2020-09-15.YANG'
46     }
47
48     def 'Building YangTextSchemaSourceSet error case: #description.'() {
49         given: 'a file with #description'
50             def yangResourceNameToContent = TestUtils.getYangResourcesAsMap(filename)
51         when: 'the content is parsed'
52             YangTextSchemaSourceSetBuilder.of(yangResourceNameToContent)
53         then: 'an exception is thrown'
54             thrown(expectedException)
55         where: 'the following parameters are used'
56             filename                      | description            || expectedException
57             'invalid.yang'                | 'invalid content'      || ModelValidationException
58             'invalid-empty.yang'          | 'no valid content'     || ModelValidationException
59             'invalid-missing-import.yang' | 'no dependency module' || ModelValidationException
60     }
61 }