-
Notifications
You must be signed in to change notification settings - Fork 94
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
#318: update tests/command_download_*.py
- Loading branch information
Showing
9 changed files
with
207 additions
and
167 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
import os | ||
import unittest | ||
|
||
import tests.command_download | ||
|
||
|
||
class DownloadAnarchyGolfTest(unittest.TestCase): | ||
def snippet_call_download(self, *args, **kwargs): | ||
tests.command_download.snippet_call_download(self, *args, **kwargs) | ||
|
||
def test_call_download_anarchygolf_the_b_programming_language(self): | ||
self.snippet_call_download('http://golf.shinh.org/p.rb?The+B+Programming+Language', { | ||
'sample-3.out': 'fcbee46b3b888607abe720d598c75b17', | ||
'sample-2.in': '810d1189284ef048fc30f80ba7a22c6d', | ||
'sample-2.out': 'd4e62449830b2a986024d914b194f129', | ||
'sample-3.in': '7361217616875a437a3d6b41612dacbb', | ||
'sample-1.in': '3de90f793f16fad76da1527e09b8e528', | ||
'sample-1.out': 'f67b46b3c53308d8a6414b20092a2220', | ||
}) | ||
|
||
def test_call_download_anarchygolf_simple_language(self): | ||
self.snippet_call_download('http://golf.shinh.org/p.rb?simple+language', { | ||
'sample-3.out': 'c4211571f7a72cfad092b4dac7b15144', | ||
'sample-2.in': '10e10b554ef9bc07d56a514d2f6dab26', | ||
'sample-2.out': '48a24b70a0b376535542b996af517398', | ||
'sample-3.in': 'f201f3f6606e56f561f8452c9a60210b', | ||
'sample-1.in': '9b3c9ece5285bb1bcd1164cec8aa4243', | ||
'sample-1.out': '48a24b70a0b376535542b996af517398', | ||
}) | ||
|
||
def test_call_download_anarchygolf_hello_world(self): | ||
self.snippet_call_download('http://golf.shinh.org/p.rb?hello+world', { | ||
'sample-1.in': 'd41d8cd98f00b204e9800998ecf8427e', | ||
'sample-1.out': '746308829575e17c3331bbcb00c0898b', | ||
}) | ||
|
||
def test_call_download_anarchygolf_momomo(self): | ||
self.snippet_call_download('http://golf.shinh.org/p.rb?momomo', { | ||
'sample-1.in': '281e30fff54f179881c67c4d0564633e', | ||
'sample-1.out': 'd67adc236dd84fd82fb4598922d5cf32', | ||
}) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
import os | ||
import unittest | ||
|
||
import tests.command_download | ||
|
||
|
||
class DownloadCodeforcesTest(unittest.TestCase): | ||
def snippet_call_download(self, *args, **kwargs): | ||
tests.command_download.snippet_call_download(self, *args, **kwargs) | ||
|
||
def test_call_download_codeforces_problemset_700_b(self): | ||
self.snippet_call_download('http://codeforces.com/problemset/problem/700/B', { | ||
'sample-1.in': '1f38b0f27f4b0005e5409e834ff59166', | ||
'sample-2.out': '7c5aba41f53293b712fd86d08ed5b36e', | ||
'sample-2.in': '8a8c08b2901d4cfca41ad0703dfa718e', | ||
'sample-1.out': '9ae0ea9e3c9c6e1b9b6252c8395efdc1', | ||
}) | ||
|
||
def test_call_download_codeforces_contest_538_h(self): | ||
self.snippet_call_download('http://codeforces.com/contest/538/problem/H', { | ||
'sample-1.in': 'c8483ca371b414e911ccbecf239beed6', | ||
'sample-2.out': '87a45b8adc25c7bf37eaa25b530de79c', | ||
'sample-2.in': 'afa0c8b2336e798b5f29a200a18432d1', | ||
'sample-1.out': '166a3645f3c31595526624ce003b41fc', | ||
}) | ||
|
||
def test_call_download_codeforces_gym_101021_a(self): | ||
self.snippet_call_download('http://codeforces.com/gym/101021/problem/A', { | ||
'sample-1.in': '4dfb06c20503a3f0dbe0fb29dd52d304', | ||
'sample-2.out': '614a0c8025f8bbcf46b8ba0ff9fd61d1', | ||
'sample-2.in': 'dcfe1f14721a0e141c2e31adeebe7a53', | ||
'sample-1.out': '45778e8e2d350841cf68711ece5cb9e1', | ||
}) | ||
|
||
def test_call_download_codeforces_contest_1080_a(self): | ||
self.snippet_call_download('https://codeforces.com/contest/1080/problem/A', { | ||
'sample-1.in': '54d3363c78b5001b1a6f382f47e08b60', | ||
'sample-1.out': '31d30eea8d0968d6458e0ad0027c9f80', | ||
'sample-2.in': 'd33b56dd139d846a5df6eab7cfaf83e8', | ||
'sample-2.out': 'bda81ba88c634b46394ead43aff31ad5', | ||
}) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
import os | ||
import unittest | ||
|
||
import tests.command_download | ||
|
||
|
||
class DownloadCSAcademyTest(unittest.TestCase): | ||
def snippet_call_download(self, *args, **kwargs): | ||
tests.command_download.snippet_call_download(self, *args, **kwargs) | ||
|
||
def test_call_download_csacademy_k_swap(self): | ||
self.snippet_call_download('https://csacademy.com/contest/round-39/task/k-swap/', { | ||
'sample-1.in': '2ce34946200aa66529dbc96b411e2450', | ||
'sample-1.out': '78c6d00be497cd50311743df6c8de3ea', | ||
'sample-2.in': '65625b1f27b94fc2c5b6532a18f93070', | ||
'sample-2.out': '16324a714d2c6f4f9feefe65f0784094', | ||
'sample-3.in': '8e92bd4fb348c40f78a13c56a1f5a937', | ||
'sample-3.out': 'c31f209a3d0412a16c4b93e4ee060b54', | ||
}) | ||
|
||
def test_call_download_csacademy_unfair_game(self): | ||
self.snippet_call_download('https://csacademy.com/contest/archive/task/unfair_game/', { | ||
'sample-1.in': '57cce69a08e8dd833a9f9aa3b6d13a40', | ||
'sample-1.out': '367764329430db34be92fd14a7a770ee', | ||
'sample-2.in': '46b87e796b61eb9b8970e83c93a02809', | ||
'sample-2.out': 'eb844645e8e61de0a4cf4b991e65e63e', | ||
}) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
import os | ||
import unittest | ||
|
||
import tests.command_download | ||
|
||
|
||
class DownloadPOJTest(unittest.TestCase): | ||
def snippet_call_download(self, *args, **kwargs): | ||
tests.command_download.snippet_call_download(self, *args, **kwargs) | ||
|
||
def test_call_download_poj_1000(self): | ||
self.snippet_call_download( | ||
'http://poj.org/problem?id=1000', [ | ||
{ | ||
"name": "sample", | ||
"input": "1 2\r\n", | ||
"output": "3\r\n" | ||
}, | ||
], type='json') | ||
|
||
def test_call_download_poj_2104(self): | ||
self.snippet_call_download( | ||
'http://poj.org/problem?id=2104', [ | ||
{ | ||
"name": "sample", | ||
"input": "7 3\r\n1 5 2 6 3 7 4\r\n2 5 3\r\n4 4 1\r\n1 7 3\r\n", | ||
"output": "5\r\n6\r\n3\r\n" | ||
}, | ||
], type='json') | ||
|
||
def test_call_download_poj_3150(self): | ||
self.snippet_call_download( | ||
'http://poj.org/problem?id=3150', [ | ||
{ | ||
"input": "5 3 1 1\r\n1 2 2 1 2\r\n", | ||
"output": "2 2 2 2 1\r\n" | ||
}, | ||
{ | ||
"input": "5 3 1 10\r\n1 2 2 1 2\r\n", | ||
"output": "2 0 0 2 2\r\n" | ||
}, | ||
], type='json') |
Oops, something went wrong.