blob: 8e4dff244a32756a6c86fcb7870eb6e97c2b164c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
/*
* Copyright (c) 2017 Tarun Gupta
* Licensed under the simplified BSD license.
* See Documentation/Licenses/BSD-simplified.txt for more information.
*/
#include <gtest/gtest.h>
#include <Swiften/Elements/MIXDestroy.h>
#include <Swiften/Parser/PayloadParsers/UnitTest/PayloadsParserTester.h>
using namespace Swift;
TEST(MIXDestroyParserTest, XEP0369_Example70) {
PayloadsParserTester parser;
ASSERT_TRUE(parser.parse(
"<destroy channel=\"coven\" xmlns=\"urn:xmpp:mix:1\"/>"
));
auto payload = parser.getPayload<MIXDestroy>();
ASSERT_TRUE(payload);
ASSERT_EQ(std::string("coven"), payload->getChannel());
}
|