Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 3 additions & 8 deletions dvc/command/diff.py
Original file line number Diff line number Diff line change
Expand Up @@ -97,20 +97,15 @@ def run(self):
try:
diff = self.repo.diff(self.args.a_rev, self.args.b_rev)

if not any(diff.values()):
return 0

if not self.args.show_hash:
for _, entries in diff.items():
for entry in entries:
del entry["hash"]

if self.args.show_json:
res = json.dumps(diff)
else:
res = self._format(diff)

logger.info(res)
logger.info(json.dumps(diff))
elif diff:
logger.info(self._format(diff))

except DvcException:
logger.exception("failed to get diff")
Expand Down
4 changes: 3 additions & 1 deletion dvc/repo/diff.py
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ def _exists(output):
deleted = sorted(set(old) - set(new))
modified = sorted(set(old) & set(new))

return {
ret = {
"added": [{"path": path, "hash": new[path]} for path in added],
"deleted": [{"path": path, "hash": old[path]} for path in deleted],
"modified": [
Expand All @@ -80,3 +80,5 @@ def _exists(output):
if old[path] != new[path]
],
}

return ret if any(ret.values()) else {}
5 changes: 5 additions & 0 deletions tests/func/test_diff.py
Original file line number Diff line number Diff line change
Expand Up @@ -209,3 +209,8 @@ def test_diff_dirty(tmp_dir, scm, dvc):
}
],
}


def test_no_changes(tmp_dir, scm, dvc):
tmp_dir.dvc_gen("file", "first", commit="add a file")
assert dvc.diff() == {}
24 changes: 24 additions & 0 deletions tests/unit/command/test_diff.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import collections
import os
import logging

from dvc.cli import parse_args

Expand Down Expand Up @@ -86,3 +87,26 @@ def test_show_json_and_hash(mocker, caplog):
assert '"added": [{"path": "file", "hash": "00000000"}]' in caplog.text
assert '"deleted": []' in caplog.text
assert '"modified": []' in caplog.text


def test_no_changes(mocker, caplog):
args = parse_args(["diff", "--show-json"])
cmd = args.func(args)
mocker.patch("dvc.repo.Repo.diff", return_value={})

def info():
return [
msg
for name, level, msg in caplog.record_tuples
if name.startswith("dvc") and level == logging.INFO
]

assert 0 == cmd.run()
assert ["{}"] == info()

caplog.clear()

args = parse_args(["diff"])
cmd = args.func(args)
assert 0 == cmd.run()
assert not info()
4 changes: 3 additions & 1 deletion tests/unit/test_plot.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
from collections import OrderedDict

import pytest

from dvc.repo.plot.data import _apply_path, _lists, _find_data
Expand Down Expand Up @@ -26,7 +28,7 @@ def test_parse_json(path, expected_result):
({}, []),
({"x": ["a", "b", "c"]}, [["a", "b", "c"]]),
(
{"x": {"y": ["a", "b"]}, "z": {"w": ["c", "d"]}},
OrderedDict([("x", {"y": ["a", "b"]}), ("z", {"w": ["c", "d"]})]),
[["a", "b"], ["c", "d"]],
),
],
Expand Down