Skip to content

Commit d90e7fa

Browse files
Integration test without SP
Signed-off-by: Alexandros Filios <[email protected]>
1 parent 1514912 commit d90e7fa

File tree

2 files changed

+30
-31
lines changed

2 files changed

+30
-31
lines changed

Diff for: integration/fsc/stoprestart/stoprestart_test.go

+30-30
Original file line numberDiff line numberDiff line change
@@ -26,36 +26,36 @@ var _ = Describe("EndToEnd", func() {
2626
It("stop and restart successfully", s.TestSucceeded)
2727
})
2828

29-
//Describe("Stop and Restart With Websockets", func() {
30-
// s := NewTestSuite(fsc.WebSocket, integration.NoReplication)
31-
// BeforeEach(s.Setup)
32-
// AfterEach(s.TearDown)
33-
// It("stop and restart successfully", s.TestSucceeded)
34-
//})
35-
//
36-
//Describe("Stop and Restart with Fabric With Replicas many to one", func() {
37-
// s := NewTestSuite(fsc.WebSocket, &integration.ReplicationOptions{
38-
// ReplicationFactors: map[string]int{
39-
// "alice": 4,
40-
// "bob": 1,
41-
// },
42-
// })
43-
// BeforeEach(s.Setup)
44-
// AfterEach(s.TearDown)
45-
// It("stop and restart successfully", s.TestSucceededWithReplicas)
46-
//})
47-
//
48-
//Describe("Stop and Restart with Fabric With Replicas many to many", func() {
49-
// s := NewTestSuite(fsc.WebSocket, &integration.ReplicationOptions{
50-
// ReplicationFactors: map[string]int{
51-
// "alice": 4,
52-
// "bob": 4,
53-
// },
54-
// })
55-
// BeforeEach(s.Setup)
56-
// AfterEach(s.TearDown)
57-
// It("stop and restart successfully", s.TestSucceededWithReplicas)
58-
//})
29+
Describe("Stop and Restart With Websockets", func() {
30+
s := NewTestSuite(fsc.WebSocket, integration.NoReplication)
31+
BeforeEach(s.Setup)
32+
AfterEach(s.TearDown)
33+
It("stop and restart successfully", s.TestSucceeded)
34+
})
35+
36+
Describe("Stop and Restart with Fabric With Replicas many to one", func() {
37+
s := NewTestSuite(fsc.WebSocket, &integration.ReplicationOptions{
38+
ReplicationFactors: map[string]int{
39+
"alice": 4,
40+
"bob": 1,
41+
},
42+
})
43+
BeforeEach(s.Setup)
44+
AfterEach(s.TearDown)
45+
It("stop and restart successfully", s.TestSucceededWithReplicas)
46+
})
47+
48+
Describe("Stop and Restart with Fabric With Replicas many to many", func() {
49+
s := NewTestSuite(fsc.WebSocket, &integration.ReplicationOptions{
50+
ReplicationFactors: map[string]int{
51+
"alice": 4,
52+
"bob": 4,
53+
},
54+
})
55+
BeforeEach(s.Setup)
56+
AfterEach(s.TearDown)
57+
It("stop and restart successfully", s.TestSucceededWithReplicas)
58+
})
5959
})
6060

6161
type TestSuite struct {

Diff for: platform/view/sdk/dig/sdk.go

-1
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,6 @@ func (p *SDK) Install() error {
154154
}
155155

156156
err = errors.Join(
157-
digutils.Register[driver.ConfigService](p.Container()),
158157
digutils.Register[trace.TracerProvider](p.Container()),
159158
digutils.Register[driver.EndpointService](p.Container()),
160159
digutils.Register[view3.IdentityProvider](p.Container()),

0 commit comments

Comments
 (0)