chatops-controller 3.0.3

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.
Files changed (53) hide show
  1. checksums.yaml +7 -0
  2. data/README.md +204 -0
  3. data/lib/chatops-controller.rb +1 -0
  4. data/lib/chatops.rb +21 -0
  5. data/lib/chatops/controller.rb +209 -0
  6. data/lib/chatops/controller/rspec.rb +5 -0
  7. data/lib/chatops/controller/test_case.rb +5 -0
  8. data/lib/chatops/controller/test_case_helpers.rb +91 -0
  9. data/lib/chatops/controller/version.rb +3 -0
  10. data/spec/dummy/README.rdoc +28 -0
  11. data/spec/dummy/Rakefile +6 -0
  12. data/spec/dummy/app/assets/javascripts/application.js +13 -0
  13. data/spec/dummy/app/assets/stylesheets/application.css +15 -0
  14. data/spec/dummy/app/controllers/application_controller.rb +5 -0
  15. data/spec/dummy/app/helpers/application_helper.rb +2 -0
  16. data/spec/dummy/app/views/layouts/application.html.erb +14 -0
  17. data/spec/dummy/bin/bundle +3 -0
  18. data/spec/dummy/bin/rails +4 -0
  19. data/spec/dummy/bin/rake +4 -0
  20. data/spec/dummy/bin/setup +29 -0
  21. data/spec/dummy/config.ru +4 -0
  22. data/spec/dummy/config/application.rb +24 -0
  23. data/spec/dummy/config/boot.rb +5 -0
  24. data/spec/dummy/config/database.yml +25 -0
  25. data/spec/dummy/config/environment.rb +5 -0
  26. data/spec/dummy/config/environments/development.rb +41 -0
  27. data/spec/dummy/config/environments/production.rb +79 -0
  28. data/spec/dummy/config/environments/test.rb +46 -0
  29. data/spec/dummy/config/initializers/assets.rb +13 -0
  30. data/spec/dummy/config/initializers/backtrace_silencers.rb +7 -0
  31. data/spec/dummy/config/initializers/cookies_serializer.rb +3 -0
  32. data/spec/dummy/config/initializers/filter_parameter_logging.rb +4 -0
  33. data/spec/dummy/config/initializers/inflections.rb +16 -0
  34. data/spec/dummy/config/initializers/mime_types.rb +4 -0
  35. data/spec/dummy/config/initializers/session_store.rb +3 -0
  36. data/spec/dummy/config/initializers/wrap_parameters.rb +14 -0
  37. data/spec/dummy/config/locales/en.yml +23 -0
  38. data/spec/dummy/config/routes.rb +56 -0
  39. data/spec/dummy/config/secrets.yml +22 -0
  40. data/spec/dummy/db/development.sqlite3 +0 -0
  41. data/spec/dummy/db/schema.rb +16 -0
  42. data/spec/dummy/db/test.sqlite3 +0 -0
  43. data/spec/dummy/log/test.log +3830 -0
  44. data/spec/dummy/public/404.html +67 -0
  45. data/spec/dummy/public/422.html +67 -0
  46. data/spec/dummy/public/500.html +66 -0
  47. data/spec/dummy/public/favicon.ico +0 -0
  48. data/spec/dummy/spec +1 -0
  49. data/spec/lib/chatops/controller_spec.rb +376 -0
  50. data/spec/rails_helper.rb +65 -0
  51. data/spec/spec_helper.rb +92 -0
  52. data/spec/support/json_response.rb +28 -0
  53. metadata +195 -0
@@ -0,0 +1,65 @@
1
+ # This file is copied to spec/ when you run 'rails generate rspec:install'
2
+ ENV['RAILS_ENV'] ||= 'test'
3
+ require File.expand_path("../dummy/config/environment", __FILE__)
4
+
5
+ # Prevent database truncation if the environment is production
6
+ abort("The Rails environment is running in production mode!") if Rails.env.production?
7
+ require 'spec_helper'
8
+ require 'pry'
9
+ require 'rspec/rails'
10
+ require 'chatops/controller/rspec'
11
+ # Add additional requires below this line. Rails is not loaded until this point!
12
+
13
+ # Requires supporting ruby files with custom matchers and macros, etc, in
14
+ # spec/support/ and its subdirectories. Files matching `spec/**/*_spec.rb` are
15
+ # run as spec files by default. This means that files in spec/support that end
16
+ # in _spec.rb will both be required and run as specs, causing the specs to be
17
+ # run twice. It is recommended that you do not name files matching this glob to
18
+ # end with _spec.rb. You can configure this pattern with the --pattern
19
+ # option on the command line or in ~/.rspec, .rspec or `.rspec-local`.
20
+ #
21
+ # The following line is provided for convenience purposes. It has the downside
22
+ # of increasing the boot-up time by auto-requiring all files in the support
23
+ # directory. Alternatively, in the individual `*_spec.rb` files, manually
24
+ # require only the support files necessary.
25
+ #
26
+ # Dir[Rails.root.join('spec/support/**/*.rb')].each { |f| require f }
27
+
28
+ # Checks for pending migration and applies them before tests are run.
29
+ # If you are not using ActiveRecord, you can remove this line.
30
+
31
+ Dir[Rails.root.join "spec/support/**/*.rb"].each {|f| require f}
32
+
33
+ RSpec.configure do |config|
34
+ # Remove this line if you're not using ActiveRecord or ActiveRecord fixtures
35
+ config.fixture_path = "#{::Rails.root}/spec/fixtures"
36
+ config.alias_example_to :fit, :focus => true
37
+ config.filter_run :focus => true
38
+ config.run_all_when_everything_filtered = true
39
+
40
+ # If you're not using ActiveRecord, or you'd prefer not to run each of your
41
+ # examples within a transaction, remove the following line or assign false
42
+ # instead of true.
43
+ config.use_transactional_fixtures = true
44
+
45
+ # RSpec Rails can automatically mix in different behaviours to your tests
46
+ # based on their file location, for example enabling you to call `get` and
47
+ # `post` in specs under `spec/controllers`.
48
+ #
49
+ # You can disable this behaviour by removing the line below, and instead
50
+ # explicitly tag your specs with their type, e.g.:
51
+ #
52
+ # RSpec.describe UsersController, :type => :controller do
53
+ # # ...
54
+ # end
55
+ #
56
+ # The different available types are documented in the features, such as in
57
+ # https://relishapp.com/rspec/rspec-rails/docs
58
+ config.infer_spec_type_from_file_location!
59
+
60
+ # Filter lines from Rails gems in backtraces.
61
+ config.filter_rails_from_backtrace!
62
+ # arbitrary gems may also be filtered via:
63
+ # config.filter_gems_from_backtrace("gem name")
64
+
65
+ end
@@ -0,0 +1,92 @@
1
+ # This file was generated by the `rails generate rspec:install` command. Conventionally, all
2
+ # specs live under a `spec` directory, which RSpec adds to the `$LOAD_PATH`.
3
+ # The generated `.rspec` file contains `--require spec_helper` which will cause
4
+ # this file to always be loaded, without a need to explicitly require it in any
5
+ # files.
6
+ #
7
+ # Given that it is always loaded, you are encouraged to keep this file as
8
+ # light-weight as possible. Requiring heavyweight dependencies from this file
9
+ # will add to the boot time of your test suite on EVERY test run, even for an
10
+ # individual file that may not need all of that loaded. Instead, consider making
11
+ # a separate helper file that requires the additional dependencies and performs
12
+ # the additional setup, and require it from the spec files that actually need
13
+ # it.
14
+ #
15
+ # The `.rspec` file also contains a few flags that are not defaults but that
16
+ # users commonly want.
17
+ #
18
+ # See http://rubydoc.info/gems/rspec-core/RSpec/Core/Configuration
19
+ RSpec.configure do |config|
20
+ # rspec-expectations config goes here. You can use an alternate
21
+ # assertion/expectation library such as wrong or the stdlib/minitest
22
+ # assertions if you prefer.
23
+ config.expect_with :rspec do |expectations|
24
+ # This option will default to `true` in RSpec 4. It makes the `description`
25
+ # and `failure_message` of custom matchers include text for helper methods
26
+ # defined using `chain`, e.g.:
27
+ # be_bigger_than(2).and_smaller_than(4).description
28
+ # # => "be bigger than 2 and smaller than 4"
29
+ # ...rather than:
30
+ # # => "be bigger than 2"
31
+ expectations.include_chain_clauses_in_custom_matcher_descriptions = true
32
+ end
33
+
34
+ # rspec-mocks config goes here. You can use an alternate test double
35
+ # library (such as bogus or mocha) by changing the `mock_with` option here.
36
+ config.mock_with :rspec do |mocks|
37
+ # Prevents you from mocking or stubbing a method that does not exist on
38
+ # a real object. This is generally recommended, and will default to
39
+ # `true` in RSpec 4.
40
+ mocks.verify_partial_doubles = true
41
+ end
42
+
43
+ # The settings below are suggested to provide a good initial experience
44
+ # with RSpec, but feel free to customize to your heart's content.
45
+ =begin
46
+ # These two settings work together to allow you to limit a spec run
47
+ # to individual examples or groups you care about by tagging them with
48
+ # `:focus` metadata. When nothing is tagged with `:focus`, all examples
49
+ # get run.
50
+ config.filter_run :focus
51
+ config.run_all_when_everything_filtered = true
52
+
53
+ # Allows RSpec to persist some state between runs in order to support
54
+ # the `--only-failures` and `--next-failure` CLI options. We recommend
55
+ # you configure your source control system to ignore this file.
56
+ config.example_status_persistence_file_path = "spec/examples.txt"
57
+
58
+ # Limits the available syntax to the non-monkey patched syntax that is
59
+ # recommended. For more details, see:
60
+ # - http://rspec.info/blog/2012/06/rspecs-new-expectation-syntax/
61
+ # - http://www.teaisaweso.me/blog/2013/05/27/rspecs-new-message-expectation-syntax/
62
+ # - http://rspec.info/blog/2014/05/notable-changes-in-rspec-3/#zero-monkey-patching-mode
63
+ config.disable_monkey_patching!
64
+
65
+ # Many RSpec users commonly either run the entire suite or an individual
66
+ # file, and it's useful to allow more verbose output when running an
67
+ # individual spec file.
68
+ if config.files_to_run.one?
69
+ # Use the documentation formatter for detailed output,
70
+ # unless a formatter has already been configured
71
+ # (e.g. via a command-line flag).
72
+ config.default_formatter = 'doc'
73
+ end
74
+
75
+ # Print the 10 slowest examples and example groups at the
76
+ # end of the spec run, to help surface which specs are running
77
+ # particularly slow.
78
+ config.profile_examples = 10
79
+
80
+ # Run specs in random order to surface order dependencies. If you find an
81
+ # order dependency and want to debug it, you can fix the order by providing
82
+ # the seed, which is printed after each run.
83
+ # --seed 1234
84
+ config.order = :random
85
+
86
+ # Seed global randomization in this process using the `--seed` CLI option.
87
+ # Setting this allows you to use `--seed` to deterministically reproduce
88
+ # test failures related to randomization by passing the same `--seed` value
89
+ # as the one that triggered the failure.
90
+ Kernel.srand config.seed
91
+ =end
92
+ end
@@ -0,0 +1,28 @@
1
+ module RSpec
2
+ module JSONResponse
3
+ def json_response(response = @response)
4
+ @json_responses ||= {}
5
+ @json_responses[response] ||= JSON.load(response.body)
6
+ end
7
+
8
+ RSpec::Matchers.define :be_valid_json do
9
+ match do |response|
10
+ begin
11
+ json_response(response)
12
+ true
13
+ rescue StandardError => ex
14
+ @exception = ex
15
+ false
16
+ end
17
+ end
18
+
19
+ failure_message do |response|
20
+ %{Expected response body to be valid json, but there was an error parsing it:\n #{@exception.inspect}}
21
+ end
22
+ end
23
+
24
+ ::RSpec.configure do |config|
25
+ config.include self
26
+ end
27
+ end
28
+ end
metadata ADDED
@@ -0,0 +1,195 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: chatops-controller
3
+ version: !ruby/object:Gem::Version
4
+ version: 3.0.3
5
+ platform: ruby
6
+ authors:
7
+ - Ben Lavender
8
+ - GitHub
9
+ autorequire:
10
+ bindir: bin
11
+ cert_chain: []
12
+ date: 2017-06-26 00:00:00.000000000 Z
13
+ dependencies:
14
+ - !ruby/object:Gem::Dependency
15
+ name: rails
16
+ requirement: !ruby/object:Gem::Requirement
17
+ requirements:
18
+ - - ">="
19
+ - !ruby/object:Gem::Version
20
+ version: '4.0'
21
+ type: :runtime
22
+ prerelease: false
23
+ version_requirements: !ruby/object:Gem::Requirement
24
+ requirements:
25
+ - - ">="
26
+ - !ruby/object:Gem::Version
27
+ version: '4.0'
28
+ - !ruby/object:Gem::Dependency
29
+ name: rspec-rails
30
+ requirement: !ruby/object:Gem::Requirement
31
+ requirements:
32
+ - - "~>"
33
+ - !ruby/object:Gem::Version
34
+ version: '3'
35
+ type: :development
36
+ prerelease: false
37
+ version_requirements: !ruby/object:Gem::Requirement
38
+ requirements:
39
+ - - "~>"
40
+ - !ruby/object:Gem::Version
41
+ version: '3'
42
+ - !ruby/object:Gem::Dependency
43
+ name: rspec_json_dumper
44
+ requirement: !ruby/object:Gem::Requirement
45
+ requirements:
46
+ - - "~>"
47
+ - !ruby/object:Gem::Version
48
+ version: '0.1'
49
+ type: :development
50
+ prerelease: false
51
+ version_requirements: !ruby/object:Gem::Requirement
52
+ requirements:
53
+ - - "~>"
54
+ - !ruby/object:Gem::Version
55
+ version: '0.1'
56
+ - !ruby/object:Gem::Dependency
57
+ name: pry
58
+ requirement: !ruby/object:Gem::Requirement
59
+ requirements:
60
+ - - "~>"
61
+ - !ruby/object:Gem::Version
62
+ version: '0'
63
+ type: :development
64
+ prerelease: false
65
+ version_requirements: !ruby/object:Gem::Requirement
66
+ requirements:
67
+ - - "~>"
68
+ - !ruby/object:Gem::Version
69
+ version: '0'
70
+ description: See the README for documentation"
71
+ email:
72
+ - opensource+chatops-controller@github.com
73
+ executables: []
74
+ extensions: []
75
+ extra_rdoc_files: []
76
+ files:
77
+ - README.md
78
+ - lib/chatops-controller.rb
79
+ - lib/chatops.rb
80
+ - lib/chatops/controller.rb
81
+ - lib/chatops/controller/rspec.rb
82
+ - lib/chatops/controller/test_case.rb
83
+ - lib/chatops/controller/test_case_helpers.rb
84
+ - lib/chatops/controller/version.rb
85
+ - spec/dummy/README.rdoc
86
+ - spec/dummy/Rakefile
87
+ - spec/dummy/app/assets/javascripts/application.js
88
+ - spec/dummy/app/assets/stylesheets/application.css
89
+ - spec/dummy/app/controllers/application_controller.rb
90
+ - spec/dummy/app/helpers/application_helper.rb
91
+ - spec/dummy/app/views/layouts/application.html.erb
92
+ - spec/dummy/bin/bundle
93
+ - spec/dummy/bin/rails
94
+ - spec/dummy/bin/rake
95
+ - spec/dummy/bin/setup
96
+ - spec/dummy/config.ru
97
+ - spec/dummy/config/application.rb
98
+ - spec/dummy/config/boot.rb
99
+ - spec/dummy/config/database.yml
100
+ - spec/dummy/config/environment.rb
101
+ - spec/dummy/config/environments/development.rb
102
+ - spec/dummy/config/environments/production.rb
103
+ - spec/dummy/config/environments/test.rb
104
+ - spec/dummy/config/initializers/assets.rb
105
+ - spec/dummy/config/initializers/backtrace_silencers.rb
106
+ - spec/dummy/config/initializers/cookies_serializer.rb
107
+ - spec/dummy/config/initializers/filter_parameter_logging.rb
108
+ - spec/dummy/config/initializers/inflections.rb
109
+ - spec/dummy/config/initializers/mime_types.rb
110
+ - spec/dummy/config/initializers/session_store.rb
111
+ - spec/dummy/config/initializers/wrap_parameters.rb
112
+ - spec/dummy/config/locales/en.yml
113
+ - spec/dummy/config/routes.rb
114
+ - spec/dummy/config/secrets.yml
115
+ - spec/dummy/db/development.sqlite3
116
+ - spec/dummy/db/schema.rb
117
+ - spec/dummy/db/test.sqlite3
118
+ - spec/dummy/log/test.log
119
+ - spec/dummy/public/404.html
120
+ - spec/dummy/public/422.html
121
+ - spec/dummy/public/500.html
122
+ - spec/dummy/public/favicon.ico
123
+ - spec/dummy/spec
124
+ - spec/lib/chatops/controller_spec.rb
125
+ - spec/rails_helper.rb
126
+ - spec/spec_helper.rb
127
+ - spec/support/json_response.rb
128
+ homepage: https://github.com/github/chatops-controller
129
+ licenses:
130
+ - MIT
131
+ metadata: {}
132
+ post_install_message:
133
+ rdoc_options: []
134
+ require_paths:
135
+ - lib
136
+ required_ruby_version: !ruby/object:Gem::Requirement
137
+ requirements:
138
+ - - ">="
139
+ - !ruby/object:Gem::Version
140
+ version: '0'
141
+ required_rubygems_version: !ruby/object:Gem::Requirement
142
+ requirements:
143
+ - - ">="
144
+ - !ruby/object:Gem::Version
145
+ version: '0'
146
+ requirements: []
147
+ rubyforge_project:
148
+ rubygems_version: 2.5.2
149
+ signing_key:
150
+ specification_version: 4
151
+ summary: Rails helpers to create JSON-RPC chatops
152
+ test_files:
153
+ - spec/dummy/app/assets/javascripts/application.js
154
+ - spec/dummy/app/assets/stylesheets/application.css
155
+ - spec/dummy/app/controllers/application_controller.rb
156
+ - spec/dummy/app/helpers/application_helper.rb
157
+ - spec/dummy/app/views/layouts/application.html.erb
158
+ - spec/dummy/bin/bundle
159
+ - spec/dummy/bin/rails
160
+ - spec/dummy/bin/rake
161
+ - spec/dummy/bin/setup
162
+ - spec/dummy/config/application.rb
163
+ - spec/dummy/config/boot.rb
164
+ - spec/dummy/config/database.yml
165
+ - spec/dummy/config/environment.rb
166
+ - spec/dummy/config/environments/development.rb
167
+ - spec/dummy/config/environments/production.rb
168
+ - spec/dummy/config/environments/test.rb
169
+ - spec/dummy/config/initializers/assets.rb
170
+ - spec/dummy/config/initializers/backtrace_silencers.rb
171
+ - spec/dummy/config/initializers/cookies_serializer.rb
172
+ - spec/dummy/config/initializers/filter_parameter_logging.rb
173
+ - spec/dummy/config/initializers/inflections.rb
174
+ - spec/dummy/config/initializers/mime_types.rb
175
+ - spec/dummy/config/initializers/session_store.rb
176
+ - spec/dummy/config/initializers/wrap_parameters.rb
177
+ - spec/dummy/config/locales/en.yml
178
+ - spec/dummy/config/routes.rb
179
+ - spec/dummy/config/secrets.yml
180
+ - spec/dummy/config.ru
181
+ - spec/dummy/db/development.sqlite3
182
+ - spec/dummy/db/schema.rb
183
+ - spec/dummy/db/test.sqlite3
184
+ - spec/dummy/log/test.log
185
+ - spec/dummy/public/404.html
186
+ - spec/dummy/public/422.html
187
+ - spec/dummy/public/500.html
188
+ - spec/dummy/public/favicon.ico
189
+ - spec/dummy/Rakefile
190
+ - spec/dummy/README.rdoc
191
+ - spec/dummy/spec
192
+ - spec/lib/chatops/controller_spec.rb
193
+ - spec/rails_helper.rb
194
+ - spec/spec_helper.rb
195
+ - spec/support/json_response.rb