io.apicurio.hub.api.codegen.OpenApi2ThorntailTest.java Source code

Java tutorial

Introduction

Here is the source code for io.apicurio.hub.api.codegen.OpenApi2ThorntailTest.java

Source

/*
 * Copyright 2018 JBoss Inc
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

package io.apicurio.hub.api.codegen;

import java.io.ByteArrayInputStream;
import java.io.ByteArrayOutputStream;
import java.io.IOException;
import java.net.URL;
import java.util.zip.ZipEntry;
import java.util.zip.ZipInputStream;

import org.apache.commons.io.IOUtils;
import org.junit.Assert;
import org.junit.Test;

import io.apicurio.hub.api.codegen.OpenApi2Thorntail.ThorntailProjectSettings;

/**
 * @author eric.wittmann@gmail.com
 */
public class OpenApi2ThorntailTest {

    /**
     * Test method for {@link io.apicurio.hub.api.codegen.OpenApi2Thorntail#generate()}.
     */
    @Test
    public void testGenerateOnly() throws IOException {
        OpenApi2Thorntail generator = new OpenApi2Thorntail() {
            /**
             * @see io.apicurio.hub.api.codegen.OpenApi2Thorntail#processApiDoc()
             */
            @Override
            protected String processApiDoc() {
                try {
                    return IOUtils.toString(OpenApi2ThorntailTest.class.getClassLoader()
                            .getResource("OpenApi2ThorntailTest/beer-api.codegen.json"));
                } catch (IOException e) {
                    throw new RuntimeException(e);
                }
            }
        };
        generator.setUpdateOnly(false);
        generator
                .setOpenApiDocument(getClass().getClassLoader().getResource("OpenApi2ThorntailTest/beer-api.json"));
        ByteArrayOutputStream outputStream = generator.generate();

        //FileUtils.writeByteArrayToFile(new File("C:\\Users\\ewittman\\tmp\\output.zip"), outputStream.toByteArray());

        // Validate the result
        try (ZipInputStream zipInputStream = new ZipInputStream(
                new ByteArrayInputStream(outputStream.toByteArray()))) {
            ZipEntry zipEntry = zipInputStream.getNextEntry();
            while (zipEntry != null) {
                if (!zipEntry.isDirectory()) {
                    String name = zipEntry.getName();
                    //                    System.out.println(name);
                    Assert.assertNotNull(name);

                    URL expectedFile = getClass().getClassLoader()
                            .getResource(getClass().getSimpleName() + "/_expected/generated-api/" + name);
                    Assert.assertNotNull("Could not find expected file for entry: " + name, expectedFile);
                    String expected = IOUtils.toString(expectedFile);

                    String actual = IOUtils.toString(zipInputStream);
                    //                    System.out.println("-----");
                    //                    System.out.println(actual);
                    //                    System.out.println("-----");
                    Assert.assertEquals("Expected vs. actual failed for entry: " + name, normalizeString(expected),
                            normalizeString(actual));
                }
                zipEntry = zipInputStream.getNextEntry();
            }
        }

    }

    /**
     * Test method for {@link io.apicurio.hub.api.codegen.OpenApi2Thorntail#generate()}.
     */
    @Test
    public void testGenerateOnly_GatewayApiNoTypes() throws IOException {
        OpenApi2Thorntail generator = new OpenApi2Thorntail() {
            /**
             * @see io.apicurio.hub.api.codegen.OpenApi2Thorntail#processApiDoc()
             */
            @Override
            protected String processApiDoc() {
                try {
                    return IOUtils.toString(OpenApi2ThorntailTest.class.getClassLoader()
                            .getResource("OpenApi2ThorntailTest/gateway-api-notypes.codegen.json"));
                } catch (IOException e) {
                    throw new RuntimeException(e);
                }
            }
        };
        generator.setUpdateOnly(false);
        generator.setSettings(new ThorntailProjectSettings("io.openapi.simple", "simple-api", "io.openapi.simple"));
        generator.setOpenApiDocument(
                getClass().getClassLoader().getResource("OpenApi2ThorntailTest/gateway-api.json"));
        ByteArrayOutputStream outputStream = generator.generate();

        //        FileUtils.writeByteArrayToFile(new File("C:\\Users\\ewittman\\tmp\\output.zip"), outputStream.toByteArray());

        // Validate the result
        try (ZipInputStream zipInputStream = new ZipInputStream(
                new ByteArrayInputStream(outputStream.toByteArray()))) {
            ZipEntry zipEntry = zipInputStream.getNextEntry();
            while (zipEntry != null) {
                if (!zipEntry.isDirectory()) {
                    String name = zipEntry.getName();
                    //                    System.out.println(name);
                    Assert.assertNotNull(name);

                    URL expectedFile = getClass().getClassLoader().getResource(
                            getClass().getSimpleName() + "/_expected-gatewayApiNoTypes/simple-api/" + name);
                    Assert.assertNotNull("Could not find expected file for entry: " + name, expectedFile);
                    String expected = IOUtils.toString(expectedFile);

                    String actual = IOUtils.toString(zipInputStream);
                    //                    System.out.println("-----");
                    //                    System.out.println(actual);
                    //                    System.out.println("-----");
                    Assert.assertEquals("Expected vs. actual failed for entry: " + name, normalizeString(expected),
                            normalizeString(actual));
                }
                zipEntry = zipInputStream.getNextEntry();
            }
        }

    }

    /**
     * Test method for {@link io.apicurio.hub.api.codegen.OpenApi2Thorntail#generate()}.
     */
    @Test
    public void testGenerateFull() throws IOException {
        OpenApi2Thorntail generator = new OpenApi2Thorntail();
        generator.setUpdateOnly(false);
        generator
                .setOpenApiDocument(getClass().getClassLoader().getResource("OpenApi2ThorntailTest/beer-api.json"));
        ByteArrayOutputStream outputStream = generator.generate();

        //        FileUtils.writeByteArrayToFile(new File("C:\\Users\\ewittman\\tmp\\output-full.zip"), outputStream.toByteArray());

        // Validate the result
        try (ZipInputStream zipInputStream = new ZipInputStream(
                new ByteArrayInputStream(outputStream.toByteArray()))) {
            ZipEntry zipEntry = zipInputStream.getNextEntry();
            while (zipEntry != null) {
                if (!zipEntry.isDirectory()) {
                    String name = zipEntry.getName();
                    //                    System.out.println(name);
                    Assert.assertNotNull(name);

                    URL expectedFile = getClass().getClassLoader()
                            .getResource(getClass().getSimpleName() + "/_expected-full/generated-api/" + name);
                    Assert.assertNotNull("Could not find expected file for entry: " + name, expectedFile);
                    String expected = IOUtils.toString(expectedFile);

                    String actual = IOUtils.toString(zipInputStream);
                    //                    System.out.println("-----");
                    //                    System.out.println(actual);
                    //                    System.out.println("-----");
                    Assert.assertEquals("Expected vs. actual failed for entry: " + name, normalizeString(expected),
                            normalizeString(actual));
                }
                zipEntry = zipInputStream.getNextEntry();
            }
        }
    }

    /**
     * Test method for {@link io.apicurio.hub.api.codegen.OpenApi2Thorntail#generate()}.
     */
    @Test
    public void testGenerateFull_GatewayApi() throws IOException {
        OpenApi2Thorntail generator = new OpenApi2Thorntail();
        generator.setUpdateOnly(false);
        generator.setOpenApiDocument(
                getClass().getClassLoader().getResource("OpenApi2ThorntailTest/gateway-api.json"));
        ByteArrayOutputStream outputStream = generator.generate();

        //        FileUtils.writeByteArrayToFile(new File("C:\\Users\\ewittman\\tmp\\testGenerateFull_GatewayApi.zip"), outputStream.toByteArray());

        // Validate the result
        try (ZipInputStream zipInputStream = new ZipInputStream(
                new ByteArrayInputStream(outputStream.toByteArray()))) {
            ZipEntry zipEntry = zipInputStream.getNextEntry();
            while (zipEntry != null) {
                if (!zipEntry.isDirectory()) {
                    String name = zipEntry.getName();
                    //                    System.out.println(name);
                    Assert.assertNotNull(name);

                    URL expectedFile = getClass().getClassLoader().getResource(
                            getClass().getSimpleName() + "/_expected-gatewayApi-full/generated-api/" + name);
                    Assert.assertNotNull("Could not find expected file for entry: " + name, expectedFile);
                    String expected = IOUtils.toString(expectedFile);

                    String actual = IOUtils.toString(zipInputStream);
                    //                    System.out.println("-----");
                    //                    System.out.println(actual);
                    //                    System.out.println("-----");
                    Assert.assertEquals("Expected vs. actual failed for entry: " + name, normalizeString(expected),
                            normalizeString(actual));
                }
                zipEntry = zipInputStream.getNextEntry();
            }
        }
    }

    /**
     * Test method for {@link io.apicurio.hub.api.codegen.OpenApi2Thorntail#generate()}.
     */
    @Test
    public void testGenerateUpdateOnly() throws IOException {
        OpenApi2Thorntail generator = new OpenApi2Thorntail();
        generator.setUpdateOnly(true);
        generator
                .setOpenApiDocument(getClass().getClassLoader().getResource("OpenApi2ThorntailTest/beer-api.json"));
        ByteArrayOutputStream outputStream = generator.generate();

        // Validate the result
        try (ZipInputStream zipInputStream = new ZipInputStream(
                new ByteArrayInputStream(outputStream.toByteArray()))) {
            ZipEntry zipEntry = zipInputStream.getNextEntry();
            while (zipEntry != null) {
                if (!zipEntry.isDirectory()) {
                    String name = zipEntry.getName();
                    Assert.assertNotNull(name);

                    URL expectedFile = getClass().getClassLoader()
                            .getResource(getClass().getSimpleName() + "/_expected-full/generated-api/" + name);
                    Assert.assertNotNull("Could not find expected file for entry: " + name, expectedFile);
                    String expected = IOUtils.toString(expectedFile);

                    String actual = IOUtils.toString(zipInputStream);
                    Assert.assertEquals("Expected vs. actual failed for entry: " + name, normalizeString(expected),
                            normalizeString(actual));
                }
                zipEntry = zipInputStream.getNextEntry();
            }
        }
    }

    private static String normalizeString(String value) {
        value = value.replaceAll("\\r\\n", "\n");
        value = value.replaceAll("\\r", "\n");
        return value;
    }

}