1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136
|
#!/usr/bin/env python
"""
mbed SDK
Copyright (c) 2011-2015 ARM Limited
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 unittest
import os
import errno
import logging
import re
import pkg_resources
import json
from mock import patch, MagicMock
from copy import deepcopy
from six import StringIO
import mbed_lstools.main as cli
try:
basestring
except NameError:
# Python 3
basestring = str
class CLIComands(unittest.TestCase):
""" Test the CLI
"""
def setUp(self):
self._stdout = patch('sys.stdout', new_callable=StringIO)
self.stdout = self._stdout.start()
self.mbeds = MagicMock()
self.args = MagicMock()
self.mbeds.list_mbeds.return_value = [
{'platform_name': 'foo', 'platform_name_unique': 'foo[0]',
'mount_point': 'a mount point', 'serial_port': 'a serial port',
'target_id': 'DEADBEEF', 'daplink_version': 'v12345'
}
]
def tearDown(self):
self._stdout.stop()
def test_print_version(self):
cli.print_version(self.mbeds, self.args)
self.assertIn(pkg_resources.require('mbed-ls')[0].version,
self.stdout.getvalue())
def test_print_table(self):
cli.print_table(self.mbeds, self.args)
for d in self.mbeds.list_mbeds.return_value:
for v in d.values():
self.assertIn(v, self.stdout.getvalue())
def test_print_simple(self):
cli.print_simple(self.mbeds, self.args)
for d in self.mbeds.list_mbeds.return_value:
for v in d.values():
self.assertIn(v, self.stdout.getvalue())
def test_mbeds_as_json(self):
cli.mbeds_as_json(self.mbeds, self.args)
self.assertEqual(self.mbeds.list_mbeds.return_value,
json.loads(self.stdout.getvalue()))
def test_json_by_target_id(self):
cli.json_by_target_id(self.mbeds, self.args)
out_dict = json.loads(self.stdout.getvalue())
for d in out_dict.values():
self.assertIn(d, self.mbeds.list_mbeds.return_value)
def test_json_platforms(self):
cli.json_platforms(self.mbeds, self.args)
platform_names = [d['platform_name'] for d
in self.mbeds.list_mbeds.return_value]
for name in json.loads(self.stdout.getvalue()):
self.assertIn(name, platform_names)
def test_json_platforms_ext(self):
cli.json_platforms_ext(self.mbeds, self.args)
platform_names = [d['platform_name'] for d
in self.mbeds.list_mbeds.return_value]
for name in json.loads(self.stdout.getvalue()).keys():
self.assertIn(name, platform_names)
def test_list_platform(self):
self.mbeds.list_manufacture_ids.return_value ="""
foo
bar
baz
"""
cli.list_platforms(self.mbeds, self.args)
self.assertIn(self.mbeds.list_manufacture_ids.return_value,
self.stdout.getvalue())
class CLIParser(unittest.TestCase):
def setUp(self):
pass
def tearDown(self):
pass
def test_parse_cli_defaults(self):
args = cli.parse_cli([])
assert callable(args.command)
def test_parse_cli_conflict(self):
try:
args = cli.parse_cli(["-j", "-J"])
assert False, "Parsing conflicting options should have failed"
except:
pass
def test_parse_cli_single_param(self):
for p in ['j', 'J', 'p', 'P', '-version', 'd', 'u']:
args = cli.parse_cli(['-' + p])
assert callable(args.command)
class CLISetup(unittest.TestCase):
def test_start_logging(self):
cli.start_logging()
|