def test_present_zone_not_found(self): """ Assert that when you try and ensure present state for a record to a zone that doesn't exist it fails gracefully """ result = libcloud_dns.record_present("mail", "notatest.com", "A", "127.0.0.1", "test") self.assertFalse(result['result'])
def test_present_zone_not_found(self): ''' Assert that when you try and ensure present state for a record to a zone that doesn't exist it fails gracefully ''' result = libcloud_dns.record_present('mail', 'notatest.com', 'A', '127.0.0.1', 'test') self.assertFalse(result['result'])
def test_present_record_does_not_exist(): """ Try and create a record that already exists """ result = libcloud_dns.record_present("mail", "test.com", "A", "127.0.0.1", "test") assert result
def test_present_record_does_not_exist(self): ''' Try and create a record that already exists ''' result = libcloud_dns.record_present('mail', 'test.com', 'A', '127.0.0.1', 'test') self.assertTrue(result)
def test_present_record_does_not_exist(self): """ Try and create a record that already exists """ with patch.object(MockDnsModule, 'create_record') as create_patch: result = libcloud_dns.record_present("mail", "test.com", "A", "127.0.0.1", "test") self.assertTrue(result) create_patch.assert_called_with('mail', "zone1", "A", "127.0.0.1", "test")
def test_present_record_exists(self): """ Try and create a record that already exists """ with patch.object(MockDnsModule, 'create_record', MagicMock(return_value=True)) as create_patch: result = libcloud_dns.record_present("www", "test.com", "A", "127.0.0.1", "test") self.assertTrue(result) self.assertFalse(create_patch.called)
def test_present_record_exists(self): """ Try and create a record that already exists """ result = libcloud_dns.record_present( "www", "test.com", "A", "127.0.0.1", "test" ) self.assertTrue(result)