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 +4 -4
- data/.gitignore +4 -0
- data/README.md +27 -16
- data/lib/scenarios/version.rb +1 -1
- data/scenarios.gemspec +1 -1
- metadata +3 -15
- data/.idea/.name +0 -1
- data/.idea/.rakeTasks +0 -7
- data/.idea/encodings.xml +0 -5
- data/.idea/misc.xml +0 -5
- data/.idea/modules.xml +0 -9
- data/.idea/runConfigurations/rspec.xml +0 -37
- data/.idea/scopes/scope_settings.xml +0 -5
- data/.idea/vcs.xml +0 -7
- data/.pairs +0 -9
- data/.pryrc +0 -3
- data/.rspec +0 -2
- data/WIP.txt +0 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 32223f4ed5f4ad3533cbe09c0ca063bc7be5b742
|
4
|
+
data.tar.gz: 4eda56538b588ac35b3ae8e34ea1a406929fdd56
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ffe3f0ee56ee992479356a51f179b802c71490878cf3ff74bc85c250651ad4ac1a67b057a0a49db14d18c5a49755329f09394ab08c5e08947c901512eea607ae
|
7
|
+
data.tar.gz: 84097547730134d05eeb210b75f08bb607dddefab908ecf044a6223da07dcb59c3d6059be414ee41c019c13943e5ab72055e56bfe77634273d9a1042d8ce0550
|
data/.gitignore
CHANGED
data/README.md
CHANGED
@@ -1,14 +1,26 @@
|
|
1
1
|
# Scenarios
|
2
2
|
|
3
|
-
This gem is used to setup a quick local
|
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/
|
8
|
+
for e.g. a sample route added would be
|
9
|
+
GET , '/v1/season' {"temperature":"cold"}
|
10
10
|
|
11
|
-
Now when you
|
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
|
-
|
data/lib/scenarios/version.rb
CHANGED
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://
|
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.
|
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:
|
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://
|
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
data/.idea/misc.xml
DELETED
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>
|
data/.idea/vcs.xml
DELETED
data/.pairs
DELETED
data/.pryrc
DELETED
data/.rspec
DELETED
data/WIP.txt
DELETED