55 lines
1.8 KiB
Dart
55 lines
1.8 KiB
Dart
// Copyright 2013 The Flutter Authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
// found in the LICENSE file.
|
|
|
|
import 'package:flutter_test/flutter_test.dart';
|
|
import 'package:mockito/annotations.dart';
|
|
import 'package:mockito/mockito.dart';
|
|
import 'package:webview_flutter/webview_flutter.dart';
|
|
import 'package:webview_flutter_platform_interface/webview_flutter_platform_interface.dart';
|
|
|
|
import 'webview_cookie_manager_test.mocks.dart';
|
|
|
|
@GenerateMocks(<Type>[PlatformWebViewCookieManager])
|
|
void main() {
|
|
group('WebViewCookieManager', () {
|
|
test('clearCookies', () async {
|
|
final MockPlatformWebViewCookieManager mockPlatformWebViewCookieManager =
|
|
MockPlatformWebViewCookieManager();
|
|
when(mockPlatformWebViewCookieManager.clearCookies()).thenAnswer(
|
|
(_) => Future<bool>.value(false),
|
|
);
|
|
|
|
final WebViewCookieManager cookieManager =
|
|
WebViewCookieManager.fromPlatform(
|
|
mockPlatformWebViewCookieManager,
|
|
);
|
|
|
|
await expectLater(cookieManager.clearCookies(), completion(false));
|
|
});
|
|
|
|
test('setCookie', () async {
|
|
final MockPlatformWebViewCookieManager mockPlatformWebViewCookieManager =
|
|
MockPlatformWebViewCookieManager();
|
|
|
|
final WebViewCookieManager cookieManager =
|
|
WebViewCookieManager.fromPlatform(
|
|
mockPlatformWebViewCookieManager,
|
|
);
|
|
|
|
const WebViewCookie cookie = WebViewCookie(
|
|
name: 'name',
|
|
value: 'value',
|
|
domain: 'domain',
|
|
);
|
|
|
|
await cookieManager.setCookie(cookie);
|
|
|
|
final WebViewCookie capturedCookie = verify(
|
|
mockPlatformWebViewCookieManager.setCookie(captureAny),
|
|
).captured.single as WebViewCookie;
|
|
expect(capturedCookie, cookie);
|
|
});
|
|
});
|
|
}
|