28b850d8a0f150b04eb631fb4d7715c3328e9f4d
[mdsal.git] / binding / maven-sal-api-gen-plugin / src / test / java / org / opendaylight / mdsal / binding / yang / unified / doc / generator / maven / DocGenTest.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.yang.unified.doc.generator.maven;
9
10 import static org.junit.Assert.assertEquals;
11 import static org.junit.Assert.assertTrue;
12
13 import java.io.File;
14 import java.io.FileNotFoundException;
15 import java.net.URI;
16 import java.util.ArrayList;
17 import java.util.Arrays;
18 import java.util.Collection;
19 import java.util.List;
20 import java.util.Set;
21 import org.junit.After;
22 import org.junit.Before;
23 import org.junit.Test;
24 import org.opendaylight.mdsal.binding.yang.unified.doc.generator.maven.DocumentationGeneratorImpl;
25 import org.opendaylight.yangtools.yang.model.api.Module;
26 import org.opendaylight.yangtools.yang.model.api.SchemaContext;
27 import org.opendaylight.yangtools.yang.test.util.YangParserTestUtils;
28 import org.opendaylight.yangtools.yang2sources.spi.BasicCodeGenerator;
29
30 public class DocGenTest {
31     public static final String FS = File.separator;
32     private static final String TEST_PATH = "target" + FS + "test" + FS + "site";
33     private static final File GENERATOR_OUTPUT_DIR = new File(TEST_PATH);
34
35     @Before
36     public void init() {
37         if (GENERATOR_OUTPUT_DIR.exists()) {
38             deleteTestDir(GENERATOR_OUTPUT_DIR);
39         }
40         assertTrue(GENERATOR_OUTPUT_DIR.mkdirs());
41     }
42
43     @After
44     public void cleanUp() {
45         if (GENERATOR_OUTPUT_DIR.exists()) {
46             deleteTestDir(GENERATOR_OUTPUT_DIR);
47         }
48     }
49
50     @Test
51     public void testListGeneration() throws Exception {
52         final List<File> sourceFiles = getSourceFiles("/doc-gen");
53         final SchemaContext context = YangParserTestUtils.parseYangFiles(sourceFiles);
54         final Set<Module> modules = context.getModules();
55         final BasicCodeGenerator generator = new DocumentationGeneratorImpl();
56         Collection<File> generatedFiles = generator.generateSources(context, GENERATOR_OUTPUT_DIR, modules);
57         assertEquals(4, generatedFiles.size());
58     }
59
60     private static List<File> getSourceFiles(String path) throws Exception {
61         final URI resPath = DocGenTest.class.getResource(path).toURI();
62         final File sourcesDir = new File(resPath);
63         if (sourcesDir.exists()) {
64             final List<File> sourceFiles = new ArrayList<>();
65             final File[] fileArray = sourcesDir.listFiles();
66             if (fileArray == null) {
67                 throw new IllegalArgumentException("Unable to locate files in " + sourcesDir);
68             }
69             sourceFiles.addAll(Arrays.asList(fileArray));
70             return sourceFiles;
71         } else {
72             throw new FileNotFoundException("Testing files were not found(" + sourcesDir.getName() + ")");
73         }
74     }
75
76     private static void deleteTestDir(File file) {
77         if (file.isDirectory()) {
78             File[] filesToDelete = file.listFiles();
79             if (filesToDelete != null) {
80                 for (File f : filesToDelete) {
81                     deleteTestDir(f);
82                 }
83             }
84         }
85         if (!file.delete()) {
86             throw new RuntimeException("Failed to clean up after test");
87         }
88     }
89
90 }