/*
* The MIT License (MIT)
*
* Copyright (c) 2007-2015 Broad Institute
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
* THE SOFTWARE.
*/
package org.broad.igv.ui;
import org.apache.log4j.Logger;
import org.broad.igv.feature.AminoAcidManager;
import org.broad.igv.feature.genome.GenomeManager;
import org.fest.swing.fixture.FrameFixture;
import org.fest.swing.fixture.JTextComponentFixture;
import org.junit.*;
import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertTrue;
/**
* Test the Command bar UI.
* <p/>
* User: jacob
* Date: 2012/05/14
*/
public class IGVCommandBarTest extends AbstractHeadedTest {
private static Logger log = Logger.getLogger(IGVCommandBarTest.class);
private static FrameFixture frame;
//We use asynchronous events, and there are asserts in there
//Here we check that the events were actually dispatched and handled
private int expectedEvents = 0;
private int actualEvents = expectedEvents;
private boolean registered;
/**
* Because loading IGV takes so long, we only load it once per class.
* We reset the session in between tests
*
* @throws Exception
*/
@BeforeClass
public static void setUpClass() throws Exception {
AbstractHeadedTest.setUpClass();
frame = new FrameFixture(IGV.getMainFrame());
}
@Before
public void setUp() throws Exception {
super.setUp();
this.actualEvents = 0;
this.expectedEvents = 0;
this.registered = false;
}
@After
public void tearDown() throws Exception {
System.out.println("Expected Events: " + expectedEvents + " Actual Events: " + actualEvents);
assertTrue("Event handler not triggered properly", actualEvents >= expectedEvents);
super.tearDown();
}
/**
* Basic test showing usage of FEST and checking combo box
*/
@Test
public void testChromoBoxContents() throws Exception {
String[] chromos = frame.comboBox("chromosomeComboBox").contents();
assertEquals(26, chromos.length);
}
@Test
public void testChromoNav() throws Exception {
tstChromoNav("chr1");
tstChromoNav("chr20");
}
//Tacky state variable, but eh, it's just a test
private volatile String enterText = null;
private void tstChromoNav(String chromoText) throws Exception {
JTextComponentFixture searchFixture = frame.textBox("searchTextField");
searchFixture.deleteText();
this.enterText = chromoText;
//Make sure search box has focus
searchFixture.focus();
searchFixture.requireFocused();
searchFixture.requireEmpty();
searchFixture.enterText(chromoText);
frame.button("goButton").click();
}
@Test
public void testChromoNav_CodonTable() throws Exception {
//Make sure that translation table DOES NOT change when we change chromosomes
Assume.assumeTrue("hg18.unittest".equals(GenomeManager.getInstance().getGenomeId()));
tstChromoNav("chr1");
assertEquals(1, AminoAcidManager.getInstance().getCodonTable().getId());
tstChromoNav("chrM");
assertEquals(1, AminoAcidManager.getInstance().getCodonTable().getId());
}
}