java/sql-dk/test/info/globalcode/sql/dk/FunctionsTest.java
author František Kučera <franta-hg@frantovo.cz>
Sat, 28 Dec 2013 20:36:29 +0100
branchv_0
changeset 92 1399ac70a5bd
parent 53 eb30ad93ca8b
child 213 39d154429f7a
permissions -rw-r--r--
support all types from java.sql.Types.Types
     1 /**
     2  * SQL-DK
     3  * Copyright © 2013 František Kučera (frantovo.cz)
     4  *
     5  * This program is free software: you can redistribute it and/or modify
     6  * it under the terms of the GNU General Public License as published by
     7  * the Free Software Foundation, either version 3 of the License, or
     8  * (at your option) any later version.
     9  *
    10  * This program is distributed in the hope that it will be useful,
    11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
    12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
    13  * GNU General Public License for more details.
    14  *
    15  * You should have received a copy of the GNU General Public License
    16  * along with this program. If not, see <http://www.gnu.org/licenses/>.
    17  */
    18 package info.globalcode.sql.dk;
    19 
    20 import java.util.ArrayList;
    21 import java.util.Collection;
    22 import static org.testng.Assert.*;
    23 import org.testng.annotations.*;
    24 
    25 /**
    26  *
    27  * @author Ing. František Kučera (frantovo.cz)
    28  */
    29 public class FunctionsTest {
    30 
    31 	@Test
    32 	public void testNotNull() {
    33 		Collection<String> c = null;
    34 		for (String s : Functions.notNull(c)) {
    35 			fail("Should not iterate through null collection");
    36 		}
    37 
    38 		c = new ArrayList<>();
    39 		c.add("ahoj");
    40 		int count = 0;
    41 		for (String s : Functions.notNull(c)) {
    42 			assertEquals(s, "ahoj", "Wrong item in collection");
    43 			count++;
    44 		}
    45 		assertEquals(count, 1, "Wrong number of iterations");
    46 	}
    47 
    48 	@Test
    49 	public void testLpad() {
    50 		String original = "abc";
    51 		String padded;
    52 
    53 		padded = Functions.lpad(original, 5);
    54 		assertEquals(padded, "  abc");
    55 
    56 		padded = Functions.lpad(original, 2);
    57 		assertEquals(padded, original);
    58 	}
    59 
    60 	@Test
    61 	public void testRpad() {
    62 		String original = "abc";
    63 		String padded;
    64 
    65 		padded = Functions.rpad(original, 5);
    66 		assertEquals(padded, "abc  ");
    67 
    68 		padded = Functions.rpad(original, 2);
    69 		assertEquals(padded, original);
    70 	}
    71 
    72 	@Test
    73 	public void testRepeat() {
    74 		assertEquals(Functions.repeat('f', 0), "");
    75 		assertEquals(Functions.repeat('f', 3), "fff");
    76 	}
    77 }