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
72
73
|
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using NUnit.Framework;
using DotNetOpenId.Extensions.AttributeExchange;
namespace DotNetOpenId.Test.Extensions {
[TestFixture]
public class AttributeExchangeFetchRequestTests {
[Test, ExpectedException(typeof(ArgumentNullException))]
public void AddAttributeRequestNull() {
new FetchRequest().AddAttribute(null);
}
[Test]
public void AddAttributeRequest() {
var req = new FetchRequest();
req.AddAttribute(new AttributeRequest() { TypeUri = "http://someUri" });
}
[Test]
public void AddAttributeRequestStrangeUri() {
var req = new FetchRequest();
req.AddAttribute(new AttributeRequest() { TypeUri = "=someUri*who*knows*but*this*is*legal" });
}
[Test, ExpectedException(typeof(ArgumentException))]
public void AddAttributeRequestAgain() {
var req = new FetchRequest();
req.AddAttribute(new AttributeRequest() { TypeUri = "http://UriTwice" });
req.AddAttribute(new AttributeRequest() { TypeUri = "http://UriTwice" });
}
[Test]
public void RespondSimpleValue() {
var req = new AttributeRequest();
req.TypeUri = "http://someType";
var resp = req.Respond("value");
Assert.AreEqual(req.TypeUri, resp.TypeUri);
Assert.AreEqual(1, resp.Values.Count);
Assert.AreEqual("value", resp.Values[0]);
}
[Test]
public void RespondTwoValues() {
var req = new AttributeRequest();
req.TypeUri = "http://someType";
req.Count = 2;
var resp = req.Respond("value1", "value2");
Assert.AreEqual(req.TypeUri, resp.TypeUri);
Assert.AreEqual(2, resp.Values.Count);
Assert.AreEqual("value1", resp.Values[0]);
Assert.AreEqual("value2", resp.Values[1]);
}
[Test, ExpectedException(typeof(ArgumentException))]
public void RespondTooManyValues() {
var req = new AttributeRequest();
req.TypeUri = "http://someType";
req.Count = 1;
req.Respond("value1", "value2");
}
[Test, ExpectedException(typeof(ArgumentNullException))]
public void RespondNull() {
var req = new AttributeRequest();
req.TypeUri = "http://someType";
req.Count = 1;
req.Respond(null);
}
}
}
|