]> source.dussan.org Git - sonarqube.git/blob
c051c5d4dae5b8c6254fa168f3c4a7d56f3791b1
[sonarqube.git] /
1 /*
2  * Sonar, open source software quality management tool.
3  * Copyright (C) 2009 SonarSource SA
4  * mailto:contact AT sonarsource DOT com
5  *
6  * Sonar is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU Lesser General Public
8  * License as published by the Free Software Foundation; either
9  * version 3 of the License, or (at your option) any later version.
10  *
11  * Sonar is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14  * Lesser General Public License for more details.
15  *
16  * You should have received a copy of the GNU Lesser General Public
17  * License along with Sonar; if not, write to the Free Software
18  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02
19  */
20 package org.sonar.plugins.core.timemachine;
21
22 import org.junit.Test;
23 import org.sonar.api.database.model.Snapshot;
24 import org.sonar.jpa.test.AbstractDbUnitTestCase;
25
26 import static org.hamcrest.CoreMatchers.is;
27 import static org.hamcrest.core.IsNull.nullValue;
28 import static org.junit.Assert.assertThat;
29
30 public class PastSnapshotFinderByVersionTest extends AbstractDbUnitTestCase {
31
32   @Test
33   public void shouldFindByVersion() {
34     setupData("shared");
35
36     Snapshot currentProjectSnapshot = getSession().getSingleResult(Snapshot.class, "id", 1010);
37     PastSnapshotFinderByVersion finder = new PastSnapshotFinderByVersion(currentProjectSnapshot, getSession());
38
39     assertThat(finder.findByVersion("1.1").getProjectSnapshotId(), is(1009));
40   }
41
42   @Test
43   public void shouldNotFindVersion() {
44     setupData("shared");
45
46     Snapshot currentProjectSnapshot = getSession().getSingleResult(Snapshot.class, "id", 1010);
47     PastSnapshotFinderByVersion finder = new PastSnapshotFinderByVersion(currentProjectSnapshot, getSession());
48
49     assertThat(finder.findByVersion("1.0"), nullValue());
50   }
51 }