Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have an nUnit test case that asserts the dynamic that was returned from Facebook C# SDK. Is there any way how to assert it using NUnit fluent syntax. Here is very simplified example for what I'm looking for:

// not working
var client = new FacebookClient(accessToken);
dynamic userInfo = client.Get("me");
Assert.That(userInfo, Is.Not.Null);
Assert.That(userInfo, Has.Property("id").Not.Null);
Assert.That(userInfo, Has.Property("name").Not.Null);

Right now I can only test by specifying 'properties' directly

// working, but not fluent
var client = new FacebookClient(accessToken);
dynamic userInfo = client.Get("me");
Assert.That(userInfo, Is.Not.Null);
Assert.That(userInfo.id, Is.Not.Null);
Assert.That(userInfo.name, Is.Not.Null);

Thanks for your answers.

share|improve this question

3 Answers

up vote 2 down vote accepted

json object is IDictionary<string.object> so you can use its methods.

var client = new FacebookClient(accessToken);
dynamic userInfo = client.Get("me");
var hasId = userInfo.ContainsKey("id");

I haven't used nunit fluent api but I'm guessing there might be some method like Has.Key()

share|improve this answer
thanks for your suggestion :) – Akim Sep 17 '11 at 11:34

prabir gives me a good suggestion. At least I could check dynamic as IDictionary and use CollectionAssert.IsSubsetOf for testing. It not 100% covers what I'm looking for, but it is most closest suggestion.

var client = new FacebookClient(accessToken);
dynamic userInfo = client.Get("me");
Assert.That(userInfo, Is.Not.Null);

var requiredDynamicProperties = new[] { "id", "name", "wtf" };

var dictionary = (userInfo as IDictionary<string, Object>);

CollectionAssert.IsSubsetOf(requiredDynamicProperties, dictionary.Keys); 
// message will describe in details that no "wtf" found
share|improve this answer

So if userInfo is a IDynamicMetaObjectProvider, I believe NUnit Has will not work. Whether the NUnit constraint API could ever be modified to work depends on how it was implmemented. If it's implemented with reflection it is possible to use dynamic invocation instead. However, if it is implemented with expressions it won't ever work with real dynamic objects.

share|improve this answer
Now I have answer on NUnit forum — this feature not supported for now – Akim Sep 14 '11 at 8:14

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.