-
Notifications
You must be signed in to change notification settings - Fork 75
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: add testNG configurations #2672
- Loading branch information
1 parent
55cc189
commit cf50167
Showing
5 changed files
with
151 additions
and
0 deletions.
There are no files selected for viewing
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 |
---|---|---|
@@ -0,0 +1,6 @@ | ||
#The URL of your Jans installation | ||
server=https://jgomer2001-guiding-herring.gluu.info | ||
|
||
clientId=1800.5e01b3bb-1f68-4847-b9ba-d5c999a05e33 | ||
|
||
custParamName=customParam1 |
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,21 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<Configuration status="WARN"> | ||
<Appenders> | ||
<Console name="Console" target="SYSTEM_OUT"> | ||
<PatternLayout pattern="%d{HH:mm:ss} %-5p %F:%L - %m%n" /> | ||
</Console> | ||
</Appenders> | ||
<Loggers> | ||
<Logger name="io.jans.agama" level="DEBUG" additivity="false"> | ||
<AppenderRef ref="Console"/> | ||
</Logger> | ||
<Logger name="com.gargoylesoftware.htmlunit" level="WARN" additivity="false"> | ||
<AppenderRef ref="Console"/> | ||
</Logger> | ||
|
||
<Root level="error"> | ||
<AppenderRef ref="Console" /> | ||
</Root> | ||
</Loggers> | ||
|
||
</Configuration> |
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,8 @@ | ||
|
||
authzEndpoint=${server}/jans-auth/restv1/authorize | ||
|
||
redirectUri=${server}/admin-ui | ||
|
||
clientId=${clientId} | ||
|
||
custParamName=${custParamName} |
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,43 @@ | ||
<!DOCTYPE suite SYSTEM "http://beust.com/testng/testng-1.0.dtd" > | ||
<!-- Tests implemented should not be run in parallel --> | ||
<suite name="agama-flows" parallel="false"> | ||
|
||
<parameter name="propertiesFile" value="target/test-classes/testng.properties" /> | ||
|
||
<test name="math" enabled="false"> | ||
<classes> | ||
<class name="io.jans.agama.test.MathFlowTest" /> | ||
</classes> | ||
</test> | ||
|
||
<test name="uid" enabled="false"> | ||
<classes> | ||
<class name="io.jans.agama.test.UidOnlyAuthTest" /> | ||
</classes> | ||
</test> | ||
|
||
<test name="say-something" enabled="false"> | ||
<classes> | ||
<class name="io.jans.agama.test.SaySomethingFlowTest" /> | ||
</classes> | ||
</test> | ||
|
||
<test name="say-something-2" enabled="false"> | ||
<classes> | ||
<class name="io.jans.agama.test.SaySomething2FlowTest" /> | ||
</classes> | ||
</test> | ||
|
||
<test name="say-something-3" enabled="false"> | ||
<classes> | ||
<class name="io.jans.agama.test.SaySomething3FlowTest" /> | ||
</classes> | ||
</test> | ||
|
||
<test name="custom-config" enabled="false"> | ||
<classes> | ||
<class name="io.jans.agama.test.CustomConfigsFlowTest" /> | ||
</classes> | ||
</test> | ||
|
||
</suite> |