本文整理汇总了C#中MonoTests.Common.PokerMemoryCache.Contains方法的典型用法代码示例。如果您正苦于以下问题:C# PokerMemoryCache.Contains方法的具体用法?C# PokerMemoryCache.Contains怎么用?C# PokerMemoryCache.Contains使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类MonoTests.Common.PokerMemoryCache
的用法示例。
在下文中一共展示了PokerMemoryCache.Contains方法的9个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: Remove
public void Remove ()
{
var mc = new PokerMemoryCache ("MyCache");
AssertExtensions.Throws<NotSupportedException> (() => {
mc.Remove ("key", "region");
}, "#A1-1");
AssertExtensions.Throws<ArgumentNullException> (() => {
mc.Remove (null);
}, "#A1-2");
bool callbackInvoked;
CacheEntryRemovedReason reason = (CacheEntryRemovedReason) 1000;
var cip = new CacheItemPolicy ();
cip.Priority = CacheItemPriority.NotRemovable;
mc.Set ("key2", "value1", cip);
object value = mc.Remove ("key2");
Assert.IsNotNull (value, "#B1-1");
Assert.IsFalse (mc.Contains ("key2"), "#B1-2");
cip = new CacheItemPolicy ();
cip.RemovedCallback = (CacheEntryRemovedArguments args) => {
callbackInvoked = true;
reason = args.RemovedReason;
};
mc.Set ("key", "value", cip);
callbackInvoked = false;
reason = (CacheEntryRemovedReason) 1000;
value = mc.Remove ("key");
Assert.IsNotNull (value, "#C1-1");
Assert.IsTrue (callbackInvoked, "#C1-2");
Assert.AreEqual (CacheEntryRemovedReason.Removed, reason, "#C1-3");
cip = new CacheItemPolicy ();
cip.RemovedCallback = (CacheEntryRemovedArguments args) => {
callbackInvoked = true;
reason = args.RemovedReason;
throw new ApplicationException ("test");
};
mc.Set ("key", "value", cip);
callbackInvoked = false;
reason = (CacheEntryRemovedReason) 1000;
value = mc.Remove ("key");
Assert.IsNotNull (value, "#C2-1");
Assert.IsTrue (callbackInvoked, "#C2-2");
Assert.AreEqual (CacheEntryRemovedReason.Removed, reason, "#C2-3");
// LAMESPEC: UpdateCallback is not called on remove
cip = new CacheItemPolicy ();
cip.UpdateCallback = (CacheEntryUpdateArguments args) => {
callbackInvoked = true;
reason = args.RemovedReason;
};
mc.Set ("key", "value", cip);
callbackInvoked = false;
reason = (CacheEntryRemovedReason) 1000;
value = mc.Remove ("key");
Assert.IsNotNull (value, "#D1-1");
Assert.IsFalse (callbackInvoked, "#D1-2");
cip = new CacheItemPolicy ();
cip.UpdateCallback = (CacheEntryUpdateArguments args) => {
callbackInvoked = true;
reason = args.RemovedReason;
throw new ApplicationException ("test");
};
mc.Set ("key", "value", cip);
callbackInvoked = false;
reason = (CacheEntryRemovedReason) 1000;
value = mc.Remove ("key");
Assert.IsNotNull (value, "#D2-1");
Assert.IsFalse (callbackInvoked, "#D2-2");
}
示例2: GetValues
public void GetValues ()
{
var mc = new PokerMemoryCache ("MyCache");
AssertExtensions.Throws<ArgumentNullException> (() => {
mc.GetValues (null);
}, "#A1-1");
AssertExtensions.Throws<NotSupportedException> (() => {
mc.GetValues (new string[] {}, "region");
}, "#A1-2");
AssertExtensions.Throws<ArgumentException> (() => {
mc.GetValues (new string [] { "key", null });
}, "#A1-3");
IDictionary<string, object> value = mc.GetValues (new string[] {});
Assert.IsNull (value, "#A2");
mc.Set ("key1", "value1", null);
mc.Set ("key2", "value2", null);
mc.Set ("key3", "value3", null);
Assert.IsTrue (mc.Contains ("key1"), "#A3-1");
Assert.IsTrue (mc.Contains ("key2"), "#A3-2");
Assert.IsTrue (mc.Contains ("key3"), "#A3-2");
value = mc.GetValues (new string [] { "key1", "key3" });
Assert.IsNotNull (value, "#A4-1");
Assert.AreEqual (2, value.Count, "#A4-2");
Assert.AreEqual ("value1", value ["key1"], "#A4-3");
Assert.AreEqual ("value3", value ["key3"], "#A4-4");
Assert.AreEqual (typeof (Dictionary<string, object>), value.GetType (), "#A4-5");
// LAMESPEC: MSDN says the number of items in the returned dictionary should be the same as in the
// 'keys' collection - this is not the case. The returned dictionary contains only entries for keys
// that exist in the cache.
value = mc.GetValues (new string [] { "key1", "key3", "nosuchkey" });
Assert.IsNotNull (value, "#A5-1");
Assert.AreEqual (2, value.Count, "#A5-2");
Assert.AreEqual ("value1", value ["key1"], "#A5-3");
Assert.AreEqual ("value3", value ["key3"], "#A5-4");
Assert.IsFalse (value.ContainsKey ("Key1"), "#A5-5");
}
示例3: Set_String_Object_DateTimeOffset_String
public void Set_String_Object_DateTimeOffset_String ()
{
var mc = new PokerMemoryCache ("MyCache");
AssertExtensions.Throws<NotSupportedException> (() => {
mc.Set ("key", "value", DateTimeOffset.MaxValue, "region");
}, "#A1-1");
AssertExtensions.Throws<ArgumentNullException> (() => {
mc.Set (null, "value", DateTimeOffset.MaxValue);
}, "#A1-2");
AssertExtensions.Throws<ArgumentNullException> (() => {
mc.Set ("key", null, DateTimeOffset.MaxValue);
}, "#A1-3");
// The entry is never inserted as its expiration date is before now
mc.Set ("key_A2", "value_A2", DateTimeOffset.MinValue);
Assert.IsFalse (mc.Contains ("key_A2"), "#A2");
mc.Calls.Clear ();
mc.Set ("key", "value", DateTimeOffset.MaxValue);
Assert.AreEqual (2, mc.Calls.Count, "#A2-1");
Assert.AreEqual ("Set (string key, object value, DateTimeOffset absoluteExpiration, string regionName = null)", mc.Calls [0], "#A2-2");
Assert.AreEqual ("Set (string key, object value, CacheItemPolicy policy, string regionName = null)", mc.Calls [1], "#A2-3");
}
示例4: Set_CacheItem_CacheItemPolicy
public void Set_CacheItem_CacheItemPolicy ()
{
var mc = new PokerMemoryCache ("MyCache");
AssertExtensions.Throws<ArgumentNullException> (() => {
mc.Set (null, new CacheItemPolicy ());
}, "#A1-1");
// Actually thrown from the Set (string, object, CacheItemPolicy, string) overload
var ci = new CacheItem (null, "value");
AssertExtensions.Throws<ArgumentNullException> (() => {
mc.Set (ci, new CacheItemPolicy ());
}, "#A1-2");
ci = new CacheItem ("key", null);
AssertExtensions.Throws<ArgumentNullException> (() => {
mc.Set (ci, new CacheItemPolicy ());
}, "#A1-3");
ci = new CacheItem ("key", "value");
var cip = new CacheItemPolicy ();
cip.UpdateCallback = (CacheEntryUpdateArguments arguments) => { };
cip.RemovedCallback = (CacheEntryRemovedArguments arguments) => { };
AssertExtensions.Throws<ArgumentException> (() => {
mc.Set (ci, cip);
}, "#A1-4");
ci = new CacheItem ("key", "value");
cip = new CacheItemPolicy ();
cip.SlidingExpiration = TimeSpan.MinValue;
AssertExtensions.Throws<ArgumentOutOfRangeException> (() => {
mc.Set (ci, cip);
}, "#A1-5");
ci = new CacheItem ("key_A1-6", "value");
cip = new CacheItemPolicy ();
cip.SlidingExpiration = TimeSpan.FromTicks (0L);
mc.Set (ci, cip);
Assert.IsTrue (mc.Contains ("key_A1-6"), "#A1-6");
ci = new CacheItem ("key", "value");
cip = new CacheItemPolicy ();
cip.SlidingExpiration = TimeSpan.FromDays (500);
AssertExtensions.Throws<ArgumentOutOfRangeException> (() => {
mc.Set (ci, cip);
}, "#A1-7");
ci = new CacheItem ("key_A1-8", "value");
cip = new CacheItemPolicy ();
cip.SlidingExpiration = TimeSpan.FromDays (365);
mc.Set (ci, cip);
Assert.IsTrue (mc.Contains ("key_A1-8"), "#A1-8");
ci = new CacheItem ("key", "value");
cip = new CacheItemPolicy ();
cip.Priority = (CacheItemPriority) 20;
AssertExtensions.Throws<ArgumentOutOfRangeException> (() => {
mc.Set (ci, cip);
}, "#A1-9");
ci = new CacheItem ("key_A2", "value_A2");
cip = new CacheItemPolicy ();
cip.RemovedCallback = (CacheEntryRemovedArguments arguments) => { };
mc.Set (ci, cip);
Assert.IsTrue (mc.Contains ("key_A2"), "#A2");
ci = new CacheItem ("key_A3", "value_A3");
mc.Set (ci, new CacheItemPolicy ());
Assert.IsTrue (mc.Contains ("key_A3"), "#A3-1");
Assert.AreEqual ("value_A3", mc.Get ("key_A3"), "#A3-2");
// The entry is never inserted as its expiration date is before now
ci = new CacheItem ("key_A4", "value");
cip = new CacheItemPolicy ();
cip.AbsoluteExpiration = DateTimeOffset.MinValue;
mc.Set (ci, cip);
Assert.IsFalse (mc.Contains ("key_A4"), "#A4");
ci = new CacheItem ("key_A5", "value");
mc.Calls.Clear ();
mc.Set (ci, new CacheItemPolicy ());
Assert.AreEqual (2, mc.Calls.Count, "#A5-1");
Assert.AreEqual ("Set (CacheItem item, CacheItemPolicy policy)", mc.Calls [0], "#A5-2");
Assert.AreEqual ("Set (string key, object value, CacheItemPolicy policy, string regionName = null)", mc.Calls [1], "#A5-3");
}
示例5: AddOrGetExisting_CacheItem_CacheItemPolicy
public void AddOrGetExisting_CacheItem_CacheItemPolicy ()
{
var mc = new PokerMemoryCache ("MyCache");
CacheItem ci, ci2;
AssertExtensions.Throws<ArgumentNullException> (() => {
ci = mc.AddOrGetExisting (null, new CacheItemPolicy ());
}, "#A1");
ci = new CacheItem ("key", "value");
ci2 = mc.AddOrGetExisting (ci, null);
// LAMESPEC: MSDN says it should return null if the entry does not exist yet.
//
Assert.IsNotNull (ci2, "#A2-1");
Assert.AreNotEqual (ci, ci2, "#A2-2");
Assert.IsNull (ci2.Value, "#A2-3");
Assert.IsTrue (mc.Contains (ci.Key), "#A2-4");
Assert.AreEqual (ci.Key, ci2.Key, "#A2-5");
ci = new CacheItem ("key", "value");
ci2 = mc.AddOrGetExisting (ci, null);
Assert.IsNotNull (ci2, "#A3-1");
Assert.AreNotEqual (ci, ci2, "#A3-2");
Assert.IsNotNull (ci2.Value, "#A3-3");
Assert.AreEqual (ci.Value, ci2.Value, "#A3-4");
Assert.AreEqual (ci.Key, ci2.Key, "#A3-5");
AssertExtensions.Throws<ArgumentNullException> (() => {
ci = new CacheItem (null, "value");
ci2 = mc.AddOrGetExisting (ci, null);
}, "#A4");
ci = new CacheItem (String.Empty, "value");
ci2 = mc.AddOrGetExisting (ci, null);
Assert.IsNotNull (ci2, "#A5-1");
Assert.AreNotEqual (ci, ci2, "#A5-2");
Assert.IsNull (ci2.Value, "#A5-3");
Assert.IsTrue (mc.Contains (ci.Key), "#A5-4");
Assert.AreEqual (ci.Key, ci2.Key, "#A5-5");
ci = new CacheItem ("key2", null);
// Thrown from:
// at System.Runtime.Caching.MemoryCacheEntry..ctor(String key, Object value, DateTimeOffset absExp, TimeSpan slidingExp, CacheItemPriority priority, Collection`1 dependencies, CacheEntryRemovedCallback removedCallback, MemoryCache cache)
// at System.Runtime.Caching.MemoryCache.AddOrGetExistingInternal(String key, Object value, CacheItemPolicy policy)
// at System.Runtime.Caching.MemoryCache.AddOrGetExisting(CacheItem item, CacheItemPolicy policy)
// at MonoTests.System.Runtime.Caching.MemoryCacheTest.AddOrGetExisting_CacheItem_CacheItemPolicy() in C:\Users\grendel\documents\visual studio 2010\Projects\System.Runtime.Caching.Test\System.Runtime.Caching.Test\System.Runtime.Caching\MemoryCacheTest.cs:line 211
AssertExtensions.Throws<ArgumentNullException> (() => {
ci2 = mc.AddOrGetExisting (ci, null);
}, "#B1");
ci = new CacheItem ("key3", "value");
var cip = new CacheItemPolicy ();
cip.UpdateCallback = (CacheEntryUpdateArguments arguments) => { };
AssertExtensions.Throws<ArgumentException> (() => {
ci2 = mc.AddOrGetExisting (ci, cip);
}, "#B2");
ci = new CacheItem ("key3", "value");
cip = new CacheItemPolicy ();
cip.AbsoluteExpiration = DateTimeOffset.Now;
cip.SlidingExpiration = TimeSpan.FromTicks (DateTime.Now.Ticks);
AssertExtensions.Throws<ArgumentException> (() => {
mc.AddOrGetExisting (ci, cip);
}, "#B3");
ci = new CacheItem ("key3", "value");
cip = new CacheItemPolicy ();
cip.SlidingExpiration = TimeSpan.MinValue;
AssertExtensions.Throws<ArgumentOutOfRangeException> (() => {
mc.AddOrGetExisting (ci, cip);
}, "#B4-1");
ci = new CacheItem ("key4_#B4-2", "value");
cip = new CacheItemPolicy ();
cip.SlidingExpiration = TimeSpan.FromTicks (0L);
mc.AddOrGetExisting (ci, cip);
Assert.IsTrue (mc.Contains ("key4_#B4-2"), "#B4-2");
ci = new CacheItem ("key3", "value");
cip = new CacheItemPolicy ();
cip.SlidingExpiration = TimeSpan.FromDays (500);
AssertExtensions.Throws<ArgumentOutOfRangeException> (() => {
mc.AddOrGetExisting (ci, cip);
}, "#B5-1");
ci = new CacheItem ("key5_#B5-2", "value");
cip = new CacheItemPolicy ();
cip.SlidingExpiration = TimeSpan.FromDays (365);
mc.AddOrGetExisting (ci, cip);
Assert.IsTrue (mc.Contains ("key5_#B5-2"), "#B5-2");
ci = new CacheItem ("key3", "value");
cip = new CacheItemPolicy ();
cip.Priority = (CacheItemPriority)20;
AssertExtensions.Throws<ArgumentOutOfRangeException> (() => {
mc.AddOrGetExisting (ci, cip);
}, "#B6");
//.........这里部分代码省略.........
示例6: AddOrGetExisting_String_Object_CacheItemPolicy_String
public void AddOrGetExisting_String_Object_CacheItemPolicy_String ()
{
var mc = new PokerMemoryCache ("MyCache");
AssertExtensions.Throws<ArgumentNullException> (() => {
mc.AddOrGetExisting (null, "value", null);
}, "#A1-1");
AssertExtensions.Throws<ArgumentNullException> (() => {
mc.AddOrGetExisting ("key", null, null);
}, "#A1-2");
var cip = new CacheItemPolicy ();
cip.AbsoluteExpiration = DateTime.Now.AddMinutes (1);
cip.SlidingExpiration = TimeSpan.FromMinutes (1);
AssertExtensions.Throws<ArgumentException> (() => {
mc.AddOrGetExisting ("key", "value", cip);
}, "#A1-3");
cip = new CacheItemPolicy ();
cip.SlidingExpiration = TimeSpan.MinValue;
AssertExtensions.Throws<ArgumentOutOfRangeException> (() => {
mc.AddOrGetExisting ("key3", "value", cip);
}, "#A1-4");
AssertExtensions.Throws<NotSupportedException> (() => {
mc.AddOrGetExisting ("key", "value", null, "region");
}, "#A1-5");
cip = new CacheItemPolicy ();
cip.SlidingExpiration = TimeSpan.FromDays (500);
AssertExtensions.Throws<ArgumentOutOfRangeException> (() => {
mc.AddOrGetExisting ("key3", "value", cip);
}, "#A1-6");
cip = new CacheItemPolicy ();
cip.Priority = (CacheItemPriority) 20;
AssertExtensions.Throws<ArgumentOutOfRangeException> (() => {
mc.AddOrGetExisting ("key3", "value", cip);
}, "#A1-7");
cip = new CacheItemPolicy ();
cip.SlidingExpiration = TimeSpan.FromTicks (0L);
mc.AddOrGetExisting ("key3_A2-1", "value", cip);
Assert.IsTrue (mc.Contains ("key3_A2-1"), "#A2-1");
cip = new CacheItemPolicy ();
cip.SlidingExpiration = TimeSpan.FromDays (365);
mc.AddOrGetExisting ("key3_A2-2", "value", cip);
Assert.IsTrue (mc.Contains ("key3_A2-2"), "#A2-2");
cip = new CacheItemPolicy ();
cip.RemovedCallback = (CacheEntryRemovedArguments arguments) => { };
object value = mc.AddOrGetExisting ("key3_A2-3", "value", cip);
Assert.IsTrue (mc.Contains ("key3_A2-3"), "#A2-3");
Assert.IsNull (value, "#A2-4");
mc.Calls.Clear ();
value = mc.AddOrGetExisting ("key3_A2-3", "value2", null);
Assert.IsTrue (mc.Contains ("key3_A2-3"), "#A3-1");
Assert.IsNotNull (value, "#A3-2");
Assert.AreEqual ("value", value, "#A3-3");
Assert.AreEqual (2, mc.Calls.Count, "#A3-4");
Assert.AreEqual ("AddOrGetExisting (string key, object value, CacheItemPolicy policy, string regionName = null)", mc.Calls [0], "#A3-5");
cip = new CacheItemPolicy ();
cip.AbsoluteExpiration = DateTimeOffset.MinValue;
value = mc.AddOrGetExisting ("key_expired", "value", cip);
Assert.IsFalse (mc.Contains ("key_expired"), "#A4-1");
Assert.IsNull (value, "#A4-1");
}
示例7: AddOrGetExisting_String_Object_DateTimeOffset_String
public void AddOrGetExisting_String_Object_DateTimeOffset_String ()
{
var mc = new PokerMemoryCache ("MyCache");
AssertExtensions.Throws<ArgumentNullException> (() => {
mc.AddOrGetExisting (null, "value", DateTimeOffset.Now);
}, "#A1-1");
AssertExtensions.Throws<ArgumentNullException> (() => {
mc.AddOrGetExisting ("key", null, DateTimeOffset.Now);
}, "#A1-2");
AssertExtensions.Throws<NotSupportedException> (() => {
mc.AddOrGetExisting ("key", "value", DateTimeOffset.Now, "region");
}, "#A1-3");
object value = mc.AddOrGetExisting ("key3_A2-1", "value", DateTimeOffset.Now.AddMinutes (1));
Assert.IsTrue (mc.Contains ("key3_A2-1"), "#A2-1");
Assert.IsNull (value, "#A2-2");
mc.Calls.Clear ();
value = mc.AddOrGetExisting ("key3_A2-1", "value2", DateTimeOffset.Now.AddMinutes (1));
Assert.IsTrue (mc.Contains ("key3_A2-1"), "#A3-1");
Assert.IsNotNull (value, "#A3-2");
Assert.AreEqual ("value", value, "#A3-3");
Assert.AreEqual (2, mc.Calls.Count, "#A3-4");
Assert.AreEqual ("AddOrGetExisting (string key, object value, DateTimeOffset absoluteExpiration, string regionName = null)", mc.Calls [0], "#A3-5");
value = mc.AddOrGetExisting ("key_expired", "value", DateTimeOffset.MinValue);
Assert.IsFalse (mc.Contains ("key_expired"), "#A4-1");
Assert.IsNull (value, "#A4-1");
}
示例8: Contains
public void Contains ()
{
var mc = new PokerMemoryCache ("MyCache");
AssertExtensions.Throws<ArgumentNullException> (() => {
mc.Contains (null);
}, "#A1-1");
AssertExtensions.Throws<NotSupportedException> (() => {
mc.Contains ("key", "region");
}, "#A1-2");
mc.Set ("key", "value", ObjectCache.InfiniteAbsoluteExpiration);
Assert.IsTrue (mc.Contains ("key"), "#A2");
var cip = new CacheItemPolicy ();
cip.Priority = CacheItemPriority.NotRemovable;
cip.AbsoluteExpiration = DateTimeOffset.Now.AddMilliseconds (500);
mc.Set ("key", "value", cip);
Assert.IsTrue (mc.Contains ("key"), "#B1-1");
Thread.Sleep (1000);
// The call below removes the expired entry and returns false
Assert.IsFalse (mc.Contains ("key"), "#B1-2");
}
示例9: Indexer
public void Indexer ()
{
var mc = new PokerMemoryCache ("MyCache");
AssertExtensions.Throws<ArgumentNullException> (() => {
mc [null] = "value";
}, "#A1-1");
AssertExtensions.Throws<ArgumentNullException> (() => {
object v = mc [null];
}, "#A1-2");
AssertExtensions.Throws<ArgumentNullException> (() => {
mc ["key"] = null;
}, "#A1-3");
mc.Calls.Clear ();
mc ["key"] = "value";
Assert.AreEqual (3, mc.Calls.Count, "#A2-1");
Assert.AreEqual ("set_this [string key]", mc.Calls [0], "#A2-2");
Assert.AreEqual ("Set (string key, object value, DateTimeOffset absoluteExpiration, string regionName = null)", mc.Calls [1], "#A2-3");
Assert.AreEqual ("Set (string key, object value, CacheItemPolicy policy, string regionName = null)", mc.Calls [2], "#A2-4");
Assert.IsTrue (mc.Contains ("key"), "#A2-5");
mc.Calls.Clear ();
object value = mc ["key"];
Assert.AreEqual (1, mc.Calls.Count, "#A3-1");
Assert.AreEqual ("get_this [string key]", mc.Calls [0], "#A3-2");
Assert.AreEqual ("value", value, "#A3-3");
}