Don’t use TestNG’s Test.
[xudocci.git] / src / test / java / net / pterodactylus / irc / SourceTest.java
1 /*
2  * XdccDownloader - SourceTest.java - Copyright © 2013 David Roden
3  *
4  * This program is free software: you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License as published by
6  * the Free Software Foundation, either version 3 of the License, or
7  * (at your option) any later version.
8  *
9  * This program is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12  * GNU General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License
15  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
16  */
17
18 package net.pterodactylus.irc;
19
20 import static org.hamcrest.CoreMatchers.is;
21 import static org.hamcrest.CoreMatchers.notNullValue;
22 import static org.hamcrest.MatcherAssert.assertThat;
23
24 import com.google.common.base.Optional;
25 import org.junit.Test;
26
27 /**
28  * Tests for {@link Source}.
29  *
30  * @author <a href="mailto:bombe@pterodactylus.net">David ‘Bombe’ Roden</a>
31  */
32 public class SourceTest {
33
34         @Test
35         public void testParser() {
36                 Source source;
37
38                 source = Source.parseSource("server.irc.net");
39                 assertThat(source, notNullValue());
40                 assertThat(source.nick(), is(Optional.<String>absent()));
41                 assertThat(source.username(), is(Optional.<String>absent()));
42                 assertThat(source.server(), is("server.irc.net"));
43
44                 source = Source.parseSource("foo!bar@server.irc.net");
45                 assertThat(source, notNullValue());
46                 assertThat(source.nick(), is(Optional.of("foo")));
47                 assertThat(source.username(), is(Optional.of("bar")));
48                 assertThat(source.server(), is("server.irc.net"));
49         }
50
51 }