Skip to content
Open
Show file tree
Hide file tree
Changes from 17 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
32 changes: 31 additions & 1 deletion DataStore2/init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -179,13 +179,43 @@ function DataStore:GetTableAsync(default, ...)
end)
end

function DataStore:SetValidator(validator)
assert(
type(validator) == "function",
"function expected, got " .. typeof(validator)
)
self.validator = validator
end

local function assertValidatorWithDefaultError(validator, input, defaultError)
local isValid, message = validator(input)
if not isValid then
error(message or defaultError)
end
end

function DataStore:Set(value, _dontCallOnUpdate)
if self.validator ~= nil then
assertValidatorWithDefaultError(
self.validator,
value,
"Attempted to set data store to an invalid value during :Set"
)
end
self.value = clone(value)
self:_Update(_dontCallOnUpdate)
end

function DataStore:Update(updateFunc)
self.value = updateFunc(self.value)
local updateFuncReturn = updateFunc(self.value)
if self.validator ~= nil then
assertValidatorWithDefaultError(
self.validator,
updateFuncReturn,
"Attempted to set data store to an invalid value during :Update"
)
end
self.value = updateFuncReturn
self:_Update()
end

Expand Down
43 changes: 42 additions & 1 deletion Tests/tests/DataStore2.spec.lua
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,47 @@ return function()
expect(DataStore2(nonNilKey, fakePlayer):Get("badDefault")).to.equal("abc")
end)

it("should validate Set", function()
local dataStore = DataStore2(UUID(), fakePlayer)
local function testValidator(dataToValidate)
if dataToValidate == "yepp" then
return true
elseif dataToValidate == "definitelyNot" then
return false, "A validation error message"
end
return false
end
dataStore:SetValidator(testValidator)
expect(dataStore:Set("nope")).to.throw("Attempted to set datastore to an invalid value")
expect(dataStore:Set("definitelyNot")).to.throw("A validation error message")
expect(dataStore:Set("yepp")).to.be.ok()
end)

it("should validate Update", function()
local dataStore = DataStore2(UUID(), fakePlayer)
local function testValidator(dataToValidate)
if dataToValidate == "yepp" then
return true
elseif dataToValidate == "definitelyNot" then
return false, "A validation error message"
end
return false
end
dataStore:SetValidator(testValidator)

expect(dataStore:Update(function()
return "nope"
end)).to.throw("Attempted to set datastore to an invalid value")

expect(dataStore:Update(function()
return "definitelyNot"
end)).to.throw("A validation error message")

expect(dataStore:Update(function()
return "yepp"
end)).to.be.ok()
end)

it("should set", function()
local dataStore = DataStore2(UUID(), fakePlayer)
dataStore:Set(1)
Expand Down Expand Up @@ -562,4 +603,4 @@ return function()
expect(called2).to.equal(1)
end)
end)
end
end