Revert "fix(backend): Bypass security configs in spring test"

This reverts commit c88156115b.
This commit is contained in:
2025-11-16 09:19:02 +01:00
parent e1b4bbe759
commit 0044f410df
3 changed files with 0 additions and 37 deletions

View File

@@ -3,7 +3,6 @@ package com.betriebsratkanzlei.legalconsenthub.config
import com.betriebsratkanzlei.legalconsenthub.security.CustomJwtAuthenticationConverter import com.betriebsratkanzlei.legalconsenthub.security.CustomJwtAuthenticationConverter
import org.springframework.context.annotation.Bean import org.springframework.context.annotation.Bean
import org.springframework.context.annotation.Configuration import org.springframework.context.annotation.Configuration
import org.springframework.context.annotation.Profile
import org.springframework.core.annotation.Order import org.springframework.core.annotation.Order
import org.springframework.security.config.annotation.method.configuration.EnableMethodSecurity import org.springframework.security.config.annotation.method.configuration.EnableMethodSecurity
import org.springframework.security.config.annotation.web.builders.HttpSecurity import org.springframework.security.config.annotation.web.builders.HttpSecurity
@@ -14,7 +13,6 @@ import org.springframework.security.web.SecurityFilterChain
@Configuration @Configuration
@EnableWebSecurity @EnableWebSecurity
@EnableMethodSecurity @EnableMethodSecurity
@Profile("!test")
class SecurityConfig { class SecurityConfig {
@Bean @Bean
@Order(1) @Order(1)

View File

@@ -2,10 +2,8 @@ package com.betriebsratkanzlei.legalconsenthub
import org.junit.jupiter.api.Test import org.junit.jupiter.api.Test
import org.springframework.boot.test.context.SpringBootTest import org.springframework.boot.test.context.SpringBootTest
import org.springframework.test.context.ActiveProfiles
@SpringBootTest @SpringBootTest
@ActiveProfiles("test")
class LegalconsenthubApplicationTests { class LegalconsenthubApplicationTests {
@Test @Test
fun contextLoads() { fun contextLoads() {

View File

@@ -1,33 +0,0 @@
spring:
application:
name: legalconsenthub-test
autoconfigure:
exclude:
- org.springframework.boot.autoconfigure.security.oauth2.resource.servlet.OAuth2ResourceServerAutoConfiguration
datasource:
url: jdbc:h2:mem:testdb
username: sa
password:
driver-class-name: org.h2.Driver
jpa:
database-platform: org.hibernate.dialect.H2Dialect
hibernate:
ddl-auto: create-drop
show-sql: false
liquibase:
enabled: false
sql:
init:
platform: h2
logging:
level:
com.betriebsratkanzlei.legalconsenthub: DEBUG
org.springframework.security: WARN
org.springframework.web: WARN