mirror of
https://github.com/magefree/mage.git
synced 2025-12-23 03:51:58 -08:00
76 lines
1.9 KiB
Java
76 lines
1.9 KiB
Java
package mage.client.game;
|
|
|
|
import mage.client.MageFrame;
|
|
import mage.client.components.MageComponents;
|
|
import mage.client.components.MageUI;
|
|
import org.apache.log4j.Logger;
|
|
import org.junit.Ignore;
|
|
|
|
import javax.swing.*;
|
|
|
|
/**
|
|
* @author ayratn
|
|
*/
|
|
@Ignore
|
|
public class StartMultiGamesTest {
|
|
|
|
private static final Logger logger = Logger.getLogger(StartMultiGamesTest.class);
|
|
|
|
/**
|
|
* Amount of games to be started from this test.
|
|
*/
|
|
private static final Integer GAME_START_COUNT = 10;
|
|
|
|
private MageFrame frame = null;
|
|
private Object sync = new Object();
|
|
private MageUI ui;
|
|
|
|
public static void main(String[] argv) throws Exception {
|
|
new StartMultiGamesTest().startMultiGames();
|
|
}
|
|
|
|
//@Test
|
|
public void testEmpty() {
|
|
|
|
}
|
|
|
|
public void startMultiGames() throws Exception {
|
|
for (int i = 0; i < GAME_START_COUNT; i++) {
|
|
logger.info("Starting game");
|
|
startGame();
|
|
}
|
|
}
|
|
|
|
private void startGame() throws Exception {
|
|
frame = null;
|
|
Thread.setDefaultUncaughtExceptionHandler((t, e) -> logger.fatal(null, e));
|
|
SwingUtilities.invokeLater(() -> {
|
|
synchronized (sync) {
|
|
frame = new MageFrame();
|
|
frame.setVisible(true);
|
|
sync.notifyAll();
|
|
}
|
|
});
|
|
synchronized (sync) {
|
|
if (frame == null) {
|
|
sync.wait();
|
|
}
|
|
ui = MageFrame.getUI();
|
|
ui.doClick(MageComponents.TABLES_MENU_BUTTON);
|
|
ui.doClick(MageComponents.NEW_GAME_BUTTON);
|
|
ui.doClick(MageComponents.NEW_TABLE_OK_BUTTON, 500);
|
|
ui.doClick(MageComponents.TABLE_WAITING_START_BUTTON);
|
|
}
|
|
|
|
sleep(3000);
|
|
frame.setVisible(false);
|
|
}
|
|
|
|
private void sleep(int ms) {
|
|
try {
|
|
Thread.sleep(ms);
|
|
} catch (Exception e) {
|
|
e.printStackTrace();
|
|
}
|
|
}
|
|
}
|