2017-04-07 10:46:33 -07:00
|
|
|
local helpers = require('test.functional.helpers')(after_each)
|
2018-01-24 03:01:14 -07:00
|
|
|
local eq = helpers.eq
|
2017-04-07 10:46:33 -07:00
|
|
|
local ok = helpers.ok
|
|
|
|
local call = helpers.call
|
|
|
|
local clear = helpers.clear
|
2022-11-21 17:13:30 -07:00
|
|
|
local is_os = helpers.is_os
|
2017-04-07 10:46:33 -07:00
|
|
|
|
|
|
|
describe('hostname()', function()
|
|
|
|
before_each(clear)
|
|
|
|
|
|
|
|
it('returns hostname string', function()
|
|
|
|
local actual = call('hostname')
|
2017-07-01 09:48:17 -07:00
|
|
|
ok(string.len(actual) > 0)
|
2017-04-07 10:46:33 -07:00
|
|
|
if call('executable', 'hostname') == 1 then
|
|
|
|
local expected = string.gsub(call('system', 'hostname'), '[\n\r]', '')
|
2022-11-21 17:13:30 -07:00
|
|
|
eq((is_os('win') and expected:upper() or expected),
|
|
|
|
(is_os('win') and actual:upper() or actual))
|
2017-04-07 10:46:33 -07:00
|
|
|
end
|
|
|
|
end)
|
|
|
|
end)
|