aboutsummaryrefslogtreecommitdiffstats
path: root/tests/upload_files.rs
diff options
context:
space:
mode:
authorSven-Hendrik Haase <svenstaro@gmail.com>2019-05-01 05:56:35 +0000
committerGitHub <noreply@github.com>2019-05-01 05:56:35 +0000
commitf099134d2b86924fad0ddc615e5fecfb716c7ee0 (patch)
treed1142b0fd13b2ed92f1216b0672df8befc81d928 /tests/upload_files.rs
parentMerge pull request #96 from svenstaro/dependabot/cargo/reqwest-0.9.16 (diff)
parentAllow dead code to fix false negative warnings (diff)
downloadminiserve-f099134d2b86924fad0ddc615e5fecfb716c7ee0.tar.gz
miniserve-f099134d2b86924fad0ddc615e5fecfb716c7ee0.zip
Merge pull request #91 from KSXGitHub/split-integration-test
Split integration test into multiple files
Diffstat (limited to 'tests/upload_files.rs')
-rw-r--r--tests/upload_files.rs51
1 files changed, 51 insertions, 0 deletions
diff --git a/tests/upload_files.rs b/tests/upload_files.rs
new file mode 100644
index 0000000..1bdecc3
--- /dev/null
+++ b/tests/upload_files.rs
@@ -0,0 +1,51 @@
+mod fixtures;
+use fixtures::*;
+
+#[rstest]
+fn uploading_files_works(tmpdir: TempDir, port: u16) -> Result<(), Error> {
+ let test_file_name = "uploaded test file.txt";
+
+ let mut child = Command::cargo_bin("miniserve")?
+ .arg(tmpdir.path())
+ .arg("-p")
+ .arg(port.to_string())
+ .arg("-u")
+ .stdout(Stdio::null())
+ .spawn()?;
+
+ sleep(Duration::from_secs(1));
+
+ // Before uploading, check whether the uploaded file does not yet exist.
+ let body = reqwest::get(format!("http://localhost:{}", port).as_str())?.error_for_status()?;
+ let parsed = Document::from_read(body)?;
+ assert!(parsed.find(Text).all(|x| x.text() != test_file_name));
+
+ // Perform the actual upload.
+ let upload_action = parsed
+ .find(Attr("id", "file_submit"))
+ .next()
+ .expect("Couldn't find element with id=file_submit")
+ .attr("action")
+ .expect("Upload form doesn't have action attribute");
+ let form = multipart::Form::new();
+ let part = multipart::Part::text("this should be uploaded")
+ .file_name(test_file_name)
+ .mime_str("text/plain")?;
+ let form = form.part("file_to_upload", part);
+
+ let client = reqwest::Client::new();
+ client
+ .post(format!("http://localhost:{}{}", port, upload_action).as_str())
+ .multipart(form)
+ .send()?
+ .error_for_status()?;
+
+ // After uploading, check whether the uploaded file is now getting listed.
+ let body = reqwest::get(format!("http://localhost:{}", port).as_str())?;
+ let parsed = Document::from_read(body)?;
+ assert!(parsed.find(Text).any(|x| x.text() == test_file_name));
+
+ child.kill()?;
+
+ Ok(())
+}