forked from apereo/cas
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
6a5bb0a
commit e4d9a44
Showing
16 changed files
with
73 additions
and
70 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
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 |
---|---|---|
|
@@ -435,4 +435,5 @@ public TicketGrantingTicket createTicketGrantingTicket(final Credential... crede | |
} | ||
|
||
|
||
|
||
} |
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,12 +1,12 @@ | ||
|
||
description = 'Apereo CAS REST Implementation' | ||
dependencies { | ||
compile project(':cas-server-core-services') | ||
compile project(':cas-server-core-authentication') | ||
testCompile project(':cas-server-core-util') | ||
testCompile project(path: ":cas-server-core-authentication", configuration: "tests") | ||
testCompile project(path: ":cas-server-core-services", configuration: "tests") | ||
|
||
compile project(':cas-server-core-services') | ||
compile project(':cas-server-core-authentication') | ||
testCompile project(':cas-server-core-util') | ||
testCompile project(path: ":cas-server-core-authentication", configuration: "tests") | ||
testCompile project(path: ":cas-server-core-services", configuration: "tests") | ||
} | ||
|
||
|
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,20 +1,21 @@ | ||
|
||
description = 'Apereo CAS Trusted User Support' | ||
dependencies { | ||
|
||
compile project(':cas-server-core-web') | ||
compile project(':cas-server-core-authentication') | ||
compile(group: 'org.springframework.webflow', name: 'spring-webflow', version:springWebflowVersion) { | ||
exclude(module: 'commons-logging') | ||
exclude(module: 'spring-context') | ||
exclude(module: 'spring-web') | ||
exclude(module: 'spring-beans') | ||
exclude(module: 'spring-core') | ||
exclude(module: 'spring-expression') | ||
exclude(module: 'spring-webmvc') | ||
} | ||
testCompile project(':cas-server-core') | ||
testCompile project(':cas-server-core-tickets') | ||
|
||
compile project(':cas-server-core-web') | ||
compile project(':cas-server-core-authentication') | ||
compile(group: 'org.springframework.webflow', name: 'spring-webflow', version:springWebflowVersion) { | ||
exclude(module: 'commons-logging') | ||
exclude(module: 'spring-context') | ||
exclude(module: 'spring-web') | ||
exclude(module: 'spring-beans') | ||
exclude(module: 'spring-core') | ||
exclude(module: 'spring-expression') | ||
exclude(module: 'spring-webmvc') | ||
} | ||
testCompile project(':cas-server-core') | ||
testCompile project(':cas-server-core-tickets') | ||
testCompile project(path: ":cas-server-core", configuration: "tests") | ||
} | ||
|
||
|
30 changes: 10 additions & 20 deletions
30
.../trusted/web/flow/PrincipalFromRequestRemoteUserNonInteractiveCredentialsActionTests.java
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
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,6 +1,6 @@ | ||
package org.jasig.cas.web.flow; | ||
|
||
import org.jasig.cas.AbstractCentralAuthenticationServiceTest; | ||
import org.jasig.cas.AbstractCentralAuthenticationServiceTests; | ||
import org.jasig.cas.mock.MockTicketGrantingTicket; | ||
import org.jasig.cas.ticket.TicketGrantingTicket; | ||
import org.jasig.cas.web.support.WebUtils; | ||
|
@@ -16,7 +16,7 @@ | |
* @author Misagh Moayyed [email protected] | ||
* @since 4.1.0 | ||
*/ | ||
public class TicketGrantingTicketCheckActionTests extends AbstractCentralAuthenticationServiceTest { | ||
public class TicketGrantingTicketCheckActionTests extends AbstractCentralAuthenticationServiceTests { | ||
|
||
@Test | ||
public void verifyNullTicket() throws Exception { | ||
|
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