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
|
local Optional = require "nvim-lsp-installer.core.optional"
local spy = require "luassert.spy"
describe("Optional.of_nilable", function()
it("should create empty optionals", function()
local empty = Optional.empty()
assert.is_false(empty:is_present())
end)
it("should create non-empty optionals", function()
local empty = Optional.of_nilable "value"
assert.is_true(empty:is_present())
end)
it("should use memoized empty value", function()
assert.is_true(Optional.empty() == Optional.empty())
end)
end)
describe("Optional.get()", function()
it("should map non-empty values", function()
local str = Optional.of_nilable("world!")
:map(function(val)
return "Hello " .. val
end)
:get()
assert.equals("Hello world!", str)
end)
it("should raise error when getting empty value", function()
local err = assert.has_error(function()
Optional.empty():get()
end)
assert.equals("No value present.", err)
end)
end)
describe("Optional.or_else()", function()
it("should use .or_else() value if empty", function()
local value = Optional.empty():or_else "Hello!"
assert.equals("Hello!", value)
end)
it("should not use .or_else() value if not empty", function()
local value = Optional.of_nilable("Good bye!"):or_else "Hello!"
assert.equals("Good bye!", value)
end)
end)
describe("Optional.if_present()", function()
it("should not call .if_present() if value is empty", function()
local present = spy.new()
Optional.empty():if_present(present)
assert.spy(present).was_not_called()
end)
it("should call .if_present() if value is not empty", function()
local present = spy.new()
Optional.of_nilable("value"):if_present(present)
assert.spy(present).was_called(1)
assert.spy(present).was_called_with "value"
end)
end)
|