File: CompoundLocationTest.java

package info (click to toggle)
biojava-live 1%3A1.7.1-8
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 55,160 kB
  • sloc: java: 180,820; xml: 6,908; sql: 510; makefile: 50
file content (277 lines) | stat: -rw-r--r-- 7,106 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
/*
 *                    BioJava development code
 *
 * This code may be freely distributed and modified under the
 * terms of the GNU Lesser General Public Licence.  This should
 * be distributed with the code.  If you do not have a copy,
 * see:
 *
 *      http://www.gnu.org/copyleft/lesser.html
 *
 * Copyright for this code is held jointly by the individual
 * authors.  These should be listed in @author doc comments.
 *
 * For more information on the BioJava project and its aims,
 * or to join the biojava-l mailing list, visit the home page
 * at:
 *
 *      http://www.biojava.org/
 *
 */

package org.biojava.bio.symbol;

import java.util.ArrayList;
import java.util.List;

import junit.framework.TestCase;

/**
 * <code>CompoundLocationTest</code> tests the behaviour of
 * <code>CompoundLocation</code> by itself and combined with
 * <code>LocationTools</code>.
 *
 * @author <a href="mailto:kdj@sanger.ac.uk">Keith James</a>
 * @author Thomas Down
 * @author Francois Pepin
 */
public class CompoundLocationTest extends TestCase
{
    protected Location r1;
    protected Location r2;
    protected Location r3;
    protected Location r4;
    protected Location r5;
    protected Location r6;
    protected Location r7;
    protected Location r8;
    protected Location r9;


    private   List     locs1;
    private   List     locs2;
    private   List     locs3;
    private   List     locs4;
    private   List     locs5;
    private   List     locs6;
    private   List     locs7;
    private   List     locs8;
    private   List     locs9;



    public CompoundLocationTest(String name)
    {
	super(name);
    }

  /**
   * Runs the unit tests defined here.
   */
  public static void main(String args[])
  {
    junit.textui.TestRunner.run(CompoundLocationTest.class);
  }

    protected void setUp() throws Exception
    {
	locs1 = new ArrayList();
	locs1.add(new RangeLocation(1, 100));
	locs1.add(new RangeLocation(150, 200));

	locs2 = new ArrayList();
	locs2.add(new RangeLocation(150, 160));
	locs2.add(new RangeLocation(170, 190));

	locs3 = new ArrayList();
	locs3.add(new RangeLocation(250, 300));
	locs3.add(new RangeLocation(350, 400));

	locs4 = new ArrayList();
	locs5 = new ArrayList();
	locs6 = new ArrayList();
	locs7 = new ArrayList();
	for (int i = 0; i < 173; ++i) {
	    int j = i * 17;
	    locs4.add(new RangeLocation(j, j + 6));
	    locs5.add(new RangeLocation(j + 5, j + 8));
	    locs6.add(new RangeLocation(j + 5, j + 6));
	    locs7.add(new RangeLocation(j + 10, j + 11));
	}
        locs8 = new ArrayList();
        locs8.add(new RangeLocation(250, 255));
        locs8.add(new RangeLocation(350, 400));

        locs9 = new ArrayList();
        locs9.add(new RangeLocation(256, 300));
        locs9.add(new RangeLocation(350, 400));


	r1 = LocationTools.buildLoc(locs1);
	r2 = LocationTools.buildLoc(locs2);
	r3 = LocationTools.buildLoc(locs3);
	r4 = LocationTools.buildLoc(locs4);
	r5 = LocationTools.buildLoc(locs5);
	r6 = LocationTools.buildLoc(locs6);
	r7 = LocationTools.buildLoc(locs7);
        r8 = LocationTools.buildLoc(locs8);
        r9 = LocationTools.buildLoc(locs9);
    }

    /**
     * <code>testEquals</code> tests equality directly.
     *
     */
    public void testEquals()
    {
  	assertEquals(r1, r1);
  	assertEquals(r1, LocationTools.buildLoc(locs1));
    }

    /**
     * <code>testAreEqual</code> tests equality via
     * <code>LocationTools</code>.
     *
     */
    public void testAreEqual()
    {
	assertTrue(LocationTools.areEqual(r1, r1));
	assertEquals(r1, LocationTools.buildLoc(locs1));
    }

    /**
     * <code>testOverlaps</code> tests overlaps via
     * <code>LocationTools</code>.
     *
     */
    public void testOverlaps()
    {
	assertTrue(LocationTools.overlaps(r1, r2));
	assertTrue(! LocationTools.overlaps(r1, r3));
    }

    /**
     * <code>testContains</code> tests contains via
     * <code>LocationTools</code>.
     *
     */
    public void testContains()
    {
	assertTrue(LocationTools.contains(r1, r2));
	assertTrue(! LocationTools.contains(r1, r3));
	assertTrue(r1.contains(1));
	assertTrue(r1.contains(100));
	assertTrue(r1.contains(150));
	assertTrue(r1.contains(200));

	// Between contained ranges
	assertTrue(! r1.contains(101));
	// Outside contained ranges
	assertTrue(! r1.contains(201));
    }

    /**
     * <code>testIntersection</code> tests intersection via
     * <code>LocationTools</code>.
     *
     */
    public void testIntersection()
    {
	assertEquals(LocationTools.intersection(r1, r2),
		     LocationTools.intersection(r2, r1));
	assertEquals(LocationTools.intersection(r1, r3),
		     Location.empty);
	assertEquals(LocationTools.intersection(r3, r1),
		     Location.empty);
	assertEquals(LocationTools.intersection(r1, new RangeLocation(1, 1000)),
		     r1);
	assertEquals(LocationTools.intersection(new RangeLocation(1, 1000), r1),
		     r1);
    }

    /**
     * <code>testUnion</code> tests union via
     * <code>LocationTools</code>.
     *
     */
    public void testUnion()
    {
	assertEquals(r1, LocationTools.union(r1, r1));
	assertEquals(r2, LocationTools.union(r2, r2));
	assertEquals(LocationTools.union(r1, r2),
		     LocationTools.union(r2, r1));
	assertEquals(LocationTools.union(r1, r3),
                     LocationTools.union(r3, r1));
        assertEquals(r3, LocationTools.union(r8,r9));

    }

    /**
     * <code>testIsContiguous</code> tests contiguous.
     *
     */
    public void testIsContiguous()
    {
	assertTrue(! r1.isContiguous());

	List single = new ArrayList();
	single.add(new RangeLocation(1, 100));
	Location contig = LocationTools.buildLoc(single);

	assertTrue(contig.isContiguous());
    }

    public void testOverlapsBig()
    {
	assertTrue(LocationTools.overlaps(r4, r5));
	assertTrue(!LocationTools.overlaps(r4, r7));
    }

    public void testContainsBig()
    {
	assertTrue(LocationTools.contains(r4, r6));
	assertTrue(!LocationTools.contains(r4, r5));
	assertTrue(!LocationTools.contains(r4, r7));
    }

    public void testIntersectionBig() {
	assertEquals(LocationTools.intersection(r4, r5), r6);
	assertEquals(LocationTools.intersection(r4, r7), Location.empty);
    }

    public void testSubtract() {
        Location l1 = new RangeLocation(100, 200);
        Location l2 = LocationTools.union(
            new RangeLocation(100, 119),
            new RangeLocation(180, 200)
        );
        assertEquals(
            LocationTools.subtract(
                l1,
                new RangeLocation(120, 179)
            ),
            l2
        );
        assertEquals(
            LocationTools.subtract(
                l1,
                new RangeLocation(80, 119)
            ),
            new RangeLocation(120, 200)
        );
        assertEquals(
            LocationTools.subtract(
                l1,
                new RangeLocation(180, 1019)
            ),
            new RangeLocation(100, 179)
        );
        assertEquals(
            LocationTools.subtract(
                l2,
                Location.empty
            ),
            l2
        );
    }
}