Skip to content
Snippets Groups Projects
Commit ae2d1a51 authored by Nick Zavaritsky's avatar Nick Zavaritsky
Browse files

gh-1044: Add tests for the improved change detection in box.cfg

parent 4218cd6e
No related branches found
No related tags found
No related merge requests found
TAP version 13
1..3
ok - initial config
ok - assign the same value to immutable key (pid_file)
ok - attempt to change immutable key (pid_file)
#!/usr/bin/env tarantool
-- Testing configuration updates
local tap = require('tap')
local test = tap.test('cfg')
test:plan(3)
config = {
pid_file = '1.pid'
}
local status = pcall(box.cfg, config)
test:ok(status, 'initial config')
-- Assigning the same value to immutable key which is effectively a NOP,
-- expecting success
status = pcall(box.cfg, {pid_file = config.pid_file})
test:ok(status, 'assign the same value to immutable key (pid_file)')
-- Now change it to a different value, must fail
local result
status, result = pcall(box.cfg, {pid_file = 'Z'..config.pid_file})
test:ok(not status and
result:match("Can't set option 'pid_file' dynamically"),
'attempt to change immutable key (pid_file)')
test:check()
os.exit(0)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment