Skip to content

Commit

Permalink
update tests
Browse files Browse the repository at this point in the history
  • Loading branch information
wardi committed Jul 8, 2024
1 parent 55c0c18 commit e27e8c5
Showing 1 changed file with 20 additions and 10 deletions.
30 changes: 20 additions & 10 deletions ckanapi/tests/test_cli_action.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,8 @@ def test_pretty(self):
'--output-jsonl': False,
'--input-json': False,
'--input': None,
'--insecure': False
'--insecure': False,
'--profile': None,
})
self.assertEqual(b''.join(rval), b"""
{
Expand All @@ -58,7 +59,8 @@ def test_compact(self):
'--output-jsonl': False,
'--input-json': False,
'--input': None,
'--insecure': False
'--insecure': False,
'--profile': None,
})
self.assertEqual(b''.join(rval), b'["right","on"]\n')

Expand All @@ -71,7 +73,8 @@ def test_compact_fallback(self):
'--output-jsonl': True,
'--input-json': False,
'--input': None,
'--insecure': False
'--insecure': False,
'--profile': None,
})
self.assertEqual(b''.join(rval), b'{"oh":["right","on"]}\n')

Expand All @@ -84,7 +87,8 @@ def test_jsonl(self):
'--output-jsonl': True,
'--input-json': False,
'--input': None,
'--insecure': False
'--insecure': False,
'--profile': None,
})
self.assertEqual(b''.join(rval), b'99\n98\n97\n')

Expand All @@ -97,7 +101,8 @@ def test_stdin_json(self):
'--output-jsonl': False,
'--input-json': True,
'--input': None,
'--insecure': False
'--insecure': False,
'--profile': None,
},
stdin=BytesIO(b'{"who":["just","me"]}'),
)
Expand All @@ -112,7 +117,8 @@ def test_key_json(self):
'--output-jsonl': False,
'--input-json': False,
'--input': None,
'--insecure': False
'--insecure': False,
'--profile': None,
})
self.assertEqual(b''.join(rval), b'"yeah"\n')

Expand All @@ -125,7 +131,8 @@ def test_bad_arg(self):
'--output-jsonl': False,
'--input-json': False,
'--input': None,
'--insecure': False
'--insecure': False,
'--profile': None,
})
self.assertRaises(CLIError, list, rval)

Expand All @@ -138,7 +145,8 @@ def test_bad_key_json(self):
'--output-jsonl': False,
'--input-json': False,
'--input': None,
'--insecure': False
'--insecure': False,
'--profile': None,
})
self.assertRaises(CLIError, list, rval)

Expand All @@ -151,7 +159,8 @@ def test_key_string_or_json(self):
'--output-jsonl': False,
'--input-json': False,
'--input': None,
'--insecure': False
'--insecure': False,
'--profile': None,
})
self.assertEqual(b''.join(rval), b'"yeah"\n')

Expand All @@ -164,6 +173,7 @@ def test_key_json_or_string(self):
'--output-jsonl': False,
'--input-json': False,
'--input': None,
'--insecure': False
'--insecure': False,
'--profile': None,
})
self.assertEqual(b''.join(rval), b'"yeah"\n')

0 comments on commit e27e8c5

Please sign in to comment.