mirror of
https://github.com/misskey-dev/misskey.git
synced 2025-04-06 14:23:16 +09:00
test comment
This commit is contained in:
parent
5034e6cd69
commit
88fd7f2758
@ -126,6 +126,7 @@ describe('OAuth', () => {
|
||||
test('Require PKCE', async () => {
|
||||
const client = getClient();
|
||||
|
||||
// Pattern 1: No PKCE fields at all
|
||||
let response = await fetch(client.authorizeURL({
|
||||
redirect_uri,
|
||||
scope: 'write:notes',
|
||||
@ -133,6 +134,7 @@ describe('OAuth', () => {
|
||||
}));
|
||||
assert.ok(!response.ok);
|
||||
|
||||
// Pattern 2: Only code_challenge
|
||||
response = await fetch(client.authorizeURL({
|
||||
redirect_uri,
|
||||
scope: 'write:notes',
|
||||
@ -141,6 +143,7 @@ describe('OAuth', () => {
|
||||
}));
|
||||
assert.ok(!response.ok);
|
||||
|
||||
// Pattern 2: Only code_challenge_method
|
||||
response = await fetch(client.authorizeURL({
|
||||
redirect_uri,
|
||||
scope: 'write:notes',
|
||||
@ -149,6 +152,7 @@ describe('OAuth', () => {
|
||||
}));
|
||||
assert.ok(!response.ok);
|
||||
|
||||
// Pattern 3: Unsupported code_challenge_method
|
||||
response = await fetch(client.authorizeURL({
|
||||
redirect_uri,
|
||||
scope: 'write:notes',
|
||||
|
Loading…
Reference in New Issue
Block a user