-
Notifications
You must be signed in to change notification settings - Fork 67
/
Copy pathApplicationTest.java
68 lines (56 loc) · 2.17 KB
/
ApplicationTest.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
/*
* Copyright (C) 2020 The zfoo 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
*
* http://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.zfoo.tank.single.boot;
import com.zfoo.event.model.AppStartEvent;
import com.zfoo.net.core.HostAndPort;
import com.zfoo.net.core.tcp.TcpServer;
import com.zfoo.net.core.websocket.WebsocketServer;
import com.zfoo.net.util.NetUtils;
import com.zfoo.protocol.util.ThreadUtils;
import com.zfoo.tank.common.constant.TankDeployEnum;
import org.junit.Ignore;
import org.junit.Test;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
/**
* @author jaysunxiao
* @version 1.0
* @since 2021-01-20 16:36
*/
@Ignore
@SpringBootApplication
public class ApplicationTest {
static {
TankDeployEnum.initDefaultEnv();
}
// unity编辑器运行游戏
@Test
public void startApplication() {
var context = SpringApplication.run(ApplicationTest.class);
context.registerShutdownHook();
context.publishEvent(new AppStartEvent(context));
var tcpServer = new TcpServer(HostAndPort.valueOf(NetUtils.LOCAL_LOOPBACK_IP, Application.TCP_SERVER_PORT));
tcpServer.start();
ThreadUtils.sleep(Long.MAX_VALUE);
}
// 在浏览器中运行游戏
@Test
public void startWebsocketApplication() {
var context = SpringApplication.run(ApplicationTest.class);
context.registerShutdownHook();
context.publishEvent(new AppStartEvent(context));
var websocketServer = new WebsocketServer(HostAndPort.valueOf(NetUtils.LOCAL_LOOPBACK_IP, Application.WEBSOCKET_SERVER_PORT));
websocketServer.start();
ThreadUtils.sleep(Long.MAX_VALUE);
}
}