diff spec/util_error_spec.lua @ 11081:0b68697450c5

util.error: Add well-known field 'extra' A place for various extra fields and edge cases of the stanza error data model, e.g. the URI field of <gone>
author Kim Alvefur <zash@zash.se>
date Sat, 26 Sep 2020 17:16:34 +0200
parents 744ca71a49f7
children 35d2260644d9
line wrap: on
line diff
--- a/spec/util_error_spec.lua	Fri Sep 25 16:39:22 2020 +0100
+++ b/spec/util_error_spec.lua	Sat Sep 26 17:16:34 2020 +0200
@@ -66,5 +66,13 @@
 		end);
 	end);
 
+	describe("extra", function ()
+		it("keeps some extra fields", function ()
+			local err = errors.new({condition="gone",text="Sorry mate, it's all gone",extra={uri="file:///dev/null"}});
+			assert.is_table(err.extra);
+			assert.equal("file:///dev/null", err.extra.uri);
+		end);
+	end)
+
 end);