Skip to content

Commit

Permalink
tests: adds integration test for rooster add
Browse files Browse the repository at this point in the history
  • Loading branch information
conradkleinespel committed Sep 17, 2017
1 parent 7085e44 commit d373ff2
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions tests/test-command-add.sh
@@ -0,0 +1,11 @@
#!/bin/bash

# create a new empty volume for tests
docker volume rm rooster >& /dev/null
docker volume create rooster >& /dev/null

# create the file
printf 'y\nxxxx\nabcd\n' | docker run --rm -i -v rooster:/home/rooster rooster add -s YouTube test@example.com || exit 1

# change password
printf 'xxxx\n' | docker run --rm -i -v rooster:/home/rooster rooster get -s youtube 2>&1 | grep abcd || exit 1

0 comments on commit d373ff2

Please sign in to comment.