Repository: ambari Updated Branches: refs/heads/trunk 0ec758ae6 -> a13a6e901
AMBARI-5759. Add unittests for oozie service check (aonishuk) Project: http://git-wip-us.apache.org/repos/asf/ambari/repo Commit: http://git-wip-us.apache.org/repos/asf/ambari/commit/a13a6e90 Tree: http://git-wip-us.apache.org/repos/asf/ambari/tree/a13a6e90 Diff: http://git-wip-us.apache.org/repos/asf/ambari/diff/a13a6e90 Branch: refs/heads/trunk Commit: a13a6e9014957487d57c385909df6f67d3f2492a Parents: 0ec758a Author: Andrew Onishuk <[email protected]> Authored: Wed May 14 19:11:21 2014 +0300 Committer: Andrew Onishuk <[email protected]> Committed: Wed May 14 19:11:21 2014 +0300 ---------------------------------------------------------------------- .../stacks/1.3.2/OOZIE/test_service_check.py | 56 ++++++++++++++++++++ .../stacks/2.0.6/OOZIE/test_service_check.py | 56 ++++++++++++++++++++ 2 files changed, 112 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/ambari/blob/a13a6e90/ambari-server/src/test/python/stacks/1.3.2/OOZIE/test_service_check.py ---------------------------------------------------------------------- diff --git a/ambari-server/src/test/python/stacks/1.3.2/OOZIE/test_service_check.py b/ambari-server/src/test/python/stacks/1.3.2/OOZIE/test_service_check.py new file mode 100644 index 0000000..9c863e0 --- /dev/null +++ b/ambari-server/src/test/python/stacks/1.3.2/OOZIE/test_service_check.py @@ -0,0 +1,56 @@ +#!/usr/bin/env python + +''' +Licensed to the Apache Software Foundation (ASF) under one +or more contributor license agreements. See the NOTICE file +distributed with this work for additional information +regarding copyright ownership. The ASF licenses this file +to you 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. +''' + +import resource_management.libraries.functions +from mock.mock import MagicMock, call, patch +from stacks.utils.RMFTestCase import * + +class TestServiceCheck(RMFTestCase): + def test_service_check_default(self): + self.executeScript("1.3.2/services/OOZIE/package/scripts/service_check.py", + classname="OozieServiceCheck", + command="service_check", + config_file="default.json" + ) + + self.assert_service_check() + self.assertNoMoreResources() + + def test_service_check_secured(self): + self.executeScript("1.3.2/services/OOZIE/package/scripts/service_check.py", + classname="OozieServiceCheck", + command="service_check", + config_file="default.json" + ) + + self.assert_service_check() + self.assertNoMoreResources() + + def assert_service_check(self): + self.assertResourceCalled('File', '/tmp/oozieSmoke.sh', + content = StaticFile('oozieSmoke.sh'), + mode = 0755, + ) + self.assertResourceCalled('Execute', '/tmp/oozieSmoke.sh', + logoutput = True, + tries = 3, + command = 'sh /tmp/oozieSmoke.sh /etc/oozie/conf /etc/hadoop/conf ambari-qa False', + try_sleep = 5, + ) http://git-wip-us.apache.org/repos/asf/ambari/blob/a13a6e90/ambari-server/src/test/python/stacks/2.0.6/OOZIE/test_service_check.py ---------------------------------------------------------------------- diff --git a/ambari-server/src/test/python/stacks/2.0.6/OOZIE/test_service_check.py b/ambari-server/src/test/python/stacks/2.0.6/OOZIE/test_service_check.py new file mode 100644 index 0000000..5c09a62 --- /dev/null +++ b/ambari-server/src/test/python/stacks/2.0.6/OOZIE/test_service_check.py @@ -0,0 +1,56 @@ +#!/usr/bin/env python + +''' +Licensed to the Apache Software Foundation (ASF) under one +or more contributor license agreements. See the NOTICE file +distributed with this work for additional information +regarding copyright ownership. The ASF licenses this file +to you 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. +''' + +import resource_management.libraries.functions +from mock.mock import MagicMock, call, patch +from stacks.utils.RMFTestCase import * + +class TestServiceCheck(RMFTestCase): + def test_service_check_default(self): + self.executeScript("2.0.6/services/OOZIE/package/scripts/service_check.py", + classname="OozieServiceCheck", + command="service_check", + config_file="default.json" + ) + + self.assert_service_check() + self.assertNoMoreResources() + + def test_service_check_secured(self): + self.executeScript("2.0.6/services/OOZIE/package/scripts/service_check.py", + classname="OozieServiceCheck", + command="service_check", + config_file="default.json" + ) + + self.assert_service_check() + self.assertNoMoreResources() + + def assert_service_check(self): + self.assertResourceCalled('File', '/tmp/oozieSmoke2.sh', + content = StaticFile('oozieSmoke2.sh'), + mode = 0755, + ) + self.assertResourceCalled('Execute', '/tmp/oozieSmoke2.sh', + logoutput = True, + tries = 3, + command = '/tmp/oozieSmoke2.sh suse /etc/oozie/conf /etc/hadoop/conf ambari-qa False', + try_sleep = 5, + )
