예제 #1
0
파일: WList.cs 프로젝트: jonathanvdc/Loyc
        public void TestSelect()
        {
            WList <int> one = new WList <int>(); one.Add(3);
            WList <int> two = one.Clone();       two.Add(2);
            WList <int> thr = two.Clone();       thr.Add(1);

            ExpectList(thr, 3, 2, 1);

            ExpectList(one.Select(delegate(int i) { return(i + 1); }), 4);
            ExpectList(two.Select(delegate(int i) { return(i + 1); }), 4, 3);
            ExpectList(thr.Select(delegate(int i) { return(i + 1); }), 4, 3, 2);
            ExpectList(two.Select(delegate(int i) { return(i == 3 ? 3 : 0); }), 3, 0);
            ExpectList(thr.Select(delegate(int i) { return(i == 3 ? 3 : 0); }), 3, 0, 0);
            ExpectList(thr.Select(delegate(int i) { return(i == 1 ? 0 : i); }), 3, 2, 0);

            Assert.That(one.SmartSelect(delegate(int i) { return(i); }).ToVList() == one.ToVList());
            Assert.That(two.SmartSelect(delegate(int i) { return(i); }).ToVList() == two.ToVList());
            Assert.That(thr.SmartSelect(delegate(int i) { return(i); }).ToVList() == thr.ToVList());
            ExpectList(one.SmartSelect(delegate(int i) { return(i + 1); }), 4);
            ExpectList(two.SmartSelect(delegate(int i) { return(i + 1); }), 4, 3);
            ExpectList(thr.SmartSelect(delegate(int i) { return(i + 1); }), 4, 3, 2);
            ExpectList(two.SmartSelect(delegate(int i) { return(i == 3 ? 3 : 0); }), 3, 0);
            ExpectList(thr.SmartSelect(delegate(int i) { return(i == 3 ? 3 : 0); }), 3, 0, 0);
            ExpectList(thr.SmartSelect(delegate(int i) { return(i == 1 ? 0 : i); }), 3, 2, 0);
            Assert.That(thr.SmartSelect(delegate(int i) { return(i == 1 ? 0 : i); }).WithoutLast(1) == thr.WithoutLast(1));
        }
예제 #2
0
        public void TestFork()
        {
            WList <int> A = new WList <int>();

            A.AddRange(new int[] { 1, 2, 3 });
            WList <int> B = A.Clone();

            A.Push(4);
            ExpectList(B, 1, 2, 3);
            ExpectList(A, 1, 2, 3, 4);
            B.Push(-4);
            ExpectList(B, 1, 2, 3, -4);

            Assert.That(A.WithoutLast(2) == B.WithoutLast(2));
        }
예제 #3
0
        public void TestWhere()
        {
            WList <int> one = new WList <int>(); one.Add(3);
            WList <int> two = one.Clone();       two.Add(2);
            WList <int> thr = two.Clone();       thr.Add(1);

            ExpectList(one.Where(delegate(int i) { return(false); }));
            ExpectList(two.Where(delegate(int i) { return(false); }));
            ExpectList(thr.Where(delegate(int i) { return(false); }));
            Assert.That(one.Where(delegate(int i) { return(true); }).ToVList() == one.ToVList());
            Assert.That(two.Where(delegate(int i) { return(true); }).ToVList() == two.ToVList());
            Assert.That(thr.Where(delegate(int i) { return(true); }).ToVList() == thr.ToVList());
            Assert.That(two.Where(delegate(int i) { return(i == 3); }).ToVList() == two.WithoutLast(1));
            Assert.That(thr.Where(delegate(int i) { return(i == 3); }).ToVList() == thr.WithoutLast(2));
            Assert.That(thr.Where(delegate(int i) { return(i > 1); }).ToVList() == thr.WithoutLast(1));
            ExpectList(two.Where(delegate(int i) { return(i == 2); }), 2);
            ExpectList(thr.Where(delegate(int i) { return(i == 2); }), 2);
        }
예제 #4
0
        public void TestFalseOwnership()
        {
            // This test tries to make sure a WList doesn't get confused about what
            // blocks it owns. It's possible for a WList to share a partially-mutable
            // block that contains mutable items with another WList, but only one
            // WList owns the items.

            // Case 1: two WLists point to the same block but only one owns it:
            //
            //        block 0
            //      owned by A
            //        |____3|    block 1
            //        |____2|    unowned
            // A,B--->|Imm_1|--->|Imm_1|
            //        |____0|    |____0|
            //
            // (The location of "Imm" in each block denotes the highest immutable
            // item; this diagram shows there are two immutable items in each
            // block)
            WList <int> A = new WList <int>();

            A.Resize(4);
            for (int i = 0; i < 4; i++)
            {
                A[i] = i;
            }
            WList <int> B = A.Clone();

            // B can't add to the second block because it's not the owner, so a
            // third block is created when we Add(1).
            B.Add(4);
            A.Add(-4);
            ExpectList(A, 0, 1, 2, 3, -4);
            ExpectList(B, 0, 1, 2, 3, 4);
            Assert.AreEqual(2, A.BlockChainLength);
            Assert.AreEqual(3, B.BlockChainLength);

            // Case 2: two WLists point to different blocks but they share a common
            // tail, where one list owns part of the tail and the other does not:
            //
            //      block 0
            //    owned by B
            //      |____8|
            //      |____7|
            //      |____6|
            //      |____5|         block 1
            //      |____4|       owned by A
            //      |____3|   A     |____3|     block 2
            //      |____2|   |     |____2|     unowned
            //      |____1|---+---->|Imm_1|---->|Imm_1|
            // B--->|____0|         |____0|     |____0|
            //      mutable
            //
            // Actually the previous test puts us in just this state.
            //
            // I can't think of a test that uses the public interface to detect bugs
            // in this case. The most important thing is that B._block.PriorIsOwned
            // returns false.
            Assert.That(B.IsOwner && !B.Block.PriorIsOwned);
            Assert.That(A.IsOwner);
            Assert.That(B.Block.Prior.ToVList() == A.WithoutLast(1));
        }