summaryrefslogtreecommitdiffstats
blob: 5fa321e6482bafe9e1d578e522928fd81788a1d4 (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:0\"/>"
                ));

    auto payload = parser.getPayload<MIXDestroy>();
    ASSERT_TRUE(payload);

    ASSERT_EQ(std::string("coven"), payload->getChannel());
}