2019-08-15 18:52:02 +00:00
|
|
|
/**
|
|
|
|
* Copyright 2017 Google Inc. All rights reserved.
|
|
|
|
*
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
*
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
|
|
|
*/
|
2020-04-09 05:56:25 +00:00
|
|
|
const expect = require('expect');
|
|
|
|
const {getTestState,setupTestBrowserHooks, setupTestPageAndContextHooks} = require('./mocha-utils');
|
2019-08-15 18:52:02 +00:00
|
|
|
|
2020-04-09 05:56:25 +00:00
|
|
|
describe('DefaultBrowserContext', function() {
|
|
|
|
setupTestBrowserHooks();
|
|
|
|
setupTestPageAndContextHooks();
|
|
|
|
itFailsFirefox('page.cookies() should work', async() => {
|
2020-04-21 09:40:04 +00:00
|
|
|
const {page, server} = getTestState();
|
2019-08-15 18:52:02 +00:00
|
|
|
|
2020-04-09 05:56:25 +00:00
|
|
|
await page.goto(server.EMPTY_PAGE);
|
|
|
|
await page.evaluate(() => {
|
|
|
|
document.cookie = 'username=John Doe';
|
2019-08-15 18:52:02 +00:00
|
|
|
});
|
2020-04-09 05:56:25 +00:00
|
|
|
expect(await page.cookies()).toEqual([{
|
|
|
|
name: 'username',
|
|
|
|
value: 'John Doe',
|
|
|
|
domain: 'localhost',
|
|
|
|
path: '/',
|
|
|
|
expires: -1,
|
|
|
|
size: 16,
|
|
|
|
httpOnly: false,
|
|
|
|
secure: false,
|
2020-04-16 07:20:27 +00:00
|
|
|
session: true,
|
2020-04-09 05:56:25 +00:00
|
|
|
}]);
|
|
|
|
});
|
|
|
|
itFailsFirefox('page.setCookie() should work', async() => {
|
2020-04-21 09:40:04 +00:00
|
|
|
const {page, server} = getTestState();
|
2020-04-09 05:56:25 +00:00
|
|
|
|
|
|
|
await page.goto(server.EMPTY_PAGE);
|
|
|
|
await page.setCookie({
|
|
|
|
name: 'username',
|
|
|
|
value: 'John Doe'
|
2019-08-15 18:52:02 +00:00
|
|
|
});
|
2020-04-09 05:56:25 +00:00
|
|
|
expect(await page.evaluate(() => document.cookie)).toBe('username=John Doe');
|
|
|
|
expect(await page.cookies()).toEqual([{
|
|
|
|
name: 'username',
|
|
|
|
value: 'John Doe',
|
|
|
|
domain: 'localhost',
|
|
|
|
path: '/',
|
|
|
|
expires: -1,
|
|
|
|
size: 16,
|
|
|
|
httpOnly: false,
|
|
|
|
secure: false,
|
2020-04-16 07:20:27 +00:00
|
|
|
session: true,
|
2020-04-09 05:56:25 +00:00
|
|
|
}]);
|
|
|
|
});
|
|
|
|
itFailsFirefox('page.deleteCookie() should work', async() => {
|
2020-04-21 09:40:04 +00:00
|
|
|
const {page, server} = getTestState();
|
2020-04-09 05:56:25 +00:00
|
|
|
|
|
|
|
await page.goto(server.EMPTY_PAGE);
|
|
|
|
await page.setCookie({
|
|
|
|
name: 'cookie1',
|
|
|
|
value: '1'
|
|
|
|
}, {
|
|
|
|
name: 'cookie2',
|
|
|
|
value: '2'
|
2019-08-15 18:52:02 +00:00
|
|
|
});
|
2020-04-09 05:56:25 +00:00
|
|
|
expect(await page.evaluate('document.cookie')).toBe('cookie1=1; cookie2=2');
|
|
|
|
await page.deleteCookie({name: 'cookie2'});
|
|
|
|
expect(await page.evaluate('document.cookie')).toBe('cookie1=1');
|
|
|
|
expect(await page.cookies()).toEqual([{
|
|
|
|
name: 'cookie1',
|
|
|
|
value: '1',
|
|
|
|
domain: 'localhost',
|
|
|
|
path: '/',
|
|
|
|
expires: -1,
|
|
|
|
size: 8,
|
|
|
|
httpOnly: false,
|
|
|
|
secure: false,
|
2020-04-16 07:20:27 +00:00
|
|
|
session: true,
|
2020-04-09 05:56:25 +00:00
|
|
|
}]);
|
2019-08-15 18:52:02 +00:00
|
|
|
});
|
2020-04-09 05:56:25 +00:00
|
|
|
});
|