import 'package:moxxmpp/moxxmpp.dart'; import 'package:test/test.dart'; import '../helpers/logging.dart'; import '../helpers/xmpp.dart'; class MockedCSINegotiator extends CSINegotiator { MockedCSINegotiator(this._isSupported); final bool _isSupported; @override bool get isSupported => _isSupported; } T? getSupportedCSINegotiator(String id) { if (id == csiNegotiator) { return MockedCSINegotiator(true) as T; } return null; } T? getUnsupportedCSINegotiator(String id) { if (id == csiNegotiator) { return MockedCSINegotiator(false) as T; } return null; } void main() { initLogger(); group('Test the XEP-0352 implementation', () { test('Test setting the CSI state when CSI is unsupported', () { var nonzaSent = false; CSIManager() ..register( XmppManagerAttributes( sendStanza: ( _, { StanzaFromType addFrom = StanzaFromType.full, bool addId = true, bool retransmitted = false, bool awaitable = true, bool encrypted = false, bool forceEncryption = false, }) async => XMLNode(tag: 'hallo'), sendEvent: (event) {}, sendNonza: (nonza) { nonzaSent = true; }, getConnectionSettings: () => ConnectionSettings( jid: JID.fromString('some.user@example.server'), password: 'password', useDirectTLS: true, ), getManagerById: getManagerNullStub, getNegotiatorById: getUnsupportedCSINegotiator, getFullJID: () => JID.fromString('some.user@example.server/aaaaa'), getSocket: () => StubTCPSocket([]), getConnection: () => XmppConnection( TestingReconnectionPolicy(), AlwaysConnectedConnectivityManager(), ClientToServerNegotiator(), StubTCPSocket([]), ), ), ) ..setActive() ..setInactive(); expect(nonzaSent, false, reason: 'Expected that no nonza is sent'); }); test('Test setting the CSI state when CSI is supported', () { CSIManager() ..register( XmppManagerAttributes( sendStanza: ( _, { StanzaFromType addFrom = StanzaFromType.full, bool addId = true, bool retransmitted = false, bool awaitable = true, bool encrypted = false, bool forceEncryption = false, }) async => XMLNode(tag: 'hallo'), sendEvent: (event) {}, sendNonza: (nonza) { expect( nonza.attributes['xmlns'] == csiXmlns, true, reason: "Expected only nonzas with XMLNS '$csiXmlns'", ); }, getConnectionSettings: () => ConnectionSettings( jid: JID.fromString('some.user@example.server'), password: 'password', useDirectTLS: true, ), getManagerById: getManagerNullStub, getNegotiatorById: getSupportedCSINegotiator, getFullJID: () => JID.fromString('some.user@example.server/aaaaa'), getSocket: () => StubTCPSocket([]), getConnection: () => XmppConnection( TestingReconnectionPolicy(), AlwaysConnectedConnectivityManager(), ClientToServerNegotiator(), StubTCPSocket([]), ), ), ) ..setActive() ..setInactive(); }); }); test('Test CSI with Bind2', () async { final fakeSocket = StubTCPSocket([ StringExpectation( "", ''' PLAIN PLAIN ''', ), StanzaExpectation( ''' moxxmpp PapaTutuWawa's awesome device AHBvbHlub21kaXZpc2lvbgBhYWFh ''', ''' polynomdivision@test.server/test-resource ''', ), ]); final conn = XmppConnection( TestingReconnectionPolicy(), AlwaysConnectedConnectivityManager(), ClientToServerNegotiator(), fakeSocket, )..setConnectionSettings( ConnectionSettings( jid: JID.fromString('polynomdivision@test.server'), password: 'aaaa', useDirectTLS: true, ), ); final csi = CSIManager(); await csi.setInactive(sendNonza: false); await conn.registerManagers([ RosterManager(TestingRosterStateManager('', [])), DiscoManager([]), csi, ]); await conn.registerFeatureNegotiators([ SaslPlainNegotiator(), ResourceBindingNegotiator(), FASTSaslNegotiator(), Bind2Negotiator(), CSINegotiator(), Sasl2Negotiator( userAgent: const UserAgent( id: 'd4565fa7-4d72-4749-b3d3-740edbf87770', software: 'moxxmpp', device: "PapaTutuWawa's awesome device", ), ), ]); final result = await conn.connect( waitUntilLogin: true, shouldReconnect: false, enableReconnectOnSuccess: false, ); expect(result.isType(), false); expect(fakeSocket.getState(), 2); expect( conn.getNegotiatorById(csiNegotiator)!.isSupported, true, ); }); }