Merge "Add integration test cases for freezerclient.action"

This commit is contained in:
Zuul 2018-11-14 01:49:50 +00:00 committed by Gerrit Code Review
commit a3a85f09bf
2 changed files with 52 additions and 2 deletions

View File

@ -75,7 +75,7 @@ class BaseFreezerTest(test.BaseTestCase):
self.assertEqual(0, proc.returncode, self.assertEqual(0, proc.returncode,
fail_message + " Output: {0}. " fail_message + " Output: {0}. "
"Error: {1}".format(out, err)) "Error: {1}".format(out, err))
# self.assertEqual('', err, # self.assertEqual('', err,
# fail_message + " Output: {0}. " # fail_message + " Output: {0}. "
# "Error: {1}".format(out, err)) # "Error: {1}".format(out, err))
return out, err

View File

@ -11,9 +11,11 @@
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the # WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
# License for the specific language governing permissions and limitations # License for the specific language governing permissions and limitations
# under the License. # under the License.
from freezer_tempest_plugin.tests.freezerclient import base import os
from tempest.lib import decorators from tempest.lib import decorators
from freezer_tempest_plugin.tests.freezerclient import base
class TestFreezerCmdAction(base.BaseFreezerTest): class TestFreezerCmdAction(base.BaseFreezerTest):
def __init__(self, *args, **kwargs): def __init__(self, *args, **kwargs):
@ -21,13 +23,61 @@ class TestFreezerCmdAction(base.BaseFreezerTest):
def setUp(self): def setUp(self):
super(TestFreezerCmdAction, self).setUp() super(TestFreezerCmdAction, self).setUp()
test_action_id = '{\
"freezer_action":\
{\
"action": "backup",\
"mode": "fs",\
"src_file": "/tmp/source",\
"backup_name": "my-first-backup",\
"container": "/tmp/backup/",\
"storage": "local"\
},\
"max_retries": 3,\
"max_retries_interval": 60\
}'
self.environ = super(TestFreezerCmdAction, self).get_environ() self.environ = super(TestFreezerCmdAction, self).get_environ()
self.filename = '/tmp/test_action.json'
if os.path.exists(self.filename):
os.remove(self.filename)
os.mknod(self.filename)
fp = open(self.filename, 'w')
fp.write(test_action_id)
def tearDown(self): def tearDown(self):
super(TestFreezerCmdAction, self).tearDown() super(TestFreezerCmdAction, self).tearDown()
@decorators.attr(type="gate")
def test_freezer_cmd_actioncreate(self):
args = ['freezer', 'action-create', '--file',
self.filename]
self.run_subprocess(args, "Create a new action")
@decorators.attr(type="gate") @decorators.attr(type="gate")
def test_freezer_cmd_actionlist(self): def test_freezer_cmd_actionlist(self):
args = ['freezer', 'action-list'] args = ['freezer', 'action-list']
self.run_subprocess(args, "List all actions") self.run_subprocess(args, "List all actions")
@decorators.attr(type="gate")
def test_freezer_cmd_actionshow(self):
args = ['freezer', 'action-create', '--file',
self.filename]
out, err = self.run_subprocess(args, "Create a new action")
action_id = err.split(' ')[1]
args = ['freezer', 'action-show', action_id]
self.run_subprocess(args, "show a action")
@decorators.attr(type="gate")
def test_freezer_cmd_actiondelete(self):
args = ['freezer', 'action-create', '--file',
self.filename]
out, err = self.run_subprocess(args, "Create a new action")
action_id = err.split(' ')[1]
args = ['freezer', 'action-delete', action_id]
self.run_subprocess(args, "delete a action")