blob: 9f032b8d2323136a4ce1a866c3af1fffc9c4b94c (
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
59
60
61
62
63
64
65
66
67
68
69
70
71
|
//-----------------------------------------------------------------------
// <copyright file="MockIdentifier.cs" company="Andrew Arnott">
// Copyright (c) Andrew Arnott. All rights reserved.
// </copyright>
//-----------------------------------------------------------------------
namespace DotNetOpenAuth.Test.Mocks {
using System;
using System.Collections.Generic;
using System.Diagnostics.Contracts;
using DotNetOpenAuth.Messaging;
using DotNetOpenAuth.OpenId;
using DotNetOpenAuth.OpenId.RelyingParty;
/// <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>
internal class MockIdentifier : Identifier {
private IEnumerable<IdentifierDiscoveryResult> endpoints;
private MockHttpRequest mockHttpRequest;
private Identifier wrappedIdentifier;
public MockIdentifier(Identifier wrappedIdentifier, MockHttpRequest mockHttpRequest, IEnumerable<IdentifierDiscoveryResult> endpoints)
: base(wrappedIdentifier.OriginalString, false) {
Contract.Requires<ArgumentNullException>(wrappedIdentifier != null);
Contract.Requires<ArgumentNullException>(mockHttpRequest != null);
Contract.Requires<ArgumentNullException>(endpoints != null);
this.wrappedIdentifier = wrappedIdentifier;
this.endpoints = endpoints;
this.mockHttpRequest = mockHttpRequest;
// 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 IEnumerable<IdentifierDiscoveryResult> DiscoveryEndpoints {
get { return this.endpoints; }
}
public override string ToString() {
return this.wrappedIdentifier.ToString();
}
public override bool Equals(object obj) {
return this.wrappedIdentifier.Equals(obj);
}
public override int GetHashCode() {
return this.wrappedIdentifier.GetHashCode();
}
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 = this.wrappedIdentifier.TryRequireSsl(out secureWrappedIdentifier);
secureIdentifier = new MockIdentifier(secureWrappedIdentifier, this.mockHttpRequest, this.endpoints);
return result;
}
}
}
|