summaryrefslogtreecommitdiff
path: root/cliff/tests
diff options
context:
space:
mode:
authorTerryHowe <terrylhowe@gmail.com>2015-07-24 12:00:38 -0600
committerTerry Howe <terrylhowe@gmail.com>2015-07-30 19:03:01 +0000
commit3473869011afa4e1fe1c61880f2e229c6e2bc09b (patch)
tree6600dfc1f8bdf686ba71b062a0a38f95145c77d5 /cliff/tests
parenteb655cc84f7f3e1888c82d79e374725328d9cc43 (diff)
downloadcliff-3473869011afa4e1fe1c61880f2e229c6e2bc09b.tar.gz
Add csv formatter test1.14.0
Change-Id: Ief2a6514c417f7de18e736599e8090075ebf8fc8
Diffstat (limited to 'cliff/tests')
-rw-r--r--cliff/tests/test_formatters_csv.py40
1 files changed, 40 insertions, 0 deletions
diff --git a/cliff/tests/test_formatters_csv.py b/cliff/tests/test_formatters_csv.py
new file mode 100644
index 0000000..1d10ec9
--- /dev/null
+++ b/cliff/tests/test_formatters_csv.py
@@ -0,0 +1,40 @@
+#!/usr/bin/env python
+# -*- coding: utf-8 -*-
+import mock
+
+import six
+
+from cliff.formatters import commaseparated
+
+
+def test_commaseparated_list_formatter():
+ sf = commaseparated.CSVLister()
+ c = ('a', 'b', 'c')
+ d1 = ('A', 'B', 'C')
+ d2 = ('D', 'E', 'F')
+ data = [d1, d2]
+ expected = 'a,b,c\nA,B,C\nD,E,F\n'
+ output = six.StringIO()
+ parsed_args = mock.Mock()
+ parsed_args.quote_mode = 'none'
+ sf.emit_list(c, data, output, parsed_args)
+ actual = output.getvalue()
+ assert expected == actual
+
+
+def test_commaseparated_list_formatter_unicode():
+ sf = commaseparated.CSVLister()
+ c = (u'a', u'b', u'c')
+ d1 = (u'A', u'B', u'C')
+ happy = u'高兴'
+ d2 = (u'D', u'E', happy)
+ data = [d1, d2]
+ expected = u'a,b,c\nA,B,C\nD,E,%s\n' % happy
+ output = six.StringIO()
+ parsed_args = mock.Mock()
+ parsed_args.quote_mode = 'none'
+ sf.emit_list(c, data, output, parsed_args)
+ actual = output.getvalue()
+ if six.PY2:
+ actual = actual.decode('utf-8')
+ assert expected == actual