issue #8: update tests

This commit is contained in:
z7zmey
2018-04-10 15:23:13 +03:00
parent 343896d019
commit 6f7834eb6b
76 changed files with 1596 additions and 534 deletions

View File

@@ -41,10 +41,14 @@ func TestBitwiseAnd(t *testing.T) {
},
}
actual, _, _, _ := php7.Parse(bytes.NewBufferString(src), "test.php")
php7parser := php7.NewParser(bytes.NewBufferString(src), "test.php")
php7parser.Parse()
actual := php7parser.GetRootNode()
assertEqual(t, expected, actual)
actual, _, _, _ = php5.Parse(bytes.NewBufferString(src), "test.php")
php5parser := php5.NewParser(bytes.NewBufferString(src), "test.php")
php5parser.Parse()
actual = php5parser.GetRootNode()
assertEqual(t, expected, actual)
}
@@ -62,10 +66,14 @@ func TestBitwiseOr(t *testing.T) {
},
}
actual, _, _, _ := php7.Parse(bytes.NewBufferString(src), "test.php")
php7parser := php7.NewParser(bytes.NewBufferString(src), "test.php")
php7parser.Parse()
actual := php7parser.GetRootNode()
assertEqual(t, expected, actual)
actual, _, _, _ = php5.Parse(bytes.NewBufferString(src), "test.php")
php5parser := php5.NewParser(bytes.NewBufferString(src), "test.php")
php5parser.Parse()
actual = php5parser.GetRootNode()
assertEqual(t, expected, actual)
}
@@ -83,10 +91,14 @@ func TestBitwiseXor(t *testing.T) {
},
}
actual, _, _, _ := php7.Parse(bytes.NewBufferString(src), "test.php")
php7parser := php7.NewParser(bytes.NewBufferString(src), "test.php")
php7parser.Parse()
actual := php7parser.GetRootNode()
assertEqual(t, expected, actual)
actual, _, _, _ = php5.Parse(bytes.NewBufferString(src), "test.php")
php5parser := php5.NewParser(bytes.NewBufferString(src), "test.php")
php5parser.Parse()
actual = php5parser.GetRootNode()
assertEqual(t, expected, actual)
}
@@ -104,10 +116,14 @@ func TestBooleanAnd(t *testing.T) {
},
}
actual, _, _, _ := php7.Parse(bytes.NewBufferString(src), "test.php")
php7parser := php7.NewParser(bytes.NewBufferString(src), "test.php")
php7parser.Parse()
actual := php7parser.GetRootNode()
assertEqual(t, expected, actual)
actual, _, _, _ = php5.Parse(bytes.NewBufferString(src), "test.php")
php5parser := php5.NewParser(bytes.NewBufferString(src), "test.php")
php5parser.Parse()
actual = php5parser.GetRootNode()
assertEqual(t, expected, actual)
}
@@ -125,10 +141,14 @@ func TestBooleanOr(t *testing.T) {
},
}
actual, _, _, _ := php7.Parse(bytes.NewBufferString(src), "test.php")
php7parser := php7.NewParser(bytes.NewBufferString(src), "test.php")
php7parser.Parse()
actual := php7parser.GetRootNode()
assertEqual(t, expected, actual)
actual, _, _, _ = php5.Parse(bytes.NewBufferString(src), "test.php")
php5parser := php5.NewParser(bytes.NewBufferString(src), "test.php")
php5parser.Parse()
actual = php5parser.GetRootNode()
assertEqual(t, expected, actual)
}
@@ -146,7 +166,9 @@ func TestCoalesce(t *testing.T) {
},
}
actual, _, _, _ := php7.Parse(bytes.NewBufferString(src), "test.php")
php7parser := php7.NewParser(bytes.NewBufferString(src), "test.php")
php7parser.Parse()
actual := php7parser.GetRootNode()
assertEqual(t, expected, actual)
}
@@ -164,10 +186,14 @@ func TestConcat(t *testing.T) {
},
}
actual, _, _, _ := php7.Parse(bytes.NewBufferString(src), "test.php")
php7parser := php7.NewParser(bytes.NewBufferString(src), "test.php")
php7parser.Parse()
actual := php7parser.GetRootNode()
assertEqual(t, expected, actual)
actual, _, _, _ = php5.Parse(bytes.NewBufferString(src), "test.php")
php5parser := php5.NewParser(bytes.NewBufferString(src), "test.php")
php5parser.Parse()
actual = php5parser.GetRootNode()
assertEqual(t, expected, actual)
}
@@ -185,10 +211,14 @@ func TestDiv(t *testing.T) {
},
}
actual, _, _, _ := php7.Parse(bytes.NewBufferString(src), "test.php")
php7parser := php7.NewParser(bytes.NewBufferString(src), "test.php")
php7parser.Parse()
actual := php7parser.GetRootNode()
assertEqual(t, expected, actual)
actual, _, _, _ = php5.Parse(bytes.NewBufferString(src), "test.php")
php5parser := php5.NewParser(bytes.NewBufferString(src), "test.php")
php5parser.Parse()
actual = php5parser.GetRootNode()
assertEqual(t, expected, actual)
}
@@ -206,10 +236,14 @@ func TestEqual(t *testing.T) {
},
}
actual, _, _, _ := php7.Parse(bytes.NewBufferString(src), "test.php")
php7parser := php7.NewParser(bytes.NewBufferString(src), "test.php")
php7parser.Parse()
actual := php7parser.GetRootNode()
assertEqual(t, expected, actual)
actual, _, _, _ = php5.Parse(bytes.NewBufferString(src), "test.php")
php5parser := php5.NewParser(bytes.NewBufferString(src), "test.php")
php5parser.Parse()
actual = php5parser.GetRootNode()
assertEqual(t, expected, actual)
}
@@ -227,10 +261,14 @@ func TestGreaterOrEqual(t *testing.T) {
},
}
actual, _, _, _ := php7.Parse(bytes.NewBufferString(src), "test.php")
php7parser := php7.NewParser(bytes.NewBufferString(src), "test.php")
php7parser.Parse()
actual := php7parser.GetRootNode()
assertEqual(t, expected, actual)
actual, _, _, _ = php5.Parse(bytes.NewBufferString(src), "test.php")
php5parser := php5.NewParser(bytes.NewBufferString(src), "test.php")
php5parser.Parse()
actual = php5parser.GetRootNode()
assertEqual(t, expected, actual)
}
@@ -248,10 +286,14 @@ func TestGreater(t *testing.T) {
},
}
actual, _, _, _ := php7.Parse(bytes.NewBufferString(src), "test.php")
php7parser := php7.NewParser(bytes.NewBufferString(src), "test.php")
php7parser.Parse()
actual := php7parser.GetRootNode()
assertEqual(t, expected, actual)
actual, _, _, _ = php5.Parse(bytes.NewBufferString(src), "test.php")
php5parser := php5.NewParser(bytes.NewBufferString(src), "test.php")
php5parser.Parse()
actual = php5parser.GetRootNode()
assertEqual(t, expected, actual)
}
@@ -269,10 +311,14 @@ func TestIdentical(t *testing.T) {
},
}
actual, _, _, _ := php7.Parse(bytes.NewBufferString(src), "test.php")
php7parser := php7.NewParser(bytes.NewBufferString(src), "test.php")
php7parser.Parse()
actual := php7parser.GetRootNode()
assertEqual(t, expected, actual)
actual, _, _, _ = php5.Parse(bytes.NewBufferString(src), "test.php")
php5parser := php5.NewParser(bytes.NewBufferString(src), "test.php")
php5parser.Parse()
actual = php5parser.GetRootNode()
assertEqual(t, expected, actual)
}
@@ -290,10 +336,14 @@ func TestLogicalAnd(t *testing.T) {
},
}
actual, _, _, _ := php7.Parse(bytes.NewBufferString(src), "test.php")
php7parser := php7.NewParser(bytes.NewBufferString(src), "test.php")
php7parser.Parse()
actual := php7parser.GetRootNode()
assertEqual(t, expected, actual)
actual, _, _, _ = php5.Parse(bytes.NewBufferString(src), "test.php")
php5parser := php5.NewParser(bytes.NewBufferString(src), "test.php")
php5parser.Parse()
actual = php5parser.GetRootNode()
assertEqual(t, expected, actual)
}
@@ -311,10 +361,14 @@ func TestLogicalOr(t *testing.T) {
},
}
actual, _, _, _ := php7.Parse(bytes.NewBufferString(src), "test.php")
php7parser := php7.NewParser(bytes.NewBufferString(src), "test.php")
php7parser.Parse()
actual := php7parser.GetRootNode()
assertEqual(t, expected, actual)
actual, _, _, _ = php5.Parse(bytes.NewBufferString(src), "test.php")
php5parser := php5.NewParser(bytes.NewBufferString(src), "test.php")
php5parser.Parse()
actual = php5parser.GetRootNode()
assertEqual(t, expected, actual)
}
@@ -332,10 +386,14 @@ func TestLogicalXor(t *testing.T) {
},
}
actual, _, _, _ := php7.Parse(bytes.NewBufferString(src), "test.php")
php7parser := php7.NewParser(bytes.NewBufferString(src), "test.php")
php7parser.Parse()
actual := php7parser.GetRootNode()
assertEqual(t, expected, actual)
actual, _, _, _ = php5.Parse(bytes.NewBufferString(src), "test.php")
php5parser := php5.NewParser(bytes.NewBufferString(src), "test.php")
php5parser.Parse()
actual = php5parser.GetRootNode()
assertEqual(t, expected, actual)
}
@@ -353,10 +411,14 @@ func TestMinus(t *testing.T) {
},
}
actual, _, _, _ := php7.Parse(bytes.NewBufferString(src), "test.php")
php7parser := php7.NewParser(bytes.NewBufferString(src), "test.php")
php7parser.Parse()
actual := php7parser.GetRootNode()
assertEqual(t, expected, actual)
actual, _, _, _ = php5.Parse(bytes.NewBufferString(src), "test.php")
php5parser := php5.NewParser(bytes.NewBufferString(src), "test.php")
php5parser.Parse()
actual = php5parser.GetRootNode()
assertEqual(t, expected, actual)
}
@@ -374,10 +436,14 @@ func TestMod(t *testing.T) {
},
}
actual, _, _, _ := php7.Parse(bytes.NewBufferString(src), "test.php")
php7parser := php7.NewParser(bytes.NewBufferString(src), "test.php")
php7parser.Parse()
actual := php7parser.GetRootNode()
assertEqual(t, expected, actual)
actual, _, _, _ = php5.Parse(bytes.NewBufferString(src), "test.php")
php5parser := php5.NewParser(bytes.NewBufferString(src), "test.php")
php5parser.Parse()
actual = php5parser.GetRootNode()
assertEqual(t, expected, actual)
}
@@ -395,10 +461,14 @@ func TestMul(t *testing.T) {
},
}
actual, _, _, _ := php7.Parse(bytes.NewBufferString(src), "test.php")
php7parser := php7.NewParser(bytes.NewBufferString(src), "test.php")
php7parser.Parse()
actual := php7parser.GetRootNode()
assertEqual(t, expected, actual)
actual, _, _, _ = php5.Parse(bytes.NewBufferString(src), "test.php")
php5parser := php5.NewParser(bytes.NewBufferString(src), "test.php")
php5parser.Parse()
actual = php5parser.GetRootNode()
assertEqual(t, expected, actual)
}
@@ -416,10 +486,14 @@ func TestNotEqual(t *testing.T) {
},
}
actual, _, _, _ := php7.Parse(bytes.NewBufferString(src), "test.php")
php7parser := php7.NewParser(bytes.NewBufferString(src), "test.php")
php7parser.Parse()
actual := php7parser.GetRootNode()
assertEqual(t, expected, actual)
actual, _, _, _ = php5.Parse(bytes.NewBufferString(src), "test.php")
php5parser := php5.NewParser(bytes.NewBufferString(src), "test.php")
php5parser.Parse()
actual = php5parser.GetRootNode()
assertEqual(t, expected, actual)
}
@@ -437,10 +511,14 @@ func TestNotIdentical(t *testing.T) {
},
}
actual, _, _, _ := php7.Parse(bytes.NewBufferString(src), "test.php")
php7parser := php7.NewParser(bytes.NewBufferString(src), "test.php")
php7parser.Parse()
actual := php7parser.GetRootNode()
assertEqual(t, expected, actual)
actual, _, _, _ = php5.Parse(bytes.NewBufferString(src), "test.php")
php5parser := php5.NewParser(bytes.NewBufferString(src), "test.php")
php5parser.Parse()
actual = php5parser.GetRootNode()
assertEqual(t, expected, actual)
}
@@ -458,10 +536,14 @@ func TestPlus(t *testing.T) {
},
}
actual, _, _, _ := php7.Parse(bytes.NewBufferString(src), "test.php")
php7parser := php7.NewParser(bytes.NewBufferString(src), "test.php")
php7parser.Parse()
actual := php7parser.GetRootNode()
assertEqual(t, expected, actual)
actual, _, _, _ = php5.Parse(bytes.NewBufferString(src), "test.php")
php5parser := php5.NewParser(bytes.NewBufferString(src), "test.php")
php5parser.Parse()
actual = php5parser.GetRootNode()
assertEqual(t, expected, actual)
}
@@ -479,10 +561,14 @@ func TestPow(t *testing.T) {
},
}
actual, _, _, _ := php7.Parse(bytes.NewBufferString(src), "test.php")
php7parser := php7.NewParser(bytes.NewBufferString(src), "test.php")
php7parser.Parse()
actual := php7parser.GetRootNode()
assertEqual(t, expected, actual)
actual, _, _, _ = php5.Parse(bytes.NewBufferString(src), "test.php")
php5parser := php5.NewParser(bytes.NewBufferString(src), "test.php")
php5parser.Parse()
actual = php5parser.GetRootNode()
assertEqual(t, expected, actual)
}
@@ -500,10 +586,14 @@ func TestShiftLeft(t *testing.T) {
},
}
actual, _, _, _ := php7.Parse(bytes.NewBufferString(src), "test.php")
php7parser := php7.NewParser(bytes.NewBufferString(src), "test.php")
php7parser.Parse()
actual := php7parser.GetRootNode()
assertEqual(t, expected, actual)
actual, _, _, _ = php5.Parse(bytes.NewBufferString(src), "test.php")
php5parser := php5.NewParser(bytes.NewBufferString(src), "test.php")
php5parser.Parse()
actual = php5parser.GetRootNode()
assertEqual(t, expected, actual)
}
@@ -521,10 +611,14 @@ func TestShiftRight(t *testing.T) {
},
}
actual, _, _, _ := php7.Parse(bytes.NewBufferString(src), "test.php")
php7parser := php7.NewParser(bytes.NewBufferString(src), "test.php")
php7parser.Parse()
actual := php7parser.GetRootNode()
assertEqual(t, expected, actual)
actual, _, _, _ = php5.Parse(bytes.NewBufferString(src), "test.php")
php5parser := php5.NewParser(bytes.NewBufferString(src), "test.php")
php5parser.Parse()
actual = php5parser.GetRootNode()
assertEqual(t, expected, actual)
}
@@ -542,10 +636,14 @@ func TestSmallerOrEqual(t *testing.T) {
},
}
actual, _, _, _ := php7.Parse(bytes.NewBufferString(src), "test.php")
php7parser := php7.NewParser(bytes.NewBufferString(src), "test.php")
php7parser.Parse()
actual := php7parser.GetRootNode()
assertEqual(t, expected, actual)
actual, _, _, _ = php5.Parse(bytes.NewBufferString(src), "test.php")
php5parser := php5.NewParser(bytes.NewBufferString(src), "test.php")
php5parser.Parse()
actual = php5parser.GetRootNode()
assertEqual(t, expected, actual)
}
@@ -563,10 +661,14 @@ func TestSmaller(t *testing.T) {
},
}
actual, _, _, _ := php7.Parse(bytes.NewBufferString(src), "test.php")
php7parser := php7.NewParser(bytes.NewBufferString(src), "test.php")
php7parser.Parse()
actual := php7parser.GetRootNode()
assertEqual(t, expected, actual)
actual, _, _, _ = php5.Parse(bytes.NewBufferString(src), "test.php")
php5parser := php5.NewParser(bytes.NewBufferString(src), "test.php")
php5parser.Parse()
actual = php5parser.GetRootNode()
assertEqual(t, expected, actual)
}
@@ -584,6 +686,8 @@ func TestSpaceship(t *testing.T) {
},
}
actual, _, _, _ := php7.Parse(bytes.NewBufferString(src), "test.php")
php7parser := php7.NewParser(bytes.NewBufferString(src), "test.php")
php7parser.Parse()
actual := php7parser.GetRootNode()
assertEqual(t, expected, actual)
}