diff options
author | Michael Stapelberg <stapelberg@users.noreply.github.com> | 2016-11-15 09:27:44 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-11-15 09:27:44 -0800 |
commit | 7b63102b9d646ef40edd76a3132f11ab74d5efd6 (patch) | |
tree | 03fc7d94ec0e1de5fc65a59931f379ed1c8d85e8 /testcases | |
parent | b0af4e4c8543d8cdfd8bc7cd68b760d9d66e927c (diff) | |
parent | 9c472405234789bec8ce522ecab025a208481fbe (diff) |
Merge pull request #178 from eplanet/ut_cpu_temp
Unit testing some new cases
Diffstat (limited to 'testcases')
-rw-r--r-- | testcases/002-cpu-temp/expected_output.txt | 1 | ||||
-rw-r--r-- | testcases/002-cpu-temp/i3status.conf | 10 | ||||
-rw-r--r-- | testcases/002-cpu-temp/temp1_input | 1 | ||||
-rw-r--r-- | testcases/003-path-exists/expected_output.txt | 1 | ||||
-rw-r--r-- | testcases/003-path-exists/i3status.conf | 14 | ||||
-rw-r--r-- | testcases/004-run-watch/expected_output.txt | 1 | ||||
-rw-r--r-- | testcases/004-run-watch/i3status.conf | 14 | ||||
-rw-r--r-- | testcases/004-run-watch/pidfile | 1 |
8 files changed, 43 insertions, 0 deletions
diff --git a/testcases/002-cpu-temp/expected_output.txt b/testcases/002-cpu-temp/expected_output.txt new file mode 100644 index 0000000..e46afa8 --- /dev/null +++ b/testcases/002-cpu-temp/expected_output.txt @@ -0,0 +1 @@ +T: 42 °C diff --git a/testcases/002-cpu-temp/i3status.conf b/testcases/002-cpu-temp/i3status.conf new file mode 100644 index 0000000..d83b32d --- /dev/null +++ b/testcases/002-cpu-temp/i3status.conf @@ -0,0 +1,10 @@ +general { + output_format = "none" +} + +order = "cpu_temperature 0" + +cpu_temperature 0 { + format = "T: %degrees °C" + path = "testcases/002-cpu-temp/temp1_input" +} diff --git a/testcases/002-cpu-temp/temp1_input b/testcases/002-cpu-temp/temp1_input new file mode 100644 index 0000000..6096bd1 --- /dev/null +++ b/testcases/002-cpu-temp/temp1_input @@ -0,0 +1 @@ +42000 diff --git a/testcases/003-path-exists/expected_output.txt b/testcases/003-path-exists/expected_output.txt new file mode 100644 index 0000000..3dbe379 --- /dev/null +++ b/testcases/003-path-exists/expected_output.txt @@ -0,0 +1 @@ +EXISTING: yes | NONEXISTANT: no diff --git a/testcases/003-path-exists/i3status.conf b/testcases/003-path-exists/i3status.conf new file mode 100644 index 0000000..38ca7d4 --- /dev/null +++ b/testcases/003-path-exists/i3status.conf @@ -0,0 +1,14 @@ +general { + output_format = "none" +} + +order += "path_exists EXISTING" +order += "path_exists NONEXISTANT" + +path_exists EXISTING { + path = "testcases/003-path-exists" +} + +path_exists NONEXISTANT { + path = "testcases/003-path-exists/nonexistant" +} diff --git a/testcases/004-run-watch/expected_output.txt b/testcases/004-run-watch/expected_output.txt new file mode 100644 index 0000000..3dbe379 --- /dev/null +++ b/testcases/004-run-watch/expected_output.txt @@ -0,0 +1 @@ +EXISTING: yes | NONEXISTANT: no diff --git a/testcases/004-run-watch/i3status.conf b/testcases/004-run-watch/i3status.conf new file mode 100644 index 0000000..95a9bb1 --- /dev/null +++ b/testcases/004-run-watch/i3status.conf @@ -0,0 +1,14 @@ +general { + output_format = "none" +} + +order += "run_watch EXISTING" +order += "run_watch NONEXISTANT" + +run_watch EXISTING { + pidfile = "testcases/004-run-watch/pidfile" +} + +run_watch NONEXISTANT { + pidfile = "testcases/004-run-watch/notexistant" +} diff --git a/testcases/004-run-watch/pidfile b/testcases/004-run-watch/pidfile new file mode 100644 index 0000000..d00491f --- /dev/null +++ b/testcases/004-run-watch/pidfile @@ -0,0 +1 @@ +1 |