Decouple YangUtils test
[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.yang.YangTextSchemaSourceSetBuilder
24 import org.opendaylight.yangtools.yang.common.Revision
25 import org.opendaylight.yangtools.yang.model.parser.api.YangSyntaxErrorException
26 import spock.lang.Specification
27 import spock.lang.Unroll
28
29 class YangTextSchemaSourceSetSpec extends Specification {
30
31     def 'Generating a valid YangTextSchemaSource Set '() {
32         given: 'a yang model (file)'
33             def yangResourceNameToContent = TestUtils.getYangResourcesAsMap('bookstore.yang')
34         when: 'the content is parsed'
35             def result = YangTextSchemaSourceSetBuilder.of(yangResourceNameToContent).getSchemaContext();
36         then: 'the result contains 1 module of the correct name and revision'
37             result.modules.size() == 1
38             def optionalModule = result.findModule('stores', Revision.of('2020-09-15'))
39             optionalModule.isPresent()
40     }
41
42     @Unroll
43     def 'Generating invalid YangTextSchemaSource Set (#description).'() {
44         given: 'a file with #description'
45             def yangResourceNameToContent = TestUtils.getYangResourcesAsMap(filename)
46         when: 'the content is parsed'
47             YangTextSchemaSourceSetBuilder.of(yangResourceNameToContent)
48         then: 'an exception is thrown'
49             thrown(expectedException)
50         where: 'the following parameters are used'
51              filename           | description          || expectedException
52             'invalid.yang'      | 'invalid content'   || YangSyntaxErrorException
53             'invalid-empty.yang'| 'no valid content'   || YangSyntaxErrorException
54     }
55 }