Fix identityref wildcards
[mdsal.git] / binding / mdsal-binding-java-api-generator / src / test / java / org / opendaylight / mdsal / binding / java / api / generator / Mdsal732Test.java
1 /*
2  * Copyright (c) 2022 PANTHEON.tech, s.r.o. and others.  All rights reserved.
3  *
4  * This program and the accompanying materials are made available under the
5  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
6  * and is available at http://www.eclipse.org/legal/epl-v10.html
7  */
8 package org.opendaylight.mdsal.binding.java.api.generator;
9
10 import static org.junit.Assert.assertNotNull;
11
12 import java.io.File;
13 import java.io.IOException;
14 import java.net.URISyntaxException;
15 import java.nio.file.Files;
16 import org.junit.After;
17 import org.junit.Before;
18 import org.junit.Test;
19
20 public class Mdsal732Test extends BaseCompilationTest {
21     private File sourcesOutputDir;
22     private File compiledOutputDir;
23
24     @Before
25     public void before() throws IOException, URISyntaxException {
26         sourcesOutputDir = CompilationTestUtils.generatorOutput("mdsal732");
27         compiledOutputDir = CompilationTestUtils.compilerOutput("mdsal732");
28     }
29
30     @After
31     public void after() {
32         CompilationTestUtils.cleanUp(sourcesOutputDir, compiledOutputDir);
33     }
34
35     @Test
36     public void testIdentityrefLeafrefSpecialization() throws IOException, URISyntaxException {
37         generateTestSources("/compilation/mdsal732", sourcesOutputDir);
38         final var xyzzyBuilder = FileSearchUtil.getFiles(sourcesOutputDir).get("XyzzyBuilder.java");
39         assertNotNull(xyzzyBuilder);
40
41         final var content = Files.readString(xyzzyBuilder.toPath());
42         FileSearchUtil.assertFileContainsConsecutiveLines(xyzzyBuilder, content,
43             "    public XyzzyBuilder(Grp arg) {",
44             "        this._foo = CodeHelpers.checkFieldCastIdentity(Foo.class, \"foo\", arg.getFoo());",
45             "        this._bar = CodeHelpers.checkSetFieldCastIdentity(Foo.class, \"bar\", arg.getBar());",
46             "        this._baz = CodeHelpers.checkListFieldCastIdentity(Foo.class, \"baz\", arg.getBaz());",
47             "    }");
48         FileSearchUtil.assertFileContainsConsecutiveLines(xyzzyBuilder, content,
49             "    public void fieldsFrom(DataObject arg) {",
50             "        boolean isValidArg = false;",
51             "        if (arg instanceof Grp) {",
52             "            this._foo = CodeHelpers.checkFieldCastIdentity(Foo.class, \"foo\", ((Grp)arg).getFoo());",
53             "            this._bar = CodeHelpers.checkSetFieldCastIdentity(Foo.class, \"bar\", ((Grp)arg).getBar());",
54             "            this._baz = CodeHelpers.checkListFieldCastIdentity(Foo.class, \"baz\", ((Grp)arg).getBaz());",
55             "            isValidArg = true;",
56             "        }",
57             "        CodeHelpers.validValue(isValidArg, arg, \"[Grp]\");",
58             "    }");
59
60         CompilationTestUtils.testCompilation(sourcesOutputDir, compiledOutputDir);
61     }
62 }