Skip to content

Commit 0e39ed2

Browse files
Fix iwftest pkg by exposing private interfaces in persistence and communications (#39)
1 parent 230bffa commit 0e39ed2

8 files changed

+176
-22
lines changed

iwf/communication.go

+5-1
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,9 @@ type Communication interface {
77
PublishInterstateChannel(channelName string, value interface{})
88

99
// below is for internal implementation
10-
getToPublishInterStateChannel() map[string][]iwfidl.EncodedObject
10+
communicationInternal
1111
}
12+
13+
type communicationInternal interface {
14+
GetToPublishInterStateChannel() map[string][]iwfidl.EncodedObject
15+
}

iwf/communication_impl.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ type communicationImpl struct {
88
encoder ObjectEncoder
99
}
1010

11-
func (c *communicationImpl) getToPublishInterStateChannel() map[string][]iwfidl.EncodedObject {
11+
func (c *communicationImpl) GetToPublishInterStateChannel() map[string][]iwfidl.EncodedObject {
1212
return c.toPublishInterStateChannel
1313
}
1414

iwf/persistence.go

+5-2
Original file line numberDiff line numberDiff line change
@@ -48,11 +48,14 @@ type Persistence interface {
4848
RecordEvent(key string, value interface{})
4949

5050
// below is for internal implementation
51-
getToReturn() (
51+
persistenceInternal
52+
}
53+
54+
type persistenceInternal interface {
55+
GetToReturn() (
5256
dataObjectsToReturn []iwfidl.KeyValue,
5357
stateLocalToReturn []iwfidl.KeyValue,
5458
recordEvents []iwfidl.KeyValue,
5559
searchAttributes []iwfidl.SearchAttribute,
5660
)
5761
}
58-

iwf/persistence_impl.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -249,7 +249,7 @@ func (p *persistenceImpl) RecordEvent(key string, value interface{}) {
249249
p.recordedEvents[key] = *v
250250
}
251251

252-
func (p *persistenceImpl) getToReturn() (
252+
func (p *persistenceImpl) GetToReturn() (
253253
dataObjectsToReturn []iwfidl.KeyValue,
254254
stateLocalToReturn []iwfidl.KeyValue,
255255
recordEvents []iwfidl.KeyValue,

iwf/worker_service_impl.go

+5-5
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ func (w *workerServiceImpl) HandleWorkflowStateStart(ctx context.Context, reques
3131
return nil, err
3232
}
3333

34-
err = canNotRequestAndPublishTheSameInterStateChannel(comm.getToPublishInterStateChannel(), commandRequest)
34+
err = canNotRequestAndPublishTheSameInterStateChannel(comm.GetToPublishInterStateChannel(), commandRequest)
3535
if err != nil {
3636
return nil, err
3737
}
@@ -40,14 +40,14 @@ func (w *workerServiceImpl) HandleWorkflowStateStart(ctx context.Context, reques
4040
if err != nil {
4141
return nil, err
4242
}
43-
publishings := toPublishing(comm.getToPublishInterStateChannel())
43+
publishings := toPublishing(comm.GetToPublishInterStateChannel())
4444
resp = &iwfidl.WorkflowStateStartResponse{
4545
CommandRequest: idlCommandRequest,
4646
}
4747
if len(publishings) > 0 {
4848
resp.PublishToInterStateChannel = publishings
4949
}
50-
dataObjectsToReturn, stateLocalToReturn, recordedEvents, upsertSearchAttributes := pers.getToReturn()
50+
dataObjectsToReturn, stateLocalToReturn, recordedEvents, upsertSearchAttributes := pers.GetToReturn()
5151
if len(dataObjectsToReturn) > 0 {
5252
resp.UpsertDataObjects = dataObjectsToReturn
5353
}
@@ -119,11 +119,11 @@ func (w *workerServiceImpl) HandleWorkflowStateDecide(ctx context.Context, reque
119119
resp = &iwfidl.WorkflowStateDecideResponse{
120120
StateDecision: idlDecision,
121121
}
122-
publishings := toPublishing(comm.getToPublishInterStateChannel())
122+
publishings := toPublishing(comm.GetToPublishInterStateChannel())
123123
if len(publishings) > 0 {
124124
resp.PublishToInterStateChannel = publishings
125125
}
126-
dataObjectsToReturn, stateLocalToReturn, recordedEvents, upsertSearchAttributes := pers.getToReturn()
126+
dataObjectsToReturn, stateLocalToReturn, recordedEvents, upsertSearchAttributes := pers.GetToReturn()
127127
if len(dataObjectsToReturn) > 0 {
128128
resp.UpsertDataObjects = dataObjectsToReturn
129129
}

iwftest/README.md

+70
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,70 @@
1+
## Unit tests APIs for iWF
2+
3+
The APIs are generated by the below commands:
4+
```shell
5+
mockgen -source=iwf/persistence.go -package=iwftest -destination=iwftest/persistence.go
6+
mockgen -source=iwf/communication.go -package=iwftest -destination=iwftest/communication.go
7+
mockgen -source=iwf/workflow_context.go -package=iwftest -destination=iwftest/workflow_context.go
8+
```
9+
10+
## Usage
11+
12+
See the [samples](https://github.com/indeedeng/iwf-golang-samples) for more details:
13+
14+
```go
15+
package subscription
16+
17+
import (
18+
"github.com/golang/mock/gomock"
19+
"github.com/indeedeng/iwf-golang-sdk/iwf"
20+
"github.com/indeedeng/iwf-golang-sdk/iwftest"
21+
"github.com/stretchr/testify/assert"
22+
"testing"
23+
"time"
24+
)
25+
26+
var mockWfCtx *iwftest.MockWorkflowContext
27+
var mockPersistence *iwftest.MockPersistence
28+
var mockCommunication *iwftest.MockCommunication
29+
var emptyCmdResults = iwf.CommandResults{}
30+
var emptyObj = iwftest.NewTestObject(nil)
31+
var mockSvc *MockMyService
32+
33+
func beforeEach(t *testing.T) {
34+
ctrl := gomock.NewController(t)
35+
36+
mockSvc = NewMockMyService(ctrl)
37+
mockWfCtx = iwftest.NewMockWorkflowContext(ctrl)
38+
mockPersistence = iwftest.NewMockPersistence(ctrl)
39+
mockCommunication = iwftest.NewMockCommunication(ctrl)
40+
}
41+
42+
43+
func TestInitState_Start(t *testing.T) {
44+
beforeEach(t)
45+
46+
state := NewInitState()
47+
48+
mockPersistence.EXPECT().SetDataObject(keyCustomer, testCustomer)
49+
cmdReq, err := state.Start(mockWfCtx, testCustomerObj, mockPersistence, mockCommunication)
50+
assert.Nil(t, err)
51+
assert.Equal(t, iwf.EmptyCommandRequest(), cmdReq)
52+
}
53+
54+
55+
func TestTrialState_Start(t *testing.T) {
56+
beforeEach(t)
57+
58+
state := NewTrialState(mockSvc)
59+
60+
mockSvc.EXPECT().sendEmail(testCustomer.Email, gomock.Any(), gomock.Any())
61+
mockPersistence.EXPECT().GetDataObject(keyCustomer, gomock.Any()).SetArg(1, testCustomer)
62+
cmdReq, err := state.Start(mockWfCtx, emptyObj, mockPersistence, mockCommunication)
63+
assert.Nil(t, err)
64+
firingTime := cmdReq.Commands[0].TimerCommand.FiringUnixTimestampSeconds
65+
assert.Equal(t, iwf.AllCommandsCompletedRequest(
66+
iwf.NewTimerCommand("", time.Unix(firingTime, 0)),
67+
), cmdReq)
68+
}
69+
70+
```

iwftest/communication.go

+43-6
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

iwftest/persistence.go

+46-6
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)