-
Notifications
You must be signed in to change notification settings - Fork 27
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Adds width attribute which allows user to specify number of bytes printed per line
- Loading branch information
1 parent
1e4f7b5
commit 8a64212
Showing
8 changed files
with
260 additions
and
22 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
0123456789abcdef012345678 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
0123456789abcdef |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,79 @@ | ||
from multidiff.Render import * | ||
from multidiff import Ansi | ||
|
||
import unittest | ||
from pathlib import Path | ||
import subprocess | ||
|
||
|
||
class MainCLITests(unittest.TestCase): | ||
|
||
def call_run(self, expected_stdout, args): | ||
got_stdout = '(no stdout)' | ||
cmd = ['multidiff'] + args | ||
try: | ||
got_stdout = subprocess.check_output(cmd, universal_newlines=True) | ||
except subprocess.CalledProcessError as err: | ||
print('Got stderr: `{err_message}`'.format(err_message=err)) | ||
finally: | ||
print('Got stdout: `{stdout}`'.format(stdout=got_stdout)) | ||
|
||
self.assertEqual(expected_stdout, got_stdout) | ||
|
||
def test_diff_cli_no_args(self): | ||
expected_output = '' | ||
self.call_run(expected_output, []) | ||
|
||
def test_diff_cli_simple(self): | ||
p = Path(".") | ||
res = list(p.glob("**/bin_file*")) | ||
res = [str(x) for x in res] | ||
|
||
dump = Ansi.bold + res[1] + Ansi.reset | ||
dump += "\n000000: " | ||
dump += "30 31 32 33 34 35 36 37 38 39 61 62 63 64 65 66" | ||
dump += Ansi.delete + " " + Ansi.reset | ||
dump += "|0123456789abcdef|\n" | ||
|
||
expected_output = dump | ||
self.call_run(expected_output, res) | ||
|
||
def test_diff_cli_with_width_flag(self): | ||
p = Path('.') | ||
res = res = list(p.glob('**/bin_file*')) | ||
res = [str(x) for x in res] | ||
res += ['--width', '25'] | ||
|
||
dump = Ansi.bold + res[1] + Ansi.reset | ||
dump += "\n000000: " | ||
dump += "30 31 32 33 34 35 36 37" | ||
dump += "\n38 39 61 62 63 64 65" | ||
dump += "\n66" | ||
dump += Ansi.delete + " " + Ansi.reset | ||
dump += "|0123456789abcdef|\n" | ||
|
||
expected_output = dump | ||
self.call_run(expected_output, res) | ||
|
||
def test_diff_cli_with_bytes_flag(self): | ||
p = Path('.') | ||
res = res = list(p.glob('**/bin_file*')) | ||
res = [str(x) for x in res] | ||
res += ['--bytes', '6'] | ||
|
||
dump = Ansi.bold + res[1] + Ansi.reset | ||
dump += "\n000000: " | ||
dump += "30 31 32 33 34 35" | ||
dump += "\n000010: " | ||
dump += "36 37 38 39 61 62" | ||
dump += "\n000020: " | ||
dump += "63 64 65 66" | ||
dump += Ansi.delete + " " + Ansi.reset | ||
dump += ' \n\n' | ||
print(dump) | ||
|
||
expected_output = dump | ||
self.call_run(expected_output, res) | ||
|
||
if __name__ == '__main__': | ||
unittest.main() |
Oops, something went wrong.