-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
First part of fixing #161. refactored test code
- Loading branch information
gaynor@illinois.edu
authored and
gaynor@illinois.edu
committed
Jan 30, 2024
1 parent
5402b77
commit b3af53f
Showing
71 changed files
with
785 additions
and
402 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
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 |
---|---|---|
@@ -1,3 +1,3 @@ | ||
#maven.buildNumber.plugin properties file | ||
#Wed Jan 24 08:12:17 CST 2024 | ||
buildNumber\\d*=11545 | ||
#Tue Jan 30 09:58:11 CST 2024 | ||
buildNumber\\d*=11573 |
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 |
---|---|---|
@@ -1,3 +1,3 @@ | ||
#maven.buildNumber.plugin properties file | ||
#Wed Jan 24 08:13:21 CST 2024 | ||
buildNumber\\d*=11711 | ||
#Tue Jan 30 09:59:17 CST 2024 | ||
buildNumber\\d*=11755 |
Binary file not shown.
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
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
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
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 |
---|---|---|
@@ -1,3 +1,3 @@ | ||
#maven.buildNumber.plugin properties file | ||
#Wed Jan 24 08:12:15 CST 2024 | ||
buildNumber\\d*=10581 | ||
#Tue Jan 30 09:58:10 CST 2024 | ||
buildNumber\\d*=10609 |
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 |
---|---|---|
|
@@ -42,4 +42,4 @@ | |
} | ||
} | ||
} | ||
} | ||
|
12 changes: 12 additions & 0 deletions
12
server-test/src/main/resources/flow-tests/auto/clients/rfc9068-qdl.json
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,12 @@ | ||
{ | ||
"comment": [ | ||
"Client with various overrides. These are in the client configuration and test ", | ||
"overriding the server defaults, but not using the cfg." | ||
], | ||
"client_name": "Basic test client with overrides", | ||
"token_endpoint_auth_method": "private_key_jwt", | ||
"client_id":"auto-test:/oauth/rfc9068/qdl", | ||
"grant_types":["refresh_token"], | ||
"strict_scopes": false | ||
} | ||
|
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
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
31 changes: 31 additions & 0 deletions
31
server-test/src/main/resources/flow-tests/auto/server/rfc9068-script.cfg
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,31 @@ | ||
// This has the configuration for a client that invokes QDL scripts on | ||
// the server. | ||
|
||
tokens{ | ||
identity{ | ||
type=identity | ||
lifetime=1200000 // 20 minutes | ||
qdl{ | ||
load="auto/server/idt.qdl" | ||
xmd={exec_phase=["post_token","post_refresh","post_user_info"]} | ||
}// end qdl | ||
} //end identity token | ||
access{ | ||
type="rfc9068" | ||
audience="https://aethelthrythe.edu/histrionics" | ||
lifetime=3600000 // 1 hour | ||
qdl{ | ||
load="auto/server/at.qdl" | ||
xmd={exec_phase=["post_token","post_refresh","post_exchange"]} | ||
} //end QDL | ||
} // end access token | ||
refresh{ | ||
type="refresh" | ||
audience="https://aethelthrythe.edu/histrionics/refresh" | ||
lifetime=259200000 // 3 days | ||
qdl{ | ||
load="auto/server/process-xas.qdl" | ||
xmd={exec_phase=["post_token","post_refresh","post_exchange"]} | ||
} //end QDL | ||
} // end refresh | ||
} //end tokens |
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
Oops, something went wrong.