~ubuntu-branches/ubuntu/trusty/monodevelop/trusty-proposed

« back to all changes in this revision

Viewing changes to external/ngit/NGit.Test/NGit.Revwalk/RevCommitListTest.cs

  • Committer: Package Import Robot
  • Author(s): Jo Shields
  • Date: 2013-05-12 09:46:03 UTC
  • mto: This revision was merged to the branch mainline in revision 29.
  • Revision ID: package-import@ubuntu.com-20130512094603-mad323bzcxvmcam0
Tags: upstream-4.0.5+dfsg
ImportĀ upstreamĀ versionĀ 4.0.5+dfsg

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
This code is derived from jgit (http://eclipse.org/jgit).
 
3
Copyright owners are documented in jgit's IP log.
 
4
 
 
5
This program and the accompanying materials are made available
 
6
under the terms of the Eclipse Distribution License v1.0 which
 
7
accompanies this distribution, is reproduced below, and is
 
8
available at http://www.eclipse.org/org/documents/edl-v10.php
 
9
 
 
10
All rights reserved.
 
11
 
 
12
Redistribution and use in source and binary forms, with or
 
13
without modification, are permitted provided that the following
 
14
conditions are met:
 
15
 
 
16
- Redistributions of source code must retain the above copyright
 
17
  notice, this list of conditions and the following disclaimer.
 
18
 
 
19
- Redistributions in binary form must reproduce the above
 
20
  copyright notice, this list of conditions and the following
 
21
  disclaimer in the documentation and/or other materials provided
 
22
  with the distribution.
 
23
 
 
24
- Neither the name of the Eclipse Foundation, Inc. nor the
 
25
  names of its contributors may be used to endorse or promote
 
26
  products derived from this software without specific prior
 
27
  written permission.
 
28
 
 
29
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND
 
30
CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
 
31
INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
 
32
OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
 
33
ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
 
34
CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
 
35
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
 
36
NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
 
37
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
 
38
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
 
39
STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
 
40
ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
 
41
ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 
42
*/
 
43
 
 
44
using NGit;
 
45
using NGit.Api;
 
46
using NGit.Revwalk;
 
47
using Sharpen;
 
48
 
 
49
namespace NGit.Revwalk
 
50
{
 
51
        [NUnit.Framework.TestFixture]
 
52
        public class RevCommitListTest : RepositoryTestCase
 
53
        {
 
54
                private RevCommitList<RevCommit> list;
 
55
 
 
56
                /// <exception cref="System.Exception"></exception>
 
57
                public virtual void Setup(int count)
 
58
                {
 
59
                        Git git = new Git(db);
 
60
                        for (int i = 0; i < count; i++)
 
61
                        {
 
62
                                git.Commit().SetCommitter(committer).SetAuthor(author).SetMessage("commit " + i).
 
63
                                        Call();
 
64
                        }
 
65
                        list = new RevCommitList<RevCommit>();
 
66
                        RevWalk w = new RevWalk(db);
 
67
                        w.MarkStart(w.LookupCommit(db.Resolve(Constants.HEAD)));
 
68
                        list.Source(w);
 
69
                }
 
70
 
 
71
                /// <exception cref="System.Exception"></exception>
 
72
                [NUnit.Framework.Test]
 
73
                public virtual void TestFillToHighMark2()
 
74
                {
 
75
                        Setup(3);
 
76
                        list.FillTo(1);
 
77
                        NUnit.Framework.Assert.AreEqual(2, list.Count);
 
78
                        NUnit.Framework.Assert.AreEqual("commit 2", list[0].GetFullMessage());
 
79
                        NUnit.Framework.Assert.AreEqual("commit 1", list[1].GetFullMessage());
 
80
                        NUnit.Framework.Assert.IsNull(list[2], "commit 0 shouldn't be loaded");
 
81
                }
 
82
 
 
83
                /// <exception cref="System.Exception"></exception>
 
84
                [NUnit.Framework.Test]
 
85
                public virtual void TestFillToHighMarkAll()
 
86
                {
 
87
                        Setup(3);
 
88
                        list.FillTo(2);
 
89
                        NUnit.Framework.Assert.AreEqual(3, list.Count);
 
90
                        NUnit.Framework.Assert.AreEqual("commit 2", list[0].GetFullMessage());
 
91
                        NUnit.Framework.Assert.AreEqual("commit 0", list[2].GetFullMessage());
 
92
                }
 
93
 
 
94
                /// <exception cref="System.Exception"></exception>
 
95
                [NUnit.Framework.Test]
 
96
                public virtual void TestFillToHighMark4()
 
97
                {
 
98
                        Setup(3);
 
99
                        list.FillTo(3);
 
100
                        NUnit.Framework.Assert.AreEqual(3, list.Count);
 
101
                        NUnit.Framework.Assert.AreEqual("commit 2", list[0].GetFullMessage());
 
102
                        NUnit.Framework.Assert.AreEqual("commit 0", list[2].GetFullMessage());
 
103
                        NUnit.Framework.Assert.IsNull(list[3], "commit 3 can't be loaded");
 
104
                }
 
105
 
 
106
                /// <exception cref="System.Exception"></exception>
 
107
                [NUnit.Framework.Test]
 
108
                public virtual void TestFillToHighMarkMulitpleBlocks()
 
109
                {
 
110
                        Setup(258);
 
111
                        list.FillTo(257);
 
112
                        NUnit.Framework.Assert.AreEqual(258, list.Count);
 
113
                }
 
114
 
 
115
                /// <exception cref="System.Exception"></exception>
 
116
                [NUnit.Framework.Test]
 
117
                public virtual void TestFillToCommit()
 
118
                {
 
119
                        Setup(3);
 
120
                        RevWalk w = new RevWalk(db);
 
121
                        w.MarkStart(w.LookupCommit(db.Resolve(Constants.HEAD)));
 
122
                        w.Next();
 
123
                        RevCommit c = w.Next();
 
124
                        NUnit.Framework.Assert.IsNotNull(c, "should have found 2. commit");
 
125
                        list.FillTo(c, 5);
 
126
                        NUnit.Framework.Assert.AreEqual(2, list.Count);
 
127
                        NUnit.Framework.Assert.AreEqual("commit 1", list[1].GetFullMessage());
 
128
                        NUnit.Framework.Assert.IsNull(list[3]);
 
129
                }
 
130
 
 
131
                /// <exception cref="System.Exception"></exception>
 
132
                [NUnit.Framework.Test]
 
133
                public virtual void TestFillToUnknownCommit()
 
134
                {
 
135
                        Setup(258);
 
136
                        RevCommit c = new RevCommit(ObjectId.FromString("9473095c4cb2f12aefe1db8a355fe3fafba42f67"
 
137
                                ));
 
138
                        list.FillTo(c, 300);
 
139
                        NUnit.Framework.Assert.AreEqual(258, list.Count, "loading to unknown commit should load all commits"
 
140
                                );
 
141
                }
 
142
 
 
143
                /// <exception cref="System.Exception"></exception>
 
144
                [NUnit.Framework.Test]
 
145
                public virtual void TestFillToNullCommit()
 
146
                {
 
147
                        Setup(3);
 
148
                        list.FillTo(null, 1);
 
149
                        NUnit.Framework.Assert.IsNull(list[0]);
 
150
                }
 
151
        }
 
152
}