Class: Sbmt::Pact::Consumer::GrpcInteractionBuilder
- Inherits:
-
Object
- Object
- Sbmt::Pact::Consumer::GrpcInteractionBuilder
- Defined in:
- lib/sbmt/pact/consumer/grpc_interaction_builder.rb
Defined Under Namespace
Classes: CreateInteractionError, InteractionBuilderError, InteractionMismatchesError, PluginInitError
Constant Summary collapse
- DESCRIPTION_PREFIX =
"grpc: "
- CONTENT_TYPE =
"application/protobuf"
- GRPC_CONTENT_TYPE =
"application/grpc"
- PROTOBUF_PLUGIN_NAME =
"protobuf"
- PROTOBUF_PLUGIN_VERSION =
"0.4.0"
- INIT_PLUGIN_ERRORS =
{ 1 => {reason: :internal_error, status: 1, description: "A general panic was caught"}, 2 => {reason: :plugin_load_failed, status: 2, description: "Failed to load the plugin"}, 3 => {reason: :invalid_handle, status: 3, description: "Pact Handle is not valid"} }.freeze
- CREATE_INTERACTION_ERRORS =
{ 1 => {reason: :internal_error, status: 1, description: "A general panic was caught"}, 2 => {reason: :mock_server_already_running, status: 2, description: "The mock server has already been started"}, 3 => {reason: :invalid_handle, status: 3, description: "The interaction handle is invalid"}, 4 => {reason: :invalid_content_type, status: 4, description: "The content type is not valid"}, 5 => {reason: :invalid_contents, status: 5, description: "The contents JSON is not valid JSON"}, 6 => {reason: :plugin_error, status: 6, description: "The plugin returned an error"} }.freeze
Instance Method Summary collapse
- #execute(&block) ⇒ Object
- #given(provider_state, metadata = {}) ⇒ Object
-
#initialize(pact_config, description: nil) ⇒ GrpcInteractionBuilder
constructor
A new instance of GrpcInteractionBuilder.
- #interaction_json ⇒ Object
- #upon_receiving(description) ⇒ Object
- #validate! ⇒ Object
- #with_request(req_hash) ⇒ Object
- #with_response(resp_hash) ⇒ Object
- #with_response_meta(meta_hash) ⇒ Object
- #with_service(proto_path, method, include_dirs = []) ⇒ Object
Constructor Details
#initialize(pact_config, description: nil) ⇒ GrpcInteractionBuilder
Returns a new instance of GrpcInteractionBuilder.
42 43 44 45 46 47 48 49 50 51 52 53 54 |
# File 'lib/sbmt/pact/consumer/grpc_interaction_builder.rb', line 42 def initialize(pact_config, description: nil) @pact_config = pact_config @description = description || "" @proto_path = nil @proto_include_dirs = [] @service_name = nil @method_name = nil @request = nil @response = nil @response_meta = nil @provider_state_meta = nil end |
Instance Method Details
#execute(&block) ⇒ Object
120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 |
# File 'lib/sbmt/pact/consumer/grpc_interaction_builder.rb', line 120 def execute(&block) raise InteractionBuilderError.new("interaction is designed to be used one-time only") if defined?(@used) validate! pact_handle = init_pact init_plugin!(pact_handle) = PactFfi::SyncMessageConsumer.new_interaction(pact_handle, description) @provider_state_meta&.each_pair do |provider_state, | if .present? .each_pair { |k, v| PactFfi.given_with_param(, provider_state, k.to_s, v.to_s) } else PactFfi.given(, provider_state) end end result = PactFfi::PluginConsumer.interaction_contents(, 0, GRPC_CONTENT_TYPE, interaction_json) if CREATE_INTERACTION_ERRORS[result].present? error = CREATE_INTERACTION_ERRORS[result] raise CreateInteractionError.new("There was an error while trying to add interaction \"#{description}\"", error[:reason], error[:status]) end mock_server = MockServer.create_for_grpc!(pact: pact_handle, host: @pact_config.mock_host, port: @pact_config.mock_port) yield(, mock_server) if mock_server.matched? mock_server.write_pacts!(@pact_config.pact_dir) else msg = mismatches_error_msg(mock_server) raise InteractionMismatchesError.new(msg) end ensure @used = true mock_server&.cleanup PactFfi::PluginConsumer.cleanup_plugins(pact_handle) PactFfi.free_pact_handle(pact_handle) end |
#given(provider_state, metadata = {}) ⇒ Object
73 74 75 76 |
# File 'lib/sbmt/pact/consumer/grpc_interaction_builder.rb', line 73 def given(provider_state, = {}) @provider_state_meta = {provider_state => } self end |
#interaction_json ⇒ Object
98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 |
# File 'lib/sbmt/pact/consumer/grpc_interaction_builder.rb', line 98 def interaction_json result = { "pact:proto": @proto_path, "pact:proto-service": "#{@service_name}/#{@method_name}", "pact:content-type": CONTENT_TYPE, request: @request } result["pact:protobuf-config"] = {additionalIncludes: @proto_include_dirs} if @proto_include_dirs.present? result[:response] = @response if @response.is_a?(Hash) result[:responseMetadata] = @response_meta if @response_meta.is_a?(Hash) JSON.dump(result) end |
#upon_receiving(description) ⇒ Object
78 79 80 81 |
# File 'lib/sbmt/pact/consumer/grpc_interaction_builder.rb', line 78 def upon_receiving(description) @description = description self end |
#validate! ⇒ Object
114 115 116 117 118 |
# File 'lib/sbmt/pact/consumer/grpc_interaction_builder.rb', line 114 def validate! raise InteractionBuilderError.new("uninitialized service params, use #with_service to configure") if @proto_path.blank? || @service_name.blank? || @method_name.blank? raise InteractionBuilderError.new("invalid request format, should be a hash") unless @request.is_a?(Hash) raise InteractionBuilderError.new("invalid response format, should be a hash") unless @response.is_a?(Hash) || @response_meta.is_a?(Hash) end |
#with_request(req_hash) ⇒ Object
83 84 85 86 |
# File 'lib/sbmt/pact/consumer/grpc_interaction_builder.rb', line 83 def with_request(req_hash) @request = InteractionContents.plugin(req_hash) self end |
#with_response(resp_hash) ⇒ Object
88 89 90 91 |
# File 'lib/sbmt/pact/consumer/grpc_interaction_builder.rb', line 88 def with_response(resp_hash) @response = InteractionContents.plugin(resp_hash) self end |
#with_response_meta(meta_hash) ⇒ Object
93 94 95 96 |
# File 'lib/sbmt/pact/consumer/grpc_interaction_builder.rb', line 93 def () @response_meta = InteractionContents.plugin() self end |
#with_service(proto_path, method, include_dirs = []) ⇒ Object
56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 |
# File 'lib/sbmt/pact/consumer/grpc_interaction_builder.rb', line 56 def with_service(proto_path, method, include_dirs = []) raise InteractionBuilderError.new("invalid grpc method: cannot be blank") if method.blank? service_name, method_name = method.split("/") || [] raise InteractionBuilderError.new("invalid grpc method: #{method}, should be like service/SomeMethod") if service_name.blank? || method_name.blank? absolute_path = File.(proto_path) raise InteractionBuilderError.new("proto file #{proto_path} does not exist") unless File.exist?(absolute_path) @proto_path = absolute_path @service_name = service_name @method_name = method_name @proto_include_dirs = include_dirs.map { |dir| File.(dir) } self end |