Skip to content

Commit

Permalink
unit test: test ryu.cmd.manager
Browse files Browse the repository at this point in the history
Signed-off-by: YAMAMOTO Takashi <yamamoto@valinux.co.jp>
Signed-off-by: FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
  • Loading branch information
yamt authored and fujita committed Nov 27, 2013
1 parent ab4a65c commit 748f8ae
Show file tree
Hide file tree
Showing 4 changed files with 88 additions and 0 deletions.
15 changes: 15 additions & 0 deletions ryu/tests/unit/cmd/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
# Copyright (C) 2013 Nippon Telegraph and Telephone Corporation.
# Copyright (C) 2013 YAMAMOTO Takashi <yamamoto at valinux co jp>
#
# 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.
21 changes: 21 additions & 0 deletions ryu/tests/unit/cmd/dummy_app.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
# Copyright (C) 2013 Nippon Telegraph and Telephone Corporation.
# Copyright (C) 2013 YAMAMOTO Takashi <yamamoto at valinux co jp>
#
# 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 ryu.base import app_manager


class DummyApp(app_manager.RyuApp):
pass
51 changes: 51 additions & 0 deletions ryu/tests/unit/cmd/test_manager.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
# Copyright (C) 2013 Nippon Telegraph and Telephone Corporation.
# Copyright (C) 2013 YAMAMOTO Takashi <yamamoto at valinux co jp>
#
# 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.

import sys
import unittest
import mock
from nose.tools import eq_, raises

from ryu.cmd.manager import main


class Test_Manager(unittest.TestCase):
"""Test ryu-manager command
"""

def __init__(self, methodName):
super(Test_Manager, self).__init__(methodName)

def setUp(self):
pass

def tearDown(self):
pass

@raises(SystemExit)
@mock.patch('sys.argv', new=['ryu-manager', '--version'])
def test_version(self):
main()

@raises(SystemExit)
@mock.patch('sys.argv', new=['ryu-manager', '--help'])
def test_help(self):
main()

@mock.patch('sys.argv', new=['ryu-manager', '--verbose',
'ryu.tests.unit.cmd.dummy_app'])
def test_no_services(self):
main()
1 change: 1 addition & 0 deletions tools/test-requires
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
coverage
mock
nose
pep8
pylint==0.25.0

0 comments on commit 748f8ae

Please sign in to comment.