aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorQuentin Dufour <quentin@deuxfleurs.fr>2024-01-03 09:47:52 +0100
committerQuentin Dufour <quentin@deuxfleurs.fr>2024-01-03 09:47:52 +0100
commit9ce8e18fb81c4ef0bf146c5d28981d8f2a6fddd9 (patch)
tree96a2e3b62069485e0c45ce022ec472dd85bd3935 /tests
parent7ebc708acab9c91db41652cfbfe2814a3a27569d (diff)
downloadaerogramme-9ce8e18fb81c4ef0bf146c5d28981d8f2a6fddd9.tar.gz
aerogramme-9ce8e18fb81c4ef0bf146c5d28981d8f2a6fddd9.zip
Common module in test created
Diffstat (limited to 'tests')
-rw-r--r--tests/common.rs43
-rw-r--r--tests/rfc3501_imap4rev1_base.rs (renamed from tests/imap_features.rs)90
2 files changed, 70 insertions, 63 deletions
diff --git a/tests/common.rs b/tests/common.rs
new file mode 100644
index 0000000..0d99ce8
--- /dev/null
+++ b/tests/common.rs
@@ -0,0 +1,43 @@
+use anyhow::{bail, Context, Result};
+use std::net::{Shutdown, TcpStream};
+use std::process::Command;
+use std::{thread, time};
+
+static SMALL_DELAY: time::Duration = time::Duration::from_millis(200);
+
+pub fn aerogramme_provider_daemon_dev(mut fx: impl FnMut(&mut TcpStream, &mut TcpStream) -> Result<()>) -> Result<()> {
+ let mut daemon = Command::new(env!("CARGO_BIN_EXE_aerogramme"))
+ .arg("--dev")
+ .arg("provider")
+ .arg("daemon")
+ .spawn()?;
+
+ let mut max_retry = 20;
+ let mut imap_socket = loop {
+ max_retry -= 1;
+ match (TcpStream::connect("[::1]:1143"), max_retry) {
+ (Err(e), 0) => bail!("no more retry, last error is: {}", e),
+ (Err(e), _) => {
+ println!("unable to connect: {} ; will retry in 1 sec", e);
+ }
+ (Ok(v), _) => break v,
+ }
+ thread::sleep(SMALL_DELAY);
+ };
+
+ let mut lmtp_socket = TcpStream::connect("[::1]:1025").context("lmtp socket must be connected")?;
+
+ println!("-- ready to test imap features --");
+ let result = fx(&mut imap_socket, &mut lmtp_socket);
+ println!("-- test teardown --");
+
+ imap_socket
+ .shutdown(Shutdown::Both)
+ .context("closing imap socket at the end of the test")?;
+ lmtp_socket
+ .shutdown(Shutdown::Both)
+ .context("closing lmtp socket at the end of the test")?;
+ daemon.kill().context("daemon should be killed")?;
+
+ result.context("all tests passed")
+}
diff --git a/tests/imap_features.rs b/tests/rfc3501_imap4rev1_base.rs
index 9e8d587..f416e51 100644
--- a/tests/imap_features.rs
+++ b/tests/rfc3501_imap4rev1_base.rs
@@ -1,9 +1,10 @@
use anyhow::{bail, Context, Result};
use std::io::{Read, Write};
-use std::net::{Shutdown, TcpStream};
-use std::process::Command;
+use std::net::TcpStream;
use std::{thread, time};
+mod common;
+
static SMALL_DELAY: time::Duration = time::Duration::from_millis(200);
static EMAIL1: &[u8] = b"Date: Sat, 8 Jul 2023 07:14:29 +0200\r
From: Bob Robert <bob@example.tld>\r
@@ -57,66 +58,30 @@ Hello world!\r
";
fn main() {
- let mut daemon = Command::new(env!("CARGO_BIN_EXE_aerogramme"))
- .arg("--dev")
- .arg("provider")
- .arg("daemon")
- .spawn()
- .expect("daemon should be started");
-
- let mut max_retry = 20;
- let mut imap_socket = loop {
- max_retry -= 1;
- match (TcpStream::connect("[::1]:1143"), max_retry) {
- (Err(e), 0) => panic!("no more retry, last error is: {}", e),
- (Err(e), _) => {
- println!("unable to connect: {} ; will retry in 1 sec", e);
- }
- (Ok(v), _) => break v,
- }
- thread::sleep(SMALL_DELAY);
- };
-
- let mut lmtp_socket = TcpStream::connect("[::1]:1025").expect("lmtp socket must be connected");
-
- println!("-- ready to test imap features --");
- let result = generic_test(&mut imap_socket, &mut lmtp_socket);
- println!("-- test teardown --");
-
- imap_socket
- .shutdown(Shutdown::Both)
- .expect("closing imap socket at the end of the test");
- lmtp_socket
- .shutdown(Shutdown::Both)
- .expect("closing lmtp socket at the end of the test");
- daemon.kill().expect("daemon should be killed");
-
- result.expect("all tests passed");
-}
-
-fn generic_test(imap_socket: &mut TcpStream, lmtp_socket: &mut TcpStream) -> Result<()> {
- connect(imap_socket).context("server says hello")?;
- capability(imap_socket).context("check server capabilities")?;
- login(imap_socket).context("login test")?;
- create_mailbox(imap_socket).context("created mailbox archive")?;
- // UNSUBSCRIBE IS NOT IMPLEMENTED YET
- //unsubscribe_mailbox(imap_socket).context("unsubscribe from archive")?;
- select_inbox(imap_socket).context("select inbox")?;
- check(imap_socket).context("check must run")?;
- status_mailbox(imap_socket).context("status of archive from inbox")?;
- lmtp_handshake(lmtp_socket).context("handshake lmtp done")?;
- lmtp_deliver_email(lmtp_socket, EMAIL1).context("mail delivered successfully")?;
- noop_exists(imap_socket).context("noop loop must detect a new email")?;
- fetch_rfc822(imap_socket, EMAIL1).context("fetch rfc822 message")?;
- copy_email(imap_socket).context("copy message to the archive mailbox")?;
- append_email(imap_socket, EMAIL2).context("insert email in INBOX")?;
- // SEARCH IS NOT IMPLEMENTED YET
- //search(imap_socket).expect("search should return something");
- add_flags_email(imap_socket).context("should add delete and important flags to the email")?;
- expunge(imap_socket).context("expunge emails")?;
- rename_mailbox(imap_socket).context("archive mailbox is renamed my-archives")?;
- delete_mailbox(imap_socket).context("my-archives mailbox is deleted")?;
- Ok(())
+ common::aerogramme_provider_daemon_dev(|imap_socket, lmtp_socket| {
+ connect(imap_socket).context("server says hello")?;
+ capability(imap_socket).context("check server capabilities")?;
+ login(imap_socket).context("login test")?;
+ create_mailbox(imap_socket).context("created mailbox archive")?;
+ // UNSUBSCRIBE IS NOT IMPLEMENTED YET
+ //unsubscribe_mailbox(imap_socket).context("unsubscribe from archive")?;
+ select_inbox(imap_socket).context("select inbox")?;
+ check(imap_socket).context("check must run")?;
+ status_mailbox(imap_socket).context("status of archive from inbox")?;
+ lmtp_handshake(lmtp_socket).context("handshake lmtp done")?;
+ lmtp_deliver_email(lmtp_socket, EMAIL1).context("mail delivered successfully")?;
+ noop_exists(imap_socket).context("noop loop must detect a new email")?;
+ fetch_rfc822(imap_socket, EMAIL1).context("fetch rfc822 message")?;
+ copy_email(imap_socket).context("copy message to the archive mailbox")?;
+ append_email(imap_socket, EMAIL2).context("insert email in INBOX")?;
+ // SEARCH IS NOT IMPLEMENTED YET
+ //search(imap_socket).expect("search should return something");
+ add_flags_email(imap_socket).context("should add delete and important flags to the email")?;
+ expunge(imap_socket).context("expunge emails")?;
+ rename_mailbox(imap_socket).context("archive mailbox is renamed my-archives")?;
+ delete_mailbox(imap_socket).context("my-archives mailbox is deleted")?;
+ Ok(())
+ }).expect("test fully run");
}
fn connect(imap: &mut TcpStream) -> Result<()> {
@@ -135,7 +100,6 @@ fn capability(imap: &mut TcpStream) -> Result<()> {
let read = read_lines(imap, &mut buffer, Some(&b"5 OK"[..]))?;
let srv_msg = std::str::from_utf8(read)?;
assert!(srv_msg.contains("IMAP4REV1"));
- assert!(srv_msg.contains("IDLE"));
Ok(())
}