JAL-2388 Unit tests and tidies
[jalview.git] / test / jalview / viewmodel / OverviewDimensionsTest.java
index 8184b52..1ea07ea 100644 (file)
@@ -23,52 +23,24 @@ package jalview.viewmodel;
 import static org.testng.Assert.assertEquals;
 
 import jalview.analysis.AlignmentGenerator;
-import jalview.bin.Jalview;
 import jalview.datamodel.Alignment;
 import jalview.datamodel.AlignmentI;
+import jalview.datamodel.ColumnSelection;
 import jalview.datamodel.Sequence;
+import jalview.datamodel.SequenceCollectionI;
 import jalview.datamodel.SequenceGroup;
 import jalview.datamodel.SequenceI;
-import jalview.gui.AlignFrame;
-import jalview.gui.AlignViewport;
-import jalview.gui.Desktop;
-import jalview.gui.JvOptionPane;
-import jalview.io.DataSourceType;
-import jalview.io.FileLoader;
 
-import java.util.List;
+import java.util.Hashtable;
 
 import org.testng.annotations.AfterClass;
-import org.testng.annotations.AfterMethod;
 import org.testng.annotations.BeforeClass;
 import org.testng.annotations.BeforeMethod;
 import org.testng.annotations.Test;
 
 @Test(singleThreaded = true)
-public class OverviewDimensionsTest {
-
-  SequenceI seq1 = new Sequence(
-          "Seq1",
-          "ABCABCABCABCABCABCABCABCBACBACBACBACABCABCABCABCABCABCABCABCBACBACBACBACABCABCABCABCABCABCABCABCBACBACBACBAC");
-
-  SequenceI seq2 = new Sequence(
-          "Seq2",
-          "ABCABCABCABCABCABCABCABCBACBACBACBACABCABCABCABCABCABCABCABCBACBACBACBACABCABCABCABCABCABCABCABCBACBACBACBAC");
-
-  SequenceI seq3 = new Sequence(
-          "Seq3",
-          "ABCABCABCABCABCABCABCABCBACBACBACBACABCABCABCABCABCABCABCABCBACBACBACBACABCABCABCABCABCABCABCABCBACBACBACBAC");
-
-  SequenceI seq4 = new Sequence(
-          "Seq4",
-          "ABCABCABCABCABCABCABCABCBACBACBACBACABCABCABCABCABCABCABCABCBACBACBACBACABCABCABCABCABCABCABCABCBACBACBACBAC");
-
-  SequenceI seq5 = new Sequence(
-          "Seq5",
-          "ABCABCABCABCABCABCABCABCBACBACBACBACABCABCABCABCABCABCABCABCBACBACBACBACABCABCABCABCABCABCABCABCBACBACBACBAC");
-
-  AlignFrame af;
-  AlignViewport av;
+public class OverviewDimensionsTest
+{
   AlignmentI al;
   OverviewDimensions od;
 
@@ -80,12 +52,15 @@ public class OverviewDimensionsTest {
   int alheight;
   int alwidth;
 
+  ViewportPositionProps posProps;
+
+  Hashtable<SequenceI, SequenceCollectionI> hiddenRepSequences = new Hashtable<SequenceI, SequenceCollectionI>();
+
+  ColumnSelection hiddenCols = new ColumnSelection();
+
   @BeforeClass(alwaysRun = true)
   public void setUpJvOptionPane()
   {
-    JvOptionPane.setInteractiveMode(false);
-    JvOptionPane.setMockResponse(JvOptionPane.CANCEL_OPTION);
-
     // create random alignment
     AlignmentGenerator gen = new AlignmentGenerator(false);
     al = gen.generate(157, 525, 123, 5, 5);
@@ -94,107 +69,40 @@ public class OverviewDimensionsTest {
   @BeforeMethod(alwaysRun = true)
   public void setUp()
   {
-    Jalview.main(new String[] { "-nonews", "-props",
-        "test/jalview/testProps.jvprops" });
-
-    af = new FileLoader().LoadFileWaitTillLoaded(al.toString(),
-            DataSourceType.PASTE);
-
-    /*
-     * wait for Consensus thread to complete
-     */
-    synchronized (this)
+    if (!hiddenRepSequences.isEmpty())
     {
-      while (af.getViewport().getConsensusSeq() == null)
-      {
-        try
-        {
-          wait(50);
-        } catch (InterruptedException e)
-        {
-        }
-      }
+      al.getHiddenSequences().showAll(hiddenRepSequences);
     }
+    hiddenCols.revealAllHiddenColumns();
     
-    av = af.getViewport();
+    posProps = new ViewportPositionProps(al);
+    posProps.setStartRes(0);
+    posProps.setEndRes(62);
+    posProps.setStartSeq(0);
+    posProps.setEndSeq(17);
 
+    viewHeight = posProps.getEndSeq() - posProps.getStartSeq() + 1;
+    viewWidth = posProps.getEndRes() - posProps.getStartRes() + 1;
 
+    ColumnSelection hiddenCols = new ColumnSelection();
 
-    while (av.isCalcInProgress())
-    {
-      try
-      {
-        Thread.sleep(50);
-      } catch (InterruptedException e)
-      {
-
-      }
-    }
-
-    av.showAllHiddenColumns();
-    av.showAllHiddenSeqs();
-    av.setSelectionGroup(null);
-    // o/w hidden seqs retain selection group, causes problems later when hiding
-    // sequences
-
-    // wait for conservation calc to complete again
-    while (av.isCalcInProgress())
-    {
-      try
-      {
-        Thread.sleep(50);
-      } catch (InterruptedException e)
-      {
-
-      }
-    }
-
-    viewHeight = av.getEndSeq() - av.getStartSeq() + 1;
-    viewWidth = av.getEndRes() - av.getStartRes() + 1;
-
-    // wait for gui to get set up
-    // this does actually appear to be necessary
-    while (viewHeight != 18 || viewWidth != 63)
-    {
-      try
-      {
-        Thread.sleep(50);
-        av.getAlignPanel().setScrollValues(0, 1);
-        av.getAlignPanel().setScrollValues(1, 0);
-        viewHeight = av.getEndSeq() - av.getStartSeq() + 1;
-        viewWidth = av.getEndRes() - av.getStartRes() + 1;
-      } catch (InterruptedException e)
-      {
-
-      }
-    }
-
-    od = new OverviewDimensions(av.getPosProps(), true);
+    od = new OverviewDimensions(posProps, true);
     // Initial box sizing - default path through code
-    od.setBoxPosition(av.getAlignment().getHiddenSequences(),
-            av.getColumnSelection(), av.getPosProps());
+    od.setBoxPosition(al.getHiddenSequences(), hiddenCols, posProps);
 
     mouseClick(od, 0, 0);
     moveViewport(0, 0);
 
     // calculate before hidden columns so we get absolute values
-    alheight = av.getAlignment().getHeight();
-    alwidth = av.getAlignment().getWidth();
+    alheight = posProps.getAbsoluteAlignmentHeight();
+    alwidth = posProps.getAbsoluteAlignmentWidth();
 
-    boxWidth = Math.round((float) (av.getEndRes() - av.getStartRes() + 1)
+    boxWidth = Math.round((float) (posProps.getEndRes()
+            - posProps.getStartRes() + 1)
             * od.getWidth() / alwidth);
-    boxHeight = Math.round((float) (av.getEndSeq() - av.getStartSeq() + 1)
+    boxHeight = Math.round((float) (posProps.getEndSeq()
+            - posProps.getStartSeq() + 1)
             * od.getSequencesHeight() / alheight);
-    System.out.println(boxHeight);
-
-  }
-
-  @AfterMethod(alwaysRun = true)
-  public void tearDown()
-  {
-    af = null;
-    av = null;
-    Desktop.instance.closeAll_actionPerformed(null);
   }
 
   @AfterClass(alwaysRun = true)
@@ -226,11 +134,10 @@ public class OverviewDimensionsTest {
     // test for alignment with width > height
     SequenceI[] seqs1 = new SequenceI[] { seqa, seqb };
     Alignment al1 = new Alignment(seqs1);
-    al1.setDataset(null);
-    AlignViewport av1 = new AlignViewport(al1);
+    ViewportPositionProps props = new ViewportPositionProps(al1);
 
-    OverviewDimensions od = new OverviewDimensions(av1.getPosProps(), true);
-    int scaledHeight = 266;
+    OverviewDimensions od = new OverviewDimensions(props, true);
+    int scaledHeight = 267;
     assertEquals(od.getGraphHeight(), defaultGraphHeight);
     assertEquals(od.getSequencesHeight(), scaledHeight);
     assertEquals(od.getWidth(), maxWidth);
@@ -239,10 +146,9 @@ public class OverviewDimensionsTest {
     // test for alignment with width < height
     SequenceI[] seqs2 = new SequenceI[] { seqa, seqb, seqc, seqd };
     Alignment al2 = new Alignment(seqs2);
-    al2.setDataset(null);
-    AlignViewport av2 = new AlignViewport(al2);
+    props = new ViewportPositionProps(al2);
 
-    od = new OverviewDimensions(av2.getPosProps(), true);
+    od = new OverviewDimensions(props, true);
     int scaledWidth = 300;
     assertEquals(od.getGraphHeight(), defaultGraphHeight);
     assertEquals(od.getSequencesHeight(), maxSeqHeight);
@@ -253,10 +159,9 @@ public class OverviewDimensionsTest {
     // min value
     SequenceI[] seqs3 = new SequenceI[] { seqe };
     Alignment al3 = new Alignment(seqs3);
-    al3.setDataset(null);
-    AlignViewport av3 = new AlignViewport(al3);
+    props = new ViewportPositionProps(al3);
 
-    od = new OverviewDimensions(av3.getPosProps(), true);
+    od = new OverviewDimensions(props, true);
     assertEquals(od.getGraphHeight(), defaultGraphHeight);
     assertEquals(od.getSequencesHeight(), minSeqHeight);
     assertEquals(od.getWidth(), maxWidth);
@@ -266,20 +171,18 @@ public class OverviewDimensionsTest {
     SequenceI[] seqs4 = new SequenceI[] { seqa, seqb, seqc, seqd, seqa,
         seqb, seqc, seqd, seqa, seqb, seqc, seqd, seqa, seqb, seqc, seqd };
     Alignment al4 = new Alignment(seqs4);
-    al4.setDataset(null);
-    AlignViewport av4 = new AlignViewport(al4);
+    props = new ViewportPositionProps(al4);
 
-    od = new OverviewDimensions(av4.getPosProps(), true);
+    od = new OverviewDimensions(props, true);
     assertEquals(od.getGraphHeight(), defaultGraphHeight);
     assertEquals(od.getSequencesHeight(), maxSeqHeight);
     assertEquals(od.getWidth(), minWidth);
     assertEquals(od.getHeight(), maxSeqHeight + defaultGraphHeight);
 
     Alignment al5 = new Alignment(seqs4);
-    al5.setDataset(null);
-    AlignViewport av5 = new AlignViewport(al5);
+    props = new ViewportPositionProps(al5);
 
-    od = new OverviewDimensions(av5.getPosProps(), false);
+    od = new OverviewDimensions(props, false);
     assertEquals(od.getGraphHeight(), 0);
     assertEquals(od.getSequencesHeight(), maxSeqHeight);
     assertEquals(od.getWidth(), minWidth);
@@ -290,18 +193,12 @@ public class OverviewDimensionsTest {
    * Test that validation after mouse adjustments to boxX and boxY sets box
    * dimensions and scroll values correctly, when there are no hidden rows or
    * columns.
-   * 
-   * The current implementation uses multiple transformations between coordinate
-   * systems which often involve casting to int, which causes values to be
-   * truncated. As a result we can lose accuracy. The tests below use
-   * approximate test values where appropriate.
    */
   @Test(groups = { "Functional" })
   public void testSetBoxFromMouseClick()
   {
-    od.updateViewportFromMouse(0, 0,
-            av.getAlignment().getHiddenSequences(),
-            av.getColumnSelection(), av.getPosProps());
+    od.updateViewportFromMouse(0, 0, al.getHiddenSequences(), hiddenCols,
+            posProps);
     assertEquals(od.getBoxX(), 0);
     assertEquals(od.getBoxY(), 0);
     assertEquals(od.getBoxWidth(), boxWidth);
@@ -328,7 +225,7 @@ public class OverviewDimensionsTest {
 
     // overly large boxX value reset to width-boxWidth
     mouseClick(od, 100, 6);
-    assertEquals(od.getBoxX(), od.getWidth() - od.getBoxWidth() + 1);
+    assertEquals(od.getBoxX(), od.getWidth() - od.getBoxWidth());
     assertEquals(od.getBoxY(), 6);
     assertEquals(od.getBoxWidth(), boxWidth);
     assertEquals(od.getBoxHeight(), boxHeight);
@@ -346,13 +243,17 @@ public class OverviewDimensionsTest {
     assertEquals(od.getBoxHeight(), boxHeight);
     assertEquals(od.getScrollCol(),
             Math.round((float) od.getBoxX() * alwidth / od.getWidth()));
+
+    // here (float) od.getBoxY() * alheight / od.getSequencesHeight() = 507.5
+    // and round rounds to 508; however we get 507 working with row values
+    // hence the subtraction of 1
     assertEquals(od.getScrollRow(),
             Math.round((float) od.getBoxY() * alheight
-                    / od.getSequencesHeight()));
+                    / od.getSequencesHeight()) - 1);
 
     // click past end of alignment, as above
     mouseClick(od, 3000, 5);
-    assertEquals(od.getBoxX(), od.getWidth() - od.getBoxWidth() + 1);
+    assertEquals(od.getBoxX(), od.getWidth() - od.getBoxWidth());
     assertEquals(od.getBoxWidth(), boxWidth);
     assertEquals(od.getBoxHeight(), boxHeight);
     assertEquals(od.getScrollCol(),
@@ -395,9 +296,8 @@ public class OverviewDimensionsTest {
   @Test(groups = { "Functional" })
   public void testFromMouseWithHiddenColsAtStart()
   {
-    od.updateViewportFromMouse(0, 0,
-            av.getAlignment().getHiddenSequences(),
-            av.getColumnSelection(), av.getPosProps());
+    od.updateViewportFromMouse(0, 0, al.getHiddenSequences(), hiddenCols,
+            posProps);
     assertEquals(od.getBoxX(), 0);
     assertEquals(od.getBoxY(), 0);
     assertEquals(od.getBoxWidth(), boxWidth);
@@ -407,10 +307,9 @@ public class OverviewDimensionsTest {
     // hide cols at start and check updated box position is correct
     // changes boxX but not boxwidth
     int lastHiddenCol = 30;
-    hideColumns(0, lastHiddenCol);
+    hiddenCols.hideColumns(0, lastHiddenCol);
 
-    od.setBoxPosition(av.getAlignment()
-            .getHiddenSequences(), av.getColumnSelection(), av.getPosProps());
+    od.setBoxPosition(al.getHiddenSequences(), hiddenCols, posProps);
     assertEquals(od.getBoxX(),
             Math.round((float) (lastHiddenCol + 1) * od.getWidth()
                     / alwidth));
@@ -418,7 +317,6 @@ public class OverviewDimensionsTest {
     assertEquals(od.getBoxHeight(), boxHeight);
 
     // try to click in hidden cols, check box does not move
-    // this test currently fails as the overview box does not behave like this!
     int xpos = 10;
     mouseClick(od, xpos, 0);
     assertEquals(
@@ -444,7 +342,7 @@ public class OverviewDimensionsTest {
     // overly large boxX value reset to width-boxWidth
     xpos = 100;
     mouseClick(od, xpos, 5);
-    assertEquals(od.getBoxX(), od.getWidth() - od.getBoxWidth() + 1);
+    assertEquals(od.getBoxX(), od.getWidth() - od.getBoxWidth());
     assertEquals(od.getBoxY(), 5);
     assertEquals(od.getBoxWidth(), boxWidth);
     assertEquals(od.getBoxHeight(), boxHeight);
@@ -463,9 +361,8 @@ public class OverviewDimensionsTest {
   @Test(groups = { "Functional" })
   public void testFromMouseWithHiddenColsInMiddle()
   {
-    od.updateViewportFromMouse(0, 0,
-            av.getAlignment().getHiddenSequences(),
-            av.getColumnSelection(), av.getPosProps());
+    od.updateViewportFromMouse(0, 0, al.getHiddenSequences(), hiddenCols,
+            posProps);
     assertEquals(od.getBoxX(), 0);
     assertEquals(od.getBoxY(), 0);
     assertEquals(od.getBoxWidth(), boxWidth);
@@ -475,10 +372,9 @@ public class OverviewDimensionsTest {
     // hide columns 63-73, no change to box position or dimensions
     int firstHidden = 63;
     int lastHidden = 73;
-    hideColumns(firstHidden, lastHidden);
+    hiddenCols.hideColumns(firstHidden, lastHidden);
 
-    od.setBoxPosition(av.getAlignment()
-            .getHiddenSequences(), av.getColumnSelection(), av.getPosProps());
+    od.setBoxPosition(al.getHiddenSequences(), hiddenCols, posProps);
     assertEquals(od.getBoxX(), 0);
     assertEquals(od.getBoxY(), 0);
     assertEquals(od.getBoxWidth(), boxWidth);
@@ -547,7 +443,7 @@ public class OverviewDimensionsTest {
     // boxX, scrollCol adjusted back, box width normal
     xpos = 3000;
     mouseClick(od, xpos, 5);
-    assertEquals(od.getBoxX(), od.getWidth() - od.getBoxWidth() + 1);
+    assertEquals(od.getBoxX(), od.getWidth() - od.getBoxWidth());
     assertEquals(od.getBoxY(), 5);
     assertEquals(od.getBoxWidth(), boxWidth);
     assertEquals(od.getBoxHeight(), boxHeight);
@@ -567,9 +463,8 @@ public class OverviewDimensionsTest {
   @Test(groups = { "Functional" })
   public void testFromMouseWithHiddenColsAtEnd()
   {
-    od.updateViewportFromMouse(0, 0,
-            av.getAlignment().getHiddenSequences(),
-            av.getColumnSelection(), av.getPosProps());
+    od.updateViewportFromMouse(0, 0, al.getHiddenSequences(), hiddenCols,
+            posProps);
     assertEquals(od.getBoxX(), 0);
     assertEquals(od.getBoxY(), 0);
     assertEquals(od.getBoxWidth(), boxWidth);
@@ -579,9 +474,8 @@ public class OverviewDimensionsTest {
     // hide columns 140-164, no change to box position or dimensions
     int firstHidden = 140;
     int lastHidden = 164;
-    hideColumns(firstHidden, lastHidden);
-    od.setBoxPosition(av.getAlignment()
-            .getHiddenSequences(), av.getColumnSelection(), av.getPosProps());
+    hiddenCols.hideColumns(firstHidden, lastHidden);
+    od.setBoxPosition(al.getHiddenSequences(), hiddenCols, posProps);
     assertEquals(od.getBoxX(), 0);
     assertEquals(od.getBoxY(), 0);
     assertEquals(od.getBoxWidth(), boxWidth);
@@ -598,48 +492,43 @@ public class OverviewDimensionsTest {
 
     // click to left of hidden cols, with overlap
     // boxX and scrollCol adjusted for hidden cols, width normal
-    /*    xpos = Math.round((float) 145 * od.getWidth() / alwidth) - boxWidth;
-        mouseClick(od, xpos, 0);
-        assertEquals(
-                od.getBoxX(),
-                Math.round((firstHidden - 1) * od.getWidth() / alwidth)
-                        - boxWidth);
-        assertEquals(od.getBoxY(), 0);
-        assertEquals(od.getBoxWidth(), boxWidth);
-        assertEquals(od.getBoxHeight(), boxHeight);
-        assertEquals(od.getScrollCol(),
-                Math.round(od.getBoxX() * alwidth / od.getWidth()));
-        assertEquals(od.getScrollRow(), 0);
-    */
+    xpos = Math.round((float) 145 * od.getWidth() / alwidth) - boxWidth;
+    mouseClick(od, xpos, 0);
+    assertEquals(od.getBoxX(),
+            Math.round((float) (firstHidden - 1) * od.getWidth() / alwidth)
+                    - boxWidth + 1);
+    assertEquals(od.getBoxY(), 0);
+    assertEquals(od.getBoxWidth(), boxWidth);
+    assertEquals(od.getBoxHeight(), boxHeight);
+    assertEquals(od.getScrollCol(),
+            Math.round((float) od.getBoxX() * alwidth / od.getWidth()));
+    assertEquals(od.getScrollRow(), 0);
+
     // click in hidden cols
     // boxX and scrollCol adjusted for hidden cols, width normal
-    // TODO breaks as above test
-    /*xpos = 115;
-    assertEquals(
-            od.getBoxX(),
-            Math.round((firstHidden - 1) * scalew * av.getCharWidth())
-                    - od.getBoxWidth());
+    xpos = 115;
+    assertEquals(od.getBoxX(),
+            Math.round((float) (firstHidden - 1) * od.getWidth() / alwidth)
+                    - boxWidth + 1);
     assertEquals(od.getBoxY(), 0);
     assertEquals(od.getBoxWidth(), boxWidth);
     assertEquals(od.getBoxHeight(), boxHeight);
     assertEquals(od.getScrollCol(),
-            Math.round(od.getBoxX() * alwidth / od.getWidth()));
-    assertEquals(od.getScrollRow(), 0);*/
+            Math.round((float) od.getBoxX() * alwidth / od.getWidth()));
+    assertEquals(od.getScrollRow(), 0);
 
     // click off end of alignment
     // boxX and scrollCol adjusted for hidden cols, width normal
-    // TODO breaks as above test
-    /*    xpos = 3000;
-        assertEquals(
-                od.getBoxX(),
-                Math.round((firstHidden - 1) * scalew * av.getCharWidth())
-                        - od.getBoxWidth());
-        assertEquals(od.getBoxY(), 0);
-        assertEquals(od.getBoxWidth(), boxWidth);
-        assertEquals(od.getBoxHeight(), boxHeight);
-        assertEquals(od.getScrollCol(),
-                Math.round(od.getBoxX() * alwidth / od.getWidth()));
-        assertEquals(od.getScrollRow(), 0);*/
+    xpos = 3000;
+    assertEquals(od.getBoxX(),
+            Math.round((float) (firstHidden - 1) * od.getWidth() / alwidth)
+                    - boxWidth + 1);
+    assertEquals(od.getBoxY(), 0);
+    assertEquals(od.getBoxWidth(), boxWidth);
+    assertEquals(od.getBoxHeight(), boxHeight);
+    assertEquals(od.getScrollCol(),
+            Math.round((float) od.getBoxX() * alwidth / od.getWidth()));
+    assertEquals(od.getScrollRow(), 0);
   }
 
   /**
@@ -692,7 +581,7 @@ public class OverviewDimensionsTest {
   {
     int firstHidden = 0;
     int lastHidden = 20;
-    hideColumns(firstHidden, lastHidden);
+    hiddenCols.hideColumns(firstHidden, lastHidden);
 
     // move viewport to start of alignment
     moveViewport(0, 0);
@@ -721,7 +610,7 @@ public class OverviewDimensionsTest {
   {
     int firstHidden = 68;
     int lastHidden = 78;
-    hideColumns(firstHidden, lastHidden);
+    hiddenCols.hideColumns(firstHidden, lastHidden);
 
     // move viewport before hidden columns
     moveViewport(3, 0);
@@ -777,7 +666,7 @@ public class OverviewDimensionsTest {
   {
     int firstHidden = 152;
     int lastHidden = 164;
-    hideColumns(firstHidden, lastHidden);
+    hiddenCols.hideColumns(firstHidden, lastHidden);
 
     // move viewport before hidden columns
     moveViewport(3, 0);
@@ -793,7 +682,7 @@ public class OverviewDimensionsTest {
             Math.round((float) 102 * od.getWidth() / alwidth));
     assertEquals(od.getBoxY(), 0);
     assertEquals(od.getBoxWidth(), boxWidth
-                    + Math.round((float) (lastHidden - firstHidden)
+                    + Math.round((float) (lastHidden - firstHidden + 1)
                             * od.getWidth() / alwidth));
     assertEquals(od.getBoxHeight(), boxHeight);
   }
@@ -807,7 +696,7 @@ public class OverviewDimensionsTest {
   {
     int firstHidden = 0;
     int lastHidden = 20;
-    hideSequences(firstHidden, lastHidden + 1, lastHidden + 1);
+    hideSequences(firstHidden, lastHidden);
 
     // move viewport to start of alignment:
     // box moves to below hidden rows, height remains same
@@ -839,7 +728,7 @@ public class OverviewDimensionsTest {
   {
     int firstHidden = 200;
     int lastHidden = 210;
-    hideSequences(firstHidden, lastHidden + 1, lastHidden + 1);
+    hideSequences(firstHidden, lastHidden);
 
     // move viewport to start of alignment:
     // box, height etc as in non-hidden case
@@ -870,7 +759,7 @@ public class OverviewDimensionsTest {
   {
     int firstHidden = 500;
     int lastHidden = 524;
-    hideSequences(firstHidden - 1, lastHidden, firstHidden - 1);
+    hideSequences(firstHidden, lastHidden);
 
     // move viewport to start of alignment:
     // box, height etc as in non-hidden case
@@ -900,9 +789,8 @@ public class OverviewDimensionsTest {
   @Test(groups = { "Functional" })
   public void testFromMouseWithHiddenRowsAtStart()
   {
-    od.updateViewportFromMouse(0, 0,
-            av.getAlignment().getHiddenSequences(),
-            av.getColumnSelection(), av.getPosProps());
+    od.updateViewportFromMouse(0, 0, al.getHiddenSequences(), hiddenCols,
+            posProps);
     assertEquals(od.getBoxX(), 0);
     assertEquals(od.getBoxY(), 0);
     assertEquals(od.getBoxHeight(), boxHeight);
@@ -913,10 +801,9 @@ public class OverviewDimensionsTest {
     // hide rows at start and check updated box position is correct
     // changes boxY but not boxheight
     int lastHiddenRow = 30;
-    hideSequences(0, lastHiddenRow + 1, lastHiddenRow + 1);
+    hideSequences(0, lastHiddenRow);
 
-    od.setBoxPosition(av.getAlignment()
-            .getHiddenSequences(), av.getColumnSelection(), av.getPosProps());
+    od.setBoxPosition(al.getHiddenSequences(), hiddenCols, posProps);
     assertEquals(od.getBoxX(), 0);
     assertEquals(od.getBoxY(),
             Math.round((float) (lastHiddenRow + 1)
@@ -949,9 +836,8 @@ public class OverviewDimensionsTest {
   @Test(groups = { "Functional" })
   public void testFromMouseWithHiddenRowsInMiddle()
   {
-    od.updateViewportFromMouse(0, 0,
-            av.getAlignment().getHiddenSequences(),
-            av.getColumnSelection(), av.getPosProps());
+    od.updateViewportFromMouse(0, 0, al.getHiddenSequences(), hiddenCols,
+            posProps);
 
     assertEquals(od.getBoxX(), 0);
     assertEquals(od.getBoxY(), 0);
@@ -963,11 +849,10 @@ public class OverviewDimensionsTest {
     // hide rows in middle and check updated box position is correct
     // no changes
     int firstHiddenRow = 50;
-    int lastHiddenRow = 60;
-    hideSequences(firstHiddenRow, lastHiddenRow + 1, lastHiddenRow + 1);
+    int lastHiddenRow = 54;
+    hideSequences(firstHiddenRow, lastHiddenRow);
 
-    od.setBoxPosition(av.getAlignment()
-            .getHiddenSequences(), av.getColumnSelection(), av.getPosProps());
+    od.setBoxPosition(al.getHiddenSequences(), hiddenCols, posProps);
 
     assertEquals(od.getBoxX(), 0);
     assertEquals(od.getBoxY(), 0);
@@ -975,34 +860,32 @@ public class OverviewDimensionsTest {
     assertEquals(od.getBoxHeight(), boxHeight);
 
     // click above hidden rows, so that box overlaps
-    int ypos = 40;
-    // TODO test fails because box does not change height - dealt with by scroll
-    // values
-    /*    mouseClick(od, 0, Math.round (ypos * alheight / od.getSequencesHeight()));
-        assertEquals(od.getBoxX(), 0);
-        assertEquals(od.getBoxY(), Math.round (ypos * alheight / od.getSequencesHeight()),
-                1.5);
-        assertEquals(od.getBoxWidth(), boxWidth);
-        assertEquals(
-                od.getBoxHeight(),
-                boxHeight
-                        + Math.round ((lastHiddenRow - firstHiddenRow + 1) / scaleh / av
-                                .getCharHeight()));
-    */
+    int ypos = 35; // column value in residues
+    mouseClick(od, 0,
+            Math.round((float) ypos * od.getSequencesHeight() / alheight));
+    assertEquals(od.getBoxX(), 0);
+    assertEquals(od.getBoxY(),
+            Math.round((float) ypos * od.getSequencesHeight() / alheight));
+    assertEquals(od.getBoxWidth(), boxWidth);
+    assertEquals(
+            od.getBoxHeight(),
+            boxHeight
+                    + Math.round((float) (lastHiddenRow - firstHiddenRow + 1)
+                            * od.getSequencesHeight() / alheight));
+
     // click so that box straddles hidden rows
-    ypos = 48;
-    // TODO test fails because box does not change height - dealt with by scroll
-    // values
-    /*mouseClick(od, 0, Math.round (ypos * alheight / od.getSequencesHeight()));
+    ypos = 44; // column value in residues
+    mouseClick(od, 0,
+            Math.round((float) ypos * od.getSequencesHeight() / alheight));
     assertEquals(od.getBoxX(), 0);
-    assertEquals(od.getBoxY(), Math.round (ypos * alheight / od.getSequencesHeight()),
-            1.5);
+    assertEquals(od.getBoxY(),
+            Math.round((float) ypos * od.getSequencesHeight() / alheight));
     assertEquals(od.getBoxWidth(), boxWidth);
     assertEquals(
             od.getBoxHeight(),
             boxHeight
-                    + Math.round ((lastHiddenRow - firstHiddenRow + 1) / scaleh / av
-                            .getCharHeight()));*/
+                    + Math.round((float) (lastHiddenRow - firstHiddenRow + 1)
+                            * od.getSequencesHeight() / alheight));
   }
 
   /**
@@ -1012,9 +895,8 @@ public class OverviewDimensionsTest {
   @Test(groups = { "Functional" })
   public void testFromMouseWithHiddenRowsAtEnd()
   {
-    od.updateViewportFromMouse(0, 0,
-            av.getAlignment().getHiddenSequences(),
-            av.getColumnSelection(), av.getPosProps());
+    od.updateViewportFromMouse(0, 0, al.getHiddenSequences(), hiddenCols,
+            posProps);
     assertEquals(od.getBoxX(), 0);
     assertEquals(od.getBoxY(), 0);
     assertEquals(od.getBoxWidth(), boxWidth);
@@ -1026,10 +908,9 @@ public class OverviewDimensionsTest {
     // no changes
     int firstHidden = 500;
     int lastHidden = 524;
-    hideSequences(firstHidden - 1, lastHidden, firstHidden - 1);
+    hideSequences(firstHidden, lastHidden);
 
-    od.setBoxPosition(av.getAlignment()
-            .getHiddenSequences(), av.getColumnSelection(), av.getPosProps());
+    od.setBoxPosition(al.getHiddenSequences(), hiddenCols, posProps);
     assertEquals(od.getBoxX(), 0);
     assertEquals(od.getBoxY(), 0);
     assertEquals(od.getBoxWidth(), boxWidth);
@@ -1047,29 +928,28 @@ public class OverviewDimensionsTest {
 
     // click above hidden rows so box overlaps
     // boxY moved upwards, boxHeight remains same
-    // TODO fails with boxY located at row 497 - correction done by
-    // setScrollValues
-    /*   ypos = 497; // row 497
-       mouseClick(od, 0, Math.round (ypos * scaleh * av.getCharHeight()));
-       assertEquals(od.getBoxX(), 0);
-       assertEquals(
-               od.getBoxY(),
-               Math.round ((firstHidden - viewHeight) * scaleh * av.getCharHeight()),
-               1.5);
-       assertEquals(od.getBoxWidth(), boxWidth);
-       assertEquals(od.getBoxHeight(), boxHeight);*/
+    ypos = 497; // row 497
+    mouseClick(od, 0,
+            Math.round((float) ypos * od.getSequencesHeight() / alheight));
+    assertEquals(od.getBoxX(), 0);
+    assertEquals(
+            od.getBoxY(),
+            Math.round((float) (firstHidden - viewHeight)
+                    * od.getSequencesHeight() / alheight));
+    assertEquals(od.getBoxWidth(), boxWidth);
+    assertEquals(od.getBoxHeight(), boxHeight);
 
     // click within hidden rows
     ypos = 505;
-    // TODO: fails with wrong boxHeight - correction done by setScrollValues(?)
-    /*mouseClick(od, 0, Math.round (ypos * scaleh * av.getCharHeight()));
+    mouseClick(od, 0,
+            Math.round((float) ypos * od.getSequencesHeight() / alheight));
     assertEquals(od.getBoxX(), 0);
     assertEquals(
             od.getBoxY(),
-            Math.round ((firstHidden - viewHeight) * scaleh * av.getCharHeight()),
-            1.5);
+            Math.round((firstHidden - viewHeight) * od.getSequencesHeight()
+                    / alheight));
     assertEquals(od.getBoxWidth(), boxWidth);
-    assertEquals(od.getBoxHeight(), boxHeight);*/
+    assertEquals(od.getBoxHeight(), boxHeight);
   }
 
   /*
@@ -1077,10 +957,9 @@ public class OverviewDimensionsTest {
    */
   private void moveViewportH(int startRes)
   {
-    av.setStartRes(startRes);
-    av.setEndRes(startRes + viewWidth - 1);
-    od.setBoxPosition(av.getAlignment()
-            .getHiddenSequences(), av.getColumnSelection(), av.getPosProps());
+    posProps.setStartRes(startRes);
+    posProps.setEndRes(startRes + viewWidth - 1);
+    od.setBoxPosition(al.getHiddenSequences(), hiddenCols, posProps);
   }
 
   /*
@@ -1088,10 +967,9 @@ public class OverviewDimensionsTest {
    */
   private void moveViewportV(int startSeq)
   {
-    av.setStartSeq(startSeq);
-    av.setEndSeq(startSeq + viewHeight - 1);
-    od.setBoxPosition(av.getAlignment()
-            .getHiddenSequences(), av.getColumnSelection(), av.getPosProps());
+    posProps.setStartSeq(startSeq);
+    posProps.setEndSeq(startSeq + viewHeight - 1);
+    od.setBoxPosition(al.getHiddenSequences(), hiddenCols, posProps);
   }
 
   /*
@@ -1099,12 +977,11 @@ public class OverviewDimensionsTest {
    */
   private void moveViewport(int startRes, int startSeq)
   {
-    av.setStartRes(startRes);
-    av.setEndRes(startRes + viewWidth - 1);
-    av.setStartSeq(startSeq);
-    av.setEndSeq(startSeq + viewHeight - 1);
-    od.setBoxPosition(av.getAlignment()
-            .getHiddenSequences(), av.getColumnSelection(), av.getPosProps());
+    posProps.setStartRes(startRes);
+    posProps.setEndRes(startRes + viewWidth - 1);
+    posProps.setStartSeq(startSeq);
+    posProps.setEndSeq(startSeq + viewHeight - 1);
+    od.setBoxPosition(al.getHiddenSequences(), hiddenCols, posProps);
   }
 
   /*
@@ -1112,22 +989,24 @@ public class OverviewDimensionsTest {
    */
   private void mouseClick(OverviewDimensions od, int x, int y)
   {
-    od.updateViewportFromMouse(x, y,
-            av.getAlignment().getHiddenSequences(),
-            av.getColumnSelection(), av.getPosProps());
+    od.updateViewportFromMouse(x, y, al.getHiddenSequences(), hiddenCols,
+            posProps);
+
     // updates require an OverviewPanel to exist which it doesn't here
     // so call setBoxPosition() as it would be called by the AlignmentPanel
     // normally
-    // int width = av.getEndRes() - av.getStartRes();
-    // int height = av.getEndSeq() - av.getStartSeq();
-    av.setStartRes(od.getScrollCol());
-    av.setEndRes(od.getScrollCol() + viewWidth - 1);
-    av.setStartSeq(od.getScrollRow());
-    av.setEndSeq(od.getScrollRow() + viewHeight - 1);
-    od.setBoxPosition(av.getAlignment()
-            .getHiddenSequences(), av.getColumnSelection(), av.getPosProps());
+
+    posProps.setStartRes(od.getScrollCol());
+    posProps.setEndRes(od.getScrollCol() + viewWidth - 1);
+    posProps.setStartSeq(od.getScrollRow());
+    posProps.setEndSeq(od.getScrollRow() + viewHeight - 1);
+    od.setBoxPosition(al.getHiddenSequences(), hiddenCols, posProps);
   }
   
+  /*
+   * Test that the box is positioned with the top left corner at xpos, ypos
+   * and with the original width and height
+   */
   private void testBoxIsAtClickPoint(int xpos, int ypos)
   {
     mouseClick(od, xpos, ypos);
@@ -1139,49 +1018,19 @@ public class OverviewDimensionsTest {
   }
 
   /*
-   * Hide sequences between start and end, using hideseq to do the hiding
-   * (start <= hideseq <= end. Sequence hideseq is not hidden but the others are
+   * Hide sequences between start and end
    */
-  private void hideSequences(int start, int end, int hideseq)
+  private void hideSequences(int start, int end)
   {
-    SequenceGroup sg = new SequenceGroup();
-    List<SequenceI> allseqs = av.getAlignment().getSequences();
-    for (int i = start; i <= end; ++i)
+    SequenceI[] allseqs = al.getSequencesArray();
+    SequenceGroup theseSeqs = new SequenceGroup();
+    
+    for (int i = start; i <= end; i++)
     {
-      sg.addSequence(allseqs.get(i), false);
+      theseSeqs.addSequence(allseqs[i], false);
+      al.getHiddenSequences().hideSequence(allseqs[i]);
     }
-    av.setSelectionGroup(sg);
-
-    /*
-     * hide group
-     */
-    av.hideSequences(allseqs.get(hideseq), true);
 
-    while (av.isCalcInProgress())
-    {
-      try
-      {
-        Thread.sleep(50);
-      } catch (InterruptedException e)
-      {
-        System.out.println("Hiding seqs interruption");
-      }
-    }
-  }
-
-  private void hideColumns(int firstHidden, int lastHidden)
-  {
-    av.hideColumns(firstHidden, lastHidden);
-
-    while (av.isCalcInProgress())
-    {
-      try
-      {
-        Thread.sleep(50);
-      } catch (InterruptedException e)
-      {
-        System.out.println("Hiding cols interruption");
-      }
-    }
+    hiddenRepSequences.put(allseqs[start], theseSeqs);
   }
 }