Example #1
0
    def test_that_when_deleting_replication_succeeds_the_delete_replication_method_returns_true(self):
        '''
        tests True bucket attribute deleted.
        '''
        result = boto_s3_bucket.delete_replication(Bucket='mybucket',
                                        **conn_parameters)

        self.assertTrue(result['deleted'])
Example #2
0
    def test_that_when_deleting_replication_succeeds_the_delete_replication_method_returns_true(self):
        '''
        tests True bucket attribute deleted.
        '''
        result = boto_s3_bucket.delete_replication(Bucket='mybucket',
                                        **conn_parameters)

        self.assertTrue(result['deleted'])
Example #3
0
    def test_that_when_deleting_replication_succeeds_the_delete_replication_method_returns_true(
        self, ):
        """
        tests True bucket attribute deleted.
        """
        result = boto_s3_bucket.delete_replication(Bucket="mybucket",
                                                   **conn_parameters)

        self.assertTrue(result["deleted"])
Example #4
0
 def test_that_when_deleting_replication_fails_the_delete_replication_method_returns_error(self):
     '''
     tests False bucket attribute not deleted.
     '''
     self.conn.delete_bucket_replication.side_effect = ClientError(error_content,
                    'delete_bucket_replication')
     result = boto_s3_bucket.delete_replication(Bucket='mybucket',
                                     **conn_parameters)
     self.assertEqual(result.get('error', {}).get('message'),
                     error_message.format('delete_bucket_replication'))
Example #5
0
 def test_that_when_deleting_replication_fails_the_delete_replication_method_returns_error(self):
     '''
     tests False bucket attribute not deleted.
     '''
     self.conn.delete_bucket_replication.side_effect = ClientError(error_content,
                    'delete_bucket_replication')
     result = boto_s3_bucket.delete_replication(Bucket='mybucket',
                                     **conn_parameters)
     self.assertEqual(result.get('error', {}).get('message'),
                     error_message.format('delete_bucket_replication'))
 def test_that_when_deleting_replication_fails_the_delete_replication_method_returns_error(
     self, ):
     """
     tests False bucket attribute not deleted.
     """
     self.conn.delete_bucket_replication.side_effect = ClientError(
         error_content, "delete_bucket_replication")
     result = boto_s3_bucket.delete_replication(Bucket="mybucket",
                                                **conn_parameters)
     assert result.get("error", {}).get("message") == error_message.format(
         "delete_bucket_replication")
def test_that_when_deleting_replication_fails_the_delete_replication_method_returns_error(
        boto_conn):
    '''
    tests False bucket attribute not deleted.
    '''
    boto_conn.delete_bucket_replication.side_effect = exceptions.ClientError(
        error_content, 'delete_bucket_replication')
    result = boto_s3_bucket.delete_replication(Bucket='mybucket',
                                               **pytest.conn_parameters)
    assert result.get(
        'error',
        {}).get('message') == error_message.format('delete_bucket_replication')