From 7592d966e684410f603942e34413375c8d98ac9e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?louiz=E2=80=99?= Date: Sun, 29 Apr 2018 01:40:46 +0200 Subject: Missing fields in a data-form response are now interpreted as an empty value --- tests/database.cpp | 4 ++++ tests/end_to_end/__main__.py | 1 + 2 files changed, 5 insertions(+) (limited to 'tests') diff --git a/tests/database.cpp b/tests/database.cpp index 15c117b..070a460 100644 --- a/tests/database.cpp +++ b/tests/database.cpp @@ -64,6 +64,10 @@ TEST_CASE("Database") CHECK(o.col() == "ISO-8859-1"); CHECK(o.col().is_set == true); CHECK(o.col().value == false); + + o.clear(); + CHECK(o.col() == ""); + CHECK(o.col() == "zouzou@example.com"); } SECTION("Channel options with server default") diff --git a/tests/end_to_end/__main__.py b/tests/end_to_end/__main__.py index 82321eb..2f6fc28 100644 --- a/tests/end_to_end/__main__.py +++ b/tests/end_to_end/__main__.py @@ -2885,6 +2885,7 @@ if __name__ == '__main__': partial(expect_stanza, ("/iq[@type='result']/commands:command[@node='configure'][@sessionid][@status='executing']", "/iq/commands:command/dataform:x[@type='form']/dataform:title[text()='Configure the IRC server irc.localhost']", "/iq/commands:command/dataform:x[@type='form']/dataform:instructions[text()='Edit the form, to configure the settings of the IRC server irc.localhost']", + "!/iq/commands:command/dataform:x/dataform:field[@var='tls_ports']/dataform:value", "!/iq/commands:command/dataform:x[@type='form']/dataform:field[@var='pass']/dataform:value", "!/iq/commands:command/dataform:x[@type='form']/dataform:field[@var='after_connect_commands']/dataform:value", "!/iq/commands:command/dataform:x[@type='form']/dataform:field[@var='username']/dataform:value", -- cgit v1.2.3