Java tutorial
/* * (c) Copyright 2014 Hewlett-Packard Development Company, L.P. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Apache License v2.0 which accompany this distribution. * * The Apache License is available at * http://www.apache.org/licenses/LICENSE-2.0 * */ package io.cloudslang.lang.tools.build.tester.parser; import io.cloudslang.lang.api.Slang; import io.cloudslang.lang.compiler.SlangSource; import io.cloudslang.lang.compiler.parser.YamlParser; import io.cloudslang.lang.compiler.parser.utils.ParserExceptionHandler; import io.cloudslang.lang.entities.SystemProperty; import io.cloudslang.lang.tools.build.tester.parse.SlangTestCase; import io.cloudslang.lang.tools.build.tester.parse.TestCasesYamlParser; import org.junit.Assert; import org.junit.Rule; import org.junit.Test; import org.junit.rules.ExpectedException; import org.junit.runner.RunWith; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.context.annotation.Bean; import org.springframework.context.annotation.Configuration; import org.springframework.test.context.ContextConfiguration; import org.springframework.test.context.junit4.SpringJUnit4ClassRunner; import org.yaml.snakeyaml.Yaml; import org.yaml.snakeyaml.introspector.BeanAccess; import java.io.Serializable; import java.net.URI; import java.net.URISyntaxException; import java.util.*; import static org.mockito.Matchers.eq; import static org.mockito.Mockito.*; /** * Created by stoneo on 3/16/2015. **/ @RunWith(SpringJUnit4ClassRunner.class) @ContextConfiguration(classes = TestCasesYamlParserTest.Config.class) public class TestCasesYamlParserTest { @Autowired private TestCasesYamlParser parser; @Autowired private Slang slang; @Rule public ExpectedException exception = ExpectedException.none(); @Test public void emptyTestCaseFileParsing() throws Exception { String filePath = "/test/invalid/empty_file.inputs.yaml"; URI fileUri = getClass().getResource(filePath).toURI(); Map<String, SlangTestCase> testCases = parser.parseTestCases(SlangSource.fromFile(fileUri)); Assert.assertEquals("There should have been no test cases in the file", 0, testCases.size()); } @Test public void testSimpleTestCasesParsing() throws URISyntaxException { String filePath = "/test/base/test_print_text-SUCCESS.inputs.yaml"; URI fileUri = getClass().getResource(filePath).toURI(); Map<String, SlangTestCase> testCases = parser.parseTestCases(SlangSource.fromFile(fileUri)); SlangTestCase testPrintFinishesWithSuccess = testCases.get("testPrintFinishesWithSuccess"); Assert.assertEquals("Tests that print_text operation finishes with SUCCESS", testPrintFinishesWithSuccess.getDescription()); List<Map> expectedInputsList = new ArrayList<>(); Map<String, Serializable> expectedInputs = new HashMap<>(); expectedInputs.put("text", "text to print"); expectedInputsList.add(expectedInputs); Assert.assertEquals(expectedInputsList, testPrintFinishesWithSuccess.getInputs()); } @Test public void testCaseFileParsingForNonTestCasesFile() throws Exception { String filePath = "/content/base/properties.prop.sl"; URI fileUri = getClass().getResource(filePath).toURI(); exception.expect(RuntimeException.class); exception.expectMessage("problem"); exception.expectMessage("parsing"); exception.expectMessage("properties"); parser.parseTestCases(SlangSource.fromFile(fileUri)); } @Test public void illegalTestCaseFileParsing() throws Exception { String filePath = "/test/invalid/invalid_test_case.yaml"; URI fileUri = getClass().getResource(filePath).toURI(); exception.expect(RuntimeException.class); exception.expectMessage("slang"); exception.expectMessage("parsing"); exception.expectMessage("invalid_test_case"); parser.parseTestCases(SlangSource.fromFile(fileUri)); } @Test public void parseSystemPropertiesFile() throws Exception { URI filePath = getClass().getResource("/content/base/properties.prop.sl").toURI(); SlangSource source = SlangSource.fromFile(filePath); Set<SystemProperty> props = new HashSet<>(); when(slang.loadSystemProperties(eq(source))).thenReturn(props); parser.parseProperties(filePath.getPath()); verify(slang).loadSystemProperties(eq(source)); } @Test public void parseSystemPropertiesFileInvalidExtension() throws Exception { URI filePath = getClass().getResource("/content/base/print_text.sl").toURI(); exception.expect(RuntimeException.class); exception.expectMessage("print_text.sl"); exception.expectMessage("extension"); exception.expectMessage("prop.sl"); parser.parseProperties(filePath.getPath()); } @Configuration static class Config { @Bean public TestCasesYamlParser parser() { return new TestCasesYamlParser(); } @Bean public YamlParser yamlParser() { return new YamlParser(); } @Bean public Slang slang() { return mock(Slang.class); } @Bean public ParserExceptionHandler parserExceptionHandler() { return new ParserExceptionHandler(); } @Bean public Yaml yaml() { Yaml yaml = new Yaml(); yaml.setBeanAccess(BeanAccess.FIELD); return yaml; } } }