mirror of
https://github.com/denoland/deno.git
synced 2024-12-24 16:19:12 -05:00
Remove //tests symlink (#3849)
This commit is contained in:
parent
e8df66c12c
commit
f168597b7a
28 changed files with 121 additions and 116 deletions
|
@ -700,7 +700,7 @@ mod tests {
|
|||
let p = std::path::PathBuf::from(env!("CARGO_MANIFEST_DIR"))
|
||||
.parent()
|
||||
.unwrap()
|
||||
.join("tests/002_hello.ts");
|
||||
.join("cli/tests/002_hello.ts");
|
||||
let specifier =
|
||||
ModuleSpecifier::resolve_url_or_path(p.to_str().unwrap()).unwrap();
|
||||
|
||||
|
@ -739,7 +739,7 @@ mod tests {
|
|||
let p = std::path::PathBuf::from(env!("CARGO_MANIFEST_DIR"))
|
||||
.parent()
|
||||
.unwrap()
|
||||
.join("tests/002_hello.ts");
|
||||
.join("cli/tests/002_hello.ts");
|
||||
use deno_core::ModuleSpecifier;
|
||||
let module_name = ModuleSpecifier::resolve_url_or_path(p.to_str().unwrap())
|
||||
.unwrap()
|
||||
|
|
|
@ -1005,7 +1005,7 @@ mod tests {
|
|||
let fetcher_1 = fetcher.clone();
|
||||
let fetcher_2 = fetcher.clone();
|
||||
let module_url =
|
||||
Url::parse("http://localhost:4545/tests/subdir/mod2.ts").unwrap();
|
||||
Url::parse("http://localhost:4545/cli/tests/subdir/mod2.ts").unwrap();
|
||||
let module_url_1 = module_url.clone();
|
||||
let module_url_2 = module_url.clone();
|
||||
let headers_file_name = fetcher.deps_cache.location.join(
|
||||
|
@ -1106,7 +1106,8 @@ mod tests {
|
|||
let (temp_dir, fetcher) = test_setup();
|
||||
let fetcher_1 = fetcher.clone();
|
||||
let module_url =
|
||||
Url::parse("http://localhost:4545/tests/subdir/mismatch_ext.ts").unwrap();
|
||||
Url::parse("http://localhost:4545/cli/tests/subdir/mismatch_ext.ts")
|
||||
.unwrap();
|
||||
let module_url_1 = module_url.clone();
|
||||
let module_url_2 = module_url.clone();
|
||||
let headers_file_name = fetcher.deps_cache.location.join(
|
||||
|
@ -1183,7 +1184,7 @@ mod tests {
|
|||
let http_server_guard = crate::test_util::http_server();
|
||||
let (_temp_dir, fetcher) = test_setup();
|
||||
let specifier = ModuleSpecifier::resolve_url(
|
||||
"http://localhost:4545/tests/subdir/mismatch_ext.ts",
|
||||
"http://localhost:4545/cli/tests/subdir/mismatch_ext.ts",
|
||||
)
|
||||
.unwrap();
|
||||
let headers_file_name = fetcher.deps_cache.location.join(
|
||||
|
@ -1231,22 +1232,24 @@ mod tests {
|
|||
let http_server_guard = crate::test_util::http_server();
|
||||
let (_temp_dir, fetcher) = test_setup();
|
||||
|
||||
let redirect_module_url =
|
||||
Url::parse("http://localhost:4546/tests/subdir/redirects/redirect1.js")
|
||||
.unwrap();
|
||||
let redirect_module_url = Url::parse(
|
||||
"http://localhost:4546/cli/tests/subdir/redirects/redirect1.js",
|
||||
)
|
||||
.unwrap();
|
||||
let redirect_source_filepath = fetcher
|
||||
.deps_cache
|
||||
.location
|
||||
.join("http/localhost_PORT4546/tests/subdir/redirects/redirect1.js");
|
||||
.join("http/localhost_PORT4546/cli/tests/subdir/redirects/redirect1.js");
|
||||
let redirect_source_filename =
|
||||
redirect_source_filepath.to_str().unwrap().to_string();
|
||||
let target_module_url =
|
||||
Url::parse("http://localhost:4545/tests/subdir/redirects/redirect1.js")
|
||||
.unwrap();
|
||||
let target_module_url = Url::parse(
|
||||
"http://localhost:4545/cli/tests/subdir/redirects/redirect1.js",
|
||||
)
|
||||
.unwrap();
|
||||
let redirect_target_filepath = fetcher
|
||||
.deps_cache
|
||||
.location
|
||||
.join("http/localhost_PORT4545/tests/subdir/redirects/redirect1.js");
|
||||
.join("http/localhost_PORT4545/cli/tests/subdir/redirects/redirect1.js");
|
||||
let redirect_target_filename =
|
||||
redirect_target_filepath.to_str().unwrap().to_string();
|
||||
|
||||
|
@ -1263,7 +1266,7 @@ mod tests {
|
|||
fetcher.get_source_code_headers(&redirect_module_url);
|
||||
assert_eq!(
|
||||
redirect_source_headers.redirect_to.unwrap(),
|
||||
"http://localhost:4545/tests/subdir/redirects/redirect1.js"
|
||||
"http://localhost:4545/cli/tests/subdir/redirects/redirect1.js"
|
||||
);
|
||||
// The target of redirection is downloaded instead.
|
||||
assert_eq!(
|
||||
|
@ -1286,29 +1289,32 @@ mod tests {
|
|||
fn test_get_source_code_4() {
|
||||
let http_server_guard = crate::test_util::http_server();
|
||||
let (_temp_dir, fetcher) = test_setup();
|
||||
let double_redirect_url =
|
||||
Url::parse("http://localhost:4548/tests/subdir/redirects/redirect1.js")
|
||||
.unwrap();
|
||||
let double_redirect_url = Url::parse(
|
||||
"http://localhost:4548/cli/tests/subdir/redirects/redirect1.js",
|
||||
)
|
||||
.unwrap();
|
||||
let double_redirect_path = fetcher
|
||||
.deps_cache
|
||||
.location
|
||||
.join("http/localhost_PORT4548/tests/subdir/redirects/redirect1.js");
|
||||
.join("http/localhost_PORT4548/cli/tests/subdir/redirects/redirect1.js");
|
||||
|
||||
let redirect_url =
|
||||
Url::parse("http://localhost:4546/tests/subdir/redirects/redirect1.js")
|
||||
.unwrap();
|
||||
let redirect_url = Url::parse(
|
||||
"http://localhost:4546/cli/tests/subdir/redirects/redirect1.js",
|
||||
)
|
||||
.unwrap();
|
||||
let redirect_path = fetcher
|
||||
.deps_cache
|
||||
.location
|
||||
.join("http/localhost_PORT4546/tests/subdir/redirects/redirect1.js");
|
||||
.join("http/localhost_PORT4546/cli/tests/subdir/redirects/redirect1.js");
|
||||
|
||||
let target_url =
|
||||
Url::parse("http://localhost:4545/tests/subdir/redirects/redirect1.js")
|
||||
.unwrap();
|
||||
let target_url = Url::parse(
|
||||
"http://localhost:4545/cli/tests/subdir/redirects/redirect1.js",
|
||||
)
|
||||
.unwrap();
|
||||
let target_path = fetcher
|
||||
.deps_cache
|
||||
.location
|
||||
.join("http/localhost_PORT4545/tests/subdir/redirects/redirect1.js");
|
||||
.join("http/localhost_PORT4545/cli/tests/subdir/redirects/redirect1.js");
|
||||
|
||||
// Test double redirects and headers recording
|
||||
let fut = fetcher
|
||||
|
@ -1353,18 +1359,20 @@ mod tests {
|
|||
let http_server_guard = crate::test_util::http_server();
|
||||
let (_temp_dir, fetcher) = test_setup();
|
||||
|
||||
let double_redirect_url =
|
||||
Url::parse("http://localhost:4548/tests/subdir/redirects/redirect1.js")
|
||||
.unwrap();
|
||||
let double_redirect_url = Url::parse(
|
||||
"http://localhost:4548/cli/tests/subdir/redirects/redirect1.js",
|
||||
)
|
||||
.unwrap();
|
||||
|
||||
let redirect_url =
|
||||
Url::parse("http://localhost:4546/tests/subdir/redirects/redirect1.js")
|
||||
.unwrap();
|
||||
let redirect_url = Url::parse(
|
||||
"http://localhost:4546/cli/tests/subdir/redirects/redirect1.js",
|
||||
)
|
||||
.unwrap();
|
||||
|
||||
let target_path = fetcher
|
||||
.deps_cache
|
||||
.location
|
||||
.join("http/localhost_PORT4545/tests/subdir/redirects/redirect1.js");
|
||||
.join("http/localhost_PORT4545/cli/tests/subdir/redirects/redirect1.js");
|
||||
let target_path_ = target_path.clone();
|
||||
|
||||
// Test that redirect target is not downloaded twice for different redirect source.
|
||||
|
@ -1406,9 +1414,10 @@ mod tests {
|
|||
fn test_get_source_code_6() {
|
||||
let http_server_guard = crate::test_util::http_server();
|
||||
let (_temp_dir, fetcher) = test_setup();
|
||||
let double_redirect_url =
|
||||
Url::parse("http://localhost:4548/tests/subdir/redirects/redirect1.js")
|
||||
.unwrap();
|
||||
let double_redirect_url = Url::parse(
|
||||
"http://localhost:4548/cli/tests/subdir/redirects/redirect1.js",
|
||||
)
|
||||
.unwrap();
|
||||
|
||||
// Test that redirections can be limited
|
||||
let fut = fetcher
|
||||
|
@ -1432,7 +1441,7 @@ mod tests {
|
|||
let http_server_guard = crate::test_util::http_server();
|
||||
let (_temp_dir, fetcher) = test_setup();
|
||||
let module_url =
|
||||
Url::parse("http://localhost:4545/tests/002_hello.ts").unwrap();
|
||||
Url::parse("http://localhost:4545/cli/tests/002_hello.ts").unwrap();
|
||||
// Remote modules are not allowed
|
||||
let fut = fetcher
|
||||
.get_source_file_async(&module_url, true, true, false)
|
||||
|
@ -1453,7 +1462,7 @@ mod tests {
|
|||
let fetcher_1 = fetcher.clone();
|
||||
let fetcher_2 = fetcher.clone();
|
||||
let module_url =
|
||||
Url::parse("http://localhost:4545/tests/002_hello.ts").unwrap();
|
||||
Url::parse("http://localhost:4545/cli/tests/002_hello.ts").unwrap();
|
||||
let module_url_1 = module_url.clone();
|
||||
let module_url_2 = module_url.clone();
|
||||
// file hasn't been cached before
|
||||
|
@ -1485,7 +1494,7 @@ mod tests {
|
|||
let http_server_guard = crate::test_util::http_server();
|
||||
let (_temp_dir, fetcher) = test_setup();
|
||||
let module_url =
|
||||
Url::parse("http://127.0.0.1:4545/tests/subdir/mt_video_mp2t.t3.ts")
|
||||
Url::parse("http://127.0.0.1:4545/cli/tests/subdir/mt_video_mp2t.t3.ts")
|
||||
.unwrap();
|
||||
let headers_file_name = fetcher.deps_cache.location.join(
|
||||
fetcher
|
||||
|
@ -1528,7 +1537,7 @@ mod tests {
|
|||
|
||||
let (_temp_dir, fetcher) = test_setup();
|
||||
let module_url =
|
||||
Url::parse("http://localhost:4545/tests/subdir/mt_video_mp2t.t3.ts")
|
||||
Url::parse("http://localhost:4545/cli/tests/subdir/mt_video_mp2t.t3.ts")
|
||||
.unwrap();
|
||||
let headers_file_name = fetcher.deps_cache.location.join(
|
||||
fetcher
|
||||
|
@ -1574,12 +1583,13 @@ mod tests {
|
|||
let fetcher_2 = fetcher.clone();
|
||||
let fetcher_3 = fetcher.clone();
|
||||
let module_url =
|
||||
Url::parse("http://localhost:4545/tests/subdir/no_ext").unwrap();
|
||||
Url::parse("http://localhost:4545/cli/tests/subdir/no_ext").unwrap();
|
||||
let module_url_2 =
|
||||
Url::parse("http://localhost:4545/tests/subdir/mismatch_ext.ts").unwrap();
|
||||
Url::parse("http://localhost:4545/cli/tests/subdir/mismatch_ext.ts")
|
||||
.unwrap();
|
||||
let module_url_2_ = module_url_2.clone();
|
||||
let module_url_3 =
|
||||
Url::parse("http://localhost:4545/tests/subdir/unknown_ext.deno")
|
||||
Url::parse("http://localhost:4545/cli/tests/subdir/unknown_ext.deno")
|
||||
.unwrap();
|
||||
let module_url_3_ = module_url_3.clone();
|
||||
|
||||
|
|
|
@ -257,7 +257,7 @@ mod tests {
|
|||
DenoFlags::default(),
|
||||
None,
|
||||
"echo_test",
|
||||
"http://localhost:4545/tests/echo_server.ts",
|
||||
"http://localhost:4545/cli/tests/echo_server.ts",
|
||||
vec![],
|
||||
)
|
||||
.expect("Install failed");
|
||||
|
@ -274,11 +274,11 @@ mod tests {
|
|||
let expected_content = if cfg!(windows) {
|
||||
r#"% This executable is generated by Deno. Please don't modify it unless you know what it means. %
|
||||
@IF EXIST "%~dp0\deno.exe" (
|
||||
"%~dp0\deno.exe" "run" "http://localhost:4545/tests/echo_server.ts" %*
|
||||
"%~dp0\deno.exe" "run" "http://localhost:4545/cli/tests/echo_server.ts" %*
|
||||
) ELSE (
|
||||
@SETLOCAL
|
||||
@SET PATHEXT=%PATHEXT:;.TS;=;%
|
||||
"deno" "run" "http://localhost:4545/tests/echo_server.ts" %*
|
||||
"deno" "run" "http://localhost:4545/cli/tests/echo_server.ts" %*
|
||||
)
|
||||
"#
|
||||
} else {
|
||||
|
@ -291,10 +291,10 @@ case \`uname\` in
|
|||
esac
|
||||
|
||||
if [ -x "$basedir/deno" ]; then
|
||||
"$basedir/deno" "run" "http://localhost:4545/tests/echo_server.ts" "$@"
|
||||
"$basedir/deno" "run" "http://localhost:4545/cli/tests/echo_server.ts" "$@"
|
||||
ret=$?
|
||||
else
|
||||
"deno" "run" "http://localhost:4545/tests/echo_server.ts" "$@"
|
||||
"deno" "run" "http://localhost:4545/cli/tests/echo_server.ts" "$@"
|
||||
ret=$?
|
||||
fi
|
||||
exit $ret
|
||||
|
@ -319,7 +319,7 @@ exit $ret
|
|||
DenoFlags::default(),
|
||||
Some(temp_dir.path().to_string_lossy().to_string()),
|
||||
"echo_test",
|
||||
"http://localhost:4545/tests/echo_server.ts",
|
||||
"http://localhost:4545/cli/tests/echo_server.ts",
|
||||
vec![],
|
||||
)
|
||||
.expect("Install failed");
|
||||
|
@ -335,11 +335,11 @@ exit $ret
|
|||
let expected_content = if cfg!(windows) {
|
||||
r#"% This executable is generated by Deno. Please don't modify it unless you know what it means. %
|
||||
@IF EXIST "%~dp0\deno.exe" (
|
||||
"%~dp0\deno.exe" "run" "http://localhost:4545/tests/echo_server.ts" %*
|
||||
"%~dp0\deno.exe" "run" "http://localhost:4545/cli/tests/echo_server.ts" %*
|
||||
) ELSE (
|
||||
@SETLOCAL
|
||||
@SET PATHEXT=%PATHEXT:;.TS;=;%
|
||||
"deno" "run" "http://localhost:4545/tests/echo_server.ts" %*
|
||||
"deno" "run" "http://localhost:4545/cli/tests/echo_server.ts" %*
|
||||
)
|
||||
"#
|
||||
} else {
|
||||
|
@ -352,10 +352,10 @@ case \`uname\` in
|
|||
esac
|
||||
|
||||
if [ -x "$basedir/deno" ]; then
|
||||
"$basedir/deno" "run" "http://localhost:4545/tests/echo_server.ts" "$@"
|
||||
"$basedir/deno" "run" "http://localhost:4545/cli/tests/echo_server.ts" "$@"
|
||||
ret=$?
|
||||
else
|
||||
"deno" "run" "http://localhost:4545/tests/echo_server.ts" "$@"
|
||||
"deno" "run" "http://localhost:4545/cli/tests/echo_server.ts" "$@"
|
||||
ret=$?
|
||||
fi
|
||||
exit $ret
|
||||
|
@ -377,7 +377,7 @@ exit $ret
|
|||
},
|
||||
Some(temp_dir.path().to_string_lossy().to_string()),
|
||||
"echo_test",
|
||||
"http://localhost:4545/tests/echo_server.ts",
|
||||
"http://localhost:4545/cli/tests/echo_server.ts",
|
||||
vec!["--foobar".to_string()],
|
||||
)
|
||||
.expect("Install failed");
|
||||
|
@ -393,11 +393,11 @@ exit $ret
|
|||
let expected_content = if cfg!(windows) {
|
||||
r#"% This executable is generated by Deno. Please don't modify it unless you know what it means. %
|
||||
@IF EXIST "%~dp0\deno.exe" (
|
||||
"%~dp0\deno.exe" "run" "--allow-read" "--allow-net" "http://localhost:4545/tests/echo_server.ts" "--foobar" %*
|
||||
"%~dp0\deno.exe" "run" "--allow-read" "--allow-net" "http://localhost:4545/cli/tests/echo_server.ts" "--foobar" %*
|
||||
) ELSE (
|
||||
@SETLOCAL
|
||||
@SET PATHEXT=%PATHEXT:;.TS;=;%
|
||||
"deno" "run" "--allow-read" "--allow-net" "http://localhost:4545/tests/echo_server.ts" "--foobar" %*
|
||||
"deno" "run" "--allow-read" "--allow-net" "http://localhost:4545/cli/tests/echo_server.ts" "--foobar" %*
|
||||
)
|
||||
"#
|
||||
} else {
|
||||
|
@ -410,10 +410,10 @@ case \`uname\` in
|
|||
esac
|
||||
|
||||
if [ -x "$basedir/deno" ]; then
|
||||
"$basedir/deno" "run" "--allow-read" "--allow-net" "http://localhost:4545/tests/echo_server.ts" "--foobar" "$@"
|
||||
"$basedir/deno" "run" "--allow-read" "--allow-net" "http://localhost:4545/cli/tests/echo_server.ts" "--foobar" "$@"
|
||||
ret=$?
|
||||
else
|
||||
"deno" "run" "--allow-read" "--allow-net" "http://localhost:4545/tests/echo_server.ts" "--foobar" "$@"
|
||||
"deno" "run" "--allow-read" "--allow-net" "http://localhost:4545/cli/tests/echo_server.ts" "--foobar" "$@"
|
||||
ret=$?
|
||||
fi
|
||||
exit $ret
|
||||
|
|
|
@ -34,7 +34,7 @@ test(async function arrayBufferFromByteArrays(): Promise<void> {
|
|||
//FormData
|
||||
testPerm({ net: true }, async function bodyMultipartFormData(): Promise<void> {
|
||||
const response = await fetch(
|
||||
"http://localhost:4545/tests/subdir/multipart_form_data.txt"
|
||||
"http://localhost:4545/cli/tests/subdir/multipart_form_data.txt"
|
||||
);
|
||||
const text = await response.text();
|
||||
|
||||
|
@ -51,7 +51,7 @@ testPerm({ net: true }, async function bodyMultipartFormData(): Promise<void> {
|
|||
|
||||
testPerm({ net: true }, async function bodyURLEncodedFormData(): Promise<void> {
|
||||
const response = await fetch(
|
||||
"http://localhost:4545/tests/subdir/form_urlencoded.txt"
|
||||
"http://localhost:4545/cli/tests/subdir/form_urlencoded.txt"
|
||||
);
|
||||
const text = await response.text();
|
||||
|
||||
|
|
|
@ -293,7 +293,7 @@ export const ignoredDiagnostics = [
|
|||
// TS5009: Cannot find the common subdirectory path for the input files.
|
||||
5009,
|
||||
// TS5055: Cannot write file
|
||||
// 'http://localhost:4545/tests/subdir/mt_application_x_javascript.j4.js'
|
||||
// 'http://localhost:4545/cli/tests/subdir/mt_application_x_javascript.j4.js'
|
||||
// because it would overwrite input file.
|
||||
5055,
|
||||
// TypeScript is overly opinionated that only CommonJS modules kinds can
|
||||
|
|
|
@ -114,7 +114,7 @@ testPerm({ net: true }, async function fetchMultipartFormDataSuccess(): Promise<
|
|||
void
|
||||
> {
|
||||
const response = await fetch(
|
||||
"http://localhost:4545/tests/subdir/multipart_form_data.txt"
|
||||
"http://localhost:4545/cli/tests/subdir/multipart_form_data.txt"
|
||||
);
|
||||
const formData = await response.formData();
|
||||
assert(formData.has("field_1"));
|
||||
|
@ -131,7 +131,7 @@ testPerm(
|
|||
{ net: true },
|
||||
async function fetchURLEncodedFormDataSuccess(): Promise<void> {
|
||||
const response = await fetch(
|
||||
"http://localhost:4545/tests/subdir/form_urlencoded.txt"
|
||||
"http://localhost:4545/cli/tests/subdir/form_urlencoded.txt"
|
||||
);
|
||||
const formData = await response.formData();
|
||||
assert(formData.has("field_1"));
|
||||
|
@ -153,11 +153,11 @@ testPerm({ net: true }, async function fetchWithRedirection(): Promise<void> {
|
|||
testPerm({ net: true }, async function fetchWithRelativeRedirection(): Promise<
|
||||
void
|
||||
> {
|
||||
const response = await fetch("http://localhost:4545/tests"); // will redirect to /tests/
|
||||
const response = await fetch("http://localhost:4545/cli/tests"); // will redirect to /cli/tests/
|
||||
assertEquals(response.status, 200);
|
||||
assertEquals(response.statusText, "OK");
|
||||
const body = await response.text();
|
||||
assert(body.includes("<title>Directory listing for /tests/</title>"));
|
||||
assert(body.includes("<title>Directory listing for /cli/tests/</title>"));
|
||||
});
|
||||
|
||||
// The feature below is not implemented, but the test should work after implementation
|
||||
|
@ -165,7 +165,7 @@ testPerm({ net: true }, async function fetchWithRelativeRedirection(): Promise<
|
|||
testPerm({ net: true }, async function fetchWithInfRedirection(): Promise<
|
||||
void
|
||||
> {
|
||||
const response = await fetch("http://localhost:4549/tests"); // will redirect to the same place
|
||||
const response = await fetch("http://localhost:4549/cli/tests"); // will redirect to the same place
|
||||
assertEquals(response.status, 0); // network error
|
||||
});
|
||||
*/
|
||||
|
|
|
@ -24,7 +24,7 @@ testPerm({ read: true }, async function filesCopyToStdout(): Promise<void> {
|
|||
});
|
||||
|
||||
testPerm({ read: true }, async function filesToAsyncIterator(): Promise<void> {
|
||||
const filename = "tests/hello.txt";
|
||||
const filename = "cli/tests/hello.txt";
|
||||
const file = await Deno.open(filename);
|
||||
|
||||
let totalSize = 0;
|
||||
|
@ -297,7 +297,7 @@ testPerm(
|
|||
);
|
||||
|
||||
testPerm({ read: true }, async function seekStart(): Promise<void> {
|
||||
const filename = "tests/hello.txt";
|
||||
const filename = "cli/tests/hello.txt";
|
||||
const file = await Deno.open(filename);
|
||||
// Deliberately move 1 step forward
|
||||
await file.read(new Uint8Array(1)); // "H"
|
||||
|
@ -310,7 +310,7 @@ testPerm({ read: true }, async function seekStart(): Promise<void> {
|
|||
});
|
||||
|
||||
testPerm({ read: true }, function seekSyncStart(): void {
|
||||
const filename = "tests/hello.txt";
|
||||
const filename = "cli/tests/hello.txt";
|
||||
const file = Deno.openSync(filename);
|
||||
// Deliberately move 1 step forward
|
||||
file.readSync(new Uint8Array(1)); // "H"
|
||||
|
@ -323,7 +323,7 @@ testPerm({ read: true }, function seekSyncStart(): void {
|
|||
});
|
||||
|
||||
testPerm({ read: true }, async function seekCurrent(): Promise<void> {
|
||||
const filename = "tests/hello.txt";
|
||||
const filename = "cli/tests/hello.txt";
|
||||
const file = await Deno.open(filename);
|
||||
// Deliberately move 1 step forward
|
||||
await file.read(new Uint8Array(1)); // "H"
|
||||
|
@ -336,7 +336,7 @@ testPerm({ read: true }, async function seekCurrent(): Promise<void> {
|
|||
});
|
||||
|
||||
testPerm({ read: true }, function seekSyncCurrent(): void {
|
||||
const filename = "tests/hello.txt";
|
||||
const filename = "cli/tests/hello.txt";
|
||||
const file = Deno.openSync(filename);
|
||||
// Deliberately move 1 step forward
|
||||
file.readSync(new Uint8Array(1)); // "H"
|
||||
|
@ -349,7 +349,7 @@ testPerm({ read: true }, function seekSyncCurrent(): void {
|
|||
});
|
||||
|
||||
testPerm({ read: true }, async function seekEnd(): Promise<void> {
|
||||
const filename = "tests/hello.txt";
|
||||
const filename = "cli/tests/hello.txt";
|
||||
const file = await Deno.open(filename);
|
||||
await file.seek(-6, Deno.SeekMode.SEEK_END);
|
||||
const buf = new Uint8Array(6);
|
||||
|
@ -359,7 +359,7 @@ testPerm({ read: true }, async function seekEnd(): Promise<void> {
|
|||
});
|
||||
|
||||
testPerm({ read: true }, function seekSyncEnd(): void {
|
||||
const filename = "tests/hello.txt";
|
||||
const filename = "cli/tests/hello.txt";
|
||||
const file = Deno.openSync(filename);
|
||||
file.seekSync(-6, Deno.SeekMode.SEEK_END);
|
||||
const buf = new Uint8Array(6);
|
||||
|
@ -369,7 +369,7 @@ testPerm({ read: true }, function seekSyncEnd(): void {
|
|||
});
|
||||
|
||||
testPerm({ read: true }, async function seekMode(): Promise<void> {
|
||||
const filename = "tests/hello.txt";
|
||||
const filename = "cli/tests/hello.txt";
|
||||
const file = await Deno.open(filename);
|
||||
let err;
|
||||
try {
|
||||
|
|
|
@ -13,7 +13,7 @@ function assertSameContent(files: FileInfo[]): void {
|
|||
}
|
||||
|
||||
if (file.name === "002_hello.ts") {
|
||||
assertEquals(file.mode!, Deno.statSync(`tests/${file.name}`).mode!);
|
||||
assertEquals(file.mode!, Deno.statSync(`cli/tests/${file.name}`).mode!);
|
||||
counter++;
|
||||
}
|
||||
}
|
||||
|
@ -22,7 +22,7 @@ function assertSameContent(files: FileInfo[]): void {
|
|||
}
|
||||
|
||||
testPerm({ read: true }, function readDirSyncSuccess(): void {
|
||||
const files = Deno.readDirSync("tests/");
|
||||
const files = Deno.readDirSync("cli/tests/");
|
||||
assertSameContent(files);
|
||||
});
|
||||
|
||||
|
@ -67,7 +67,7 @@ testPerm({ read: true }, function readDirSyncNotFound(): void {
|
|||
});
|
||||
|
||||
testPerm({ read: true }, async function readDirSuccess(): Promise<void> {
|
||||
const files = await Deno.readDir("tests/");
|
||||
const files = await Deno.readDir("cli/tests/");
|
||||
assertSameContent(files);
|
||||
});
|
||||
|
||||
|
|
|
@ -31,7 +31,7 @@ testPerm({ net: true }, async function resourcesNet(): Promise<void> {
|
|||
|
||||
testPerm({ read: true }, async function resourcesFile(): Promise<void> {
|
||||
const resourcesBefore = Deno.resources();
|
||||
await Deno.open("tests/hello.txt");
|
||||
await Deno.open("cli/tests/hello.txt");
|
||||
const resourcesAfter = Deno.resources();
|
||||
|
||||
// check that exactly one new resource (file) was added
|
||||
|
|
|
@ -12,7 +12,7 @@ testPerm({ read: true }, async function statSyncSuccess(): Promise<void> {
|
|||
assert(modulesInfo.isDirectory());
|
||||
assert(!modulesInfo.isSymlink());
|
||||
|
||||
const testsInfo = Deno.statSync("tests");
|
||||
const testsInfo = Deno.statSync("cli/tests");
|
||||
assert(testsInfo.isDirectory());
|
||||
assert(!testsInfo.isSymlink());
|
||||
});
|
||||
|
@ -96,7 +96,7 @@ testPerm({ read: true }, async function statSuccess(): Promise<void> {
|
|||
assert(modulesInfo.isDirectory());
|
||||
assert(!modulesInfo.isSymlink());
|
||||
|
||||
const i = await Deno.stat("tests");
|
||||
const i = await Deno.stat("cli/tests");
|
||||
assert(i.isDirectory());
|
||||
assert(!i.isSymlink());
|
||||
});
|
||||
|
|
|
@ -436,12 +436,12 @@ mod tests {
|
|||
|
||||
#[test]
|
||||
fn source_map_from_json() {
|
||||
let json = r#"{"version":3,"file":"error_001.js","sourceRoot":"","sources":["file:///Users/rld/src/deno/tests/error_001.ts"],"names":[],"mappings":"AAAA,SAAS,GAAG;IACV,MAAM,KAAK,CAAC,KAAK,CAAC,CAAC;AACrB,CAAC;AAED,SAAS,GAAG;IACV,GAAG,EAAE,CAAC;AACR,CAAC;AAED,GAAG,EAAE,CAAC"}"#;
|
||||
let json = r#"{"version":3,"file":"error_001.js","sourceRoot":"","sources":["file:///Users/rld/src/deno/cli/tests/error_001.ts"],"names":[],"mappings":"AAAA,SAAS,GAAG;IACV,MAAM,KAAK,CAAC,KAAK,CAAC,CAAC;AACrB,CAAC;AAED,SAAS,GAAG;IACV,GAAG,EAAE,CAAC;AACR,CAAC;AAED,GAAG,EAAE,CAAC"}"#;
|
||||
let sm = SourceMap::from_json(json).unwrap();
|
||||
assert_eq!(sm.sources.len(), 1);
|
||||
assert_eq!(
|
||||
sm.sources[0],
|
||||
"file:///Users/rld/src/deno/tests/error_001.ts"
|
||||
"file:///Users/rld/src/deno/cli/tests/error_001.ts"
|
||||
);
|
||||
let mapping = sm
|
||||
.mappings
|
||||
|
|
|
@ -1,7 +1,3 @@
|
|||
# Integration Tests
|
||||
|
||||
This path contains integration tests. See integration_tests.rs for the index.
|
||||
|
||||
TODO(ry) Currently //tests is a symlink to //cli/tests, to simplify transition.
|
||||
In the future the symlink should be removed when all the many references have
|
||||
been updated to the new path.
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
The types of 'a.b.c().d' are incompatible between these types.
|
||||
Type 'number' is not assignable to type 'string'.
|
||||
|
||||
[WILDCARD]/tests/error_003_typescript.ts:20:1
|
||||
[WILDCARD]/cli/tests/error_003_typescript.ts:20:1
|
||||
|
||||
20 x = y;
|
||||
^
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
(async () => {
|
||||
await import("http://localhost:4545/tests/subdir/mod4.js");
|
||||
await import("http://localhost:4545/cli/tests/subdir/mod4.js");
|
||||
})();
|
||||
|
|
|
@ -1 +1 @@
|
|||
error: Uncaught TypeError: network access to "http://localhost:4545/tests/subdir/mod4.js", run again with the --allow-net flag
|
||||
error: Uncaught TypeError: network access to "http://localhost:4545/cli/tests/subdir/mod4.js", run again with the --allow-net flag
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
// If this is executed with --allow-net but not --allow-read the following
|
||||
// import should cause a permission denied error.
|
||||
(async () => {
|
||||
await import("http://localhost:4545/tests/subdir/evil_remote_import.js");
|
||||
await import("http://localhost:4545/cli/tests/subdir/evil_remote_import.js");
|
||||
})();
|
||||
|
|
|
@ -131,7 +131,7 @@ fn installer_test_remote_module_run() {
|
|||
DenoFlags::default(),
|
||||
Some(temp_dir.path().to_string_lossy().to_string()),
|
||||
"echo_test",
|
||||
"http://localhost:4545/tests/echo.ts",
|
||||
"http://localhost:4545/cli/tests/echo.ts",
|
||||
vec!["hello".to_string()],
|
||||
)
|
||||
.expect("Failed to install");
|
||||
|
|
|
@ -264,7 +264,7 @@ mod tests {
|
|||
let p = std::path::PathBuf::from(env!("CARGO_MANIFEST_DIR"))
|
||||
.parent()
|
||||
.unwrap()
|
||||
.join("tests/esm_imports_a.js");
|
||||
.join("cli/tests/esm_imports_a.js");
|
||||
let module_specifier =
|
||||
ModuleSpecifier::resolve_url_or_path(&p.to_string_lossy()).unwrap();
|
||||
let global_state = ThreadSafeGlobalState::new(
|
||||
|
@ -436,7 +436,7 @@ mod tests {
|
|||
let p = std::path::PathBuf::from(env!("CARGO_MANIFEST_DIR"))
|
||||
.parent()
|
||||
.unwrap()
|
||||
.join("tests/002_hello.ts");
|
||||
.join("cli/tests/002_hello.ts");
|
||||
let module_specifier =
|
||||
ModuleSpecifier::resolve_url_or_path(&p.to_string_lossy()).unwrap();
|
||||
let result =
|
||||
|
|
|
@ -306,7 +306,7 @@ mod tests {
|
|||
"line":2,
|
||||
"column":11,
|
||||
"functionName":"foo",
|
||||
"scriptName":"/Users/rld/src/deno/tests/error_001.ts",
|
||||
"scriptName":"/Users/rld/src/deno/cli/tests/error_001.ts",
|
||||
"isEval":true,
|
||||
"isConstructor":false,
|
||||
"isWasm":false
|
||||
|
@ -319,7 +319,7 @@ mod tests {
|
|||
Some(StackFrame {
|
||||
line: 1,
|
||||
column: 10,
|
||||
script_name: "/Users/rld/src/deno/tests/error_001.ts".to_string(),
|
||||
script_name: "/Users/rld/src/deno/cli/tests/error_001.ts".to_string(),
|
||||
function_name: "foo".to_string(),
|
||||
is_eval: true,
|
||||
is_constructor: false,
|
||||
|
@ -332,7 +332,7 @@ mod tests {
|
|||
fn stack_frame_from_json_value_2() {
|
||||
let v = serde_json::from_str::<serde_json::Value>(
|
||||
r#"{
|
||||
"scriptName": "/Users/rld/src/deno/tests/error_001.ts",
|
||||
"scriptName": "/Users/rld/src/deno/cli/tests/error_001.ts",
|
||||
"line": 2,
|
||||
"column": 11
|
||||
}"#,
|
||||
|
@ -343,7 +343,7 @@ mod tests {
|
|||
let f = r.unwrap();
|
||||
assert_eq!(f.line, 1);
|
||||
assert_eq!(f.column, 10);
|
||||
assert_eq!(f.script_name, "/Users/rld/src/deno/tests/error_001.ts");
|
||||
assert_eq!(f.script_name, "/Users/rld/src/deno/cli/tests/error_001.ts");
|
||||
}
|
||||
|
||||
#[test]
|
||||
|
@ -356,7 +356,7 @@ mod tests {
|
|||
"line":2,
|
||||
"column":11,
|
||||
"functionName":"foo",
|
||||
"scriptName":"/Users/rld/src/deno/tests/error_001.ts",
|
||||
"scriptName":"/Users/rld/src/deno/cli/tests/error_001.ts",
|
||||
"isEval":true,
|
||||
"isConstructor":false,
|
||||
"isWasm":false
|
||||
|
@ -364,7 +364,7 @@ mod tests {
|
|||
"line":5,
|
||||
"column":5,
|
||||
"functionName":"bar",
|
||||
"scriptName":"/Users/rld/src/deno/tests/error_001.ts",
|
||||
"scriptName":"/Users/rld/src/deno/cli/tests/error_001.ts",
|
||||
"isEval":true,
|
||||
"isConstructor":false,
|
||||
"isWasm":false
|
||||
|
@ -380,7 +380,7 @@ mod tests {
|
|||
StackFrame {
|
||||
line: 1,
|
||||
column: 10,
|
||||
script_name: "/Users/rld/src/deno/tests/error_001.ts".to_string(),
|
||||
script_name: "/Users/rld/src/deno/cli/tests/error_001.ts".to_string(),
|
||||
function_name: "foo".to_string(),
|
||||
is_eval: true,
|
||||
is_constructor: false,
|
||||
|
|
1
tests
1
tests
|
@ -1 +0,0 @@
|
|||
cli/tests
|
|
@ -20,13 +20,13 @@ import http_server
|
|||
|
||||
# The list of the tuples of the benchmark name and arguments
|
||||
exec_time_benchmarks = [
|
||||
("hello", ["tests/002_hello.ts"]),
|
||||
("relative_import", ["tests/003_relative_import.ts"]),
|
||||
("error_001", ["tests/error_001.ts"]),
|
||||
("cold_hello", ["--reload", "tests/002_hello.ts"]),
|
||||
("cold_relative_import", ["--reload", "tests/003_relative_import.ts"]),
|
||||
("workers_startup", ["tests/workers_startup_bench.ts"]),
|
||||
("workers_round_robin", ["tests/workers_round_robin_bench.ts"]),
|
||||
("hello", ["cli/tests/002_hello.ts"]),
|
||||
("relative_import", ["cli/tests/003_relative_import.ts"]),
|
||||
("error_001", ["cli/tests/error_001.ts"]),
|
||||
("cold_hello", ["--reload", "cli/tests/002_hello.ts"]),
|
||||
("cold_relative_import", ["--reload", "cli/tests/003_relative_import.ts"]),
|
||||
("workers_startup", ["cli/tests/workers_startup_bench.ts"]),
|
||||
("workers_round_robin", ["cli/tests/workers_round_robin_bench.ts"]),
|
||||
("text_decoder", ["cli/tests/text_decoder_perf.js"]),
|
||||
("text_encoder", ["cli/tests/text_encoder_perf.js"]),
|
||||
]
|
||||
|
|
|
@ -40,7 +40,7 @@ class TestDenoDir(DenoTestCase):
|
|||
def run_deno(self, deno_dir=None):
|
||||
cmd = [
|
||||
self.deno_exe, "run",
|
||||
"http://localhost:4545/tests/subdir/print_hello.ts"
|
||||
"http://localhost:4545/cli/tests/subdir/print_hello.ts"
|
||||
]
|
||||
deno_dir_env = {"DENO_DIR": deno_dir} if deno_dir is not None else None
|
||||
res = run_output(cmd, quiet=True, env=deno_dir_env)
|
||||
|
|
|
@ -23,7 +23,7 @@ class TestFetch(DenoTestCase):
|
|||
os.path.exists(
|
||||
os.path.join(
|
||||
deno_dir,
|
||||
"deps/http/localhost_PORT4545/tests/subdir/mod2.ts"))
|
||||
"deps/http/localhost_PORT4545/cli/tests/subdir/mod2.ts"))
|
||||
finally:
|
||||
shutil.rmtree(deno_dir)
|
||||
|
||||
|
|
|
@ -223,7 +223,7 @@ def redirect_server():
|
|||
# BUT with an extra subdir path
|
||||
def another_redirect_server():
|
||||
return base_redirect_server(
|
||||
ANOTHER_REDIRECT_PORT, PORT, extra_path_segment="/tests/subdir")
|
||||
ANOTHER_REDIRECT_PORT, PORT, extra_path_segment="/cli/tests/subdir")
|
||||
|
||||
|
||||
# redirect server that points to another redirect server
|
||||
|
|
|
@ -114,7 +114,7 @@ class TestRepl(DenoTestCase):
|
|||
|
||||
# def test_async_op(self):
|
||||
# out, err, code = self.input(
|
||||
# "fetch('http://localhost:4545/tests/001_hello.js')" +
|
||||
# "fetch('http://localhost:4545/cli/tests/001_hello.js')" +
|
||||
# ".then(res => res.text()).then(console.log)",
|
||||
# sleep=1)
|
||||
# self.assertEqual(out, 'Promise {}\nconsole.log("Hello World");\n\n')
|
||||
|
|
|
@ -34,7 +34,7 @@ class TestTarget(DenoTestCase):
|
|||
def test_exec_path(self):
|
||||
cmd = [
|
||||
self.deno_exe, "run", "--allow-run", "--allow-env",
|
||||
"tests/exec_path.ts"
|
||||
"cli/tests/exec_path.ts"
|
||||
]
|
||||
result = run_output(cmd, quiet=True)
|
||||
print "exec_path", result
|
||||
|
|
|
@ -21,7 +21,7 @@ def cat(deno_exe, megs):
|
|||
size = megs * MB
|
||||
start = time.time()
|
||||
cmd = deno_exe + " run --allow-read "
|
||||
cmd += "tests/cat.ts /dev/zero | head -c %s " % size
|
||||
cmd += "cli/tests/cat.ts /dev/zero | head -c %s " % size
|
||||
print cmd
|
||||
subprocess.check_output(cmd, shell=True)
|
||||
end = time.time()
|
||||
|
@ -32,7 +32,7 @@ def tcp(deno_exe, megs):
|
|||
size = megs * MB
|
||||
# Run deno echo server in the background.
|
||||
args = [
|
||||
deno_exe, "run", "--allow-net", "tests/echo_server.ts", SERVER_ADDR
|
||||
deno_exe, "run", "--allow-net", "cli/tests/echo_server.ts", SERVER_ADDR
|
||||
]
|
||||
print args
|
||||
echo_server = subprocess.Popen(args)
|
||||
|
|
|
@ -21,7 +21,7 @@ executable_suffix = ".exe" if os.name == "nt" else ""
|
|||
|
||||
root_path = os.path.dirname(os.path.dirname(os.path.realpath(__file__)))
|
||||
libdeno_path = os.path.join(root_path, "core", "libdeno")
|
||||
tests_path = os.path.join(root_path, "tests")
|
||||
tests_path = os.path.join(root_path, "cli/tests")
|
||||
third_party_path = os.path.join(root_path, "third_party")
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue