remove comment
fix checkstyle add license fix checkstyle fix checkstyle remove comment fix file consistency remove imports fix checkstyles fix checkstyles add dockerhub manage image update image filepull/2694/head
parent
066587d3b5
commit
36d5f7ef6f
@ -1,16 +0,0 @@
|
||||
configdata:
|
||||
user:
|
||||
age: 22
|
||||
name: freeman1123
|
||||
map:
|
||||
hobbies:
|
||||
- art
|
||||
- programming
|
||||
- movie
|
||||
intro: Hello, I'm freeman
|
||||
extra: yo~
|
||||
users:
|
||||
- name: dad
|
||||
age: 20
|
||||
- name: mom
|
||||
age: 18
|
@ -1,9 +1,30 @@
|
||||
/*
|
||||
* Copyright 2012-2020 the original author or authors.
|
||||
*
|
||||
* 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
|
||||
*
|
||||
* https://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.alibaba.cloud.testsupport;
|
||||
|
||||
public class Constant {
|
||||
|
||||
//超时默认设置为5s
|
||||
public static final long TIME_OUT = 5000;
|
||||
|
||||
public static final String REFRESH_CONFIG = "nacos-config-refresh.yml";
|
||||
|
||||
/**
|
||||
* container timeout.
|
||||
*/
|
||||
public static final long TIME_OUT = 5000;
|
||||
|
||||
/**
|
||||
* nacos refresh config.
|
||||
*/
|
||||
public static final String REFRESH_CONFIG = "nacos-config-refresh.yml";
|
||||
}
|
||||
|
@ -1,16 +1,34 @@
|
||||
/*
|
||||
* Copyright 2012-2020 the original author or authors.
|
||||
*
|
||||
* 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
|
||||
*
|
||||
* https://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.alibaba.cloud.testsupport;
|
||||
|
||||
import org.junit.jupiter.api.Test;
|
||||
import org.junit.jupiter.api.extension.ExtendWith;
|
||||
import java.lang.annotation.Documented;
|
||||
import java.lang.annotation.ElementType;
|
||||
import java.lang.annotation.Retention;
|
||||
import java.lang.annotation.RetentionPolicy;
|
||||
import java.lang.annotation.Target;
|
||||
|
||||
import java.lang.annotation.*;
|
||||
import org.junit.jupiter.api.extension.ExtendWith;
|
||||
|
||||
@Target({ElementType.TYPE, ElementType.METHOD})
|
||||
@Target({ ElementType.TYPE, ElementType.METHOD })
|
||||
@Retention(RetentionPolicy.RUNTIME)
|
||||
@Documented
|
||||
@ExtendWith(TestTimeoutExtension.class)
|
||||
public @interface TestExtend {
|
||||
|
||||
//设置超时时间
|
||||
long time();
|
||||
|
||||
long time();
|
||||
}
|
||||
|
@ -1,37 +1,52 @@
|
||||
/*
|
||||
* Copyright 2012-2020 the original author or authors.
|
||||
*
|
||||
* 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
|
||||
*
|
||||
* https://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.alibaba.cloud.testsupport;
|
||||
|
||||
import java.util.concurrent.Executors;
|
||||
import java.util.concurrent.ScheduledExecutorService;
|
||||
import java.util.concurrent.TimeUnit;
|
||||
|
||||
import org.junit.jupiter.api.extension.AfterAllCallback;
|
||||
import org.junit.jupiter.api.extension.BeforeAllCallback;
|
||||
import org.junit.jupiter.api.extension.BeforeEachCallback;
|
||||
import org.junit.jupiter.api.extension.ExtensionContext;
|
||||
|
||||
import java.util.List;
|
||||
import java.util.concurrent.Executors;
|
||||
import java.util.concurrent.ScheduledExecutorService;
|
||||
import java.util.concurrent.TimeUnit;
|
||||
public class TestTimeoutExtension
|
||||
implements BeforeAllCallback, BeforeEachCallback, AfterAllCallback {
|
||||
|
||||
@Override
|
||||
public void afterAll(ExtensionContext context) throws Exception {
|
||||
|
||||
}
|
||||
|
||||
@Override
|
||||
public void beforeAll(ExtensionContext context) throws Exception {
|
||||
|
||||
}
|
||||
|
||||
public class TestTimeoutExtension implements BeforeAllCallback, BeforeEachCallback, AfterAllCallback {
|
||||
|
||||
@Override
|
||||
public void afterAll(ExtensionContext context) throws Exception {
|
||||
|
||||
}
|
||||
|
||||
@Override
|
||||
public void beforeAll(ExtensionContext context) throws Exception {
|
||||
|
||||
|
||||
}
|
||||
|
||||
|
||||
@Override
|
||||
public void beforeEach(ExtensionContext context) throws Exception {
|
||||
final Class<?> clazz = context.getRequiredTestClass();
|
||||
final TestExtend annotation = clazz.getAnnotation(
|
||||
TestExtend.class);
|
||||
ScheduledExecutorService singlonThread = Executors.newSingleThreadScheduledExecutor();
|
||||
while (!singlonThread.awaitTermination( annotation.time(), TimeUnit.MILLISECONDS)){
|
||||
singlonThread.shutdown();
|
||||
}
|
||||
}
|
||||
@Override
|
||||
public void beforeEach(ExtensionContext context) throws Exception {
|
||||
final Class<?> clazz = context.getRequiredTestClass();
|
||||
final TestExtend annotation = clazz.getAnnotation(TestExtend.class);
|
||||
ScheduledExecutorService singlonThread = Executors
|
||||
.newSingleThreadScheduledExecutor();
|
||||
while (!singlonThread.awaitTermination(annotation.time(),
|
||||
TimeUnit.MILLISECONDS)) {
|
||||
singlonThread.shutdown();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue