def test_token_update_wrong_answer(self): token = Token('submission') token.human_captcha = {'question': 'XXX','answer': 1} token.update({'human_captcha_answer': 0}) # verify that the challenge is changed self.assertNotEqual(token.human_captcha['question'], 'XXX')
def test_token_update_right_answer(self): token = Token('submission') token.human_captcha = {'question': '1 + 0','answer': 1} token.proof_of_work = False # validate with right value: OK token.update({'human_captcha_answer': 1}) # verify that the challenge is marked as solved self.assertFalse(token.human_captcha)
def test_token_usage_limit(self): token = Token('submission') token.solve() token.human_captcha = {'question': 'XXX', 'answer': 1, 'solved': False} # validate with right value: OK token.update({'human_captcha_answer': 1}) for i in range(0, token.MAX_USES-1): token.use() # validate with right value but with no additional # attempts available: FAIL self.assertRaises(errors.TokenFailure, token.use)
def test_token_uses_limit(self): token = Token('submission') token.human_captcha = False token.proof_of_work = False # validate with right value: OK token.update({'human_captcha_answer': 1}) for i in range(0, token.MAX_USES): token.use() # validate with right value but with no additional # attempts available: FAIL self.assertRaises( errors.TokenFailure, token.use )
def test_token_update_right_answer(self): token = Token('submission') token.solve() token.human_captcha = {'question': '1 + 0', 'answer': 1, 'solved': False} # validate with right value: OK self.assertTrue(token.update({'human_captcha_answer': 1})) # verify that the challenge is marked as solved self.assertTrue(token.human_captcha['solved'])
def test_proof_of_work_right_answer(self): token = Token('submission') token.solve() # Note, this solution works with two '00' at the end, if the # difficulty changes, also this dummy value has to. token.proof_of_work = {'question': "7GJ4Sl37AEnP10Zk9p7q", 'solved': False} # validate with right value: OK self.assertTrue(token.update({'proof_of_work_answer': 26})) token.use()
def test_proof_of_work_wrong_answer(self): token = Token(1, 'submission') token.solve() # Note, this solution works with two '00' at the end, if the # difficulty changes, also this dummy value has to. token.proof_of_work = { 'question': "7GJ4Sl37AEnP10Zk9p7q", 'solved': False } self.assertFalse(token.update({'proof_of_work_answer': 0})) # validate with right value: OK self.assertRaises(errors.TokenFailure, token.use)
def test_token_update_right_answer(self): token = Token(1, 'submission') token.solve() token.human_captcha = { 'question': '1 + 0', 'answer': 1, 'solved': False } # validate with right value: OK self.assertTrue(token.update({'human_captcha_answer': 1})) # verify that the challenge is marked as solved self.assertTrue(token.human_captcha['solved'])
def test_proof_of_work_right_answer(self): token = Token('submission') difficulty = { 'human_captcha': False, 'proof_of_work': False } token.generate_token_challenge(difficulty) token = TokenList.get(token.id) # Note, this solution works with two '00' at the end, if the # difficulty changes, also this dummy value has to. token.proof_of_work = {'question': "7GJ4Sl37AEnP10Zk9p7q"} # validate with right value: OK self.assertTrue(token.update({'proof_of_work_answer': 0}))
def test_proof_of_work_right_answer(self): token = Token('submission') difficulty = { 'human_captcha': False, 'graph_captcha': False, 'proof_of_work': False } token.generate_token_challenge(difficulty) token = TokenList.get(token.id) # Note, this solution works with two '00' at the end, if the # difficulty changes, also this dummy value has to. token.proof_of_work = { 'question': "7GJ4Sl37AEnP10Zk9p7q" } # validate with right value: OK self.assertTrue(token.update({'proof_of_work_answer': 0}))
def test_proof_of_work_right_answer(self): # This is at the beginning event.EventTrackQueue.reset() token = Token('submission') difficulty = { 'human_captcha': False, 'graph_captcha': False, 'proof_of_work': False } token.generate_token_challenge(difficulty) token = TokenList.get(token.id) # Note, this solution works with two '00' at the end, if the # difficulty changes, also this dummy value has to. token.proof_of_work = { 'question': "7GJ4Sl37AEnP10Zk9p7q" } # validate with right value: OK self.assertFalse(token.update({'proof_of_work_answer': 26})) # verify that the challenge is marked as solved self.assertFalse(token.proof_of_work)
def test_proof_of_work_right_answer(self): # This is at the beginning event.EventTrackQueue.reset() token = Token('submission') difficulty = { 'human_captcha': False, 'graph_captcha': False, 'proof_of_work': False } token.generate_token_challenge(difficulty) token = TokenList.get(token.id) # Note, this solution works with two '00' at the end, if the # difficulty changes, also this dummy value has to. token.proof_of_work = {'question': "7GJ4Sl37AEnP10Zk9p7q"} # validate with right value: OK self.assertFalse(token.update({'proof_of_work_answer': 26})) # verify that the challenge is marked as solved self.assertFalse(token.proof_of_work)