blob: 7ab2d744844e166278ded97132737f412f5038c9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
|
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using DotNetOpenId.RelyingParty;
namespace DotNetOpenId.Test.Mocks {
/// <summary>
/// Performs similar to an ordinary <see cref="Identifier"/>, but when called upon
/// to perform discovery, it returns a preset list of sevice endpoints to avoid
/// having a dependency on a hosted web site to actually perform discovery on.
/// </summary>
class MockIdentifier : Identifier {
IEnumerable<ServiceEndpoint> endpoints;
Identifier wrappedIdentifier;
public MockIdentifier(Identifier wrappedIdentifier, IEnumerable<ServiceEndpoint> endpoints)
: base(false) {
if (wrappedIdentifier == null) throw new ArgumentNullException("wrappedIdentifier");
if (endpoints == null) throw new ArgumentNullException("endpoints");
this.wrappedIdentifier = wrappedIdentifier;
this.endpoints = endpoints;
// Register a mock HTTP response to enable discovery of this identifier within the RP
// without having to host an ASP.NET site within the test.
MockHttpRequest.RegisterMockXrdsResponse(new Uri(wrappedIdentifier.ToString()), endpoints);
}
internal override IEnumerable<ServiceEndpoint> Discover() {
return endpoints;
}
internal override Identifier TrimFragment() {
return this;
}
internal override bool TryRequireSsl(out Identifier secureIdentifier) {
// We take special care to make our wrapped identifier secure, but still
// return a mocked (secure) identifier.
Identifier secureWrappedIdentifier;
bool result = wrappedIdentifier.TryRequireSsl(out secureWrappedIdentifier);
secureIdentifier = new MockIdentifier(secureWrappedIdentifier, endpoints);
return result;
}
public override string ToString() {
return wrappedIdentifier.ToString();
}
public override bool Equals(object obj) {
return wrappedIdentifier.Equals(obj);
}
public override int GetHashCode() {
return wrappedIdentifier.GetHashCode();
}
}
}
|