File tree 5 files changed +43
-2
lines changed
examples/spec/integration
5 files changed +43
-2
lines changed Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change @@ -18,6 +18,7 @@ module Temporal
18
18
:schedule_workflow ,
19
19
:register_namespace ,
20
20
:describe_namespace ,
21
+ :list_namespaces ,
21
22
:signal_workflow ,
22
23
:await_workflow_result ,
23
24
:reset_workflow ,
Original file line number Diff line number Diff line change @@ -143,6 +143,14 @@ def describe_namespace(name)
143
143
connection . describe_namespace ( name : name )
144
144
end
145
145
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
+
146
154
# Send a signal to a running workflow
147
155
#
148
156
# @param workflow [Temporal::Workflow, nil] workflow class or nil
Original file line number Diff line number Diff line change @@ -50,8 +50,8 @@ def describe_namespace(name:)
50
50
client . describe_namespace ( request )
51
51
end
52
52
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 )
55
55
client . list_namespaces ( request )
56
56
end
57
57
Original file line number Diff line number Diff line change 73
73
end
74
74
end
75
75
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
+
76
102
describe '#get_workflow_execution_history' do
77
103
let ( :response ) do
78
104
Temporal ::Api ::WorkflowService ::V1 ::GetWorkflowExecutionHistoryResponse . new (
You can’t perform that action at this time.
0 commit comments