-
Notifications
You must be signed in to change notification settings - Fork 304
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Implements Python import statement parser to avoid ast module.
- Loading branch information
Showing
9 changed files
with
346 additions
and
78 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,118 @@ | ||
// Copyright (c) 2017-2022 Cloudflare, Inc. | ||
// Licensed under the Apache 2.0 license found in the LICENSE file or at: | ||
// https://opensource.org/licenses/Apache-2.0 | ||
|
||
#include "pyodide.h" | ||
#include <kj/test.h> | ||
|
||
namespace workerd::api { | ||
namespace { | ||
|
||
KJ_TEST("basic `import` tests") { | ||
auto files = kj::heapArrayBuilder<kj::String>(2); | ||
files.add(kj::str("import a\nimport z")); | ||
files.add(kj::str("import b")); | ||
auto result = pyodide::ArtifactBundler::parsePythonScriptImports(files.finish()); | ||
KJ_REQUIRE(result.size() == 3); | ||
KJ_REQUIRE(result[0] == "a"); | ||
KJ_REQUIRE(result[1] == "z"); | ||
KJ_REQUIRE(result[2] == "b"); | ||
} | ||
|
||
KJ_TEST("supports whitespace") { | ||
auto files = kj::heapArrayBuilder<kj::String>(1); | ||
files.add(kj::str("import a\nimport \n\tz")); | ||
auto result = pyodide::ArtifactBundler::parsePythonScriptImports(files.finish()); | ||
KJ_REQUIRE(result.size() == 2); | ||
KJ_REQUIRE(result[0] == "a"); | ||
KJ_REQUIRE(result[1] == "z"); | ||
} | ||
|
||
KJ_TEST("supports windows newlines") { | ||
auto files = kj::heapArrayBuilder<kj::String>(1); | ||
files.add(kj::str("import a\r\nimport \r\n\tz")); | ||
auto result = pyodide::ArtifactBundler::parsePythonScriptImports(files.finish()); | ||
KJ_REQUIRE(result.size() == 2); | ||
KJ_REQUIRE(result[0] == "a"); | ||
KJ_REQUIRE(result[1] == "z"); | ||
} | ||
|
||
KJ_TEST("basic `from` test") { | ||
auto files = kj::heapArrayBuilder<kj::String>(1); | ||
files.add(kj::str("from x import a,b\nfrom z import y")); | ||
auto result = pyodide::ArtifactBundler::parsePythonScriptImports(files.finish()); | ||
KJ_REQUIRE(result.size() == 2); | ||
KJ_REQUIRE(result[0] == "x"); | ||
KJ_REQUIRE(result[1] == "z"); | ||
} | ||
|
||
KJ_TEST("ignores indented blocks") { | ||
auto files = kj::heapArrayBuilder<kj::String>(1); | ||
files.add(kj::str("import a\nif True:\n import x\nimport y")); | ||
auto result = pyodide::ArtifactBundler::parsePythonScriptImports(files.finish()); | ||
KJ_REQUIRE(result.size() == 2); | ||
KJ_REQUIRE(result[0] == "a"); | ||
KJ_REQUIRE(result[1] == "y"); | ||
} | ||
|
||
KJ_TEST("supports nested imports") { | ||
auto files = kj::heapArrayBuilder<kj::String>(1); | ||
files.add(kj::str("import a.b\nimport z.x.y.i")); | ||
auto result = pyodide::ArtifactBundler::parsePythonScriptImports(files.finish()); | ||
KJ_REQUIRE(result.size() == 2); | ||
KJ_REQUIRE(result[0] == "a.b"); | ||
KJ_REQUIRE(result[1] == "z.x.y.i"); | ||
} | ||
|
||
KJ_TEST("nested `from` test") { | ||
auto files = kj::heapArrayBuilder<kj::String>(1); | ||
files.add(kj::str("from x.y.z import a,b\nfrom z import y")); | ||
auto result = pyodide::ArtifactBundler::parsePythonScriptImports(files.finish()); | ||
KJ_REQUIRE(result.size() == 2); | ||
KJ_REQUIRE(result[0] == "x.y.z"); | ||
KJ_REQUIRE(result[1] == "z"); | ||
} | ||
|
||
KJ_TEST("ignores trailing period") { | ||
auto files = kj::heapArrayBuilder<kj::String>(1); | ||
files.add(kj::str("import a.b.\nimport z.x.y.i.")); | ||
auto result = pyodide::ArtifactBundler::parsePythonScriptImports(files.finish()); | ||
KJ_REQUIRE(result.size() == 0); | ||
} | ||
|
||
KJ_TEST("ignores relative import") { | ||
// This is where we diverge from the old AST-based approach. It would have returned `y` in the | ||
// input below. | ||
auto files = kj::heapArrayBuilder<kj::String>(1); | ||
files.add(kj::str("import .a.b\nimport ..z.x\nfrom .y import x")); | ||
auto result = pyodide::ArtifactBundler::parsePythonScriptImports(files.finish()); | ||
KJ_REQUIRE(result.size() == 0); | ||
} | ||
|
||
KJ_TEST("supports commas") { | ||
auto files = kj::heapArrayBuilder<kj::String>(1); | ||
files.add(kj::str("import a,b")); | ||
auto result = pyodide::ArtifactBundler::parsePythonScriptImports(files.finish()); | ||
KJ_REQUIRE(result.size() == 2); | ||
KJ_REQUIRE(result[0] == "a"); | ||
KJ_REQUIRE(result[1] == "b"); | ||
} | ||
|
||
KJ_TEST("supports backslash") { | ||
auto files = kj::heapArrayBuilder<kj::String>(4); | ||
files.add(kj::str("import a\\\n,b")); | ||
files.add(kj::str("import\\\n q,w")); | ||
files.add(kj::str("from \\\nx import y")); | ||
files.add(kj::str("from \\\n c import y")); | ||
auto result = pyodide::ArtifactBundler::parsePythonScriptImports(files.finish()); | ||
KJ_REQUIRE(result.size() == 6); | ||
KJ_REQUIRE(result[0] == "a"); | ||
KJ_REQUIRE(result[1] == "b"); | ||
KJ_REQUIRE(result[2] == "q"); | ||
KJ_REQUIRE(result[3] == "w"); | ||
KJ_REQUIRE(result[4] == "x"); | ||
KJ_REQUIRE(result[5] == "c"); | ||
} | ||
|
||
} // namespace | ||
} // namespace workerd::api |
Oops, something went wrong.