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