-
Notifications
You must be signed in to change notification settings - Fork 73
310 lines (268 loc) · 10.8 KB
/
mongodb-cache.yml
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
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
name: CI
on:
pull_request:
schedule:
- cron: "0 3 * * *"
jobs:
mongodb-cache:
runs-on: ubuntu-20.04
defaults:
run:
working-directory: ansible_collections/community/mongodb
env:
ANSIBLE_CACHE_PLUGIN: "community.mongodb.mongodb"
ANSIBLE_CACHE_PLUGIN_CONNECTION: "mongodb://mongoadmin:secret@localhost:27017/cache?authSource=admin"
ANSIBLE_CACHE_PLUGIN_TIMEOUT: 0
strategy:
matrix:
versions:
- ansible_version: "stable-2.13"
python_version: "3.9"
- ansible_version: "stable-2.14"
python_version: "3.10"
- ansible_version: "stable-2.15"
python_version: "3.11"
- ansible_version: "stable-2.16"
python_version: "3.11"
- ansible_version: "devel"
python_version: "3.11"
steps:
- name: Check out code
uses: actions/checkout@v4
with:
path: ansible_collections/community/mongodb
- name: Set up Python ${{ matrix.versions.python_version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.versions.python_version }}
- name: Install ansible-base (${{ matrix.versions.ansible_version }})
uses: nick-invision/retry@v3
with:
timeout_minutes: 3
max_attempts: 3
command: pip install https://github.com/ansible/ansible/archive/${{ matrix.versions.ansible_version }}.tar.gz --disable-pip-version-check
- name: Build the collection
run: ansible-galaxy collection build
- name: Rename the build artifact
run: mv community-mongodb-*.tar.gz community-mongodb-latest.tar.gz
- name: Install collection
run: ansible-galaxy collection install community-mongodb-*.tar.gz
- name: Create docker volume
run: docker volume create mongocache
- name: Run the mongodb cache inside a docker container
run:
docker run -d --name mongocache -e MONGO_INITDB_ROOT_USERNAME=mongoadmin
-e MONGO_INITDB_ROOT_PASSWORD=secret -p 27017:27017
-v mongocache:/data/db mongo:latest
- name: Install mongodb-org-shell
uses: nick-invision/retry@v3
with:
timeout_minutes: 3
max_attempts: 3
command: sudo apt-get install mongodb-org-shell
# https://github.community/t/set-output-truncates-multiline-strings/16852/5
- name: Run ansible without pymongo installed to generate the warning
id: no-pymongo
run: |
output=$(ansible localhost -m setup 2>&1)
echo "$output"
output="${output//'%'/'%25'}"
output="${output//$'\n'/'%0A'}"
output="${output//$'\r'/'%0D'}"
echo "nopymongo=$output" >> $GITHUB_OUTPUT
- name: Test cache handling of missing pymongo
uses: nick-invision/assert-action@v2
with:
expected: "The 'pymongo' python module is required for the mongodb fact cache"
actual: ${{ steps.no-pymongo.outputs.nopymongo }}
comparison: contains
- name: Install pymongo
uses: nick-invision/retry@v3
with:
timeout_minutes: 3
max_attempts: 3
command: pip install pymongo
- name: Run ansible to generate the mongodb cache
run: ansible localhost -m setup
- name: Query mongo to see what we have in the cache
id: mongo1
run: |
output=$(mongo cache --authenticationDatabase admin -u mongoadmin -p secret --eval "db.cache.find()")
echo "$output"
output="${output//'%'/'%25'}"
output="${output//$'\n'/'%0A'}"
output="${output//$'\r'/'%0D'}"
echo "mongo=$output" >> $GITHUB_OUTPUT
- name: Test that we have something that looks like a cache record
uses: nick-invision/assert-action@v2
with:
expected: ansible_processor_count
actual: ${{ steps.mongo1.outputs.mongo }}
comparison: contains
- name: Collection should not have a ttl index
id: mongo2
run: |
output=$(mongo cache --authenticationDatabase admin -u mongoadmin -p secret --eval "db.cache.getIndexes()")
echo "$output"
output="${output//'%'/'%25'}"
output="${output//$'\n'/'%0A'}"
output="${output//$'\r'/'%0D'}"
echo "mongo=$output" >> $GITHUB_OUTPUT
- name: Test that we don't have an index called ttl
uses: nick-invision/assert-action@v2
with:
expected: ttl
actual: ${{ steps.mongo2.outputs.mongo }}
comparison: notContains
- name: Test that we have good output from getindexes
uses: nick-invision/assert-action@v2
with:
expected: "_id_"
actual: ${{ steps.mongo2.outputs.mongo }}
comparison: contains
- name: Repeat the action to hit the cache again
run: ansible localhost -m setup
- name: Query mongo to see what we have in the cach3
id: mongo3
run: |
output=$(mongo cache --authenticationDatabase admin -u mongoadmin -p secret --eval "db.cache.find()")
echo "$output"
output="${output//'%'/'%25'}"
output="${output//$'\n'/'%0A'}"
output="${output//$'\r'/'%0D'}"
echo "mongo=$output" >> $GITHUB_OUTPUT
- name: Test that we have something that looks like a cache record
uses: nick-invision/assert-action@v2
with:
expected: ansible_processor_count
actual: ${{ steps.mongo3.outputs.mongo }}
comparison: contains
- name: Collection should not have a ttl index
id: mongo4
run: |
output=$(mongo cache --authenticationDatabase admin -u mongoadmin -p secret --eval "db.cache.getIndexes()")
echo "$output"
output="${output//'%'/'%25'}"
output="${output//$'\n'/'%0A'}"
output="${output//$'\r'/'%0D'}"
echo "mongo=$output" >> $GITHUB_OUTPUT
- name: Test that we don't have an index called ttl
uses: nick-invision/assert-action@v2
with:
expected: ttl
actual: ${{ steps.mongo4.outputs.mongo }}
comparison: notContains
- name: Test that we have good output from getindexes
uses: nick-invision/assert-action@v2
with:
expected: "_id_"
actual: ${{ steps.mongo4.outputs.mongo }}
comparison: contains
- name: Run the action again with a modified timeout
env:
ANSIBLE_CACHE_PLUGIN_TIMEOUT: 3600
run: ansible localhost -m setup
- name: Query mongo to see what we have in the cache
id: mongo5
run: |
output=$(mongo cache --authenticationDatabase admin -u mongoadmin -p secret --eval "db.cache.find()")
echo "$output"
output="${output//'%'/'%25'}"
output="${output//$'\n'/'%0A'}"
output="${output//$'\r'/'%0D'}"
echo "mongo=$output" >> $GITHUB_OUTPUT
- name: Test that we have something that looks like a cache record
uses: nick-invision/assert-action@v2
with:
expected: ansible_processor_count
actual: ${{ steps.mongo5.outputs.mongo }}
comparison: contains
- name: Collection should have a ttl index
id: mongo6
run: |
output=$(mongo cache --authenticationDatabase admin -u mongoadmin -p secret --eval "db.cache.getIndexes()")
echo "$output"
output="${output//'%'/'%25'}"
output="${output//$'\n'/'%0A'}"
output="${output//$'\r'/'%0D'}"
echo "mongo=$output" >> $GITHUB_OUTPUT
- name: Test that we do have an index called ttl
uses: nick-invision/assert-action@v2
with:
expected: ttl
actual: ${{ steps.mongo6.outputs.mongo }}
comparison: contains
- name: Repeat the action
env:
ANSIBLE_CACHE_PLUGIN_TIMEOUT: 3600
run: ansible localhost -m setup
- name: Query mongo to see what we have in the cache
id: mongo7
run: |
output=$(mongo cache --authenticationDatabase admin -u mongoadmin -p secret --eval "db.cache.find()")
echo "$output"
output="${output//'%'/'%25'}"
output="${output//$'\n'/'%0A'}"
output="${output//$'\r'/'%0D'}"
echo "mongo=$output" >> $GITHUB_OUTPUT
- name: Test that we have something that looks like a cache record
uses: nick-invision/assert-action@v2
with:
expected: ansible_processor_count
actual: ${{ steps.mongo7.outputs.mongo }}
comparison: contains
- name: Collection should have a ttl index
id: mongo8
run: |
output=$(mongo cache --authenticationDatabase admin -u mongoadmin -p secret --eval "db.cache.getIndexes()")
echo "$output"
output="${output//'%'/'%25'}"
output="${output//$'\n'/'%0A'}"
output="${output//$'\r'/'%0D'}"
echo "mongo=$output" >> $GITHUB_OUTPUT
- name: Test that we do have an index called ttl
uses: nick-invision/assert-action@v2
with:
expected: ttl
actual: ${{ steps.mongo8.outputs.mongo }}
comparison: contains
- name: Set timeout back to zero
env:
ANSIBLE_CACHE_PLUGIN_TIMEOUT: 0
run: ansible localhost -m setup
- name: Query mongo to see what we have in the cache
id: mongo9
run: |
output=$(mongo cache --authenticationDatabase admin -u mongoadmin -p secret --eval "db.cache.find()")
echo "$output"
output="${output//'%'/'%25'}"
output="${output//$'\n'/'%0A'}"
output="${output//$'\r'/'%0D'}"
echo "mongo=$output" >> $GITHUB_OUTPUT
- name: Test that we have something that looks like a cache record
uses: nick-invision/assert-action@v2
with:
expected: ansible_processor_count
actual: ${{ steps.mongo9.outputs.mongo }}
comparison: contains
- name: Collection should not have a ttl index
id: mongo10
run: |
output=$(mongo cache --authenticationDatabase admin -u mongoadmin -p secret --eval "db.cache.getIndexes()")
echo "$output"
output="${output//'%'/'%25'}"
output="${output//$'\n'/'%0A'}"
output="${output//$'\r'/'%0D'}"
echo "mongo=$output" >> $GITHUB_OUTPUT
- name: Test that we don't have an index called ttl
uses: nick-invision/assert-action@v2
with:
expected: ttl
actual: ${{ steps.mongo10.outputs.mongo }}
comparison: notContains
- name: Test that we have good output from getindexes
uses: nick-invision/assert-action@v2
with:
expected: "_id_"
actual: ${{ steps.mongo10.outputs.mongo }}
comparison: contains