Refactor GeneratorJavaFile
[mdsal.git] / binding / mdsal-binding-java-api-generator / src / test / java / org / opendaylight / mdsal / binding / java / api / generator / test / BaseCompilationTest.java
1 /*
2  * Copyright (c) 2016 Cisco Systems, Inc. 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.test;
9
10 import static org.junit.Assert.assertTrue;
11
12 import com.google.common.collect.ImmutableSet;
13 import com.google.common.collect.Table;
14 import com.google.common.collect.Table.Cell;
15 import com.google.common.io.Files;
16 import java.io.File;
17 import java.io.IOException;
18 import java.net.URISyntaxException;
19 import java.nio.charset.StandardCharsets;
20 import java.util.Collections;
21 import java.util.List;
22 import java.util.Optional;
23 import java.util.function.Supplier;
24 import org.junit.Before;
25 import org.junit.BeforeClass;
26 import org.opendaylight.mdsal.binding.generator.api.BindingGenerator;
27 import org.opendaylight.mdsal.binding.generator.impl.BindingGeneratorImpl;
28 import org.opendaylight.mdsal.binding.java.api.generator.GeneratorJavaFile;
29 import org.opendaylight.mdsal.binding.java.api.generator.YangModuleInfoTemplate;
30 import org.opendaylight.mdsal.binding.model.api.Type;
31 import org.opendaylight.yangtools.yang.binding.BindingMapping;
32 import org.opendaylight.yangtools.yang.model.api.Module;
33 import org.opendaylight.yangtools.yang.model.api.SchemaContext;
34 import org.opendaylight.yangtools.yang.test.util.YangParserTestUtils;
35
36 public abstract class BaseCompilationTest {
37
38     protected BindingGenerator bindingGenerator;
39
40     @BeforeClass
41     public static void createTestDirs() {
42         if (CompilationTestUtils.TEST_DIR.exists()) {
43             CompilationTestUtils.deleteTestDir(CompilationTestUtils.TEST_DIR);
44         }
45         assertTrue(CompilationTestUtils.GENERATOR_OUTPUT_DIR.mkdirs());
46         assertTrue(CompilationTestUtils.COMPILER_OUTPUT_DIR.mkdirs());
47     }
48
49     @Before
50     public void init() {
51         bindingGenerator = new BindingGeneratorImpl();
52     }
53
54     protected static final void generateTestSources(final List<Type> types, final File sourcesOutputDir)
55             throws IOException {
56         Collections.sort(types, (o1, o2) -> o2.getName().compareTo(o1.getName()));
57
58         final GeneratorJavaFile generator = new GeneratorJavaFile(ImmutableSet.copyOf(types));
59         final Table<?, String, Supplier<String>> generatedFiles = generator.generateFileContent(true);
60         for (Cell<?, String, Supplier<String>> cell : generatedFiles.cellSet()) {
61             final File target = new File(sourcesOutputDir, cell.getColumnKey());
62             Files.createParentDirs(target);
63             Files.asCharSink(target, StandardCharsets.UTF_8).write(cell.getValue().get());
64         }
65     }
66
67     protected final List<Type> generateTestSources(final String resourceDirPath, final File sourcesOutputDir)
68             throws IOException, URISyntaxException {
69         final List<File> sourceFiles = CompilationTestUtils.getSourceFiles(resourceDirPath);
70         final SchemaContext context = YangParserTestUtils.parseYangFiles(sourceFiles);
71         final List<Type> types = bindingGenerator.generateTypes(context);
72         generateTestSources(types, sourcesOutputDir);
73
74         // Also generate YangModuleInfo
75         for (Module module : context.getModules()) {
76             final YangModuleInfoTemplate template = new YangModuleInfoTemplate(module, context,
77                 mod -> Optional.of("fake/" + mod.getName()));
78
79             final File file = new File(GeneratorJavaFile.packageToDirectory(sourcesOutputDir,
80                 BindingMapping.getRootPackageName(module.getQNameModule())),
81                 BindingMapping.MODULE_INFO_CLASS_NAME + ".java");
82             Files.asCharSink(file, StandardCharsets.UTF_8).write(template.generate());
83         }
84
85         return types;
86     }
87 }