optics-agent 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,27 @@
1
+ require 'optics-agent/instrumentation/query-schema'
2
+ require 'graphql'
3
+
4
+ include OpticsAgent::Instrumentation
5
+
6
+ describe 'introspect_schema' do
7
+ it 'returns the right basic shape' do
8
+ person_type = GraphQL::ObjectType.define do
9
+ name "Person"
10
+ field :firstName, types.String
11
+ field :lastName, types.String
12
+ end
13
+ query_type = GraphQL::ObjectType.define do
14
+ name 'Query'
15
+ field :person, person_type
16
+ end
17
+
18
+ schema = GraphQL::Schema.define do
19
+ query query_type
20
+ end
21
+
22
+ result = introspect_schema(schema)
23
+
24
+ expect(result.keys).to \
25
+ match_array(["directives", "mutationType", "queryType", "subscriptionType", "types"])
26
+ end
27
+ end
@@ -0,0 +1,33 @@
1
+ require 'optics-agent/reporting/schema'
2
+ require 'graphql'
3
+
4
+ include OpticsAgent::Reporting
5
+
6
+ describe Schema do
7
+ it "can collect the correct types from a schema" do
8
+ person_type = GraphQL::ObjectType.define do
9
+ name 'Person'
10
+ field :firstName, types.String
11
+ field :lastName, types.String
12
+ end
13
+ query_type = GraphQL::ObjectType.define do
14
+ name 'Query'
15
+ field :person, person_type
16
+ end
17
+
18
+ schema = GraphQL::Schema.define do
19
+ query query_type
20
+ end
21
+
22
+ schema_report = Schema.new(schema).message
23
+
24
+ type = schema_report.type
25
+ expect(type.map &:name).to match_array(['Person', 'Query'])
26
+
27
+ person_type = type.find { |t| t.name == 'Person' }
28
+ expect(person_type.field.map &:name).to match_array(['firstName', 'lastName'])
29
+
30
+ firstName_field = person_type.field.find { |f| f.name === 'firstName' }
31
+ expect(firstName_field.returnType).to eq('String')
32
+ end
33
+ end
@@ -0,0 +1,103 @@
1
+ # This file was generated by the `rspec --init` 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
+ # This option will default to `:apply_to_host_groups` in RSpec 4 (and will
44
+ # have no way to turn it off -- the option exists only for backwards
45
+ # compatibility in RSpec 3). It causes shared context metadata to be
46
+ # inherited by the metadata hash of host groups and examples, rather than
47
+ # triggering implicit auto-inclusion in groups with matching metadata.
48
+ config.shared_context_metadata_behavior = :apply_to_host_groups
49
+
50
+ # The settings below are suggested to provide a good initial experience
51
+ # with RSpec, but feel free to customize to your heart's content.
52
+ =begin
53
+ # This allows you to limit a spec run to individual examples or groups
54
+ # you care about by tagging them with `:focus` metadata. When nothing
55
+ # is tagged with `:focus`, all examples get run. RSpec also provides
56
+ # aliases for `it`, `describe`, and `context` that include `:focus`
57
+ # metadata: `fit`, `fdescribe` and `fcontext`, respectively.
58
+ config.filter_run_when_matching :focus
59
+
60
+ # Allows RSpec to persist some state between runs in order to support
61
+ # the `--only-failures` and `--next-failure` CLI options. We recommend
62
+ # you configure your source control system to ignore this file.
63
+ config.example_status_persistence_file_path = "spec/examples.txt"
64
+
65
+ # Limits the available syntax to the non-monkey patched syntax that is
66
+ # recommended. For more details, see:
67
+ # - http://rspec.info/blog/2012/06/rspecs-new-expectation-syntax/
68
+ # - http://www.teaisaweso.me/blog/2013/05/27/rspecs-new-message-expectation-syntax/
69
+ # - http://rspec.info/blog/2014/05/notable-changes-in-rspec-3/#zero-monkey-patching-mode
70
+ config.disable_monkey_patching!
71
+
72
+ # This setting enables warnings. It's recommended, but in some cases may
73
+ # be too noisy due to issues in dependencies.
74
+ config.warnings = true
75
+
76
+ # Many RSpec users commonly either run the entire suite or an individual
77
+ # file, and it's useful to allow more verbose output when running an
78
+ # individual spec file.
79
+ if config.files_to_run.one?
80
+ # Use the documentation formatter for detailed output,
81
+ # unless a formatter has already been configured
82
+ # (e.g. via a command-line flag).
83
+ config.default_formatter = 'doc'
84
+ end
85
+
86
+ # Print the 10 slowest examples and example groups at the
87
+ # end of the spec run, to help surface which specs are running
88
+ # particularly slow.
89
+ config.profile_examples = 10
90
+
91
+ # Run specs in random order to surface order dependencies. If you find an
92
+ # order dependency and want to debug it, you can fix the order by providing
93
+ # the seed, which is printed after each run.
94
+ # --seed 1234
95
+ config.order = :random
96
+
97
+ # Seed global randomization in this process using the `--seed` CLI option.
98
+ # Setting this allows you to use `--seed` to deterministically reproduce
99
+ # test failures related to randomization by passing the same `--seed` value
100
+ # as the one that triggered the failure.
101
+ Kernel.srand config.seed
102
+ =end
103
+ end
metadata ADDED
@@ -0,0 +1,148 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: optics-agent
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - ! 'Tom Coleman '
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2016-10-06 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: graphql
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - ~>
18
+ - !ruby/object:Gem::Version
19
+ version: 0.19.0
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - ~>
25
+ - !ruby/object:Gem::Version
26
+ version: 0.19.0
27
+ - !ruby/object:Gem::Dependency
28
+ name: google-protobuf
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - ~>
32
+ - !ruby/object:Gem::Version
33
+ version: 3.1.0
34
+ type: :runtime
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - ~>
39
+ - !ruby/object:Gem::Version
40
+ version: 3.1.0
41
+ - !ruby/object:Gem::Dependency
42
+ name: sucker_punch
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - ~>
46
+ - !ruby/object:Gem::Version
47
+ version: 2.0.2
48
+ type: :runtime
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - ~>
53
+ - !ruby/object:Gem::Version
54
+ version: 2.0.2
55
+ - !ruby/object:Gem::Dependency
56
+ name: rake
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - ~>
60
+ - !ruby/object:Gem::Version
61
+ version: 11.3.0
62
+ type: :development
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - ~>
67
+ - !ruby/object:Gem::Version
68
+ version: 11.3.0
69
+ - !ruby/object:Gem::Dependency
70
+ name: rspec
71
+ requirement: !ruby/object:Gem::Requirement
72
+ requirements:
73
+ - - ~>
74
+ - !ruby/object:Gem::Version
75
+ version: 3.5.0
76
+ type: :development
77
+ prerelease: false
78
+ version_requirements: !ruby/object:Gem::Requirement
79
+ requirements:
80
+ - - ~>
81
+ - !ruby/object:Gem::Version
82
+ version: 3.5.0
83
+ description: An Agent for Apollo Optics, http://optics.apollodata.com
84
+ email: tom@meteor.com
85
+ executables: []
86
+ extensions: []
87
+ extra_rdoc_files: []
88
+ files:
89
+ - LICENSE
90
+ - README.md
91
+ - lib/apollo/optics/proto/reports_pb.rb
92
+ - lib/optics-agent.rb
93
+ - lib/optics-agent/agent.rb
94
+ - lib/optics-agent/graphql-middleware.rb
95
+ - lib/optics-agent/instrumentation/introspection-query.graphql
96
+ - lib/optics-agent/instrumentation/query-schema.rb
97
+ - lib/optics-agent/normalization/latency.rb
98
+ - lib/optics-agent/normalization/query.rb
99
+ - lib/optics-agent/rack-middleware.rb
100
+ - lib/optics-agent/reporting/helpers.rb
101
+ - lib/optics-agent/reporting/query-trace.rb
102
+ - lib/optics-agent/reporting/query.rb
103
+ - lib/optics-agent/reporting/report.rb
104
+ - lib/optics-agent/reporting/report_job.rb
105
+ - lib/optics-agent/reporting/schema.rb
106
+ - lib/optics-agent/reporting/schema_job.rb
107
+ - lib/optics-agent/reporting/send-message.rb
108
+ - spec/graphql-middleware_spec.rb
109
+ - spec/latency_spec.rb
110
+ - spec/query-normalization_spec.rb
111
+ - spec/query_trace_spec.rb
112
+ - spec/report_spec.rb
113
+ - spec/schema-introspection_spec.rb
114
+ - spec/schema_spec.rb
115
+ - spec/spec_helper.rb
116
+ homepage: http://rubygems.org/gems/optics-agent
117
+ licenses:
118
+ - MIT
119
+ metadata: {}
120
+ post_install_message:
121
+ rdoc_options: []
122
+ require_paths:
123
+ - lib
124
+ required_ruby_version: !ruby/object:Gem::Requirement
125
+ requirements:
126
+ - - ! '>='
127
+ - !ruby/object:Gem::Version
128
+ version: '0'
129
+ required_rubygems_version: !ruby/object:Gem::Requirement
130
+ requirements:
131
+ - - ! '>='
132
+ - !ruby/object:Gem::Version
133
+ version: '0'
134
+ requirements: []
135
+ rubyforge_project:
136
+ rubygems_version: 2.4.5
137
+ signing_key:
138
+ specification_version: 4
139
+ summary: An Agent for Apollo Optics
140
+ test_files:
141
+ - spec/graphql-middleware_spec.rb
142
+ - spec/latency_spec.rb
143
+ - spec/query-normalization_spec.rb
144
+ - spec/query_trace_spec.rb
145
+ - spec/report_spec.rb
146
+ - spec/schema-introspection_spec.rb
147
+ - spec/schema_spec.rb
148
+ - spec/spec_helper.rb