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