Java tutorial
/* * Copyright 2015 - Chris Phillipson * * 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 com.fns.grivet.service; import java.io.IOException; import java.nio.charset.Charset; import java.sql.Timestamp; import java.time.LocalDateTime; import java.util.Arrays; import java.util.List; import org.apache.commons.io.IOUtils; import org.json.JSONObject; import org.junit.jupiter.api.AfterEach; import org.junit.jupiter.api.Assertions; import org.junit.jupiter.api.BeforeEach; import org.junit.jupiter.api.Test; import org.junit.jupiter.api.extension.ExtendWith; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.boot.test.context.SpringBootTest; import org.springframework.core.io.Resource; import org.springframework.core.io.ResourceLoader; import org.springframework.test.context.ActiveProfiles; import org.springframework.test.context.junit.jupiter.SpringExtension; import org.springframework.util.LinkedMultiValueMap; import org.springframework.util.MultiValueMap; import com.fasterxml.jackson.databind.ObjectMapper; import com.fns.grivet.QueryInit; import com.fns.grivet.query.NamedQuery; import io.restassured.path.json.JsonPath; @ActiveProfiles(value = { "hsqldb", "insecure" }) @ExtendWith(SpringExtension.class) @SpringBootTest(classes = QueryInit.class) public class NamedQueryServiceSprocTest { @Autowired private ResourceLoader resolver; @Autowired private ClassRegistryService classRegistryService; @Autowired private NamedQueryService namedQueryService; @Autowired private ObjectMapper objectMapper; @BeforeEach public void setUp() throws IOException { Resource r = resolver.getResource("classpath:TestType.json"); String json = IOUtils.toString(r.getInputStream(), Charset.defaultCharset()); JSONObject payload = new JSONObject(json); classRegistryService.register(payload); } @Test public void testSuccessfulNamedQueryExecution() throws IOException { Resource r = resolver.getResource("classpath:TestSprocQuery.json"); String json = IOUtils.toString(r.getInputStream(), Charset.defaultCharset()); NamedQuery namedQuery = objectMapper.readValue(json, NamedQuery.class); namedQueryService.create(namedQuery); MultiValueMap<String, Object> params = new LinkedMultiValueMap<>(); Timestamp tomorrow = Timestamp.valueOf(LocalDateTime.now().plusDays(1)); params.add("createdTime", tomorrow); String result = namedQueryService.get("sproc.getAttributesCreatedBefore", params); String[] expected = { "bigint", "varchar", "decimal", "datetime", "int", "text", "json", "boolean" }; List<String> actual = JsonPath.given(result).getList("NAME"); Assertions.assertTrue(actual.size() == 8, "Result should contain 8 attributes"); Assertions.assertTrue(actual.containsAll(Arrays.asList(expected))); } @Test public void testNamedQueryNotFound() throws IOException { Assertions.assertThrows(IllegalArgumentException.class, () -> { MultiValueMap<String, Object> params = new LinkedMultiValueMap<>(); Timestamp tomorrow = Timestamp.valueOf(LocalDateTime.now().plusDays(1)); params.add("createdTime", tomorrow); namedQueryService.get("sproc.getAttributesCreatedBefore", params); }); } @Test public void testNamedQueryNotExecutedBecauseItDidNotContainRequiredParamForExecution() throws IOException { Assertions.assertThrows(IllegalArgumentException.class, () -> { Resource r = resolver.getResource("classpath:TestSprocQuery.json"); String json = IOUtils.toString(r.getInputStream(), Charset.defaultCharset()); NamedQuery namedQuery = objectMapper.readValue(json, NamedQuery.class); namedQueryService.create(namedQuery); namedQueryService.get("sproc.getAttributesCreatedBefore", null); }); } @Test public void testNamedQueryNotExecutedBecauseParamSuppliedForExecutionNotCorrectlyNamed() throws IOException { Assertions.assertThrows(IllegalArgumentException.class, () -> { Resource r = resolver.getResource("classpath:TestSprocQuery.json"); String json = IOUtils.toString(r.getInputStream(), Charset.defaultCharset()); NamedQuery namedQuery = objectMapper.readValue(json, NamedQuery.class); namedQueryService.create(namedQuery); MultiValueMap<String, Object> params = new LinkedMultiValueMap<>(); Timestamp tomorrow = Timestamp.valueOf(LocalDateTime.now().plusDays(1)); params.add("timeCreated", tomorrow); namedQueryService.get("sproc.getAttributesCreatedBefore", params); }); } @AfterEach public void tearDown() { classRegistryService.deregister("TestType"); namedQueryService.delete("sproc.getAttributesCreatedBefore"); } }