2 * Jalview - A Sequence Alignment Editor and Viewer ($$Version-Rel$$)
3 * Copyright (C) $$Year-Rel$$ The Jalview Authors
5 * This file is part of Jalview.
7 * Jalview is free software: you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License
9 * as published by the Free Software Foundation, either version 3
10 * of the License, or (at your option) any later version.
12 * Jalview is distributed in the hope that it will be useful, but
13 * WITHOUT ANY WARRANTY; without even the implied warranty
14 * of MERCHANTABILITY or FITNESS FOR A PARTICULAR
15 * PURPOSE. See the GNU General Public License for more details.
17 * You should have received a copy of the GNU General Public License
18 * along with Jalview. If not, see <http://www.gnu.org/licenses/>.
19 * The Jalview Authors are detailed in the 'AUTHORS' file.
21 package jalview.analysis;
23 import static org.testng.AssertJUnit.assertEquals;
24 import static org.testng.AssertJUnit.assertTrue;
26 import jalview.gui.JvOptionPane;
28 import java.util.Arrays;
30 import org.testng.annotations.BeforeClass;
31 import org.testng.annotations.Test;
33 public class CodingUtilsTest
36 @BeforeClass(alwaysRun = true)
37 public void setUpJvOptionPane()
39 JvOptionPane.setInteractiveMode(false);
40 JvOptionPane.setMockResponse(JvOptionPane.CANCEL_OPTION);
43 @Test(groups = { "Functional" })
44 public void testDecodeCodon()
46 assertTrue(Arrays.equals(new char[] { 'A', 'A', 'A' },
47 CodingUtils.decodeCodon(0)));
48 assertTrue(Arrays.equals(new char[] { 'A', 'A', 'C' },
49 CodingUtils.decodeCodon(1)));
50 assertTrue(Arrays.equals(new char[] { 'A', 'A', 'G' },
51 CodingUtils.decodeCodon(2)));
52 assertTrue(Arrays.equals(new char[] { 'A', 'A', 'T' },
53 CodingUtils.decodeCodon(3)));
54 assertTrue(Arrays.equals(new char[] { 'A', 'C', 'A' },
55 CodingUtils.decodeCodon(4)));
56 assertTrue(Arrays.equals(new char[] { 'C', 'A', 'A' },
57 CodingUtils.decodeCodon(16)));
58 assertTrue(Arrays.equals(new char[] { 'G', 'G', 'G' },
59 CodingUtils.decodeCodon(42)));
60 assertTrue(Arrays.equals(new char[] { 'T', 'T', 'T' },
61 CodingUtils.decodeCodon(63)));
64 @Test(groups = { "Functional" })
65 public void testDecodeNucleotide()
67 assertEquals('A', CodingUtils.decodeNucleotide(0));
68 assertEquals('C', CodingUtils.decodeNucleotide(1));
69 assertEquals('G', CodingUtils.decodeNucleotide(2));
70 assertEquals('T', CodingUtils.decodeNucleotide(3));
71 assertEquals('0', CodingUtils.decodeNucleotide(4));
74 @Test(groups = { "Functional" })
75 public void testEncodeCodon()
77 assertTrue(CodingUtils.encodeCodon('Z') < 0);
78 assertEquals(0, CodingUtils.encodeCodon('a'));
79 assertEquals(0, CodingUtils.encodeCodon('A'));
80 assertEquals(1, CodingUtils.encodeCodon('c'));
81 assertEquals(1, CodingUtils.encodeCodon('C'));
82 assertEquals(2, CodingUtils.encodeCodon('g'));
83 assertEquals(2, CodingUtils.encodeCodon('G'));
84 assertEquals(3, CodingUtils.encodeCodon('t'));
85 assertEquals(3, CodingUtils.encodeCodon('T'));
86 assertEquals(3, CodingUtils.encodeCodon('u'));
87 assertEquals(3, CodingUtils.encodeCodon('U'));
89 assertEquals(-1, CodingUtils.encodeCodon(null));
90 assertEquals(0, CodingUtils.encodeCodon(new char[] { 'A', 'A', 'A' }));
91 assertEquals(1, CodingUtils.encodeCodon(new char[] { 'A', 'A', 'C' }));
92 assertEquals(2, CodingUtils.encodeCodon(new char[] { 'A', 'A', 'G' }));
93 assertEquals(3, CodingUtils.encodeCodon(new char[] { 'A', 'A', 'T' }));
94 assertEquals(4, CodingUtils.encodeCodon(new char[] { 'A', 'C', 'A' }));
95 assertEquals(16, CodingUtils.encodeCodon(new char[] { 'C', 'A', 'A' }));
96 assertEquals(42, CodingUtils.encodeCodon(new char[] { 'G', 'G', 'G' }));
97 assertEquals(63, CodingUtils.encodeCodon(new char[] { 'T', 'T', 'T' }));