Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[WIP] Add tests for EC2ImageUploader #78

Open
wants to merge 1 commit into
base: develop
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
14 changes: 9 additions & 5 deletions fedimg/services/ec2/ec2imguploader.py
Expand Up @@ -23,6 +23,7 @@
_log = logging.getLogger(__name__)

import re
import time

import fedimg.messenger

Expand Down Expand Up @@ -267,12 +268,15 @@ def clean_up(self, image_id, delete_snapshot=True, force=False):
if self.volume:
self._connect().destroy_volume(self.volume)

self._connect().deregister_image(
image_id,
delete_snapshot=delete_snapshot
)
# self._connect().deregister_image(
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please delete this code rather than leaving it commented out. We can always find it in git's history.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yes! I added the WIP tag to this PR. I need to do a few more changes to this PR

# image_id,
# delete_snapshot=delete_snapshot
# )

node_image = self._connect().get_image(image_id=image_id)
is_node_image_deleted = self._connect().delete_image(node_image)

return True
return is_node_image_deleted

def set_image_virt_type(self, virt_type):
"""
Expand Down
Empty file added tests/services/__init__.py
Empty file.
43 changes: 43 additions & 0 deletions tests/services/test_ec2base.py
@@ -0,0 +1,43 @@
# This file is part of fedimg.
# Copyright (C) 2018 Red Hat, Inc.
#
# fedimg is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as
# published by the Free Software Foundation, either version 3 of the
# License, or (at your option) any later version.
#
# fedimg is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
# Affero General Public License for more details.
#
# You should have received a copy of the GNU Affero General Public
# License along with fedimg; if not, see http://www.gnu.org/licenses,
# or write to the Free Software Foundation, Inc.,
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
#
# Authors: Sayan Chowdhury <sayanchowdhury@fedoraproject.org>

import unittest

from fedimg.services.ec2.ec2base import EC2Base
from libcloud.compute.drivers.ec2 import EC2NodeDriver


class TestEC2Base(unittest.TestCase):

def setUp(self):
self.ec2base_obj = EC2Base()
setattr(self.ec2base_obj, 'access_key', 'ABCDEFGHIJKLMNO123456789')
setattr(self.ec2base_obj, 'secret_key', 'THISISASECRETKEYWITH0987')
setattr(self.ec2base_obj, 'region', 'us-east-1')

def test_connect(self):
driver = self.ec2base_obj._connect()

self.assertTrue(isinstance(driver, EC2NodeDriver))

def test_set_region(self):
self.ec2base_obj.set_region('eu-east-1')
self.assertEqual(self.ec2base_obj.region, 'eu-east-1')