-
Notifications
You must be signed in to change notification settings - Fork 32
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
test(neon_framework): Add tests for UnifiedSearchBloc
Signed-off-by: provokateurin <kate@provokateurin.de>
- Loading branch information
1 parent
fb507d8
commit 3712bf5
Showing
1 changed file
with
206 additions
and
0 deletions.
There are no files selected for viewing
206 changes: 206 additions & 0 deletions
206
packages/neon_framework/test/unified_search_bloc_test.dart
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,206 @@ | ||
import 'dart:async'; | ||
import 'dart:convert'; | ||
|
||
import 'package:built_collection/built_collection.dart'; | ||
import 'package:flutter_test/flutter_test.dart'; | ||
import 'package:http/http.dart'; | ||
import 'package:mocktail/mocktail.dart'; | ||
import 'package:neon_framework/models.dart'; | ||
import 'package:neon_framework/src/bloc/result.dart'; | ||
import 'package:neon_framework/src/blocs/apps.dart'; | ||
import 'package:neon_framework/src/blocs/unified_search.dart'; | ||
import 'package:neon_framework/testing.dart'; | ||
import 'package:nextcloud/core.dart' as core; | ||
import 'package:nextcloud/nextcloud.dart'; | ||
import 'package:rxdart/rxdart.dart'; | ||
|
||
Account mockUnifiedSearchAccount() => mockServer({ | ||
RegExp(r'/ocs/v2\.php/search/providers/(.*)/search'): { | ||
'get': (match, queryParameters) { | ||
final term = queryParameters['term']!.single; | ||
if (term == 'error') { | ||
return Response('', 400); | ||
} | ||
final count = int.parse(term); | ||
return Response( | ||
json.encode( | ||
{ | ||
'ocs': { | ||
'meta': {'status': '', 'statuscode': 0}, | ||
'data': { | ||
'name': match.group(1)!, | ||
'isPaginated': false, | ||
'entries': [ | ||
for (var i = 0; i < count; i++) | ||
{ | ||
'thumbnailUrl': '', | ||
'title': '$i', | ||
'subline': '', | ||
'resourceUrl': '', | ||
'icon': '', | ||
'rounded': false, | ||
'attributes': <dynamic>[], | ||
}, | ||
], | ||
}, | ||
}, | ||
}, | ||
), | ||
200, | ||
); | ||
}, | ||
}, | ||
RegExp(r'/ocs/v2\.php/search/providers'): { | ||
'get': (match, queryParameters) => Response( | ||
json.encode( | ||
{ | ||
'ocs': { | ||
'meta': {'status': '', 'statuscode': 0}, | ||
'data': [ | ||
for (final id in ['a', 'b', 'c']) | ||
{ | ||
'id': id, | ||
'name': '', | ||
'order': 0, | ||
}, | ||
], | ||
}, | ||
}, | ||
), | ||
200, | ||
), | ||
}, | ||
}); | ||
|
||
Future<void> main() async { | ||
final error = await DynamiteStatusCodeException.fromResponse(StreamedResponse(Stream.value(utf8.encode('')), 400)); | ||
|
||
late BehaviorSubject<AppImplementation> activeApp; | ||
late AppsBloc appsBloc; | ||
late Account account; | ||
late UnifiedSearchBloc bloc; | ||
|
||
setUpAll(() { | ||
final storage = MockNeonStorage(); | ||
when(() => storage.requestCache).thenReturn(null); | ||
}); | ||
|
||
setUp(() { | ||
final appImplementation = MockAppImplementation(); | ||
when(() => appImplementation.id).thenReturn('a'); | ||
activeApp = BehaviorSubject<AppImplementation>.seeded(appImplementation); | ||
appsBloc = MockAppsBloc(); | ||
when(() => appsBloc.activeApp).thenAnswer((_) => activeApp); | ||
|
||
account = mockUnifiedSearchAccount(); | ||
bloc = UnifiedSearchBloc(appsBloc, account); | ||
}); | ||
|
||
tearDown(() { | ||
unawaited(activeApp.close()); | ||
bloc.dispose(); | ||
}); | ||
|
||
group('search', () { | ||
for (final entry in { | ||
'0': Result<BuiltList<String>>.success(BuiltList([])), | ||
'2': Result<BuiltList<String>>.success(BuiltList(['0', '1'])), | ||
'error': Result<BuiltList<String>>.error(error), | ||
}.entries) { | ||
test(entry.key, () { | ||
expect( | ||
bloc.providers.transformResult((providers) => BuiltList<String>(providers.map((provider) => provider.id))), | ||
emitsInOrder([ | ||
Result.success(BuiltList<String>([])), | ||
Result.success(BuiltList<String>([])).asLoading(), | ||
Result.success(BuiltList<String>(['a', 'b', 'c'])), | ||
]), | ||
); | ||
expect( | ||
bloc.results.map( | ||
(results) => BuiltMap<String, Result<BuiltList<String>>>( | ||
Map.fromEntries( | ||
results.entries.map( | ||
(e) => MapEntry( | ||
e.key, | ||
e.value.transform( | ||
(result) => BuiltList<String>( | ||
result.entries.map((entry) => entry.title), | ||
), | ||
), | ||
), | ||
), | ||
), | ||
), | ||
), | ||
emitsInOrder([ | ||
BuiltMap<String, Result<BuiltList<String>>>(), | ||
BuiltMap<String, Result<BuiltList<String>>>({ | ||
'a': Result<BuiltList<String>>.loading(), | ||
'b': Result<BuiltList<String>>.loading(), | ||
'c': Result<BuiltList<String>>.loading(), | ||
}), | ||
BuiltMap<String, Result<BuiltList<String>>>({ | ||
'a': entry.value, | ||
'b': Result<BuiltList<String>>.loading(), | ||
'c': Result<BuiltList<String>>.loading(), | ||
}), | ||
BuiltMap<String, Result<BuiltList<String>>>({ | ||
'a': entry.value, | ||
if (entry.key != '0') 'b': entry.value, | ||
'c': Result<BuiltList<String>>.loading(), | ||
}), | ||
BuiltMap<String, Result<BuiltList<String>>>({ | ||
'a': entry.value, | ||
if (entry.key != '0') 'b': entry.value, | ||
if (entry.key != '0') 'c': entry.value, | ||
}), | ||
]), | ||
); | ||
|
||
bloc.search(entry.key); | ||
}); | ||
} | ||
}); | ||
|
||
test('enable', () { | ||
expect(bloc.enabled, emitsInOrder([false, true])); | ||
|
||
bloc.enable(); | ||
}); | ||
|
||
test('disable', () { | ||
expect( | ||
bloc.enabled, | ||
emitsInOrder([ | ||
false, | ||
true, | ||
false, | ||
]), | ||
); | ||
expect( | ||
bloc.results, | ||
emitsInOrder([ | ||
BuiltMap<String, Result<core.UnifiedSearchResult>>(), | ||
BuiltMap<String, Result<core.UnifiedSearchResult>>(), | ||
]), | ||
); | ||
|
||
bloc | ||
..enable() | ||
..disable(); | ||
}); | ||
|
||
test('disable when active app changes', () async { | ||
expect( | ||
bloc.enabled, | ||
emitsInOrder([ | ||
false, | ||
true, | ||
]), | ||
); | ||
|
||
bloc.enable(); | ||
activeApp.add(MockAppImplementation()); | ||
}); | ||
} |