summaryrefslogtreecommitdiffstats
path: root/src/DotNetOpenAuth.Test/OpenId/OpenIdTestBase.cs
Commit message (Collapse)AuthorAgeFilesLines
* Consolidates two OpenID memory app storesAndrew Arnott2013-03-281-3/+3
| | | | | | | The StandardRelyingPartyApplicationStore and StandardProviderApplicationStore were equivalent, and thus redundant. There was also nothing OpenID specific about them. So this consolidates and renames these types to better reflect their general purpose.
* More StyleCop fixes.Andrew Arnott2013-03-261-3/+2
|
* Lots of StyleCop fixes.Andrew Arnott2013-03-261-66/+66
|
* Just 7 failures left.Andrew Arnott2013-03-251-1/+1
|
* Fixes RequireSsl in OpenID identifier discovery.Andrew Arnott2013-03-241-28/+29
| | | | | Makes UntrustedWebRequestHandler a DelegatingHandler. Now 21 failures.
* Just 44 failures.Andrew Arnott2013-03-241-0/+1
|
* Fixes 5 more testsAndrew Arnott2013-03-221-1/+2
|
* Fixes remaining build breaks.Andrew Arnott2013-03-221-27/+89
|
* Moves the rest of the static methods out.Andrew Arnott2013-03-211-4/+4
|
* Moves OpenID coordinator handlers to base class.Andrew Arnott2013-03-211-2/+25
|
* Fixes the rest of the build breaks!Andrew Arnott2013-03-191-3/+0
|
* Lots more test build break fixes.Andrew Arnott2013-03-171-18/+10
|
* More unit test fixes.Andrew Arnott2013-03-101-26/+38
|
* More test build break fixes.Andrew Arnott2013-03-091-32/+33
|
* Unit test compile error fixes.Andrew Arnott2013-03-031-3/+6
|
* Updated all copyright notices to reflect copyright assignment to Outercurve.Andrew Arnott2012-02-051-2/+2
| | | | Fixes #66
* Fixed build breaks in test project.Andrew Arnott2011-07-101-2/+2
|
* Added OutgoingWebResponse.Respond method to replace its Send method, and ↵Andrew Arnott2011-06-231-1/+1
| | | | | | avoid the ThreadAbortException that is no longer the recommended approach. Fixes #40
* Removed dependency on publicize.exe, which crashes now in some branches due ↵Andrew Arnott2010-07-091-4/+2
| | | | to bugs, and publicize.exe doesn't appear to be supported by Microsoft any more, so we might as well get off it.
* Removed duplicate using statement.Andrew Arnott2010-01-071-1/+0
|
* Converted all the rest of the tests over to NUnit.Andrew Arnott2010-01-061-3/+4
|
* Support for dual (OP+Claimed) identifiers is contrary to the spec, so we're ↵Andrew Arnott2009-11-301-1/+1
| | | | | | turning support for it back off (under a switch). See commit 1243c92a0172784f32938a2081f76463f90f102d for where this feature was first introduced.
* Added support for identifiers that perform dual roles as OP Identifiers and ↵Andrew Arnott2009-11-271-0/+12
| | | | Claimed Identifiers.
* Further refactoring of discovery results.Andrew Arnott2009-11-231-5/+4
|
* Some extensive refactoring around IIdentifierDiscoveryResult and ↵Andrew Arnott2009-11-221-6/+6
| | | | ServiceEndpoint.
* Updated tests to build with new extensible identifier discovery.Andrew Arnott2009-11-181-0/+10
|
* Merge branch 'v3.1' into v3.2Andrew Arnott2009-08-311-0/+13
|\ | | | | | | | | | | | | Conflicts: src/DotNetOpenAuth.Test/OpenId/AuthenticationTests.cs src/DotNetOpenAuth.vsmdi src/DotNetOpenAuth/OpenId/RelyingParty/OpenIdRelyingParty.cs
| * Added tests for unsolicited assertion sending and receiving, including ↵Andrew Arnott2009-08-301-0/+13
| | | | | | | | against the RP's whitelist.
* | Added the AXFetchAsSregTransform OpenID behavior that allows RPs and OPs to ↵Andrew Arnott2009-06-201-1/+10
| | | | | | | | deal strictly with Sreg and yet be compatible with all known formats of AX requests and responses.
* | Fixed StyleCop messageAndrew Arnott2009-05-161-1/+1
| |
* | Added security feature so RPs can opt out of accepting delegating identifiers.Andrew Arnott2009-05-161-5/+15
|/
* Fixed a couple of test framework bugs for stateless OpenID mode.Andrew Arnott2009-03-081-1/+5
|
* Refactoring around Provider's IRequest to process responses differently.Andrew Arnott2009-03-061-1/+1
| | | | This is a step toward serializable IRequest objects.
* Constructors on all OpenID direct response messages now require the OpenID ↵Andrew Arnott2009-02-091-2/+6
| | | | | | version of the message, allowing for RPs to receive response messages in versions differing from their request message. Also added test to verify this, and OpenIdProvider error messages w/o requiring ASP.NET hosting.
* StyleCop fixesAndrew Arnott2009-01-301-13/+12
|
* Refactored IDirectWebRequestHandler to take a set of options rather than be ↵Andrew Arnott2009-01-301-1/+1
| | | | | | two interfaces. Finally got receiving HTTP 400 error responses working.
* Refactored test helpers to remove TestSupport and move its functionality ↵Andrew Arnott2009-01-291-6/+124
| | | | into OpenIdTestBase.
* Refactored the entire .config file supporting classes, and added a .config ↵Andrew Arnott2009-01-151-2/+2
| | | | element for maximum user agent authentication time.
* Individual association types can now have configured lifetimes.Andrew Arnott2009-01-151-2/+2
| | | | We've almost eliminated the static Configuration class.
* Added StandardProviderApplicationStore and several OpenIdProvider unit tests.Andrew Arnott2009-01-111-0/+10
|
* Added support for dumb mode in the Relying Party.Andrew Arnott2009-01-111-1/+1
| | | | Also added a unit test to verify it.
* Added several tests for RP.AuthenticationRequest.Andrew Arnott2009-01-101-0/+1
|
* Added RP and OP authentication interfaces and implementations to be ↵Andrew Arnott2009-01-031-39/+59
| | | | compatible with DotNetOpenId.
* Added a mock extension and test in order to focus the test on the extension ↵Andrew Arnott2008-12-211-39/+39
| | | | binding element.
* Added several tests and fixed a bug.Andrew Arnott2008-12-101-0/+4
|
* Hundreds more stylecop fixes.Andrew Arnott2008-11-251-5/+6
| | | | Mostly just doc bugs now.
* Several hundred StyleCop fixes.Andrew Arnott2008-11-241-2/+2
|
* All 249 enabled tests pass.Andrew Arnott2008-11-241-3/+4
|
* Added discovery and around 60 tests. The discovery and a few other tests ↵Andrew Arnott2008-11-241-2/+11
| | | | still fail, but we're making progress.
* Added SecuritySettings members to OP and RP classes.Andrew Arnott2008-11-191-0/+24