Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix off-by-one issue in isOverlapping #2066

Merged
merged 6 commits into from
Nov 8, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/org/rascalmpl/library/Prelude.java
Original file line number Diff line number Diff line change
Expand Up @@ -4110,9 +4110,9 @@ public IBool isOverlapping(ISourceLocation first, ISourceLocation second) {
if (first.hasOffsetLength()) {
if (second.hasOffsetLength()) {
int firstStart = first.getOffset();
int firstEnd = firstStart + first.getLength();
int firstEnd = firstStart + first.getLength() - 1; // Inclusive
int secondStart = second.getOffset();
int secondEnd = secondStart + second.getLength();
int secondEnd = secondStart + second.getLength() - 1; // Inclusive

return values.bool(
(firstStart <= secondStart && secondStart <= firstEnd)
Expand Down
58 changes: 34 additions & 24 deletions src/org/rascalmpl/library/lang/rascal/tests/basic/Locations.rsc
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,11 @@ import util::FileSystem;

int singleChar(str s) = charAt(s,0);

list[int] makeValidSchemeChars() = [singleChar("a")..singleChar("z")] + [singleChar("A")..singleChar("Z")]
list[int] makeValidSchemeChars() = [singleChar("a")..singleChar("z")] + [singleChar("A")..singleChar("Z")]
+ [singleChar("0")..singleChar("9")] + [singleChar("+"), singleChar("-"), singleChar(".")]
;
list[int] validSchemeChars = [singleChar("a")..singleChar("z")] + [singleChar("A")..singleChar("Z")]

list[int] validSchemeChars = [singleChar("a")..singleChar("z")] + [singleChar("A")..singleChar("Z")]
+ [singleChar("0")..singleChar("9")] + [singleChar("+"), singleChar("-"), singleChar(".")]
;

Expand Down Expand Up @@ -66,10 +66,10 @@ test bool validURIFragment(loc l, str s) = l[fragment = s].uri != "";

str fixPathAddition(str s) = replaceAll(s, "/", "");

test bool pathAdditions1(list[str] ss)
= (|tmp:///ba| | it + t | s <- ss, t := fixPathAddition(s), t != "" ).path
test bool pathAdditions1(list[str] ss)
= (|tmp:///ba| | it + t | s <- ss, t := fixPathAddition(s), t != "" ).path
== ("/ba" | it + "/" + t | s <- ss, t := fixPathAddition(s), t != "" );

test bool pathAdditions2(loc l, str s) = s == "" || (l + fixPathAddition(s)).path == ((endsWith(l.path, "/") ? l.path : l.path + "/") + fixPathAddition(s)) ;

test bool testParent(loc l, str s) = s == "" || ((l + replaceAll(s, "/","_")).parent + "/") == (l[path=l.path] + "/");
Expand Down Expand Up @@ -113,21 +113,21 @@ test bool enclosingTest8() = !(|tmp:///x.src|(4,11,<0,0>,<0,0>) <= |tmp:///x.src
test bool enclosingTest9() = !(|tmp:///x.src|(4,11,<0,0>,<0,0>) <= |tmp:///x.src|(4,10,<0,0>,<0,0>));

test bool offSetLengthEnclosing(int aOffset, int aLength, int bOffset, int bLength)
= (abs(aOffset) < toInt(pow(2,31))
= (abs(aOffset) < toInt(pow(2,31))
&& abs(aOffset) + abs(aLength) < toInt(pow(2,31))
&& abs(bOffset) < toInt(pow(2,31))
&& abs(bOffset) < toInt(pow(2,31))
&& abs(bOffset) + abs(bLength) < toInt(pow(2,31))
&& abs(aOffset) >= abs(bOffset)
&& abs(aOffset) <= abs(bOffset) + abs(bLength)
&& abs(aOffset) >= abs(bOffset)
&& abs(aOffset) <= abs(bOffset) + abs(bLength)
&& abs(aOffset) + abs(aLength) <= abs(bOffset) + abs(bLength))
==>
|tmp:///x.rsc|(abs(aOffset), abs(aLength),<0,0>,<0,0>) <= |tmp:///x.rsc|(abs(bOffset), abs(bLength),<0,0>,<0,0>);


// Simulate a list of 1000 lines each of length < 1000;
public list[int] lineSizes = [ arbInt(1000) | int _ <- [1 .. 1000] ];
public list[int] lineSizes = [ arbInt(1000) | int _ <- [1 .. 1000] ];

public int maxIndex = (0 | it + lineSizes[i] | int i <- index(lineSizes));
public int maxIndex = (0 | it + lineSizes[i] | int i <- index(lineSizes));

// Turn an index in the above list into a line/column pair
tuple[int line, int column] getLineAndColumn(int idx){
Expand Down Expand Up @@ -225,7 +225,7 @@ test bool equal1(int f, int t){
test bool equal2(int f, int t){
f = restrict(f); t = restrict(t);
l1 = getLoc(f, t, base="base1.src"); l2 = getLoc(f, t, base="base2.src");
return !(l1 == l2);
return !(l1 == l2);
}

// Create a list of n different locations
Expand Down Expand Up @@ -270,20 +270,20 @@ tuple[loc, loc] makeLocsWithGap(int gap){
sign = gap > 0 ? 1 : -1;
absgap = min(abs(gap), maxIndex/2);
m1 = 1 + arbInt(maxIndex - absgap - 2); // 1 <= m1 <= maxIndex - 2
m2 = m1 + sign * absgap;
m2 = m1 + sign * absgap;

llen = arbInt(m1);
l = getLoc(m1 - llen, m1);

rlen = m2 == maxIndex ? 0 : arbInt(maxIndex - m2);
r = getLoc(m2, m2 + rlen);

if (l.offset == r.offset && r.length == 0) {
return <r, l>;
}
else if (l.offset >= r.offset) {
return <r, l>;
}
}
else {
return <l, r>;
}
Expand Down Expand Up @@ -371,7 +371,7 @@ test bool isStrictlyContainedIn2(int f, int len) {

test bool isStrictlyContainedIn3(int f, int len) {
f1 = restrict(f); t1 = restrict(f1 + len);
l1 = getLoc(f1, t1);
l1 = getLoc(f1, t1);
return report(l1, l1, !isStrictlyContainedIn(l1, l1));
}

Expand Down Expand Up @@ -446,6 +446,16 @@ test bool isOverlapping2(int _){
return !isOverlapping(l1, l2);
}

test bool isOverlapping3() = isOverlapping(|unknown:///|(0, 2), |unknown:///|(0, 2));
test bool isOverlapping4() = isOverlapping(|unknown:///|(0, 2), |unknown:///|(1, 2));
test bool isOverlapping5() = !isOverlapping(|unknown:///|(0, 2), |unknown:///|(2, 2));
test bool isOverlapping6() = isOverlapping(|unknown:///|(1, 2), |unknown:///|(0, 2));
test bool isOverlapping7() = isOverlapping(|unknown:///|(1, 2), |unknown:///|(1, 2));
test bool isOverlapping8() = isOverlapping(|unknown:///|(1, 2), |unknown:///|(2, 2));
test bool isOverlapping9() = !isOverlapping(|unknown:///|(2, 2), |unknown:///|(0, 2));
test bool isOverlapping10() = isOverlapping(|unknown:///|(2, 2), |unknown:///|(1, 2));
test bool isOverlapping11() = isOverlapping(|unknown:///|(2, 2), |unknown:///|(2, 2));

// cover

test bool isCover1(int _){
Expand Down Expand Up @@ -486,19 +496,19 @@ test bool trailingSlashFile2() {
;
}

test bool testRelativize()
test bool testRelativize()
= relativize(|file:///a/b|, |file:///a/b/c.txt|)
== |relative:///c.txt|;

test bool testFailedRelativize()
= relativize(|file:///b/b|, |file:///a/b/c.txt|)
== |file:///a/b/c.txt|;

test bool trailingSlashRelativize1()
test bool trailingSlashRelativize1()
= relativize(|file:///library/|, |file:///library|)
== relativize(|file:///library/|, |file:///library/|);

test bool trailingSlashRelativize2()
test bool trailingSlashRelativize2()
= relativize(|file:///library|, |file:///library/|)
== relativize(|file:///library|, |file:///library|);

Expand All @@ -514,7 +524,7 @@ test bool extensionSetWithSlash()
test bool extensionSetWithSlashAndMoreDots()
= |file:///a.txt/b.noot/|[extension="aap"] == |file:///a.txt/b.aap/|;

test bool extensionGetWithMoreDot1()
test bool extensionGetWithMoreDot1()
= |file:///a.txt/b|.extension == "";

test bool extensionGetWithMoreDots2()
Expand Down
Loading