scenario_server 0.1.0 → 0.1.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: ba5c753c602276fababe1e5ed34531f804a07ef1
4
- data.tar.gz: ff6edf100eabe7a24b9cb0283d101f7962f5dcde
3
+ metadata.gz: 32223f4ed5f4ad3533cbe09c0ca063bc7be5b742
4
+ data.tar.gz: 4eda56538b588ac35b3ae8e34ea1a406929fdd56
5
5
  SHA512:
6
- metadata.gz: c33253655a852d7962bd8f074a20f3e486ad120bed2a76db3fa1ca92ab648ac038a75fa5350ff06905f6e2a5c1c2cd354e7bca8b40f5f61fb1e271fee1db4cd9
7
- data.tar.gz: f5e6fc554effad0c652af2258f7b7e5da1501f3631fc1967eadb32dabe675c918ce4731829f78464cb9459ff535e9b3c763ff746c907020d96d8cb303131b9af
6
+ metadata.gz: ffe3f0ee56ee992479356a51f179b802c71490878cf3ff74bc85c250651ad4ac1a67b057a0a49db14d18c5a49755329f09394ab08c5e08947c901512eea607ae
7
+ data.tar.gz: 84097547730134d05eeb210b75f08bb607dddefab908ecf044a6223da07dcb59c3d6059be414ee41c019c13943e5ab72055e56bfe77634273d9a1042d8ce0550
data/.gitignore CHANGED
@@ -2,4 +2,8 @@ lib/scenarios/data/*.sqlite3
2
2
  *.gem
3
3
  scenario_service.output
4
4
  scenario_service.pid
5
+ WIP.txt
5
6
  .idea
7
+ .pairs
8
+ .pryrc
9
+ .rspec
data/README.md CHANGED
@@ -1,14 +1,26 @@
1
1
  # Scenarios
2
2
 
3
- This gem is used to setup a quick local api server
3
+ This gem is used to setup a quick local server using sinatra
4
4
 
5
- As the server is started for the first time, point your browser to http://localhost:4567/scenarios .
6
- Here a "default" scenario is present. You can add various routes to this scenario.
5
+ As the server is started for the first time, point your browser to http://localhost:4567/scenarios
6
+ Here a "default" scenario is present. You can add various routes to this scenario.
7
7
 
8
- for e.g. a sample route added would be
9
- GET , '/v1/mystyle' {"Hello":"world"}
8
+ for e.g. a sample route added would be
9
+ GET , '/v1/season' {"temperature":"cold"}
10
10
 
11
- Now when you open browser and make a REST get call to '/v1/mystyle' you will receive the json fixture passed in the route.
11
+ Now when you make a get request, e.g.
12
+ curl -i http://localhost:9000/v1/season
13
+ you will receive the json fixture added for that route.
14
+
15
+ Working with Scenarios :
16
+
17
+ This server also lets you add different scenarios and lets you add a different response {"temperature":"warm"} for the same api endpoint under different scenario. e.g. march
18
+
19
+ When you make a get request and then specify header SCENE with value as your scenario name, the response under that scenario would be returned.
20
+ e.g.
21
+ curl -i -H "SCENE:march" http://localhost:9000/v1/season
22
+
23
+ If you make a get request that is not defined for a particular scenario but is defined in the default scenario, then the response from the default scenario would be returned.
12
24
 
13
25
  ## Installation
14
26
 
@@ -26,23 +38,22 @@ Or install it yourself as:
26
38
 
27
39
  ## Usage
28
40
 
29
- The server can be started in daemon mode by
41
+ The server can be started in daemon mode by
30
42
 
31
43
  scenario_service start
32
44
 
33
- or
45
+ or
34
46
 
35
47
  without a daemon mode
36
48
 
37
- scenario_service start -T
49
+ scenario_service start -T
38
50
 
39
- ## Configuration
51
+ ## Configuration
40
52
 
41
- a yaml file can be provided at the following location
42
- ~/.scenarios/config.yml
43
- to hold the port to be used and the path of a sqlite database.
44
- If this file is not provided, the db file is created inside the
45
- gem folder.
53
+ a yaml file can be provided at the following location
54
+ ~/.scenarios/config.yml
55
+ to hold the port to be used and the path of a sqlite database.
56
+ If this file is not provided, the db file is created inside the
57
+ gem folder.
46
58
 
47
59
  Please see sample_config.yml for more info.
48
-
@@ -1,3 +1,3 @@
1
1
  module Scenarios
2
- VERSION = "0.1.0"
2
+ VERSION = "0.1.1"
3
3
  end
data/scenarios.gemspec CHANGED
@@ -10,7 +10,7 @@ Gem::Specification.new do |spec|
10
10
  spec.email = ["vaikings@gmail.com"]
11
11
  spec.summary = %q{Scenarios is a sinatra server which returns mock json fixtures for routes in the current scenario}
12
12
  spec.description = %q{This gem is useful for development where a mock rest api server is required and with frank UI test automation.}
13
- spec.homepage = 'https://bitbucket.org/vaikings/scenarios'
13
+ spec.homepage = 'https://github.com/vaikings/scenarios'
14
14
  spec.license = "MIT"
15
15
 
16
16
  spec.files = `git ls-files -z`.split("\x0")
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: scenario_server
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Vaibhav Bhatia
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-12-09 00:00:00.000000000 Z
11
+ date: 2015-01-11 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: sinatra
@@ -162,23 +162,11 @@ extensions: []
162
162
  extra_rdoc_files: []
163
163
  files:
164
164
  - ".gitignore"
165
- - ".idea/.name"
166
- - ".idea/.rakeTasks"
167
- - ".idea/encodings.xml"
168
- - ".idea/misc.xml"
169
- - ".idea/modules.xml"
170
- - ".idea/runConfigurations/rspec.xml"
171
- - ".idea/scopes/scope_settings.xml"
172
- - ".idea/vcs.xml"
173
- - ".pairs"
174
- - ".pryrc"
175
- - ".rspec"
176
165
  - Gemfile
177
166
  - Gemfile.lock
178
167
  - LICENSE.txt
179
168
  - README.md
180
169
  - Rakefile
181
- - WIP.txt
182
170
  - bin/scenario_service
183
171
  - bin/scenarios
184
172
  - bin/scenariosdb
@@ -200,7 +188,7 @@ files:
200
188
  - scenarios.gemspec
201
189
  - spec/app_spec.rb
202
190
  - spec/spec_helper.rb
203
- homepage: https://bitbucket.org/vaikings/scenarios
191
+ homepage: https://github.com/vaikings/scenarios
204
192
  licenses:
205
193
  - MIT
206
194
  metadata: {}
data/.idea/.name DELETED
@@ -1 +0,0 @@
1
- scenarios
data/.idea/.rakeTasks DELETED
@@ -1,7 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <Settings><!--This file was automatically generated by Ruby plugin.
3
- You are allowed to:
4
- 1. Remove rake task
5
- 2. Add existing rake tasks
6
- To add existing rake tasks automatically delete this file and reload the project.
7
- --><RakeGroup description="" fullCmd="" taksId="rake"><RakeTask description="Build scenario_server-0.0.3.gem into the pkg directory" fullCmd="build" taksId="build" /><RakeTask description="Build and install scenario_server-0.0.3.gem into system gems" fullCmd="install" taksId="install" /><RakeTask description="Create tag v0.0.3 and build and push scenario_server-0.0.3.gem to Rubygems" fullCmd="release" taksId="release" /></RakeGroup></Settings>
data/.idea/encodings.xml DELETED
@@ -1,5 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <project version="4">
3
- <component name="Encoding" useUTFGuessing="true" native2AsciiForPropertiesFiles="false" />
4
- </project>
5
-
data/.idea/misc.xml DELETED
@@ -1,5 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <project version="4">
3
- <component name="ProjectRootManager" version="2" project-jdk-name="RVM: ruby-2.0.0-p195" project-jdk-type="RUBY_SDK" />
4
- </project>
5
-
data/.idea/modules.xml DELETED
@@ -1,9 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <project version="4">
3
- <component name="ProjectModuleManager">
4
- <modules>
5
- <module fileurl="file://$PROJECT_DIR$/.idea/scenarios.iml" filepath="$PROJECT_DIR$/.idea/scenarios.iml" />
6
- </modules>
7
- </component>
8
- </project>
9
-
@@ -1,37 +0,0 @@
1
- <component name="ProjectRunConfigurationManager">
2
- <configuration default="false" name="rspec" type="RSpecRunConfigurationType" factoryName="RSpec">
3
- <predefined_log_file id="RUBY_RSPEC" enabled="true" />
4
- <module name="scenarios" />
5
- <RSPEC_RUN_CONFIG_SETTINGS_ID NAME="RUBY_ARGS" VALUE="-e $stdout.sync=true;$stderr.sync=true;load($0=ARGV.shift)" />
6
- <RSPEC_RUN_CONFIG_SETTINGS_ID NAME="WORK DIR" VALUE="$MODULE_DIR$" />
7
- <RSPEC_RUN_CONFIG_SETTINGS_ID NAME="SHOULD_USE_SDK" VALUE="false" />
8
- <RSPEC_RUN_CONFIG_SETTINGS_ID NAME="ALTERN_SDK_NAME" VALUE="" />
9
- <RSPEC_RUN_CONFIG_SETTINGS_ID NAME="myPassParentEnvs" VALUE="true" />
10
- <envs />
11
- <EXTENSION ID="BundlerRunConfigurationExtension" bundleExecEnabled="false" />
12
- <EXTENSION ID="JRubyRunConfigurationExtension" NailgunExecEnabled="false" />
13
- <EXTENSION ID="RubyCoverageRunConfigurationExtension" enabled="false" sample_coverage="true" track_test_folders="true" runner="rcov">
14
- <COVERAGE_PATTERN ENABLED="true">
15
- <PATTERN REGEXPS="/.rvm/" INCLUDED="false" />
16
- </COVERAGE_PATTERN>
17
- </EXTENSION>
18
- <EXTENSION ID="org.jetbrains.plugins.ruby.motion.run.MotionSimulatorRunExtension" />
19
- <RSPEC_RUN_CONFIG_SETTINGS_ID NAME="TESTS_FOLDER_PATH" VALUE="$MODULE_DIR$/spec" />
20
- <RSPEC_RUN_CONFIG_SETTINGS_ID NAME="TEST_SCRIPT_PATH" VALUE="" />
21
- <RSPEC_RUN_CONFIG_SETTINGS_ID NAME="SPEC_RUNNER_PATH" VALUE="" />
22
- <RSPEC_RUN_CONFIG_SETTINGS_ID NAME="TEST_FILE_MASK" VALUE="**/*_spec.rb" />
23
- <RSPEC_RUN_CONFIG_SETTINGS_ID NAME="SPEC_EXAMPLE_NAME" VALUE="" />
24
- <RSPEC_RUN_CONFIG_SETTINGS_ID NAME="TEST_TEST_TYPE" VALUE="ALL_IN_FOLDER" />
25
- <RSPEC_RUN_CONFIG_SETTINGS_ID NAME="SPEC_ARGS" VALUE="" />
26
- <RSPEC_RUN_CONFIG_SETTINGS_ID NAME="RUNNER_VERSION" VALUE="" />
27
- <RSPEC_RUN_CONFIG_SETTINGS_ID NAME="USE_CUSTOM_SPEC_RUNNER" VALUE="false" />
28
- <RSPEC_RUN_CONFIG_SETTINGS_ID NAME="DRB" VALUE="false" />
29
- <RSPEC_RUN_CONFIG_SETTINGS_ID NAME="ZEUS" VALUE="false" />
30
- <RSPEC_RUN_CONFIG_SETTINGS_ID NAME="FULL_BACKTRACE" VALUE="false" />
31
- <RunnerSettings RunnerId="RubyDebugRunner" />
32
- <RunnerSettings RunnerId="RubyRunner" />
33
- <ConfigurationWrapper RunnerId="RubyDebugRunner" />
34
- <ConfigurationWrapper RunnerId="RubyRunner" />
35
- <method />
36
- </configuration>
37
- </component>
@@ -1,5 +0,0 @@
1
- <component name="DependencyValidationManager">
2
- <state>
3
- <option name="SKIP_IMPORT_STATEMENTS" value="false" />
4
- </state>
5
- </component>
data/.idea/vcs.xml DELETED
@@ -1,7 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <project version="4">
3
- <component name="VcsDirectoryMappings">
4
- <mapping directory="$PROJECT_DIR$" vcs="Git" />
5
- </component>
6
- </project>
7
-
data/.pairs DELETED
@@ -1,9 +0,0 @@
1
- # .pairs - configuration for 'git pair'
2
- pairs:
3
- # <initials>: <Firstname> <Lastname>[; <email-id>]
4
- vk: Vaibhav Bhatia; vaikings
5
- email:
6
- prefix:
7
- domain: gmail.com
8
- # no_solo_prefix: true
9
- #global: true
data/.pryrc DELETED
@@ -1,3 +0,0 @@
1
- Pry.commands.alias_command 'c', 'continue'
2
- Pry.commands.alias_command 's', 'step'
3
- Pry.commands.alias_command 'n', 'next'
data/.rspec DELETED
@@ -1,2 +0,0 @@
1
- --color
2
- --format progress
data/WIP.txt DELETED
@@ -1,2 +0,0 @@
1
- . scenario server should run with postgres too
2
- . add mechanism so the response fixture can be refreshed.