To add a collaborator to this project you will need to use the Relish gem to add the collaborator via a terminal command. Soon you'll be able to also add collaborators here!
More about adding a collaboratorSetup
In order to setup Foreplay
As a CLI user
I want to be able to create the config scaffold
- Scenarios
-
- Setup with defaults
- Setup invalid short option
- Setup invalid option
- Setup invalid pool option type
- Setup invalid port option type
- Setup invalid port short option type
- Setup with short options
- Setup with short options
- Setup with defaults
-
- When
-
I run
foreplay setup
- Then
- the output should contain "create config/foreplay.yml"
- And
-
the following files should exist:
config/foreplay.yml - And
-
the file "config/foreplay.yml" should contain:
defaults: name: aruba repository: TODO Put the git repository path here user: TODO Put here the user to logon to the deployment server password: TODO Supply a password or private key to connect to the server path: TODO Put here the path to deploy to on the deployment server port: 50000 production: defaults: database: adapter: postgresql encoding: utf8 database: TODO Put the database name here pool: 5 host: TODO Put here the database host name username: TODO Put here the database user password: TODO Put here the database user's password web: servers: [TODO Put here the name or names of the production web servers] foreman: concurrency: 'web=1,worker=0,scheduler=0'
- Setup invalid short option
-
- When
-
I run
foreplay setup -x abc
- Then
-
the following files should not exist:
config/foreplay.yml - And
-
the output should contain:
ERROR: "foreplay setup" was called with arguments ["-x", "abc"] Usage: "foreplay setup"
- Setup invalid option
-
- When
-
I run
foreplay setup --xyz abc
- Then
-
the following files should not exist:
config/foreplay.yml - And
-
the output should contain:
ERROR: "foreplay setup" was called with arguments ["--xyz", "abc"] Usage: "foreplay setup"
- Setup invalid pool option type
-
- When
-
I run
foreplay setup --db_pool abc
- Then
-
the following files should not exist:
config/foreplay.yml - And
-
the output should contain:
Expected numeric value for '--db-pool'; got "abc"
- Setup invalid port option type
-
- When
-
I run
foreplay setup --port abc
- Then
-
the following files should not exist:
config/foreplay.yml - And
-
the output should contain:
Expected numeric value for '--port'; got "abc"
- Setup invalid port short option type
-
- When
-
I run
foreplay setup -p abc
- Then
-
the following files should not exist:
config/foreplay.yml - And
-
the output should contain:
Expected numeric value for '--port'; got "abc"
- Setup with short options
-
- When
-
I run
foreplay setup -n string1 -r string2 -u string3 -p 10000 --password string4 -f string5 -s string6a string6b string6c -a string7 -e string8 -d string9 -h string10 --db_pool 23 --db_user string11 --db_password string12
- Then
- the output should contain "create config/foreplay.yml"
- And
-
the following files should exist:
config/foreplay.yml - And
-
the file "config/foreplay.yml" should contain:
defaults: name: string1 repository: string2 user: string3 password: string4 path: string5 port: 10000 production: defaults: database: adapter: string7 encoding: string8 database: string9 pool: 23 host: string10 username: string11 password: string12 web: servers: ["string6a", "string6b", "string6c"] foreman: concurrency: 'web=1,worker=0,scheduler=0'
- Setup with short options
-
- When
-
I run
foreplay setup --name string1 --repository string2 --user string3 --port 10000 --password string4 --path string5 --servers string6a string6b string6c --db_adapter string7 --db_encoding string8 --db_name string9 --db_host string10 --db_pool 23 --db_user string11 --db_password string12
- Then
- the output should contain "create config/foreplay.yml"
- And
-
the following files should exist:
config/foreplay.yml - And
-
the file "config/foreplay.yml" should contain:
defaults: name: string1 repository: string2 user: string3 password: string4 path: string5 port: 10000 production: defaults: database: adapter: string7 encoding: string8 database: string9 pool: 23 host: string10 username: string11 password: string12 web: servers: ["string6a", "string6b", "string6c"] foreman: concurrency: 'web=1,worker=0,scheduler=0'
Last published over 5 years ago by Dominic Sayers.