Files
storlets/tests/functional/python/test_execdep_storlet.py
sudhir_agarwal 01ed5a11f2 Fixed order of arguments in assertEqual
Some tests used incorrect order of arguments in
assertEqual(observed, expected). The correct order expected
by testtool is assertEqual(expected, observed).

Change-Id: Icd94255bacef672abc7cd1da1d4e2e1cb1a13088
2017-07-21 16:04:09 +05:30

57 lines
1.9 KiB
Python

# Copyright (c) 2010-2016 OpenStack Foundation
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
# implied.
# See the License for the specific language governing permissions and
# limitations under the License.
from swiftclient import client
from tests.functional.python import StorletPythonFunctionalTest
import unittest
class TestExecDepStorlet(StorletPythonFunctionalTest):
def setUp(self):
self.storlet_log = 'execdepstorlet.log'
self.additional_headers = {}
super(TestExecDepStorlet, self).setUp(
storlet_dir='exec_dep',
storlet_name='exec_dep.py',
storlet_main='exec_dep.ExecDepStorlet',
storlet_file='source.txt',
dep_names=['get42.sh'],
headers={})
def test_execdep(self):
headers = {'X-Run-Storlet': self.storlet_name}
headers.update(self.additional_headers)
resp = dict()
resp_headers, get_text = client.get_object(
self.url, self.token,
self.container,
self.storlet_file,
response_dict=resp,
headers=headers)
self.assertIn('x-object-meta-depend-ret-code', resp_headers)
self.assertEqual('42', resp_headers['x-object-meta-depend-ret-code'])
self.assertEqual(200, resp['status'])
class TestExecDepStorletOnProxy(TestExecDepStorlet):
def setUp(self):
super(TestExecDepStorletOnProxy, self).setUp()
self.additional_headers = {'X-Storlet-Run-On-Proxy': ''}
if __name__ == '__main__':
unittest.main()