Exemplo n.º 1
0
 def test_list_filtered_source_data(self):
     """Testing the list source with filter by source_type."""
     source_out = StringIO()
     url = get_server_location() + SOURCE_URI
     source_entry = {
         'id': 1,
         'name': 'source1',
         'source_type': 'network',
         'hosts': ['1.2.3.4'],
         'credentials': [{
             'id': 1,
             'name': 'cred1'
         }]
     }
     results = [source_entry]
     data = {'count': 1, 'results': results}
     with requests_mock.Mocker() as mocker:
         mocker.get(url, status_code=200, json=data)
         nlc = SourceListCommand(SUBPARSER)
         args = Namespace(type='network')
         with redirect_stdout(source_out):
             nlc.main(args)
             expected = '[{"credentials":[{"id":1,"name":"cred1"}],' \
                 '"hosts":["1.2.3.4"],"id":1,"name":"source1",'\
                 '"source_type":"network"}]'
             self.assertEqual(
                 source_out.getvalue().replace('\n',
                                               '').replace(' ', '').strip(),
                 expected)
Exemplo n.º 2
0
 def test_list_source_data(self):
     """Testing the list source command successfully with stubbed data."""
     source_out = StringIO()
     url = BASE_URL + SOURCE_URI
     credential_entry = {
         'id': 1,
         'name': 'source1',
         'hosts': ['1.2.3.4'],
         'credentials': [{
             'id': 1,
             'name': 'cred1'
         }]
     }
     data = [credential_entry]
     with requests_mock.Mocker() as mocker:
         mocker.get(url, status_code=200, json=data)
         nlc = SourceListCommand(SUBPARSER)
         args = Namespace()
         with redirect_stdout(source_out):
             nlc.main(args)
             expected = '[{"credentials":[{"id":1,"name":"cred1"}],' \
                 '"hosts":["1.2.3.4"],"id":1,"name":"source1"}]'
             self.assertEqual(
                 source_out.getvalue().replace('\n',
                                               '').replace(' ', '').strip(),
                 expected)
Exemplo n.º 3
0
 def test_list_source_data(self, b_input):
     """Testing the list source command successfully with stubbed data."""
     source_out = StringIO()
     url = get_server_location() + SOURCE_URI
     source_entry = {
         'id': 1,
         'name': 'source1',
         'hosts': ['1.2.3.4'],
         'credentials': [{
             'id': 1,
             'name': 'cred1'
         }]
     }
     results = [source_entry]
     next_link = 'http://127.0.0.1:8000/api/v1/sources/?page=2'
     data = {'count': 1, 'next': next_link, 'results': results}
     data2 = {'count': 1, 'next': None, 'results': results}
     with requests_mock.Mocker() as mocker:
         mocker.get(url, status_code=200, json=data)
         mocker.get(next_link, status_code=200, json=data2)
         nlc = SourceListCommand(SUBPARSER)
         args = Namespace()
         with redirect_stdout(source_out):
             nlc.main(args)
             expected = '[{"credentials":[{"id":1,"name":"cred1"}],' \
                 '"hosts":["1.2.3.4"],"id":1,"name":"source1"}]'
             self.assertEqual(
                 source_out.getvalue().replace('\n',
                                               '').replace(' ', '').strip(),
                 expected + expected)
             b_input.assert_called_with(ANY)
Exemplo n.º 4
0
 def test_list_source_empty(self):
     """Testing the list source command successfully with empty data."""
     source_out = StringIO()
     url = BASE_URL + SOURCE_URI
     with requests_mock.Mocker() as mocker:
         mocker.get(url, status_code=200, json=[])
         nlc = SourceListCommand(SUBPARSER)
         args = Namespace()
         with redirect_stdout(source_out):
             nlc.main(args)
             self.assertEqual(source_out.getvalue(),
                              'No sources exist yet.\n')
Exemplo n.º 5
0
 def test_list_source_internal_err(self):
     """Testing the list source command with an internal error."""
     source_out = StringIO()
     url = BASE_URL + SOURCE_URI
     with requests_mock.Mocker() as mocker:
         mocker.get(url, status_code=500, json={'error': ['Server Error']})
         nlc = SourceListCommand(SUBPARSER)
         args = Namespace()
         with self.assertRaises(SystemExit):
             with redirect_stdout(source_out):
                 nlc.main(args)
                 self.assertEqual(source_out.getvalue(), 'Server Error')
Exemplo n.º 6
0
 def test_list_source_ssl_err(self):
     """Testing the list source command with a connection error."""
     source_out = StringIO()
     url = BASE_URL + SOURCE_URI
     with requests_mock.Mocker() as mocker:
         mocker.get(url, exc=requests.exceptions.SSLError)
         nlc = SourceListCommand(SUBPARSER)
         args = Namespace()
         with self.assertRaises(SystemExit):
             with redirect_stdout(source_out):
                 nlc.main(args)
                 self.assertEqual(source_out.getvalue(), SSL_ERROR_MSG)
Exemplo n.º 7
0
 def test_list_source_conn_err(self):
     """Testing the list source command with a connection error."""
     source_out = StringIO()
     url = get_server_location() + SOURCE_URI
     with requests_mock.Mocker() as mocker:
         mocker.get(url, exc=requests.exceptions.ConnectTimeout)
         nlc = SourceListCommand(SUBPARSER)
         args = Namespace()
         with self.assertRaises(SystemExit):
             with redirect_stdout(source_out):
                 nlc.main(args)
                 self.assertEqual(source_out.getvalue(),
                                  CONNECTION_ERROR_MSG)