Skip to content

Commit 181b3a8

Browse files
committed
MongoDB 8.0 compatibility
- Upgrade Mongo gem to 2.21 - Use Mongosh in tests - Test on Ubuntu 22.04 LTS - Remove deprecated `storage.journal.enabled` (from MongoDB 6.1)
1 parent 5ef547e commit 181b3a8

File tree

6 files changed

+27
-26
lines changed

6 files changed

+27
-26
lines changed

attributes/dbconfig.rb

-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@
1818
default['mongodb']['config']['mongod']['processManagement']['pidFilePath'] = '/var/run/mongodb/mongod.pid'
1919
end
2020

21-
default['mongodb']['config']['mongod']['storage']['journal']['enabled'] = true
2221
default['mongodb']['config']['mongod']['storage']['dbPath'] = if platform_family?('rhel', 'fedora')
2322
'/var/lib/mongo'
2423
else

attributes/default.rb

+2-2
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@
5353
default['mongodb']['dbconfig_file']['mongos'] = '/etc/mongos.conf'
5454

5555
default['mongodb']['package_name'] = 'mongodb'
56-
default['mongodb']['package_version'] = '7.0.2'
56+
default['mongodb']['package_version'] = '8.0.5'
5757

5858
default['mongodb']['default_init_name'] = 'mongod'
5959
default['mongodb']['instance_name']['mongod'] = 'mongod'
@@ -114,6 +114,6 @@
114114
# install the mongo and bson_ext ruby gems at compile time to make them globally available
115115
# TODO: remove bson_ext once mongo gem supports bson >= 2
116116
default['mongodb']['ruby_gems'] = {
117-
mongo: '~> 1.12',
117+
mongo: '~> 2.21',
118118
bson_ext: nil,
119119
}

kitchen.yml

+11-13
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,7 @@ platforms:
1717
- name: debian-9
1818
# - name: debian-10
1919
# - name: fedora-latest
20-
- name: ubuntu-16.04
21-
# - name: ubuntu-18.04
22-
# - name: ubuntu-20.04
20+
- name: ubuntu-22.04
2321

2422
suites:
2523
- name: default
@@ -96,7 +94,7 @@ suites:
9694
includes:
9795
# Only need to test this on one OS since this is
9896
# purely to test mongo ruby driver code
99-
- centos-7
97+
- ubuntu-22.04
10098

10199
- name: user_management_v2
102100
run_list:
@@ -117,7 +115,7 @@ suites:
117115
includes:
118116
# Only need to test this on one OS since this is
119117
# purely to test mongo ruby driver code
120-
- centos-7
118+
- ubuntu-22.04
121119

122120
- name: user_management_v2_delete
123121
run_list:
@@ -139,7 +137,7 @@ suites:
139137
includes:
140138
# Only need to test this on one OS since this is
141139
# purely to test mongo ruby driver code
142-
- centos-7
140+
- ubuntu-22.04
143141

144142
- name: replicaset1
145143
driver:
@@ -161,7 +159,7 @@ suites:
161159
includes:
162160
# Only need to test this on one OS since this is
163161
# purely to test mongo ruby driver code
164-
- centos-7
162+
- ubuntu-22.04
165163

166164
- name: replicaset2
167165
driver:
@@ -183,7 +181,7 @@ suites:
183181
includes:
184182
# Only need to test this on one OS since this is
185183
# purely to test mongo ruby driver code
186-
- centos-7
184+
- ubuntu-22.04
187185

188186
- name: replicaset3
189187
driver:
@@ -205,7 +203,7 @@ suites:
205203
includes:
206204
# Only need to test this on one OS since this is
207205
# purely to test mongo ruby driver code
208-
- centos-7
206+
- ubuntu-22.04
209207

210208
- name: shard1-n1
211209
driver:
@@ -228,7 +226,7 @@ suites:
228226
includes:
229227
# Only need to test this on one OS since this is
230228
# purely to test mongo ruby driver code
231-
- centos-7
229+
- ubuntu-22.04
232230

233231
- name: shard1-n2
234232
driver:
@@ -251,7 +249,7 @@ suites:
251249
includes:
252250
# Only need to test this on one OS since this is
253251
# purely to test mongo ruby driver code
254-
- centos-7
252+
- ubuntu-22.04
255253

256254
- name: shard1-n3
257255
driver:
@@ -274,7 +272,7 @@ suites:
274272
includes:
275273
# Only need to test this on one OS since this is
276274
# purely to test mongo ruby driver code
277-
- centos-7
275+
- ubuntu-22.04
278276

279277
- name: shard-mongos
280278
driver:
@@ -303,4 +301,4 @@ suites:
303301
includes:
304302
# Only need to test this on one OS since this is
305303
# purely to test mongo ruby driver code
306-
- centos-7
304+
- ubuntu-22.04

recipes/mongo_gem.rb

+4
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,10 @@
2121
# limitations under the License.
2222
#
2323

24+
apt_update do
25+
compile_time true
26+
end
27+
2428
# The build-essential cookbook was not running during the compile phase, install gcc explicitly for rhel so native
2529
# extensions can be installed
2630
gcc = package 'gcc' do
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
# @test "requires authentication" {
2-
# mongo --eval "db.stats().ok"
2+
# mongosh --eval "db.stats().ok"
33
# ! [ $? -eq 1 ]
44
# }
55
#
66
# @test "admin user created" {
7-
# mongo admin -u admin -p admin --eval "db.stats().ok"
7+
# mongosh admin -u admin -p admin --eval "db.stats().ok"
88
# [ $? -eq 0 ]
99
# }
1010

@@ -15,15 +15,15 @@
1515
end
1616

1717
# admin user created
18-
describe bash('mongo admin -u admin -p admin --eval "db.stats().ok"') do
18+
describe bash('mongosh admin -u admin -p admin --eval "db.stats().ok"') do
1919
its('exit_status') { should eq 0 }
2020
end
2121

22-
describe bash('mongo --eval "db.stats().ok"') do
22+
describe bash('mongosh --eval "db.stats().ok"') do
2323
its('exit_status') { should_not eq 1 }
2424
end
2525

2626
# kitchen read user created
27-
describe bash(%(mongo admin -u admin -p admin --eval "db.system.users.find({'_id' : 'admin.kitchen', 'user' : 'kitchen', 'db' : 'admin', 'roles' : [ { 'role' : 'read', 'db' : 'admin' } ]})" | grep _id)) do
27+
describe bash(%(mongosh admin -u admin -p admin --eval "db.system.users.find({'_id' : 'admin.kitchen', 'user' : 'kitchen', 'db' : 'admin', 'roles' : [ { 'role' : 'read', 'db' : 'admin' } ]})" | grep _id)) do
2828
its('exit_status') { should eq 0 }
2929
end
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
# @test "requires authentication" {
2-
# mongo --eval "db.stats().ok"
2+
# mongosh --eval "db.stats().ok"
33
# ! [ $? -eq 1 ]
44
# }
55
#
66
# @test "admin user created" {
7-
# mongo admin -u admin -p admin --eval "db.stats().ok"
7+
# mongosh admin -u admin -p admin --eval "db.stats().ok"
88
# [ $? -eq 0 ]
99
# }
1010

@@ -15,15 +15,15 @@
1515
end
1616

1717
# admin user created
18-
describe bash('mongo admin -u admin -p admin --eval "db.stats().ok"') do
18+
describe bash('mongosh admin -u admin -p admin --eval "db.stats().ok"') do
1919
its('exit_status') { should eq 0 }
2020
end
2121

22-
describe bash('mongo --eval "db.stats().ok"') do
22+
describe bash('mongosh --eval "db.stats().ok"') do
2323
its('exit_status') { should_not eq 1 }
2424
end
2525

2626
# kitchen read user created
27-
describe bash(%(mongo admin -u admin -p admin --eval "db.system.users.find({'_id' : 'admin.kitchen', 'user' : 'kitchen', 'db' : 'admin', 'roles' : [ { 'role' : 'read', 'db' : 'admin' } ]})" | grep _id)) do
27+
describe bash(%(mongosh admin -u admin -p admin --eval "db.system.users.find({'_id' : 'admin.kitchen', 'user' : 'kitchen', 'db' : 'admin', 'roles' : [ { 'role' : 'read', 'db' : 'admin' } ]})" | grep _id)) do
2828
its('exit_status') { should eq 0 }
2929
end

0 commit comments

Comments
 (0)