Skip to content

Commit a2c80ef

Browse files
committed
Only show headings if more than one change type
1 parent e3124f2 commit a2c80ef

File tree

4 files changed

+33
-16
lines changed

4 files changed

+33
-16
lines changed

csv_diff/__init__.py

+7-3
Original file line numberDiff line numberDiff line change
@@ -46,12 +46,14 @@ def compare(previous, current):
4646
def human_text(result):
4747
title = []
4848
summary = []
49+
show_headers = sum(1 for key in result if result[key]) > 1
4950
if result["added"]:
5051
fragment = "{} row{} added".format(
5152
len(result["added"]), "" if len(result["added"]) == 1 else "s"
5253
)
5354
title.append(fragment)
54-
summary.append(fragment + "\n")
55+
if show_headers:
56+
summary.append(fragment + "\n")
5557
for row in result["added"]:
5658
summary.append(" {}".format(json.dumps(row)))
5759
summary.append("")
@@ -60,7 +62,8 @@ def human_text(result):
6062
len(result["removed"]), "" if len(result["removed"]) == 1 else "s"
6163
)
6264
title.append(fragment)
63-
summary.append(fragment + "\n")
65+
if show_headers:
66+
summary.append(fragment + "\n")
6467
for row in result["removed"]:
6568
summary.append(" {}".format(json.dumps(row)))
6669
summary.append("")
@@ -69,7 +72,8 @@ def human_text(result):
6972
len(result["changed"]), "" if len(result["changed"]) == 1 else "s"
7073
)
7174
title.append(fragment)
72-
summary.append(fragment + "\n")
75+
if show_headers:
76+
summary.append(fragment + "\n")
7377
for details in result["changed"]:
7478
summary.append(" Row {}".format(details["key"]))
7579
for field, (prev_value, current_value) in details["changes"].items():

tests/test_cli.py

+1-4
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,7 @@ def test_human_cli(tmpdir):
1111
two.write(TWO)
1212
result = CliRunner().invoke(cli.cli, [str(one), str(two), "--key", "id"])
1313
assert 0 == result.exit_code
14-
assert (
15-
'1 row changed\n\n1 row changed\n\n Row 1\n age: "4" => "5"'
16-
== result.output.strip()
17-
)
14+
assert '1 row changed\n\n Row 1\n age: "4" => "5"' == result.output.strip()
1815

1916

2017
def test_human_cli_json(tmpdir):

tests/test_csv_diff.py

+5
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,11 @@
1212
THREE = """id,name,age
1313
1,Cleo,5"""
1414

15+
FOUR = """id,name,age
16+
1,Cleo,5
17+
2,Pancakes,2,
18+
3,Bailey,1"""
19+
1520

1621
def test_row_changed():
1722
diff = compare(

tests/test_human_text.py

+20-9
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,21 @@
11
from csv_diff import load_csv, compare, human_text
2-
from .test_csv_diff import ONE, TWO, THREE
2+
from .test_csv_diff import ONE, TWO, THREE, FOUR
33
import io
44

55

66
def test_row_changed():
77
diff = compare(
88
load_csv(io.StringIO(ONE), key="id"), load_csv(io.StringIO(TWO), key="id")
99
)
10-
assert (
11-
'1 row changed\n\n1 row changed\n\n Row 1\n age: "4" => "5"'
12-
== human_text(diff)
13-
)
10+
assert '1 row changed\n\n Row 1\n age: "4" => "5"' == human_text(diff)
1411

1512

1613
def test_row_added():
1714
diff = compare(
1815
load_csv(io.StringIO(THREE), key="id"), load_csv(io.StringIO(TWO), key="id")
1916
)
20-
assert (
21-
'1 row added\n\n1 row added\n\n {"id": "2", "name": "Pancakes", "age": "2"}'
22-
== human_text(diff)
17+
assert '1 row added\n\n {"id": "2", "name": "Pancakes", "age": "2"}' == human_text(
18+
diff
2319
)
2420

2521

@@ -28,6 +24,21 @@ def test_row_removed():
2824
load_csv(io.StringIO(TWO), key="id"), load_csv(io.StringIO(THREE), key="id")
2925
)
3026
assert (
31-
'1 row removed\n\n1 row removed\n\n {"id": "2", "name": "Pancakes", "age": "2"}'
27+
'1 row removed\n\n {"id": "2", "name": "Pancakes", "age": "2"}'
3228
== human_text(diff)
3329
)
30+
31+
32+
def test_row_changed_and_row_added():
33+
"Should have headers for each section here"
34+
diff = compare(
35+
load_csv(io.StringIO(ONE), key="id"), load_csv(io.StringIO(FOUR), key="id")
36+
)
37+
assert (
38+
"1 row added, 1 row changed\n\n"
39+
"1 row added\n\n"
40+
' {"id": "3", "name": "Bailey", "age": "1"}\n\n'
41+
"1 row changed\n\n"
42+
" Row 1\n"
43+
' age: "4" => "5"'
44+
) == human_text(diff)

0 commit comments

Comments
 (0)