improve handling of wrong urls

- adapt tests
- improve messages for files
- show red box camera
This commit is contained in:
scito
2022-12-31 11:32:07 +01:00
parent 4c0bb8dc61
commit f731530f57
5 changed files with 177 additions and 90 deletions

View File

@@ -27,7 +27,7 @@ from contextlib import redirect_stdout
import extract_otp_secrets
from utils import (Capturing, read_csv, read_file_to_str, read_json,
remove_dir_with_files, remove_file)
remove_dir_with_files, remove_file, count_files_in_dir)
class TestExtract(unittest.TestCase):
@@ -166,6 +166,9 @@ Type: totp
self.assertTrue(os.path.isfile('testout/qr/2-piraspberrypi.png'))
self.assertTrue(os.path.isfile('testout/qr/3-piraspberrypi.png'))
self.assertTrue(os.path.isfile('testout/qr/4-piraspberrypi-raspberrypi.png'))
self.assertTrue(os.path.isfile('testout/qr/5-hotpdemo.png'))
self.assertTrue(os.path.isfile('testout/qr/6-encodingäÄéÉdemo.png'))
self.assertEqual(count_files_in_dir('testout/qr'), 6)
def test_extract_verbose(self) -> None:
if sys.implementation.name == 'pypy': self.skipTest("Encoding problems in verbose mode in pypy.")