Dual auth: machine endpoints use Ed25519 JWT filter, all other API endpoints use Spring Security OAuth2 Resource Server with Logto OIDC. Mock JwtDecoder provided for test isolation. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
18 lines
492 B
Java
18 lines
492 B
Java
package net.siegeln.cameleer.saas;
|
|
|
|
import org.junit.jupiter.api.Test;
|
|
import org.springframework.boot.test.context.SpringBootTest;
|
|
import org.springframework.context.annotation.Import;
|
|
import org.springframework.test.context.ActiveProfiles;
|
|
|
|
@SpringBootTest
|
|
@Import({TestcontainersConfig.class, TestSecurityConfig.class})
|
|
@ActiveProfiles("test")
|
|
class CameleerSaasApplicationTest {
|
|
|
|
@Test
|
|
void contextLoads() {
|
|
// Verifies the application context starts successfully
|
|
}
|
|
}
|