Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.ExtLibs/HeuristicLab.ProtobufCS/0.9.1/ProtobufCS/src/ProtocolBuffers.Test/Collections/PopsicleListTest.cs @ 3857

Last change on this file since 3857 was 3857, checked in by abeham, 14 years ago

#866

  • Added protobuf-csharp-port project source to ExtLibs
File size: 3.7 KB
Line 
1#region Copyright notice and license
2// Protocol Buffers - Google's data interchange format
3// Copyright 2008 Google Inc.  All rights reserved.
4// http://github.com/jskeet/dotnet-protobufs/
5// Original C++/Java/Python code:
6// http://code.google.com/p/protobuf/
7//
8// Redistribution and use in source and binary forms, with or without
9// modification, are permitted provided that the following conditions are
10// met:
11//
12//     * Redistributions of source code must retain the above copyright
13// notice, this list of conditions and the following disclaimer.
14//     * Redistributions in binary form must reproduce the above
15// copyright notice, this list of conditions and the following disclaimer
16// in the documentation and/or other materials provided with the
17// distribution.
18//     * Neither the name of Google Inc. nor the names of its
19// contributors may be used to endorse or promote products derived from
20// this software without specific prior written permission.
21//
22// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
23// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
24// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
25// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
26// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
27// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
28// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
29// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
30// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
31// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
32// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
33#endregion
34
35using System;
36using NUnit.Framework;
37
38namespace Google.ProtocolBuffers.Collections {
39  [TestFixture]
40  public class PopsicleListTest {
41
42    [Test]
43    public void MutatingOperationsOnFrozenList() {
44      PopsicleList<string> list = new PopsicleList<string>();
45      list.MakeReadOnly();
46      AssertNotSupported(() => list.Add(""));
47      AssertNotSupported(() => list.Clear());
48      AssertNotSupported(() => list.Insert(0, ""));
49      AssertNotSupported(() => list.Remove(""));
50      AssertNotSupported(() => list.RemoveAt(0));
51      AssertNotSupported(() => list.Add(new[] {"", ""}));
52    }
53
54    [Test]
55    public void NonMutatingOperationsOnFrozenList() {
56      PopsicleList<string> list = new PopsicleList<string>();
57      list.MakeReadOnly();
58      Assert.IsFalse(list.Contains(""));
59      Assert.AreEqual(0, list.Count);
60      list.CopyTo(new string[5], 0);
61      list.GetEnumerator();
62      Assert.AreEqual(-1, list.IndexOf(""));
63      Assert.IsTrue(list.IsReadOnly);
64    }
65
66    [Test]
67    public void MutatingOperationsOnFluidList() {
68      PopsicleList<string> list = new PopsicleList<string>();
69      list.Add("");
70      list.Clear();
71      list.Insert(0, "");
72      list.Remove("");
73      list.Add("x"); // Just to make the next call valid
74      list.RemoveAt(0);
75    }
76
77    [Test]
78    public void NonMutatingOperationsOnFluidList() {
79      PopsicleList<string> list = new PopsicleList<string>();
80      Assert.IsFalse(list.Contains(""));
81      Assert.AreEqual(0, list.Count);
82      list.CopyTo(new string[5], 0);
83      list.GetEnumerator();
84      Assert.AreEqual(-1, list.IndexOf(""));
85      Assert.IsFalse(list.IsReadOnly);
86    }
87
88    private static void AssertNotSupported(Action action) {
89      try {
90        action();
91        Assert.Fail("Expected NotSupportedException");
92      } catch (NotSupportedException) {
93        // Expected
94      }
95    }
96  }
97}
Note: See TracBrowser for help on using the repository browser.