3 | *
4 | * All Rights Reserved.
5 | * See the COPYING file for more information.
6 | *
7 | * This file is part of the MatriX project.
8 | *
9 | * NOTICE: All information contained herein is, and remains the property
10 | * of AG-Software and its suppliers, if any.
11 | * The intellectual and technical concepts contained herein are proprietary
12 | * to AG-Software and its suppliers and may be covered by German and Foreign Patents,
13 | * patents in process, and are protected by trade secret or copyright law.
14 | *
15 | * Dissemination of this information or reproduction of this material
16 | * is strictly forbidden unless prior written permission is obtained
17 | * from AG-Software.
18 | *
19 | * Contact information for AG-Software is available at http://www.ag-software.de
20 | */
21 |
22 | namespace Matrix
23 | {
24 | public class XmppSessionEvent : DistinctBehaviorSubject
25 | {
26 | public XmppSessionEvent() : base(SessionEvent.SessionInitialized)
27 | {
28 | }
29 | }
30 | }
31 |
--------------------------------------------------------------------------------
/src/Matrix/XmppSessionState.cs:
--------------------------------------------------------------------------------
1 | /*
2 | * Copyright (c) 2003-2020 by AG-Software
3 | *
4 | * All Rights Reserved.
5 | * See the COPYING file for more information.
6 | *
7 | * This file is part of the MatriX project.
8 | *
9 | * NOTICE: All information contained herein is, and remains the property
10 | * of AG-Software and its suppliers, if any.
11 | * The intellectual and technical concepts contained herein are proprietary
12 | * to AG-Software and its suppliers and may be covered by German and Foreign Patents,
13 | * patents in process, and are protected by trade secret or copyright law.
14 | *
15 | * Dissemination of this information or reproduction of this material
16 | * is strictly forbidden unless prior written permission is obtained
17 | * from AG-Software.
18 | *
19 | * Contact information for AG-Software is available at http://www.ag-software.de
20 | */
21 |
22 | namespace Matrix
23 | {
24 | public class XmppSessionState : DistinctBehaviorSubject
25 | {
26 | public XmppSessionState(): base(SessionState.Disconnected)
27 | {
28 | }
29 | }
30 | }
31 |
--------------------------------------------------------------------------------
/src/Matrix/XpNet/EmptyTokenException.cs:
--------------------------------------------------------------------------------
1 | /*
2 | * Copyright (c) 2003-2017 by Alexander Gnauck, AG-Software
3 | * All Rights Reserved.
4 | * Contact information for AG-Software is available at http://www.ag-software.de
5 | *
6 | * xpnet is a deriviative of James Clark's XP parser.
7 | * See copying.txt for more info.
8 | */
9 | namespace Matrix.XpNet
10 | {
11 | ///
12 | /// An empty token was detected. This only happens with a buffer of length 0 is passed in
13 | /// to the parser.
14 | ///
15 | internal class EmptyTokenException : TokenException
16 | {
17 | }
18 | }
19 |
--------------------------------------------------------------------------------
/src/Matrix/XpNet/EndOfPrologException.cs:
--------------------------------------------------------------------------------
1 | /*
2 | * Copyright (c) 2003-2017 by Alexander Gnauck, AG-Software
3 | * All Rights Reserved.
4 | * Contact information for AG-Software is available at http://www.ag-software.de
5 | *
6 | * xpnet is a deriviative of James Clark's XP parser.
7 | * See copying.txt for more info.
8 | */
9 | namespace Matrix.XpNet
10 | {
11 | ///
12 | /// End of prolog.
13 | ///
14 | internal class EndOfPrologException : TokenException
15 | {
16 | }
17 | }
18 |
--------------------------------------------------------------------------------
/src/Matrix/XpNet/Position.cs:
--------------------------------------------------------------------------------
1 | /*
2 | * Copyright (c) 2003-2017 by Alexander Gnauck, AG-Software
3 | * All Rights Reserved.
4 | * Contact information for AG-Software is available at http://www.ag-software.de
5 | *
6 | * xpnet is a deriviative of James Clark's XP parser.
7 | * See copying.txt for more info.
8 | */
9 | namespace Matrix.XpNet
10 | {
11 | ///
12 | /// Represents a position in an entity.
13 | /// A position can be modified by Encoding.movePosition
.
14 | /// Creates a position for the start of an entity: the line number is
15 | /// 1 and the column number is 0.
16 | ///
17 | public class Position
18 | {
19 | ///
20 | /// Returns the line number.
21 | /// The first line number is 1.
22 | ///
23 | public int LineNumber { get; set; } = 1;
24 |
25 | ///
26 | /// Returns the column number.
27 | /// The first column number is 0.
28 | /// A tab character is not treated specially.
29 | ///
30 | public int ColumnNumber { get; set; } = 0;
31 | }
32 | }
--------------------------------------------------------------------------------
/src/Matrix/XpNet/Readme.md:
--------------------------------------------------------------------------------
1 | # XpNet Xml Parser
2 |
3 | XpNet is a port of [James Clark's Java XP parser](http://www.jclark.com/xml/xp/). Its a non blocking Xml parser optimized for parsing streaming Xml.
4 | See also copying.txt
5 |
6 | ## NuGet
7 | * Official releases are on [NuGet](https://www.nuget.org/packages/XpNet/).
--------------------------------------------------------------------------------
/src/Matrix/XpNet/TokenException.cs:
--------------------------------------------------------------------------------
1 | /*
2 | * Copyright (c) 2003-2017 by Alexander Gnauck, AG-Software
3 | * All Rights Reserved.
4 | * Contact information for AG-Software is available at http://www.ag-software.de
5 | *
6 | * xpnet is a deriviative of James Clark's XP parser.
7 | * See copying.txt for more info.
8 | */
9 | using System;
10 |
11 | namespace Matrix.XpNet
12 | {
13 | ///
14 | /// Base class for other exceptions
15 | ///
16 | internal class TokenException : Exception
17 | {
18 | }
19 | }
20 |
--------------------------------------------------------------------------------
/test/Matrix.Extensions.Tests/Matrix.Extensions.Tests.csproj:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | netcoreapp3.1
5 | Matrix.Extensions.Tests
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
--------------------------------------------------------------------------------
/test/Matrix.Srv.Tests/Matrix.Srv.Tests.csproj:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | netcoreapp3.1
5 | Matrix.Srv.Tests
6 | Matrix.Srv.Tests
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
--------------------------------------------------------------------------------
/test/Matrix.Tests/ClientEnd2End/stream_error_host_unknown.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | ]]>
4 |
5 |
6 |
7 |
8 |
10 | ]]>
11 |
12 |
13 |
14 | ]]>
15 |
16 |
17 | ]]>
18 |
19 |
--------------------------------------------------------------------------------
/test/Matrix.Tests/Sasl/DigestMd5Tests.cs:
--------------------------------------------------------------------------------
1 | using Matrix.Sasl.Digest;
2 | using Shouldly;
3 | using Xunit;
4 |
5 | namespace Matrix.Tests.Sasl
6 | {
7 | public class DigestMd5Tests
8 | {
9 | [Fact]
10 | public void Should_Use_XmppDomain_As_Default_Realm()
11 | {
12 | // Arrange
13 | string serverStep1 = "nonce=\"3828753646\",qop=\"auth\",charset=utf-8,algorithm=md5-sess";
14 | var step1 = new Step1(serverStep1);
15 | var xmppClient = new XmppClient() { Username = "alex", XmppDomain = "server.com", Password = "secret"};
16 | var step2 = new Step2(step1, xmppClient);
17 |
18 | // Assert
19 | step2.GetMessage().ShouldContain("realm=\"server.com\"");
20 | }
21 | }
22 | }
23 |
--------------------------------------------------------------------------------
/test/Matrix.Tests/Xml/FactoryTest.cs:
--------------------------------------------------------------------------------
1 | using Matrix.Xml;
2 | using Matrix.Xmpp.Client;
3 | using Shouldly;
4 | using Xunit;
5 |
6 | namespace Matrix.Tests.Xml
7 | {
8 | public class FactoryTest
9 | {
10 | [Fact]
11 | public void ShouldReturnXName()
12 | {
13 | Factory.GetXName().ShouldBe("{jabber:client}message");
14 | }
15 | }
16 | }
17 |
--------------------------------------------------------------------------------
/test/Matrix.Tests/Xml/cdata1.xml:
--------------------------------------------------------------------------------
1 |
2 |
4 |
5 | Psi + resource >
6 |
7 |
8 | ]]>
9 |
--------------------------------------------------------------------------------
/test/Matrix.Tests/Xml/stream1.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | PLAIN
5 |
6 |
7 |
8 |
--------------------------------------------------------------------------------
/test/Matrix.Tests/Xml/stream_partial1.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | PLAIN
5 |
6 |
7 |
--------------------------------------------------------------------------------
/test/Matrix.Tests/Xml/stream_partial2.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 | alex@localhost/MatriX
14 |
15 |
16 |
--------------------------------------------------------------------------------
/test/Matrix.Tests/Xmpp/AdvancedMessageProcessing/amp1.xml:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/test/Matrix.Tests/Xmpp/AdvancedMessageProcessing/amp2.xml:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/test/Matrix.Tests/Xmpp/AdvancedMessageProcessing/amp3.xml:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/test/Matrix.Tests/Xmpp/AdvancedMessageProcessing/amp4.xml:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/test/Matrix.Tests/Xmpp/AdvancedMessageProcessing/rule1.xml:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/test/Matrix.Tests/Xmpp/AdvancedMessageProcessing/rule2.xml:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/test/Matrix.Tests/Xmpp/AdvancedMessageProcessing/rule3.xml:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/test/Matrix.Tests/Xmpp/Archiving/chat.xml:
--------------------------------------------------------------------------------
1 |
5 |
6 | Art thou not Romeo, and a Montague?
7 |
8 |
9 | Neither, fair saint, if either thee dislike.
10 |
11 |
12 | How cam'st thou hither, tell me, and wherefore?
13 |
14 |
--------------------------------------------------------------------------------
/test/Matrix.Tests/Xmpp/Archiving/iq1.xml:
--------------------------------------------------------------------------------
1 |
2 |
4 |
--------------------------------------------------------------------------------
/test/Matrix.Tests/Xmpp/Archiving/iq2.xml:
--------------------------------------------------------------------------------
1 |
2 |
5 |
6 | 100
7 |
8 |
9 |
--------------------------------------------------------------------------------
/test/Matrix.Tests/Xmpp/Archiving/list.xml:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/test/Matrix.Tests/Xmpp/Archiving/pref.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
--------------------------------------------------------------------------------
/test/Matrix.Tests/Xmpp/Auth/query.xml:
--------------------------------------------------------------------------------
1 |
2 | gnauck
3 |
4 |
--------------------------------------------------------------------------------
/test/Matrix.Tests/Xmpp/Avatar/data.xml:
--------------------------------------------------------------------------------
1 |
2 | SGVsbG8gV29ybGQ=
3 |
--------------------------------------------------------------------------------
/test/Matrix.Tests/Xmpp/Avatar/info.xml:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/test/Matrix.Tests/Xmpp/Avatar/metadata.xml:
--------------------------------------------------------------------------------
1 |
2 |
8 |
--------------------------------------------------------------------------------
/test/Matrix.Tests/Xmpp/Base/mucuser1.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/test/Matrix.Tests/Xmpp/Base/mucuser2.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/test/Matrix.Tests/Xmpp/Bookmarks/conference1.xml:
--------------------------------------------------------------------------------
1 |
5 | Puck
6 | secret
7 |
--------------------------------------------------------------------------------
/test/Matrix.Tests/Xmpp/Bookmarks/storage1.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | Alex
4 |
5 |
6 | Alex
7 |
8 |
9 | Alex
10 |
11 |
12 | Alex
13 |
14 |
--------------------------------------------------------------------------------
/test/Matrix.Tests/Xmpp/Bosh/bosh1.xml:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/test/Matrix.Tests/Xmpp/Bosh/bosh2.xml:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/test/Matrix.Tests/Xmpp/Bosh/bosh3.xml:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/test/Matrix.Tests/Xmpp/Bosh/bosh4.xml:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/test/Matrix.Tests/Xmpp/Bosh/bosh5.xml:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/test/Matrix.Tests/Xmpp/Bytestreams/activate1.xml:
--------------------------------------------------------------------------------
1 | target@example.org/bar
--------------------------------------------------------------------------------
/test/Matrix.Tests/Xmpp/Bytestreams/activate2.xml:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/test/Matrix.Tests/Xmpp/Bytestreams/query1.xml:
--------------------------------------------------------------------------------
1 |
4 |
8 |
12 |
--------------------------------------------------------------------------------
/test/Matrix.Tests/Xmpp/Bytestreams/streamhost-used.xml:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/test/Matrix.Tests/Xmpp/Bytestreams/streamhost1.xml:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/test/Matrix.Tests/Xmpp/Bytestreams/streamhost2.xml:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/test/Matrix.Tests/Xmpp/Capabilities/discoinfo1.xml:
--------------------------------------------------------------------------------
1 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 | urn:xmpp:dataforms:softwareinfo
12 |
13 |
14 | ipv4
15 | ipv6
16 |
17 |
18 | Mac
19 |
20 |
21 | 10.5.1
22 |
23 |
24 | Psi
25 |
26 |
27 | 0.11
28 |
29 |
30 |
--------------------------------------------------------------------------------
/test/Matrix.Tests/Xmpp/Capabilities/discoinfo3.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/test/Matrix.Tests/Xmpp/Capabilities/streamfeatures.xml:
--------------------------------------------------------------------------------
1 |
2 |
6 |
--------------------------------------------------------------------------------
/test/Matrix.Tests/Xmpp/Chatstates/message1.xml:
--------------------------------------------------------------------------------
1 |
5 | Who's there?
6 |
7 |
--------------------------------------------------------------------------------
/test/Matrix.Tests/Xmpp/Chatstates/message2.xml:
--------------------------------------------------------------------------------
1 |
5 | Who's there?
6 |
--------------------------------------------------------------------------------
/test/Matrix.Tests/Xmpp/Chatstates/message3.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/test/Matrix.Tests/Xmpp/Client/error1.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | dummy text
4 |
--------------------------------------------------------------------------------
/test/Matrix.Tests/Xmpp/Client/error10.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/test/Matrix.Tests/Xmpp/Client/error11.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/test/Matrix.Tests/Xmpp/Client/error12.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/test/Matrix.Tests/Xmpp/Client/error2.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/test/Matrix.Tests/Xmpp/Client/error3.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/test/Matrix.Tests/Xmpp/Client/error4.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/test/Matrix.Tests/Xmpp/Client/error5.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/test/Matrix.Tests/Xmpp/Client/error6.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/test/Matrix.Tests/Xmpp/Client/error7.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/test/Matrix.Tests/Xmpp/Client/error8.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/test/Matrix.Tests/Xmpp/Client/error9.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/test/Matrix.Tests/Xmpp/Client/message1.xml:
--------------------------------------------------------------------------------
1 |
2 | Wow, I'm green with envy!
3 |
4 |
5 |
6 | Wow, I'm green
7 | with envy!
8 |
9 |
10 |
11 |
--------------------------------------------------------------------------------
/test/Matrix.Tests/Xmpp/Client/message2.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | Hello World
4 |
5 |
--------------------------------------------------------------------------------
/test/Matrix.Tests/Xmpp/Client/paragraph.xml:
--------------------------------------------------------------------------------
1 |
2 | Wow, I'm green
3 | with envy!
4 |
--------------------------------------------------------------------------------
/test/Matrix.Tests/Xmpp/Client/rosteriq1.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/test/Matrix.Tests/Xmpp/Client/rosteriq2.xml:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/test/Matrix.Tests/Xmpp/Client/rosteriq3.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/test/Matrix.Tests/Xmpp/Client/rosteriq4.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/test/Matrix.Tests/Xmpp/Client/timeiq.xml:
--------------------------------------------------------------------------------
1 |
5 |
6 |
--------------------------------------------------------------------------------
/test/Matrix.Tests/Xmpp/Compression/compress1.xml:
--------------------------------------------------------------------------------
1 |
2 | zlib
3 |
--------------------------------------------------------------------------------
/test/Matrix.Tests/Xmpp/Compression/compress2.xml:
--------------------------------------------------------------------------------
1 |
2 | Zlib
3 |
--------------------------------------------------------------------------------
/test/Matrix.Tests/Xmpp/Compression/compression1.xml:
--------------------------------------------------------------------------------
1 |
2 | zlib
3 |
--------------------------------------------------------------------------------
/test/Matrix.Tests/Xmpp/Compression/compression2.xml:
--------------------------------------------------------------------------------
1 |
2 | Zlib
3 |
--------------------------------------------------------------------------------
/test/Matrix.Tests/Xmpp/Compression/compression3.xml:
--------------------------------------------------------------------------------
1 |
2 | FooBar
3 |
--------------------------------------------------------------------------------
/test/Matrix.Tests/Xmpp/Compression/streamfeatures1.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | CRAM-MD5
5 | LOGIN
6 | PLAIN
7 | DIGEST-MD5
8 | SCRAM-SHA-1
9 |
10 |
11 | zlib
12 |
13 |
14 |
15 |
16 |
17 |
--------------------------------------------------------------------------------
/test/Matrix.Tests/Xmpp/Compression/streamfeatures2.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | zlib
4 |
5 |
6 | SCRAM-SHA-1
7 | ANONYMOUS
8 | DIGEST-MD5
9 | PLAIN
10 |
11 |
12 |
13 |
--------------------------------------------------------------------------------
/test/Matrix.Tests/Xmpp/Dialback/stream.xml:
--------------------------------------------------------------------------------
1 |
8 | 37c69b1cf07a3f67c04a5ef5902fa5114f2c76fe4a2686482ba5b89323075643
12 |
--------------------------------------------------------------------------------
/test/Matrix.Tests/Xmpp/Dialback/verify1.xml:
--------------------------------------------------------------------------------
1 | 37c69b1cf07a3f67c04a5ef5902fa5114f2c76fe4a2686482ba5b89323075643
--------------------------------------------------------------------------------
/test/Matrix.Tests/Xmpp/Dialback/verify2.xml:
--------------------------------------------------------------------------------
1 | 37c69b1cf07a3f67c04a5ef5902fa5114f2c76fe4a2686482ba5b89323075643
--------------------------------------------------------------------------------
/test/Matrix.Tests/Xmpp/Dialback/verify3.xml:
--------------------------------------------------------------------------------
1 | 37c69b1cf07a3f67c04a5ef5902fa5114f2c76fe4a2686482ba5b89323075643
--------------------------------------------------------------------------------
/test/Matrix.Tests/Xmpp/Disco/discoinfo1.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 | http://jabber.org/protocol/muc#roominfo
14 |
15 |
16 | Premier League
17 |
18 |
19 |
20 |
21 |
22 | 3
23 |
24 |
25 | 20090318T10:01:47
26 |
27 |
28 |
--------------------------------------------------------------------------------
/test/Matrix.Tests/Xmpp/Disco/discoitems1.xml:
--------------------------------------------------------------------------------
1 |
3 |
6 |
9 |
12 |
--------------------------------------------------------------------------------
/test/Matrix.Tests/Xmpp/Disco/feature1.xml:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/test/Matrix.Tests/Xmpp/Disco/idendity1.xml:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/test/Matrix.Tests/Xmpp/Disco/iq1.xml:
--------------------------------------------------------------------------------
1 |
6 |
8 |
11 |
13 |
15 |
16 |
--------------------------------------------------------------------------------
/test/Matrix.Tests/Xmpp/Disco/iq2.xml:
--------------------------------------------------------------------------------
1 |
5 |
6 |
7 |
8 |
9 |
10 |
--------------------------------------------------------------------------------
/test/Matrix.Tests/Xmpp/Disco/item1.xml:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/test/Matrix.Tests/Xmpp/ExtendedStanzaAddressing/address1.xml:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/test/Matrix.Tests/Xmpp/ExtendedStanzaAddressing/address2.xml:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/test/Matrix.Tests/Xmpp/ExtendedStanzaAddressing/address3.xml:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/test/Matrix.Tests/Xmpp/ExtendedStanzaAddressing/address4.xml:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/test/Matrix.Tests/Xmpp/ExtendedStanzaAddressing/address5.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 | Hello, world!
7 |
--------------------------------------------------------------------------------
/test/Matrix.Tests/Xmpp/Google/GCM/message1.xml:
--------------------------------------------------------------------------------
1 |
2 | {'to':'REGISTRATION_ID'}
3 |
--------------------------------------------------------------------------------
/test/Matrix.Tests/Xmpp/HttpUpload/get.xml:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/test/Matrix.Tests/Xmpp/HttpUpload/header-authorization.xml:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/test/Matrix.Tests/Xmpp/HttpUpload/header-cookie.xml:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/test/Matrix.Tests/Xmpp/HttpUpload/slot-request-iq.xml:
--------------------------------------------------------------------------------
1 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
--------------------------------------------------------------------------------
/test/Matrix.Tests/Xmpp/HttpUpload/slot-request.xml:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/test/Matrix.Tests/Xmpp/IBB/close1.xml:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/test/Matrix.Tests/Xmpp/IBB/data1.xml:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/test/Matrix.Tests/Xmpp/IBB/open1.xml:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/test/Matrix.Tests/Xmpp/IBB/open2.xml:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/test/Matrix.Tests/Xmpp/Jingle/Transports/transport1.xml:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/test/Matrix.Tests/Xmpp/Jingle/candidate1.xml:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/test/Matrix.Tests/Xmpp/Jingle/content1.xml:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/test/Matrix.Tests/Xmpp/Jingle/content2.xml:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/test/Matrix.Tests/Xmpp/Jingle/description1.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
--------------------------------------------------------------------------------
/test/Matrix.Tests/Xmpp/Jingle/description2.xml:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/test/Matrix.Tests/Xmpp/Jingle/jingle1.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/test/Matrix.Tests/Xmpp/Jingle/jingle_iq1.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
--------------------------------------------------------------------------------
/test/Matrix.Tests/Xmpp/Jingle/payload-type1.xml:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/test/Matrix.Tests/Xmpp/Jingle/reason1.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/test/Matrix.Tests/Xmpp/Jingle/reason2.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | b84tkkwlmb48kgfb
4 |
5 |
--------------------------------------------------------------------------------
/test/Matrix.Tests/Xmpp/MessageCarbons/forwarded1.xml:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/test/Matrix.Tests/Xmpp/MessageCarbons/message_carbons1.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | blarg
6 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/test/Matrix.Tests/Xmpp/Mood/mood1.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | curse my nurse!
4 |
--------------------------------------------------------------------------------
/test/Matrix.Tests/Xmpp/Mood/mood2.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/test/Matrix.Tests/Xmpp/Mood/pubsub1.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | -
4 |
5 |
6 | curse my nurse!
7 |
8 |
9 |
10 |
--------------------------------------------------------------------------------
/test/Matrix.Tests/Xmpp/Muc/Admin/admin_iq1.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | -
4 | my reason!
5 |
6 |
7 |
--------------------------------------------------------------------------------
/test/Matrix.Tests/Xmpp/Muc/Admin/admin_query1.xml:
--------------------------------------------------------------------------------
1 |
2 | -
3 | my reason!
4 |
5 |
--------------------------------------------------------------------------------
/test/Matrix.Tests/Xmpp/Muc/MucManagerTest.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matrix-xmpp/matrix-vnext/a62ecc83174310d7cd4a480f99619d03a6857064/test/Matrix.Tests/Xmpp/Muc/MucManagerTest.cs
--------------------------------------------------------------------------------
/test/Matrix.Tests/Xmpp/Muc/User/actor1.xml:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/test/Matrix.Tests/Xmpp/Muc/User/decline1.xml:
--------------------------------------------------------------------------------
1 |
2 | Sorry, I'm too busy right now.
3 |
--------------------------------------------------------------------------------
/test/Matrix.Tests/Xmpp/Muc/User/invite1.xml:
--------------------------------------------------------------------------------
1 |
2 | The reason.
3 |
--------------------------------------------------------------------------------
/test/Matrix.Tests/Xmpp/Muc/User/presence_gtalk1.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | Working. DND!
6 |
7 | Alex
8 | dnd
9 |
10 | a8bb03071cb085b5705d49b43f32f7b7cb9c9a6c
11 |
12 |
--------------------------------------------------------------------------------
/test/Matrix.Tests/Xmpp/Muc/User/userx1.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | cauldronburn
4 |
--------------------------------------------------------------------------------
/test/Matrix.Tests/Xmpp/Muc/message1.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | FOO
5 |
6 | cauldronburn
7 |
8 |
--------------------------------------------------------------------------------
/test/Matrix.Tests/Xmpp/Muc/x1.xml:
--------------------------------------------------------------------------------
1 |
2 | secret
3 |
--------------------------------------------------------------------------------
/test/Matrix.Tests/Xmpp/Muc/x2.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/test/Matrix.Tests/Xmpp/Nickname/nick1.xml:
--------------------------------------------------------------------------------
1 | Ishmael
--------------------------------------------------------------------------------
/test/Matrix.Tests/Xmpp/Nickname/presence1.xml:
--------------------------------------------------------------------------------
1 |
2 | away
3 | writing
4 | Ishmael
5 |
--------------------------------------------------------------------------------
/test/Matrix.Tests/Xmpp/Privacy/item1.xml:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/test/Matrix.Tests/Xmpp/Privacy/item2.xml:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/test/Matrix.Tests/Xmpp/Privacy/item3.xml:
--------------------------------------------------------------------------------
1 | -
2 |
3 |
4 |
--------------------------------------------------------------------------------
/test/Matrix.Tests/Xmpp/Privacy/item4.xml:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/test/Matrix.Tests/Xmpp/Privacy/privacy_query1.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/test/Matrix.Tests/Xmpp/Private/private1.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/test/Matrix.Tests/Xmpp/PubSub/Event/associate1.xml:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/test/Matrix.Tests/Xmpp/PubSub/Event/collection1.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/test/Matrix.Tests/Xmpp/PubSub/Event/collection2.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/test/Matrix.Tests/Xmpp/PubSub/Event/disassociate1.xml:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/test/Matrix.Tests/Xmpp/PubSub/Event/event1.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | -
4 | [ ... ENTRY ... ]
5 |
6 | -
7 | [ ... ENTRY ... ]
8 |
9 |
10 |
--------------------------------------------------------------------------------
/test/Matrix.Tests/Xmpp/PubSub/Event/event2.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/test/Matrix.Tests/Xmpp/PubSub/Event/event3.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/test/Matrix.Tests/Xmpp/PubSub/Event/event4.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/test/Matrix.Tests/Xmpp/PubSub/Event/event5.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/test/Matrix.Tests/Xmpp/PubSub/Event/event6.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/test/Matrix.Tests/Xmpp/PubSub/Event/event7.xml:
--------------------------------------------------------------------------------
1 |
2 |
8 |
--------------------------------------------------------------------------------
/test/Matrix.Tests/Xmpp/PubSub/Owner/affiliations1.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
--------------------------------------------------------------------------------
/test/Matrix.Tests/Xmpp/PubSub/Owner/affiliations2.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
--------------------------------------------------------------------------------
/test/Matrix.Tests/Xmpp/PubSub/Owner/affiliations4.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/test/Matrix.Tests/Xmpp/PubSub/Owner/affiliations_iq1.xml:
--------------------------------------------------------------------------------
1 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
--------------------------------------------------------------------------------
/test/Matrix.Tests/Xmpp/PubSub/Owner/configure1.xml:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/test/Matrix.Tests/Xmpp/PubSub/Owner/configure3.xml:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/test/Matrix.Tests/Xmpp/PubSub/Owner/create1.xml:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/test/Matrix.Tests/Xmpp/PubSub/Owner/pubsub1.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/test/Matrix.Tests/Xmpp/PubSub/Owner/pubsub2.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/test/Matrix.Tests/Xmpp/PubSub/Owner/pubsub3.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/test/Matrix.Tests/Xmpp/PubSub/Owner/pubsub_delete_iq1.xml:
--------------------------------------------------------------------------------
1 |
6 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/test/Matrix.Tests/Xmpp/PubSub/Owner/purge1.xml:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/test/Matrix.Tests/Xmpp/PubSub/Owner/subscriptions1.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
--------------------------------------------------------------------------------
/test/Matrix.Tests/Xmpp/PubSub/PubSubManagerTest.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matrix-xmpp/matrix-vnext/a62ecc83174310d7cd4a480f99619d03a6857064/test/Matrix.Tests/Xmpp/PubSub/PubSubManagerTest.cs
--------------------------------------------------------------------------------
/test/Matrix.Tests/Xmpp/PubSub/publish1.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/test/Matrix.Tests/Xmpp/PubSub/publish_iq1.xml:
--------------------------------------------------------------------------------
1 |
5 |
6 |
7 |
8 |
--------------------------------------------------------------------------------
/test/Matrix.Tests/Xmpp/PubSub/publish_iq2.xml:
--------------------------------------------------------------------------------
1 |
5 |
6 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/test/Matrix.Tests/Xmpp/PubSub/retract1.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/test/Matrix.Tests/Xmpp/PubSub/subscribe1.xml:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/test/Matrix.Tests/Xmpp/PubSub/subscription1.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
--------------------------------------------------------------------------------
/test/Matrix.Tests/Xmpp/PubSub/subscription2.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/test/Matrix.Tests/Xmpp/PubSub/unsubscribe1.xml:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/test/Matrix.Tests/Xmpp/Register/register_query1.xml:
--------------------------------------------------------------------------------
1 |
2 | instructions
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/test/Matrix.Tests/Xmpp/Register/register_query2.xml:
--------------------------------------------------------------------------------
1 |
2 | instructions
3 | user
4 | 12345
5 | name
6 | first
7 | last
8 | user@email.com
9 | nick
10 | misc
11 |
--------------------------------------------------------------------------------
/test/Matrix.Tests/Xmpp/Register/register_query3.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/test/Matrix.Tests/Xmpp/Register/register_query4.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | jabber:iq:register
5 |
6 |
7 | Juliet
8 |
9 |
10 | Capulet
11 |
12 |
13 | juliet@capulet.com
14 |
15 |
16 | F
17 |
18 |
19 |
--------------------------------------------------------------------------------
/test/Matrix.Tests/Xmpp/Register/register_query5.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/test/Matrix.Tests/Xmpp/Register/register_query6.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | Instructions
4 | Alex
5 | 12345
6 | alex@server.org
7 |
8 |
--------------------------------------------------------------------------------
/test/Matrix.Tests/Xmpp/Register/register_query7.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/test/Matrix.Tests/Xmpp/ResultSetManagement/set1.xml:
--------------------------------------------------------------------------------
1 |
2 | 10
3 |
--------------------------------------------------------------------------------
/test/Matrix.Tests/Xmpp/ResultSetManagement/set2.xml:
--------------------------------------------------------------------------------
1 |
2 | stpeter@jabber.org
3 | peterpan@neverland.lit
4 | 800
5 |
--------------------------------------------------------------------------------
/test/Matrix.Tests/Xmpp/Roster/item1.xml:
--------------------------------------------------------------------------------
1 | -
5 | Friends
6 | Friends2
7 | Friends3
8 |
--------------------------------------------------------------------------------
/test/Matrix.Tests/Xmpp/Roster/item2.xml:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/test/Matrix.Tests/Xmpp/Roster/item3.xml:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/test/Matrix.Tests/Xmpp/Roster/item4.xml:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/test/Matrix.Tests/Xmpp/Roster/item5.xml:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/test/Matrix.Tests/Xmpp/Roster/item6.xml:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/test/Matrix.Tests/Xmpp/Roster/roster_iq1.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | -
6 | Friends
7 |
8 | -
11 | Friends
12 |
13 | -
16 | Friends
17 | Friends2
18 | Friends3
19 |
20 |
21 |
--------------------------------------------------------------------------------
/test/Matrix.Tests/Xmpp/RosterItemExchange/item1.xml:
--------------------------------------------------------------------------------
1 | -
5 | Visitors
6 |
--------------------------------------------------------------------------------
/test/Matrix.Tests/Xmpp/RosterItemExchange/item2.xml:
--------------------------------------------------------------------------------
1 | -
4 | Visitors
5 |
--------------------------------------------------------------------------------
/test/Matrix.Tests/Xmpp/RosterItemExchange/item3.xml:
--------------------------------------------------------------------------------
1 | -
5 | Visitors
6 |
--------------------------------------------------------------------------------
/test/Matrix.Tests/Xmpp/RosterItemExchange/x1.xml:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/test/Matrix.Tests/Xmpp/RosterItemExchange/x2.xml:
--------------------------------------------------------------------------------
1 |
2 | -
5 | Visitors
6 |
7 | -
10 | Visitors
11 |
12 |
--------------------------------------------------------------------------------
/test/Matrix.Tests/Xmpp/Rpc/rpc_iq1.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | bid
5 |
6 |
7 |
8 |
9 |
10 | symbol
11 |
12 | RHAT
13 |
14 |
15 |
16 | limit
17 |
18 | 2.25
19 |
20 |
21 |
22 | expires
23 |
24 | 20020709T20:00:00
25 |
26 |
27 |
28 |
29 |
30 |
31 |
32 |
33 |
--------------------------------------------------------------------------------
/test/Matrix.Tests/Xmpp/Rpc/rpc_iq2.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | com.collabng.net.remoteable.ViewpointRemoteable.setViewpoint
5 |
6 |
7 |
8 | viewpoint_BackView_collabng
9 |
10 |
11 |
12 |
13 |
14 |
--------------------------------------------------------------------------------
/test/Matrix.Tests/Xmpp/Rpc/rpc_iq3.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | bid
5 |
6 |
7 |
8 |
9 |
10 | symbol
11 | RHAT
12 |
13 |
14 | limit
15 | 2.25
16 |
17 |
18 | some_array
19 |
20 |
21 |
22 | A
23 | B
24 | C
25 | D
26 |
27 |
28 |
29 |
30 |
31 |
32 |
33 |
34 |
35 |
36 |
--------------------------------------------------------------------------------
/test/Matrix.Tests/Xmpp/Rpc/rpc_query1.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | bid
4 |
5 |
6 |
7 |
8 |
9 | symbol
10 |
11 | RHAT
12 |
13 |
14 |
15 | limit
16 |
17 | 2.25
18 |
19 |
20 |
21 | expires
22 |
23 | 20020709T20:00:00
24 |
25 |
26 |
27 |
28 |
29 |
30 |
31 |
--------------------------------------------------------------------------------
/test/Matrix.Tests/Xmpp/Rpc/rpc_query2.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | examples.getStateName
4 |
5 |
6 |
7 | 6
8 |
9 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/test/Matrix.Tests/Xmpp/Rpc/rpc_query_response1.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 | faultCode
8 |
9 | 23
10 |
11 |
12 |
13 | faultString
14 |
15 | Unknown stock symbol ABCD
16 |
17 |
18 |
19 |
20 |
21 |
22 |
--------------------------------------------------------------------------------
/test/Matrix.Tests/Xmpp/Rpc/rpc_query_response2.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 | Colorado
7 |
8 |
9 |
10 |
11 |
--------------------------------------------------------------------------------
/test/Matrix.Tests/Xmpp/Rpc/rpc_query_response3.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 | faultCode
7 |
8 | 23
9 |
10 |
11 |
12 | faultString
13 |
14 | Unknown stock symbol ABCD
15 |
16 |
17 |
18 |
19 |
20 |
--------------------------------------------------------------------------------
/test/Matrix.Tests/Xmpp/Sasl/auth1.xml:
--------------------------------------------------------------------------------
1 | ZHVtbXkgdmFsdWU=
--------------------------------------------------------------------------------
/test/Matrix.Tests/Xmpp/Sasl/challenge1.xml:
--------------------------------------------------------------------------------
1 | ZHVtbXkgdmFsdWU=
--------------------------------------------------------------------------------
/test/Matrix.Tests/Xmpp/Sasl/failure1.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/test/Matrix.Tests/Xmpp/Sasl/failure2.xml:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/test/Matrix.Tests/Xmpp/Sasl/mechanism1.xml:
--------------------------------------------------------------------------------
1 | GSSAPI
--------------------------------------------------------------------------------
/test/Matrix.Tests/Xmpp/Sasl/mechanisms1.xml:
--------------------------------------------------------------------------------
1 |
2 | DIGEST-MD5
3 | PLAIN
4 | GSSAPI
5 |
--------------------------------------------------------------------------------
/test/Matrix.Tests/Xmpp/Sasl/mechanisms2.xml:
--------------------------------------------------------------------------------
1 |
2 | GSSAPI
3 | DIGEST-MD5
4 | auth42.us.example.com
5 |
--------------------------------------------------------------------------------
/test/Matrix.Tests/Xmpp/Sasl/mechanisms3.xml:
--------------------------------------------------------------------------------
1 |
2 | GSSAPI
3 | DIGEST-MD5
4 | auth43.us.example.com
5 |
--------------------------------------------------------------------------------
/test/Matrix.Tests/Xmpp/Sasl/response1.xml:
--------------------------------------------------------------------------------
1 | ZHVtbXkgdmFsdWU=
--------------------------------------------------------------------------------
/test/Matrix.Tests/Xmpp/Search/search_query1.xml:
--------------------------------------------------------------------------------
1 |
2 | foo
3 |
4 |
5 |
6 | gnauck@ag-software.de
7 |
--------------------------------------------------------------------------------
/test/Matrix.Tests/Xmpp/Search/search_query2.xml:
--------------------------------------------------------------------------------
1 |
2 | -
3 | Juliet
4 | Capulet
5 | JuliC
6 | juliet@shakespeare.lit
7 |
8 | -
9 | Tybalt
10 | Capulet
11 | ty
12 | tybalt@shakespeare.lit
13 |
14 |
--------------------------------------------------------------------------------
/test/Matrix.Tests/Xmpp/Search/search_query3.xml:
--------------------------------------------------------------------------------
1 | -
2 | Tybalt
3 | Capulet
4 | ty
5 | tybalt@shakespeare.lit
6 |
--------------------------------------------------------------------------------
/test/Matrix.Tests/Xmpp/Search/search_query4.xml:
--------------------------------------------------------------------------------
1 |
4 |
5 | -
6 | Juliet
7 | Capulet
8 | JuliC
9 | juliet@shakespeare.lit
10 |
11 | -
12 | Tybalt
13 | Capulet
14 | ty
15 | tybalt@shakespeare.lit
16 |
17 |
18 |
--------------------------------------------------------------------------------
/test/Matrix.Tests/Xmpp/SecurityLabels/message1.xml:
--------------------------------------------------------------------------------
1 |
2 | This content is classified.
3 |
4 | SECRET
5 |
8 |
9 |
--------------------------------------------------------------------------------
/test/Matrix.Tests/Xmpp/SecurityLabels/securitylabel1.xml:
--------------------------------------------------------------------------------
1 |
2 | SECRET
3 |
6 |
--------------------------------------------------------------------------------
/test/Matrix.Tests/Xmpp/Shim/headers1.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/test/Matrix.Tests/Xmpp/Shim/headers2.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/test/Matrix.Tests/Xmpp/Stream/Errors/see_other_host1.xml:
--------------------------------------------------------------------------------
1 | foo.com
--------------------------------------------------------------------------------
/test/Matrix.Tests/Xmpp/Stream/Errors/see_other_host2.xml:
--------------------------------------------------------------------------------
1 | foo.com:80
--------------------------------------------------------------------------------
/test/Matrix.Tests/Xmpp/Stream/Features/ver1.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/test/Matrix.Tests/Xmpp/Stream/Features/ver2.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/test/Matrix.Tests/Xmpp/Stream/compression1.xml:
--------------------------------------------------------------------------------
1 |
2 | zlib
3 |
--------------------------------------------------------------------------------
/test/Matrix.Tests/Xmpp/Stream/compression2.xml:
--------------------------------------------------------------------------------
1 |
2 | FooBar
3 |
--------------------------------------------------------------------------------
/test/Matrix.Tests/Xmpp/Stream/stream_error1.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/test/Matrix.Tests/Xmpp/Stream/stream_error2.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/test/Matrix.Tests/Xmpp/Stream/stream_features1.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | CRAM-MD5
5 | LOGIN
6 | PLAIN
7 | DIGEST-MD5
8 | SCRAM-SHA-1
9 |
10 |
11 | zlib
12 |
13 |
14 |
15 |
16 |
17 |
--------------------------------------------------------------------------------
/test/Matrix.Tests/Xmpp/StreamManagement/a1.xml:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/test/Matrix.Tests/Xmpp/StreamManagement/enable1.xml:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/test/Matrix.Tests/Xmpp/StreamManagement/enabled1.xml:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/test/Matrix.Tests/Xmpp/StreamManagement/enabled2.xml:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/test/Matrix.Tests/Xmpp/StreamManagement/enabled3.xml:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/test/Matrix.Tests/Xmpp/StreamManagement/failed1.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/test/Matrix.Tests/Xmpp/StreamManagement/failed2.xml:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/test/Matrix.Tests/Xmpp/StreamManagement/failed3.xml:
--------------------------------------------------------------------------------
1 |
3 |
4 |
--------------------------------------------------------------------------------
/test/Matrix.Tests/Xmpp/StreamManagement/r1.xml:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/test/Matrix.Tests/Xmpp/StreamManagement/resume1.xml:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/test/Matrix.Tests/Xmpp/StreamManagement/resumed1.xml:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/test/Matrix.Tests/Xmpp/StreamManagement/sm1.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/test/Matrix.Tests/Xmpp/StreamManagement/stream_features1.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
--------------------------------------------------------------------------------
/test/Matrix.Tests/Xmpp/StreamManagement/stream_features2.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/test/Matrix.Tests/Xmpp/Tune/tune1.xml:
--------------------------------------------------------------------------------
1 |
2 | Yes
3 | 686
4 | 8
5 | Yessongs
6 | Heart of the Sunrise
7 |
8 | http://www.yesworld.com/lyrics/Fragile.html#9
9 |
--------------------------------------------------------------------------------
/test/Matrix.Tests/Xmpp/Vcard/address1.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | Suite 600
4 | 1899 Wynkoop Street
5 | Denver
6 | CO
7 | 80202
8 | USA
9 |
--------------------------------------------------------------------------------
/test/Matrix.Tests/Xmpp/Vcard/email1.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | info@ag-software.de
4 |
--------------------------------------------------------------------------------
/test/Matrix.Tests/Xmpp/Vcard/email2.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | stpeter@jabber.org
5 |
--------------------------------------------------------------------------------
/test/Matrix.Tests/Xmpp/Vcard/photo2.xml:
--------------------------------------------------------------------------------
1 |
2 | image/jpeg
3 |
4 |
--------------------------------------------------------------------------------
/test/Matrix.Tests/Xmpp/Vcard/photo3.xml:
--------------------------------------------------------------------------------
1 |
2 | image/jpeg
3 |
--------------------------------------------------------------------------------
/test/Matrix.Tests/Xmpp/Vcard/telephone1.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | 303-308-3282
5 |
--------------------------------------------------------------------------------
/test/Matrix.Tests/Xmpp/Vcard/telephone2.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | 12345
5 |
--------------------------------------------------------------------------------
/test/Matrix.Tests/Xmpp/Vcard/telephone3.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | 67890
5 |
--------------------------------------------------------------------------------
/test/Matrix.Tests/Xmpp/Vcard/telephone4.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | 12345
4 |
--------------------------------------------------------------------------------
/test/Matrix.Tests/Xmpp/Vcard/telephone5.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | 12345
5 |
--------------------------------------------------------------------------------
/test/Matrix.Tests/Xmpp/Vcard/telephone6.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | 12345
5 |
--------------------------------------------------------------------------------
/test/Matrix.Tests/Xmpp/XData/field1.xml:
--------------------------------------------------------------------------------
1 |
2 | queue1
3 | queue2
4 | queue3
5 |
--------------------------------------------------------------------------------
/test/Matrix.Tests/Xmpp/XData/field2.xml:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/test/Matrix.Tests/Xmpp/XData/xdata1.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | -
6 |
7 | field-value
8 |
9 |
10 | -
11 |
12 | field-value
13 |
14 |
15 |
--------------------------------------------------------------------------------
/test/Matrix.Tests/Xmpp/XData/xdata3.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | value1
4 |
5 |
6 | value2
7 |
8 |
--------------------------------------------------------------------------------
/tools/nuget.exe:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/matrix-xmpp/matrix-vnext/a62ecc83174310d7cd4a480f99619d03a6857064/tools/nuget.exe
--------------------------------------------------------------------------------
/tools/packages.config:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/tools/packages.config.md5sum:
--------------------------------------------------------------------------------
1 | CC-F2-4A-54-72-6D-04-F8-6C-50-05-13-FE-01-76-F3
2 |
--------------------------------------------------------------------------------