summaryrefslogtreecommitdiff
path: root/.travis.yml
diff options
context:
space:
mode:
authorAzul <azul@leap.se>2013-03-06 11:43:49 +0100
committerAzul <azul@leap.se>2013-03-06 12:12:49 +0100
commitf70366e27aaac985c876d1d0260d7aab8b7ed8b5 (patch)
treee496cbc1f9da52b400e010889ce17bdafc841b34 /.travis.yml
parentc3bf76fcacb9576f674895a57fd3a47a2872fd8e (diff)
simulate couch migration workflow on travis
* first setup couch similar to what we'll have on the platform * then run migrations as admin * then drop admin privileges * then proceed with the normal test script
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml14
1 files changed, 4 insertions, 10 deletions
diff --git a/.travis.yml b/.travis.yml
index 445be1a..232467c 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -2,15 +2,9 @@ services:
- couchdb
notifications:
email: false
-before_script:
- - "mv config/couchdb.yml.admin config/couchdb.yml"
+before_script:
+ - "test/setup_couch.sh"
+ - "mv test/config/couchdb.yml.admin config/couchdb.yml"
- "bundle exec rake couchrest:migrate_with_proxies"
- "bundle exec rake couchrest:migrate_with_proxies" # looks like this needs to run twice
- - 'HOST="http://localhost:5984"'
- - "curl -HContent-Type:application/json -vXPUT $HOST/_users/org.couchdb.user:me --data-binary '{\"_id\": \"org.couchdb.user:me\",\"name\": \"me\",\"roles\": [],\"type\": \"user\",\"password\": \"pwd\"}'"
- - "curl -X PUT $HOST/sessions"
- - "curl -vX PUT $HOST/sessions/_security -Hcontent-type:application/json --data-binary '{\"admins\":{\"names\":[],\"roles\":[]},\"members\":{\"names\":[\"me\"],\"roles\":[]}}'"
- - "curl -vX PUT $HOST/users/_security -Hcontent-type:application/json --data-binary '{\"admins\":{\"names\":[],\"roles\":[]},\"members\":{\"names\":[\"me\"],\"roles\":[]}}'"
- - "curl -vX PUT $HOST/tickets/_security -Hcontent-type:application/json --data-binary '{\"admins\":{\"names\":[],\"roles\":[]},\"members\":{\"names\":[\"me\"],\"roles\":[]}}'"
- - "curl -X PUT $HOST/_config/admins/anna -d '\"secret\"'"
- - "mv config/couchdb.yml.user config/couchdb.yml"
+ - "mv test/config/couchdb.yml.user config/couchdb.yml"