From 4cdc4194789adf682a9d84cdcb71c9356dfddc5a Mon Sep 17 00:00:00 2001 From: Paul-Christian Volkmer Date: Sat, 20 Jan 2024 19:35:40 +0100 Subject: [PATCH] test: add test to ensure redirect of not logged in --- .../etl/processor/web/ConfigControllerTest.kt | 110 ++++++++++++++++++ 1 file changed, 110 insertions(+) create mode 100644 src/integrationTest/kotlin/dev/dnpm/etl/processor/web/ConfigControllerTest.kt diff --git a/src/integrationTest/kotlin/dev/dnpm/etl/processor/web/ConfigControllerTest.kt b/src/integrationTest/kotlin/dev/dnpm/etl/processor/web/ConfigControllerTest.kt new file mode 100644 index 0000000..6e6a25e --- /dev/null +++ b/src/integrationTest/kotlin/dev/dnpm/etl/processor/web/ConfigControllerTest.kt @@ -0,0 +1,110 @@ +/* + * This file is part of ETL-Processor + * + * Copyright (c) 2024 Comprehensive Cancer Center Mainfranken, Datenintegrationszentrum Philipps-Universität Marburg and Contributors + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU Affero General Public License as published + * by the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Affero General Public License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with this program. If not, see . + */ + +package dev.dnpm.etl.processor.web + +import dev.dnpm.etl.processor.config.AppSecurityConfiguration +import dev.dnpm.etl.processor.monitoring.ConnectionCheckService +import dev.dnpm.etl.processor.output.MtbFileSender +import dev.dnpm.etl.processor.pseudonym.Generator +import dev.dnpm.etl.processor.services.RequestProcessor +import dev.dnpm.etl.processor.services.TransformationService +import org.junit.jupiter.api.BeforeEach +import org.junit.jupiter.api.Test +import org.junit.jupiter.api.extension.ExtendWith +import org.mockito.junit.jupiter.MockitoExtension +import org.springframework.beans.factory.annotation.Autowired +import org.springframework.boot.test.autoconfigure.web.servlet.WebMvcTest +import org.springframework.boot.test.mock.mockito.MockBean +import org.springframework.http.HttpHeaders +import org.springframework.http.MediaType +import org.springframework.security.test.web.servlet.request.SecurityMockMvcRequestPostProcessors.anonymous +import org.springframework.security.test.web.servlet.request.SecurityMockMvcRequestPostProcessors.user +import org.springframework.test.context.ContextConfiguration +import org.springframework.test.context.TestPropertySource +import org.springframework.test.context.junit.jupiter.SpringExtension +import org.springframework.test.web.servlet.MockMvc +import org.springframework.test.web.servlet.get +import reactor.core.publisher.Sinks + +abstract class MockSink : Sinks.Many + +@WebMvcTest(controllers = [ConfigController::class]) +@ExtendWith(value = [MockitoExtension::class, SpringExtension::class]) +@ContextConfiguration( + classes = [ + ConfigController::class, + AppSecurityConfiguration::class + ] +) +@TestPropertySource( + properties = [ + "app.pseudonymize.generator=BUILDIN", + "app.security.admin-user=admin", + "app.security.admin-password={noop}very-secret", + "app.security.enable-tokens=true" + ] +) +@MockBean(name = "configsUpdateProducer", classes = [MockSink::class]) +@MockBean( + Generator::class, + MtbFileSender::class, + ConnectionCheckService::class, + RequestProcessor::class, + TransformationService::class +) +class ConfigControllerTest { + + private lateinit var mockMvc: MockMvc + + private lateinit var requestProcessor: RequestProcessor + + @BeforeEach + fun setup( + @Autowired mockMvc: MockMvc, + @Autowired requestProcessor: RequestProcessor + ) { + this.mockMvc = mockMvc + this.requestProcessor = requestProcessor + } + + @Test + fun testShouldShowConfigPageIfLoggedIn() { + mockMvc.get("/configs") { + with(user("admin").roles("ADMIN")) + accept(MediaType.TEXT_HTML) + }.andExpect { + status { isOk() } + } + } + + @Test + fun testShouldRedirectToLoginPageIfNotLoggedIn() { + mockMvc.get("/configs") { + with(anonymous()) + accept(MediaType.TEXT_HTML) + }.andExpect { + status { isFound() } + header { + stringValues(HttpHeaders.LOCATION, "http://localhost/login") + } + } + } + +}