docs:update JDK version configuration in GitHub Actions. (#1510)
parent
dd39bf7648
commit
60eec2fee4
@ -0,0 +1,34 @@
|
||||
name: Codecov with JDK 17
|
||||
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- 2024
|
||||
- 2023
|
||||
- 2022
|
||||
pull_request:
|
||||
branches:
|
||||
- 2024
|
||||
- 2023
|
||||
- 2022
|
||||
|
||||
jobs:
|
||||
codecov:
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
- name: Checkout codes
|
||||
uses: actions/checkout@v4
|
||||
- name: Set up JDK 17
|
||||
uses: actions/setup-java@v4
|
||||
with:
|
||||
distribution: 'temurin'
|
||||
java-version: 17
|
||||
- name: Test with Maven
|
||||
run: mvn clean test -B -U -Psonatype
|
||||
- name: Upload coverage to Codecov
|
||||
uses: codecov/codecov-action@v4
|
||||
env:
|
||||
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
|
||||
with:
|
||||
files: ${{ github.workspace }}/target/site/jacoco/jacoco.xml
|
@ -0,0 +1,40 @@
|
||||
name: Junit Test with JDK from 17 to 21
|
||||
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- 2024
|
||||
- 2023
|
||||
- 2022
|
||||
pull_request:
|
||||
branches:
|
||||
- 2024
|
||||
- 2023
|
||||
- 2022
|
||||
|
||||
jobs:
|
||||
build:
|
||||
strategy:
|
||||
matrix:
|
||||
java: [ 17, 21 ]
|
||||
os: [ 'windows-latest', 'ubuntu-latest' ]
|
||||
|
||||
runs-on: ${{ matrix.os }}
|
||||
|
||||
steps:
|
||||
- name: Checkout codes
|
||||
uses: actions/checkout@v4
|
||||
- name: Set up JDK ${{ matrix.java }}
|
||||
uses: actions/setup-java@v4
|
||||
with:
|
||||
distribution: 'temurin'
|
||||
java-version: ${{ matrix.java }}
|
||||
- name: Cache local Maven repository
|
||||
uses: actions/cache@v4
|
||||
with:
|
||||
path: ~/.m2/repository
|
||||
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
|
||||
restore-keys: |
|
||||
${{ runner.os }}-maven-
|
||||
- name: Test with Maven
|
||||
run: mvn clean test -f pom.xml -B -P sonatype -U
|
@ -1,27 +1,24 @@
|
||||
# This workflow will build a Java project with Maven
|
||||
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-maven
|
||||
|
||||
name: Test with Junit
|
||||
name: Junit Test with JDK from 8 to 21
|
||||
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- hoxton
|
||||
- 2021
|
||||
- 2020
|
||||
- hoxton
|
||||
- greenwich
|
||||
pull_request:
|
||||
branches:
|
||||
- hoxton
|
||||
- 2021
|
||||
- 2020
|
||||
- hoxton
|
||||
- greenwich
|
||||
|
||||
jobs:
|
||||
junit:
|
||||
strategy:
|
||||
matrix:
|
||||
java: [ 8, 11, 17 ]
|
||||
java: [ 8, 11, 17, 21 ]
|
||||
os: [ 'windows-latest', 'ubuntu-latest' ]
|
||||
|
||||
runs-on: ${{ matrix.os }}
|
@ -1,14 +1,11 @@
|
||||
name: Snapshot
|
||||
name: Snapshot with JDK 17
|
||||
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- 2024
|
||||
- 2023
|
||||
- 2022
|
||||
- 2021
|
||||
- 2020
|
||||
- hoxton
|
||||
- greenwich
|
||||
|
||||
jobs:
|
||||
check-snapshot:
|
@ -0,0 +1,48 @@
|
||||
name: Snapshot with JDK 8
|
||||
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- 2021
|
||||
- 2020
|
||||
- hoxton
|
||||
- greenwich
|
||||
|
||||
jobs:
|
||||
check-snapshot:
|
||||
runs-on: ubuntu-latest
|
||||
outputs:
|
||||
IS_SNAPSHOT: ${{ steps.set_output_1.outputs.IS_SNAPSHOT }}
|
||||
steps:
|
||||
- name: Checkout codes
|
||||
uses: actions/checkout@v4
|
||||
- name: Check deploy type
|
||||
id: set_output_1
|
||||
run: |
|
||||
line="$(grep SNAPSHOT pom.xml || true)"
|
||||
echo $line
|
||||
if [ -n "$line" ]; then
|
||||
echo "IS_SNAPSHOT=true" >> $GITHUB_OUTPUT
|
||||
else
|
||||
echo "IS_SNAPSHOT=false" >> $GITHUB_OUTPUT
|
||||
fi
|
||||
snapshot:
|
||||
runs-on: ubuntu-latest
|
||||
needs: check-snapshot
|
||||
if: ${{ needs.check-snapshot.outputs.IS_SNAPSHOT == 'true' }}
|
||||
steps:
|
||||
- name: Checkout codes
|
||||
uses: actions/checkout@v4
|
||||
- name: Set up JDK 8
|
||||
uses: actions/setup-java@v4
|
||||
with:
|
||||
java-version: '8'
|
||||
distribution: 'temurin'
|
||||
server-id: nexus-snapshots
|
||||
server-username: MAVEN_USERNAME
|
||||
server-password: MAVEN_PASSWORD
|
||||
- name: Publish package
|
||||
run: mvn clean deploy -B -U -Psonatype
|
||||
env:
|
||||
MAVEN_USERNAME: ${{ secrets.OSSRH_USERNAME }}
|
||||
MAVEN_PASSWORD: ${{ secrets.OSSRH_TOKEN }}
|
@ -1,189 +0,0 @@
|
||||
/*
|
||||
* Tencent is pleased to support the open source community by making spring-cloud-tencent available.
|
||||
*
|
||||
* Copyright (C) 2021 THL A29 Limited, a Tencent company. All rights reserved.
|
||||
*
|
||||
* Licensed under the BSD 3-Clause License (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* https://opensource.org/licenses/BSD-3-Clause
|
||||
*
|
||||
* 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.tencent.cloud.plugin.protection;
|
||||
|
||||
import java.security.Permission;
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
|
||||
import org.junit.jupiter.api.Test;
|
||||
import org.junit.jupiter.api.extension.ExtendWith;
|
||||
import org.mockito.Mock;
|
||||
import org.mockito.junit.jupiter.MockitoExtension;
|
||||
|
||||
import org.springframework.context.ConfigurableApplicationContext;
|
||||
import org.springframework.web.servlet.function.RouterFunction;
|
||||
|
||||
import static org.mockito.Mockito.mock;
|
||||
import static org.mockito.Mockito.never;
|
||||
import static org.mockito.Mockito.verify;
|
||||
|
||||
/**
|
||||
* Test for {@link SecurityProtectionAutoConfiguration}.
|
||||
*/
|
||||
@ExtendWith(MockitoExtension.class)
|
||||
class SecurityProtectionAutoConfigurationTest {
|
||||
|
||||
@Mock
|
||||
private ConfigurableApplicationContext applicationContext;
|
||||
|
||||
@Test
|
||||
void testServletProtectionNoRouterFunctions() {
|
||||
// Arrange
|
||||
SecurityProtectionAutoConfiguration.ServletProtectionConfiguration config =
|
||||
new SecurityProtectionAutoConfiguration.ServletProtectionConfiguration();
|
||||
config.applicationContext = applicationContext;
|
||||
config.routerFunctions = null;
|
||||
|
||||
// Act
|
||||
config.afterPropertiesSet();
|
||||
|
||||
// Verify
|
||||
// Should not call exit when no RouterFunctions present
|
||||
verify(applicationContext, never()).close();
|
||||
}
|
||||
|
||||
@Test
|
||||
void testServletProtectionEmptyRouterFunctions() {
|
||||
// Arrange
|
||||
SecurityProtectionAutoConfiguration.ServletProtectionConfiguration config =
|
||||
new SecurityProtectionAutoConfiguration.ServletProtectionConfiguration();
|
||||
config.applicationContext = applicationContext;
|
||||
config.routerFunctions = new ArrayList<>();
|
||||
|
||||
// Act
|
||||
config.afterPropertiesSet();
|
||||
|
||||
// Verify
|
||||
// Should not call exit when RouterFunctions list is empty
|
||||
verify(applicationContext, never()).close();
|
||||
}
|
||||
|
||||
@Test
|
||||
void testServletProtectionWithRouterFunctions() {
|
||||
// Arrange
|
||||
SecurityProtectionAutoConfiguration.ServletProtectionConfiguration config =
|
||||
new SecurityProtectionAutoConfiguration.ServletProtectionConfiguration();
|
||||
config.applicationContext = mock(ConfigurableApplicationContext.class);
|
||||
List<RouterFunction> routerFunctions = new ArrayList<>();
|
||||
routerFunctions.add(mock(RouterFunction.class));
|
||||
config.routerFunctions = routerFunctions;
|
||||
|
||||
SecurityManager originalSecurityManager = System.getSecurityManager();
|
||||
System.setSecurityManager(new ExitSecurityManager());
|
||||
|
||||
try {
|
||||
config.afterPropertiesSet();
|
||||
}
|
||||
catch (SecurityException e) {
|
||||
// Ignore
|
||||
}
|
||||
finally {
|
||||
System.setSecurityManager(originalSecurityManager);
|
||||
}
|
||||
}
|
||||
|
||||
@Test
|
||||
void testReactiveProtectionNoRouterFunctions() {
|
||||
// Arrange
|
||||
SecurityProtectionAutoConfiguration.ReactiveProtectionConfiguration config =
|
||||
new SecurityProtectionAutoConfiguration.ReactiveProtectionConfiguration();
|
||||
config.applicationContext = applicationContext;
|
||||
config.routerFunctions = null;
|
||||
|
||||
// Act
|
||||
config.afterPropertiesSet();
|
||||
|
||||
// Verify
|
||||
verify(applicationContext, never()).close();
|
||||
}
|
||||
|
||||
@Test
|
||||
void testReactiveProtectionEmptyRouterFunctions() {
|
||||
// Arrange
|
||||
SecurityProtectionAutoConfiguration.ReactiveProtectionConfiguration config =
|
||||
new SecurityProtectionAutoConfiguration.ReactiveProtectionConfiguration();
|
||||
config.applicationContext = applicationContext;
|
||||
config.routerFunctions = new ArrayList<>();
|
||||
|
||||
// Act
|
||||
config.afterPropertiesSet();
|
||||
|
||||
// Verify
|
||||
verify(applicationContext, never()).close();
|
||||
}
|
||||
|
||||
@Test
|
||||
void testReactiveProtectionWithRouterFunctions() {
|
||||
// Arrange
|
||||
SecurityProtectionAutoConfiguration.ReactiveProtectionConfiguration config =
|
||||
new SecurityProtectionAutoConfiguration.ReactiveProtectionConfiguration();
|
||||
config.applicationContext = mock(ConfigurableApplicationContext.class);
|
||||
List<org.springframework.web.reactive.function.server.RouterFunction> routerFunctions = new ArrayList<>();
|
||||
routerFunctions.add(mock(org.springframework.web.reactive.function.server.RouterFunction.class));
|
||||
config.routerFunctions = routerFunctions;
|
||||
|
||||
SecurityManager originalSecurityManager = System.getSecurityManager();
|
||||
System.setSecurityManager(new ExitSecurityManager());
|
||||
|
||||
try {
|
||||
config.afterPropertiesSet();
|
||||
}
|
||||
catch (SecurityException e) {
|
||||
// Ignore
|
||||
}
|
||||
finally {
|
||||
System.setSecurityManager(originalSecurityManager);
|
||||
}
|
||||
}
|
||||
|
||||
@Test
|
||||
void testInterruptedExceptionHandling() throws InterruptedException {
|
||||
// Arrange
|
||||
ConfigurableApplicationContext mockContext = mock(ConfigurableApplicationContext.class);
|
||||
Thread testThread = new Thread(() -> ExitUtils.exit(mockContext, 3000));
|
||||
|
||||
|
||||
|
||||
SecurityManager originalSecurityManager = System.getSecurityManager();
|
||||
System.setSecurityManager(new ExitSecurityManager());
|
||||
|
||||
try {
|
||||
// Act
|
||||
testThread.start();
|
||||
testThread.interrupt();
|
||||
Thread.sleep(6000);
|
||||
}
|
||||
catch (SecurityException e) {
|
||||
// Ignore
|
||||
}
|
||||
finally {
|
||||
System.setSecurityManager(originalSecurityManager);
|
||||
}
|
||||
}
|
||||
|
||||
public static class ExitSecurityManager extends SecurityManager {
|
||||
|
||||
@Override
|
||||
public void checkPermission(Permission perm) {
|
||||
if (perm.getName().contains("exitVM")) {
|
||||
throw new SecurityException("System.exit is not allowed");
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
@ -1,154 +0,0 @@
|
||||
/*
|
||||
* Tencent is pleased to support the open source community by making spring-cloud-tencent available.
|
||||
*
|
||||
* Copyright (C) 2021 THL A29 Limited, a Tencent company. All rights reserved.
|
||||
*
|
||||
* Licensed under the BSD 3-Clause License (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* https://opensource.org/licenses/BSD-3-Clause
|
||||
*
|
||||
* 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.tencent.cloud.polaris.context.listener;
|
||||
|
||||
import java.security.Permission;
|
||||
|
||||
import org.junit.jupiter.api.BeforeEach;
|
||||
import org.junit.jupiter.api.Test;
|
||||
import org.mockito.Mock;
|
||||
import org.mockito.MockitoAnnotations;
|
||||
|
||||
import org.springframework.boot.context.event.ApplicationFailedEvent;
|
||||
import org.springframework.context.ApplicationContext;
|
||||
import org.springframework.context.ConfigurableApplicationContext;
|
||||
|
||||
import static org.mockito.Mockito.when;
|
||||
|
||||
|
||||
class FailedEventApplicationListenerTest {
|
||||
|
||||
@Mock
|
||||
private ConfigurableApplicationContext mockConfigurableContext;
|
||||
|
||||
@Mock
|
||||
private ApplicationContext mockApplicationContext;
|
||||
|
||||
@Mock
|
||||
private ApplicationFailedEvent mockFailedEvent;
|
||||
|
||||
private FailedEventApplicationListener listener;
|
||||
|
||||
@BeforeEach
|
||||
void setUp() {
|
||||
MockitoAnnotations.openMocks(this);
|
||||
listener = new FailedEventApplicationListener();
|
||||
}
|
||||
|
||||
@Test
|
||||
void testSetApplicationContext() {
|
||||
// Test setting application context
|
||||
listener.setApplicationContext(mockApplicationContext);
|
||||
}
|
||||
|
||||
@Test
|
||||
void testOnApplicationEventWithConfigurableContext() {
|
||||
// Arrange
|
||||
listener.setApplicationContext(mockConfigurableContext);
|
||||
when(mockFailedEvent.getException()).thenReturn(new RuntimeException("Test Exception"));
|
||||
|
||||
SecurityManager originalSecurityManager = System.getSecurityManager();
|
||||
System.setSecurityManager(new ExitSecurityManager());
|
||||
|
||||
try {
|
||||
// Act
|
||||
listener.onApplicationEvent(mockFailedEvent);
|
||||
}
|
||||
catch (SecurityException e) {
|
||||
// Ignore
|
||||
}
|
||||
finally {
|
||||
System.setSecurityManager(originalSecurityManager);
|
||||
}
|
||||
}
|
||||
|
||||
@Test
|
||||
void testOnApplicationEventWithNonConfigurableContext() {
|
||||
// Arrange
|
||||
listener.setApplicationContext(mockApplicationContext);
|
||||
when(mockFailedEvent.getException()).thenReturn(new RuntimeException("Test Exception"));
|
||||
|
||||
SecurityManager originalSecurityManager = System.getSecurityManager();
|
||||
System.setSecurityManager(new ExitSecurityManager());
|
||||
|
||||
try {
|
||||
// Act
|
||||
listener.onApplicationEvent(mockFailedEvent);
|
||||
}
|
||||
catch (SecurityException e) {
|
||||
// Ignore
|
||||
}
|
||||
finally {
|
||||
System.setSecurityManager(originalSecurityManager);
|
||||
}
|
||||
}
|
||||
|
||||
@Test
|
||||
void testOnApplicationEventWithInterruptedException() {
|
||||
// Arrange
|
||||
listener.setApplicationContext(mockConfigurableContext);
|
||||
Thread.currentThread().interrupt(); // Simulate interruption
|
||||
|
||||
|
||||
SecurityManager originalSecurityManager = System.getSecurityManager();
|
||||
System.setSecurityManager(new ExitSecurityManager());
|
||||
|
||||
try {
|
||||
// Act
|
||||
listener.onApplicationEvent(mockFailedEvent);
|
||||
}
|
||||
catch (SecurityException e) {
|
||||
// Ignore
|
||||
}
|
||||
finally {
|
||||
System.setSecurityManager(originalSecurityManager);
|
||||
}
|
||||
}
|
||||
|
||||
@Test
|
||||
void testOnApplicationEventWithNullException() {
|
||||
// Arrange
|
||||
listener.setApplicationContext(mockConfigurableContext);
|
||||
when(mockFailedEvent.getException()).thenReturn(null);
|
||||
|
||||
|
||||
SecurityManager originalSecurityManager = System.getSecurityManager();
|
||||
System.setSecurityManager(new ExitSecurityManager());
|
||||
|
||||
try {
|
||||
// Act
|
||||
listener.onApplicationEvent(mockFailedEvent);
|
||||
}
|
||||
catch (SecurityException e) {
|
||||
// Ignore
|
||||
}
|
||||
finally {
|
||||
System.setSecurityManager(originalSecurityManager);
|
||||
}
|
||||
}
|
||||
|
||||
public static class ExitSecurityManager extends SecurityManager {
|
||||
|
||||
@Override
|
||||
public void checkPermission(Permission perm) {
|
||||
if (perm.getName().contains("exitVM")) {
|
||||
throw new SecurityException("System.exit is not allowed");
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Reference in new issue