Skip to content

Commit e249d63

Browse files
authoredFeb 14, 2022
Added list_namespace to client and fixed gRPC request (coinbase#137)
1 parent 101ec13 commit e249d63

File tree

5 files changed

+43
-2
lines changed

5 files changed

+43
-2
lines changed
 
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
describe 'Temporal.list_namespaces', :integration do
2+
it 'returns the correct values' do
3+
result = Temporal.list_namespaces(page_size: 100)
4+
expect(result).to be_an_instance_of(Temporal::Api::WorkflowService::V1::ListNamespacesResponse)
5+
end
6+
end

‎lib/temporal.rb

+1
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ module Temporal
1818
:schedule_workflow,
1919
:register_namespace,
2020
:describe_namespace,
21+
:list_namespaces,
2122
:signal_workflow,
2223
:await_workflow_result,
2324
:reset_workflow,

‎lib/temporal/client.rb

+8
Original file line numberDiff line numberDiff line change
@@ -143,6 +143,14 @@ def describe_namespace(name)
143143
connection.describe_namespace(name: name)
144144
end
145145

146+
# Fetches all the namespaces.
147+
#
148+
# @param page_size [Integer] number of namespace results to return per page.
149+
# @param next_page_token [String] a optional pagination token returned by a previous list_namespaces call
150+
def list_namespaces(page_size:, next_page_token: "")
151+
connection.list_namespaces(page_size: page_size, next_page_token: next_page_token)
152+
end
153+
146154
# Send a signal to a running workflow
147155
#
148156
# @param workflow [Temporal::Workflow, nil] workflow class or nil

‎lib/temporal/connection/grpc.rb

+2-2
Original file line numberDiff line numberDiff line change
@@ -50,8 +50,8 @@ def describe_namespace(name:)
5050
client.describe_namespace(request)
5151
end
5252

53-
def list_namespaces(page_size:)
54-
request = Temporal::Api::WorkflowService::V1::ListNamespacesRequest.new(pageSize: page_size)
53+
def list_namespaces(page_size:, next_page_token: "")
54+
request = Temporal::Api::WorkflowService::V1::ListNamespacesRequest.new(page_size: page_size, next_page_token: next_page_token)
5555
client.list_namespaces(request)
5656
end
5757

‎spec/unit/lib/temporal/grpc_client_spec.rb

+26
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,32 @@
7373
end
7474
end
7575

76+
describe "#list_namespaces" do
77+
let (:response) do
78+
Temporal::Api::WorkflowService::V1::ListNamespacesResponse.new(
79+
namespaces: [Temporal::Api::WorkflowService::V1::DescribeNamespaceResponse.new],
80+
next_page_token: ""
81+
)
82+
end
83+
84+
before { allow(grpc_stub).to receive(:list_namespaces).and_return(response) }
85+
86+
it 'calls GRPC service with supplied arguments' do
87+
next_page_token = "next-page-token-id"
88+
89+
subject.list_namespaces(
90+
page_size: 10,
91+
next_page_token: next_page_token,
92+
)
93+
94+
expect(grpc_stub).to have_received(:list_namespaces) do |request|
95+
expect(request).to be_an_instance_of(Temporal::Api::WorkflowService::V1::ListNamespacesRequest)
96+
expect(request.page_size).to eq(10)
97+
expect(request.next_page_token).to eq(next_page_token)
98+
end
99+
end
100+
end
101+
76102
describe '#get_workflow_execution_history' do
77103
let(:response) do
78104
Temporal::Api::WorkflowService::V1::GetWorkflowExecutionHistoryResponse.new(

0 commit comments

Comments
 (0)
Please sign in to comment.