aboutsummaryrefslogtreecommitdiff
path: root/integration_tests/cli_test.go
diff options
context:
space:
mode:
authorJakob Unterwurzacher2015-11-15 13:38:19 +0100
committerJakob Unterwurzacher2015-11-15 13:42:04 +0100
commitd95fc2333aa5c05de713694c0893c7690655a584 (patch)
tree676402f6a85ab21839c7757dfbf9493ca921770d /integration_tests/cli_test.go
parent066c2c90eb0a156efe9d1a407b32350673a09fed (diff)
Add "-extpass" cli option and associated tests
Diffstat (limited to 'integration_tests/cli_test.go')
-rw-r--r--integration_tests/cli_test.go46
1 files changed, 46 insertions, 0 deletions
diff --git a/integration_tests/cli_test.go b/integration_tests/cli_test.go
new file mode 100644
index 0000000..a696600
--- /dev/null
+++ b/integration_tests/cli_test.go
@@ -0,0 +1,46 @@
+package integration_tests
+
+// Test CLI operations like "-init", "-password" etc
+
+import (
+ "os"
+ "os/exec"
+ "testing"
+
+ "github.com/rfjakob/gocryptfs/cryptfs"
+)
+
+func TestInit(t *testing.T) {
+ dir := tmpDir + "TestInit/"
+ err := os.Mkdir(dir, 0777)
+ if err != nil {
+ t.Fatal(err)
+ }
+ cmd := exec.Command(gocryptfsBinary, "-init", "-extpass", "echo test", dir)
+ if testing.Verbose() {
+ cmd.Stdout = os.Stdout
+ cmd.Stderr = os.Stderr
+ }
+ err = cmd.Run()
+ if err != nil {
+ t.Error(err)
+ }
+ _, err = os.Stat(dir + cryptfs.ConfDefaultName)
+ if err != nil {
+ t.Error(err)
+ }
+}
+
+// "dir" has been initialized by TestInit
+func TestPasswd(t *testing.T) {
+ dir := tmpDir + "TestInit/"
+ cmd := exec.Command(gocryptfsBinary, "-passwd", "-extpass", "echo test", dir)
+ if testing.Verbose() {
+ cmd.Stdout = os.Stdout
+ cmd.Stderr = os.Stderr
+ }
+ err := cmd.Run()
+ if err != nil {
+ t.Error(err)
+ }
+}