2020-02-10 11:33:18 +00:00
|
|
|
/*
|
2020-06-03 10:16:01 +00:00
|
|
|
* Ansible inventory script used at Famedly GmbH for managing many hosts
|
|
|
|
* Copyright (C) 2019, 2020 Famedly GmbH
|
2020-02-10 11:33:18 +00:00
|
|
|
*
|
2020-06-03 10:16:01 +00:00
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Affero General Public License as
|
|
|
|
* published by the Free Software Foundation, either version 3 of the
|
|
|
|
* License, or (at your option) any later version.
|
2020-02-10 11:33:18 +00:00
|
|
|
*
|
2020-06-03 10:16:01 +00:00
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU Affero General Public License for more details.
|
2020-02-10 11:33:18 +00:00
|
|
|
*
|
2020-06-03 10:16:01 +00:00
|
|
|
* You should have received a copy of the GNU Affero General Public License
|
|
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
2020-02-10 11:33:18 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
import 'package:test/test.dart';
|
|
|
|
import 'package:famedlysdk/src/utils/matrix_id_string_extension.dart';
|
|
|
|
|
|
|
|
void main() {
|
|
|
|
/// All Tests related to the ChatTime
|
2020-03-30 09:08:38 +00:00
|
|
|
group('Matrix ID String Extension', () {
|
|
|
|
test('Matrix ID String Extension', () async {
|
|
|
|
final mxId = '@test:example.com';
|
2020-02-10 11:33:18 +00:00
|
|
|
expect(mxId.isValidMatrixId, true);
|
2020-03-30 09:08:38 +00:00
|
|
|
expect('#test:example.com'.isValidMatrixId, true);
|
|
|
|
expect('!test:example.com'.isValidMatrixId, true);
|
|
|
|
expect('+test:example.com'.isValidMatrixId, true);
|
|
|
|
expect('\$test:example.com'.isValidMatrixId, true);
|
|
|
|
expect('test:example.com'.isValidMatrixId, false);
|
|
|
|
expect('@testexample.com'.isValidMatrixId, false);
|
|
|
|
expect('@:example.com'.isValidMatrixId, false);
|
|
|
|
expect('@test:'.isValidMatrixId, false);
|
|
|
|
expect(mxId.sigil, '@');
|
|
|
|
expect('#test:example.com'.sigil, '#');
|
|
|
|
expect('!test:example.com'.sigil, '!');
|
|
|
|
expect('+test:example.com'.sigil, '+');
|
|
|
|
expect('\$test:example.com'.sigil, '\$');
|
|
|
|
expect(mxId.localpart, 'test');
|
|
|
|
expect(mxId.domain, 'example.com');
|
2020-05-25 09:34:43 +00:00
|
|
|
expect(mxId.equals('@Test:example.com'), true);
|
|
|
|
expect(mxId.equals('@test:example.org'), false);
|
2020-02-10 11:33:18 +00:00
|
|
|
});
|
|
|
|
});
|
|
|
|
}
|