diff --git a/scripts/check_server/app.js b/scripts/check_server/app.js index c503519..213ec24 100644 --- a/scripts/check_server/app.js +++ b/scripts/check_server/app.js @@ -6,6 +6,7 @@ const urls = { 'service': 'https://service-z2-test.cebg.games', 'gamelog': 'https://gamelog-z2-test.cebg.games', 'mail': 'https://gamemail-z2-test.cebg.games', + 'stat': 'https://stat-z2-test.cebg.games', 'game2006api': 'https://game2006api-z2-test.cebg.games', 'relation': 'ws://relation-z2-test.cebg.games/friend/websocket', 'game2006': 'ws://game2006-z2-test.cebg.games', diff --git a/scripts/check_server/testcase.js b/scripts/check_server/testcase.js index d424b88..b2658b5 100644 --- a/scripts/check_server/testcase.js +++ b/scripts/check_server/testcase.js @@ -52,6 +52,7 @@ class TestCase { await this.step8(); await this.step9(); await this.step10(); + await this.step11(); } async step1() { @@ -173,6 +174,16 @@ class TestCase { console.log('game2006-n1 getNodeId@Ops', String(err), response); } + async step11() { + const {err, response} = await httpGet( + this.urls['stat'] + '/webapp/index.php', + { + 'c': 'Ops', + 'a': 'selfChecking', + }); + console.log('stat selfChecking@Ops', String(err), response); + } + } module.exports = TestCase;