Diff

spec/core_storagemanager_spec.lua @ 11354:10fba62332c5

mod_storage_sql: Implement map-like API for archives Used by mod_http_file_share, muc moderation, etc. Tests tweaked because they failed on stanza internals that happen becasue of re-serialization. Namespaces differ since inheritance is implicit when building but explicit after parsing.
author Kim Alvefur <zash@zash.se>
date Mon, 01 Feb 2021 12:47:05 +0100
parent 11353:367e6beaf8ab
child 11424:2358299bc928
line wrap: on
line diff
--- a/spec/core_storagemanager_spec.lua	Mon Feb 01 12:17:56 2021 +0100
+++ b/spec/core_storagemanager_spec.lua	Mon Feb 01 12:47:05 2021 +0100
@@ -556,7 +556,7 @@
 					local id = archive:append("mapuser", nil, test_stanza, test_time, "contact@example.com");
 					do
 						local stanza_roundtrip, when, with = archive:get("mapuser", id);
-						assert.same(test_stanza, stanza_roundtrip, "same stanza is returned");
+						assert.same(tostring(test_stanza), tostring(stanza_roundtrip), "same stanza is returned");
 						assert.equal(test_time, when, "same 'when' is returned");
 						assert.equal("contact@example.com", with, "same 'with' is returned");
 					end
@@ -568,7 +568,7 @@
 
 					do
 						local replaced, when, with = archive:get("mapuser", id);
-						assert.same(replacement_stanza, replaced, "replaced stanza is returned");
+						assert.same(tostring(replacement_stanza), tostring(replaced), "replaced stanza is returned");
 						assert.equal(test_time+1, when, "modified 'when' is returned");
 						assert.equal("contact@example.com", with, "original 'with' is returned");
 					end