]> Sergey Matveev's repositories - path-extractor.git/blobdiff - pe_test.go
Getting line number now works
[path-extractor.git] / pe_test.go
index 5d447f4131a81e92a4709db8c89b6ad01f9b4377..3f24886f209bf927c03132b674ad2ff36ec369c7 100644 (file)
@@ -103,16 +103,6 @@ func TestEverything(t *testing.T) {
        }
 
        output = GetAllMatches("and/or", MatchOptions{})
-       if len(output) != 0 {
-               t.Errorf("Matches and/or", output[0])
-       }
-
-       output = GetAllMatches("hello user.test.js", MatchOptions{})
-       if output[0] != "user.test.js" {
-               t.Errorf("Matches date", output[0])
-       }
-
-       output = GetAllMatches(" mail@mail.com ", MatchOptions{})
        if len(output) != 0 {
                t.Errorf("Matches and/or adresses", output)
        }
@@ -122,6 +112,11 @@ func TestEverything(t *testing.T) {
                t.Errorf("Matches version number", output)
        }
 
+       output = GetAllMatches("~/v1.2/js", MatchOptions{})
+       if len(output) != 1 {
+               t.Errorf("Should match path with version inside", output)
+       }
+
        output = GetAllMatches("obj.slice()", MatchOptions{})
        if len(output) != 0 {
                t.Errorf("Matches function call", output)
@@ -184,10 +179,23 @@ func TestEverything(t *testing.T) {
        if len(output) != 1 {
                t.Errorf("Ackmate doesnt match", output)
        }
+
        if output[0] == "test.js" {
                t.Errorf("Ackmate should not forget number", output)
        }
        if output[0] != "test.js:45" {
                t.Errorf("Ackmate should output right line number", output)
        }
+
+       output = GetAllMatches("test.js:45:12", MatchOptions{format: "ackmate"})
+       if len(output) != 1 {
+               t.Errorf("Ackmate doesnt match", output)
+       }
+
+       if output[0] == "test.js" {
+               t.Errorf("Ackmate should not forget number", output)
+       }
+       if output[0] != "test.js:45:12" {
+               t.Errorf("Ackmate should output right line number", output)
+       }
 }