Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(specs) base_dao full update #818

Closed
wants to merge 1 commit into from
Closed
Changes from all 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
13 changes: 7 additions & 6 deletions spec/integration/dao/cassandra/base_dao_spec.lua
Original file line number Diff line number Diff line change
Expand Up @@ -376,30 +376,31 @@ describe("Cassandra", function()
request_path = "/request_path",
request_host = "host.com"
}
local api, err = session:execute("INSERT INTO apis(id, upstream_url, request_path, request_host) VALUES(?, ?, ?, ?)", {
local _, err = session:execute("INSERT INTO apis(id, upstream_url, request_path, request_host) VALUES(?, ?, ?, ?)", {
cassandra.uuid(api_t.id),
api_t.upstream_url,
api_t.request_path,
api_t.request_host
})
assert.falsy(err)
assert.truthy(api.request_path)

-- Update
api_t.request_path = nil
api, err = dao_factory.apis:update(api_t, true)
local api, err = dao_factory.apis:update(api_t, true)
assert.falsy(err)
assert.truthy(api)
assert.falsy(api.request_path)

-- Check update from DAO
local rows, err = dao_factory.apis:find_by_keys({id = api.id})
assert.falsy(err)
assert.truthy(rows)
assert.falsy(rows[1].request_path)

-- Check update
local _, err = session:execute("SELECT * FROM apis WHERE id = ?", {cassandra.uuid(api_t.id)})
-- Check update manually
rows, err = session:execute("SELECT * FROM apis WHERE id = ?", {cassandra.uuid(api_t.id)})
assert.falsy(err)
assert.falsy(api.request_path)
assert.falsy(rows[1].request_path)
end)
it("should still check the validity of the schema", function()
local api_t = {
Expand Down