test: add third party cookies test (#2073)
This commit is contained in:
parent
c62cb78c7a
commit
08d713973e
|
|
@ -10,7 +10,7 @@
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "webkit",
|
"name": "webkit",
|
||||||
"revision": "1213"
|
"revision": "1216"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -2,7 +2,7 @@
|
||||||
"browsers": [
|
"browsers": [
|
||||||
{
|
{
|
||||||
"name": "webkit",
|
"name": "webkit",
|
||||||
"revision": "1213"
|
"revision": "1216"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -10,7 +10,7 @@
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "webkit",
|
"name": "webkit",
|
||||||
"revision": "1213"
|
"revision": "1216"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -15,7 +15,7 @@
|
||||||
* limitations under the License.
|
* limitations under the License.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
const {FFOX, CHROMIUM, WEBKIT, MAC} = require('./utils').testOptions(browserType);
|
const {FFOX, CHROMIUM, WEBKIT, MAC, LINUX} = require('./utils').testOptions(browserType);
|
||||||
|
|
||||||
describe('BrowserContext.cookies', function() {
|
describe('BrowserContext.cookies', function() {
|
||||||
it('should return no cookies in pristine browser context', async({context, page, server}) => {
|
it('should return no cookies in pristine browser context', async({context, page, server}) => {
|
||||||
|
|
@ -432,6 +432,38 @@ describe('BrowserContext.addCookies', function() {
|
||||||
|
|
||||||
expect(await page.frames()[1].evaluate('document.cookie')).toBe('frame-cookie=value');
|
expect(await page.frames()[1].evaluate('document.cookie')).toBe('frame-cookie=value');
|
||||||
});
|
});
|
||||||
|
it('should(not) block third party cookies', async({context, page, server}) => {
|
||||||
|
await page.goto(server.EMPTY_PAGE);
|
||||||
|
await page.evaluate(src => {
|
||||||
|
let fulfill;
|
||||||
|
const promise = new Promise(x => fulfill = x);
|
||||||
|
const iframe = document.createElement('iframe');
|
||||||
|
document.body.appendChild(iframe);
|
||||||
|
iframe.onload = fulfill;
|
||||||
|
iframe.src = src;
|
||||||
|
return promise;
|
||||||
|
}, server.CROSS_PROCESS_PREFIX + '/grid.html');
|
||||||
|
await page.frames()[1].evaluate(`document.cookie = 'username=John Doe'`);
|
||||||
|
await page.waitForTimeout(2000);
|
||||||
|
const allowsThirdParty = CHROMIUM || FFOX;
|
||||||
|
const cookies = await context.cookies(server.CROSS_PROCESS_PREFIX + '/grid.html');
|
||||||
|
if (allowsThirdParty) {
|
||||||
|
expect(cookies).toEqual([
|
||||||
|
{
|
||||||
|
"domain": "127.0.0.1",
|
||||||
|
"expires": -1,
|
||||||
|
"httpOnly": false,
|
||||||
|
"name": "username",
|
||||||
|
"path": "/",
|
||||||
|
"sameSite": "None",
|
||||||
|
"secure": false,
|
||||||
|
"value": "John Doe"
|
||||||
|
}
|
||||||
|
]);
|
||||||
|
} else {
|
||||||
|
expect(cookies).toEqual([]);
|
||||||
|
}
|
||||||
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
describe('BrowserContext.clearCookies', function() {
|
describe('BrowserContext.clearCookies', function() {
|
||||||
|
|
|
||||||
|
|
@ -17,7 +17,7 @@
|
||||||
|
|
||||||
const utils = require('./utils');
|
const utils = require('./utils');
|
||||||
const {makeUserDataDir, removeUserDataDir} = utils;
|
const {makeUserDataDir, removeUserDataDir} = utils;
|
||||||
const {FFOX, CHROMIUM, WEBKIT} = utils.testOptions(browserType);
|
const {FFOX, MAC, CHROMIUM, WEBKIT} = utils.testOptions(browserType);
|
||||||
|
|
||||||
describe('launchPersistentContext()', function() {
|
describe('launchPersistentContext()', function() {
|
||||||
beforeEach(async state => {
|
beforeEach(async state => {
|
||||||
|
|
@ -83,4 +83,36 @@ describe('launchPersistentContext()', function() {
|
||||||
expect(await page.context().cookies([])).toEqual([]);
|
expect(await page.context().cookies([])).toEqual([]);
|
||||||
expect(await page.evaluate('document.cookie')).toBe('');
|
expect(await page.evaluate('document.cookie')).toBe('');
|
||||||
});
|
});
|
||||||
|
it('should(not) block third party cookies', async({browserContext, page, server}) => {
|
||||||
|
await page.goto(server.EMPTY_PAGE);
|
||||||
|
await page.evaluate(src => {
|
||||||
|
let fulfill;
|
||||||
|
const promise = new Promise(x => fulfill = x);
|
||||||
|
const iframe = document.createElement('iframe');
|
||||||
|
document.body.appendChild(iframe);
|
||||||
|
iframe.onload = fulfill;
|
||||||
|
iframe.src = src;
|
||||||
|
return promise;
|
||||||
|
}, server.CROSS_PROCESS_PREFIX + '/grid.html');
|
||||||
|
await page.frames()[1].evaluate(`document.cookie = 'username=John Doe'`);
|
||||||
|
await page.waitForTimeout(2000);
|
||||||
|
const allowsThirdParty = CHROMIUM || FFOX;
|
||||||
|
const cookies = await browserContext.cookies(server.CROSS_PROCESS_PREFIX + '/grid.html');
|
||||||
|
if (allowsThirdParty) {
|
||||||
|
expect(cookies).toEqual([
|
||||||
|
{
|
||||||
|
"domain": "127.0.0.1",
|
||||||
|
"expires": -1,
|
||||||
|
"httpOnly": false,
|
||||||
|
"name": "username",
|
||||||
|
"path": "/",
|
||||||
|
"sameSite": "None",
|
||||||
|
"secure": false,
|
||||||
|
"value": "John Doe"
|
||||||
|
}
|
||||||
|
]);
|
||||||
|
} else {
|
||||||
|
expect(cookies).toEqual([]);
|
||||||
|
}
|
||||||
|
});
|
||||||
});
|
});
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue