-
Notifications
You must be signed in to change notification settings - Fork 4
/
container_test.go
117 lines (96 loc) · 3.09 KB
/
container_test.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
/*
* SPDX-FileCopyrightText: Copyright (c) 2003 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
* SPDX-License-Identifier: Apache-2.0
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package gontainer
import (
"context"
"sync/atomic"
"testing"
"time"
)
// TestContainerLifecycle tests container lifecycle.
func TestContainerLifecycle(t *testing.T) {
factoryStarted := atomic.Bool{}
serviceStarted := atomic.Bool{}
serviceClosed := atomic.Bool{}
svc1 := &testService1{}
svc2 := &testService2{}
svc3 := &testService3{}
svc4 := &testService4{}
container, err := New(
NewService(float64(100500)),
NewFactory(func() string { return "string" }),
NewFactory(func() (int, int64) { return 123, 456 }),
NewFactory(func() *testService1 { return svc1 }),
NewFactory(func() *testService2 { return svc2 }),
NewFactory(func() (*testService3, *testService4) { return svc3, svc4 }),
NewFactory(func(
ctx context.Context,
dep1 float64, dep2 string,
dep3 Optional[int],
dep4 Optional[bool],
dep5 Multiple[interface{ Do2() }],
) any {
equal(t, dep1, float64(100500))
equal(t, dep2, "string")
equal(t, dep3.Get(), 123)
equal(t, dep4.Get(), false)
equal(t, dep5, Multiple[interface{ Do2() }]{svc1, svc2})
factoryStarted.Store(true)
return func() error {
serviceStarted.Store(true)
<-ctx.Done()
serviceClosed.Store(true)
return nil
}
}),
)
equal(t, err, nil)
equal(t, container == nil, false)
// Assert factories and services.
equal(t, len(container.Factories()), 10)
equal(t, len(container.Services()), 0)
// Start all factories in the container.
equal(t, container.Start(), nil)
equal(t, factoryStarted.Load(), true)
equal(t, serviceClosed.Load(), false)
// Assert factories and services.
equal(t, len(container.Factories()), 10)
equal(t, len(container.Services()), 12)
// Let factory function start executing in the background.
time.Sleep(time.Millisecond)
equal(t, serviceStarted.Load(), true)
equal(t, serviceClosed.Load(), false)
// Close all factories in the container.
equal(t, container.Close(), nil)
equal(t, serviceClosed.Load(), true)
// Assert context is closed.
<-container.Done()
// Assert factories and services.
equal(t, len(container.Factories()), 10)
equal(t, len(container.Services()), 0)
}
type testService1 struct{}
func (t *testService1) Do1() {}
func (t *testService1) Do2() {}
func (t *testService1) Do3() {}
type testService2 struct{}
func (t *testService2) Do1() {}
func (t *testService2) Do2() {}
type testService3 struct{}
func (t *testService3) Do1() {}
type testService4 struct{}
func (t *testService4) Do1() {}