Stub API. Stubs Search
Stubs Search — endpoint helps to flexibly search for stubs in the stub storage.
Let's imagine that our contract simple.proto
looks something like this:
syntax = "proto3";
option go_package = "github.com/bavix/gripmock/protogen/example/simple";
package simple;
service Gripmock {
rpc SayHello (Request) returns (Reply);
}
message Request {
string name = 1;
}
message Reply {
string message = 1;
int32 return_code = 2;
}
Search Query
Enough to knock on the handle POST /api/stubs/search:
{
"service": "Greeter",
"method": "SayHello",
"data": {
"name": "gripmock"
}
}
Response:
{
"data":{
"message": "World",
"return_code": 0
},
"error": ""
}
Find by ID
Enough to knock on the handle POST /api/stubs/search
:
curl -X POST -d '{ \
"id": "6c85b0fa-caaf-4640-a672-f56b7dd8074d", \
"service": "Gripmock", \
"method": "SayHello", \
"data":{} \
}' http://127.0.0.1:4771/api/stubs/search
Response:
{
"data":{
"message": "World",
"return_code": 0
},
"error": ""
}
Input Matching Rule
Stub will respond with the expected response only if the request matches any rule. Stub service will serve /api/stubs/search
endpoint with format:
{
"service":"<service name>",
"method":"<method name>",
"data":{
// input that suppose to match with stored stubs
}
}
So if you do a curl -X POST -d '{"service":"Greeter","method":"SayHello","data":{"name":"gripmock"}}' localhost:4771/api/stubs/search
stub service will find a match from listed stubs stored there.
Input matching has 3 rules to match an input: equals,contains and matches
Nested fields are allowed for input matching too for all JSON data types. (string
, bool
, array
, etc.)
Gripmock recursively goes over the fields and tries to match with given input.
Input Equals
equals will match the exact field name and value of input into expected stub. example stub JSON:
{
.
.
"input":{
"equals":{
"name":"gripmock",
"greetings": {
"english": "Hello World!",
"indonesian": "Halo Dunia!",
"turkish": "Merhaba Dünya!"
},
"ok": true,
"numbers": [4, 8, 15, 16, 23, 42]
"null": null
}
}
.
.
}
Input Contains
contains will match input that has the value declared expected fields. example stub JSON:
{
.
.
"input":{
"contains":{
"field2":"hello",
"field4":{
"field5": "value5"
}
}
}
.
.
}
The contains rule allows you to specify that the input must contain certain values. This is useful for cases where you want to ensure that a specific field is present in the input, regardless of its value.
For example, if you have a service that takes a JSON object as input and you want to ensure that the object contains a field called "name", you can use the contains rule like this:
Example 1:
{
"input": {
"contains": {
"name": "anyValue"
}
}
}
Example 2:
{
"input": {
"contains": {
"address": {
"city": "anyCity"
}
}
}
}
These examples demonstrate how to use the contains rule to check for the presence of specific fields without caring about their actual values.
Input Matches
matches using regex for matching fields expectation. example:
{
.
.
"input":{
"matches":{
"name":"^grip.*$",
"cities": ["Jakarta", "Istanbul", ".*grad$"]
}
}
.
.
}
To implement the functionality for using github.com/gripmock/deeply
for matching, we need to create an algorithm that leverages the library's capabilities to perform deep matching of JSON objects using regular expressions. The deeply
package is designed to traverse complex data structures and apply specified matching conditions.
Algorithm Description
Input Parsing:
- Accept the JSON input data and the matching criteria. The criteria will include fields with regex patterns for matching.
Deep Traversal:
- Utilize the
deeply
library to recursively traverse the input data structure. - At each node, check if the current path matches any of the specified patterns in the criteria.
- Utilize the
Regex Matching:
- For fields specified in the
matches
criteria, compile the regex patterns. - Apply the compiled regex to the corresponding fields in the input data.
- If a field matches the regex, mark it as a successful match.
- For fields specified in the
Result Compilation:
- Gather all matching results and determine if the overall input satisfies the criteria.
- Return a boolean indicating the success of the match and details of any matched fields.
Example
Criteria:
{
"matches": {
"name": "^grip.*$",
"cities": ["Jakarta", "Istanbul", ".*grad$"]
}
}
Input Data:
{
"name": "gripmock",
"cities": ["Jakarta", "Belgrade"]
}
Matching Process:
- The
name
field is checked against the regex^grip.*$
and matches successfully with "gripmock". - The
cities
array is checked:- "Jakarta" matches with the exact string "Jakarta".
- "Belgrade" matches the pattern ".*grad$".
The algorithm concludes with a successful match, indicating the input data meets the specified criteria using github.com/gripmock/deeply
.
Input Flag ignoreArrayOrder
ignoreArrayOrder Disables sorting check inside arrays.
- service: MicroService
method: SayHello
input:
ignoreArrayOrder: true # disable sort checking
equals:
v1:
- {{ uuid2base64 "77465064-a0ce-48a3-b7e4-d50f88e55093" }}
- {{ uuid2base64 "99aebcf2-b56d-4923-9266-ab72bf5b9d0b" }}
- {{ uuid2base64 "5659bec5-dda5-4e87-bef4-e9e37c60eb1c" }}
- {{ uuid2base64 "ab0ed195-6ac5-4006-a98b-6978c6ed1c6b" }}
output:
data:
code: 1000
Without this flag, the order of the transmitted values is important to us.
The ignoreArrayOrder flag in the input of the stub works as follows:
- The input field is parsed as a JSON object.
- The JSON object is traversed depth-first, and all arrays are extracted.
- Each array is sorted in ascending order by the value of the elements.
- The sorted arrays are then compared element-wise with the expected array.
- If the arrays are equal, the stub is considered a match.
This flag allows you to disable the sorting check, which can be useful when the order of the transmitted values doesn't matter to you.
Headers Matching Rule
Stub will respond with the expected response only if the request matches any rule. Stub service will serve /api/stubs/search
endpoint with format:
{
"service":"<service name>",
"method":"<method name>",
"data":{
// input that suppose to match with stored stubs
}
}
So if you do a curl -X POST -d '{"service":"Greeter","method":"SayHello","data":{"name":"gripmock"}}' localhost:4771/api/stubs/search
stub service will find a match from listed stubs stored there.
Headers matching has 3 rules to match an input: equals,contains and matches
Headers can consist of a key and a value. If there are several values, then you need to list them separated by ";". Data type string.
Gripmock recursively goes over the fields and tries to match with given input.
Header Equals
equals will match the exact field name and value of input into expected stub. example stub JSON:
{
.
.
"headers":{
"equals":{
"authorization": "mytoken",
"system": "ec071904-93bf-4ded-b49c-d06097ddc6d5"
}
}
.
.
}
Header Contains
contains will match input that has the value declared expected fields. example stub JSON:
{
.
.
"headers":{
"contains":{
"field2":"hello"
}
}
.
.
}
Header Matches
matches using regex for matching fields expectation. example:
{
.
.
"headers":{
"matches":{
"name":"^grip.*$"
}
}
.
.
}