-
-
Notifications
You must be signed in to change notification settings - Fork 76
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
299 additions
and
9 deletions.
There are no files selected for viewing
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,195 @@ | ||
require "features/helper" | ||
|
||
RSpec.describe "imap-backup copy", :container, type: :aruba do | ||
include_context "message-fixtures" | ||
|
||
let(:source_folder) { "my_folder" } | ||
let(:destination_folder) { "other_public.my_folder" } | ||
let(:mirror_file_path) do | ||
File.join(test_server_connection_parameters[:local_path], "#{source_folder}.mirror") | ||
end | ||
let(:msg1_source_uid) { test_server.folder_uids(source_folder).first } | ||
let(:msg1_destination_id) { other_server.folder_uids(destination_folder).first } | ||
let(:config_options) do | ||
{ | ||
accounts: [ | ||
test_server_connection_parameters.merge(folders: [source_folder]), | ||
other_server_connection_parameters | ||
] | ||
} | ||
end | ||
let(:command) do | ||
"imap-backup copy " \ | ||
"--destination-prefix=other_public " \ | ||
"--destination-delimiter=. " \ | ||
"#{test_server_connection_parameters[:username]} " \ | ||
"#{other_server_connection_parameters[:username]}" | ||
end | ||
|
||
before do | ||
test_server.warn_about_non_default_folders | ||
test_server.create_folder source_folder | ||
test_server.send_email source_folder, **message_one, flags: [:Seen] | ||
create_config(**config_options) | ||
FileUtils.rm_rf test_server_connection_parameters[:local_path] | ||
end | ||
|
||
after do | ||
test_server.delete_folder source_folder | ||
test_server.disconnect | ||
other_server.delete_folder destination_folder | ||
other_server.disconnect | ||
end | ||
|
||
it "backs up the source account" do | ||
run_command_and_stop command | ||
|
||
content = mbox_content(test_server_connection_parameters[:username], source_folder) | ||
|
||
expect(content).to eq(to_mbox_entry(**message_one)) | ||
end | ||
|
||
it "creates the destination folder" do | ||
run_command_and_stop command | ||
|
||
expect(other_server.folder_exists?(destination_folder)).to be true | ||
end | ||
|
||
it "appends all emails" do | ||
run_command_and_stop command | ||
|
||
messages = other_server.folder_messages(destination_folder).map do |m| | ||
server_message_to_body(m) | ||
end | ||
expect(messages).to eq([message_as_server_message(**message_one)]) | ||
end | ||
|
||
it "sets flags" do | ||
run_command_and_stop command | ||
|
||
flags = other_server.folder_messages(destination_folder).first["FLAGS"] | ||
flags.reject! { |f| f == :Recent } | ||
expect(flags).to eq([:Seen]) | ||
end | ||
|
||
it "saves the .mirror file" do | ||
run_command_and_stop command | ||
|
||
content = JSON.parse(File.read(mirror_file_path)) | ||
map = content.dig(other_server_connection_parameters[:username], "map") | ||
|
||
expect(map).to eq({msg1_source_uid.to_s => msg1_destination_id}) | ||
end | ||
|
||
context "when there are emails on the destination server" do | ||
before do | ||
other_server.create_folder destination_folder | ||
other_server.send_email destination_folder, **message_two | ||
end | ||
|
||
it "keeps them" do | ||
run_command_and_stop command | ||
|
||
messages = other_server.folder_messages(destination_folder).map do |m| | ||
server_message_to_body(m) | ||
end | ||
expect(messages).to eq([message_as_server_message(**message_two), | ||
message_as_server_message(**message_one)]) | ||
end | ||
end | ||
|
||
context "when a mirror file exists" do | ||
let(:mirror_contents) do | ||
{ | ||
other_server_connection_parameters[:username] => { | ||
"source_uid_validity" => test_server.folder_uid_validity(source_folder), | ||
"destination_uid_validity" => other_server.folder_uid_validity(destination_folder), | ||
"map" => { | ||
msg1_source_uid => msg1_destination_id | ||
} | ||
} | ||
} | ||
end | ||
let(:mirror_file) do | ||
FileUtils.mkdir_p test_server_connection_parameters[:local_path] | ||
File.write(mirror_file_path, mirror_contents.to_json) | ||
end | ||
|
||
before do | ||
# msg1 on both, msg2 on source | ||
other_server.create_folder destination_folder | ||
other_server.send_email destination_folder, **message_one | ||
test_server.send_email source_folder, **message_two | ||
mirror_file | ||
end | ||
|
||
it "appends missing emails" do | ||
run_command_and_stop command | ||
|
||
messages = other_server.folder_messages(destination_folder).map do |m| | ||
server_message_to_body(m) | ||
end | ||
expect(messages).to eq([message_as_server_message(**message_one), | ||
message_as_server_message(**message_two)]) | ||
end | ||
|
||
context "when flags have changed" do | ||
before do | ||
other_server.create_folder destination_folder | ||
other_server.send_email destination_folder, **message_one, flags: [:Draft] | ||
mirror_file | ||
end | ||
|
||
it "updates them" do | ||
run_command_and_stop command | ||
|
||
flags = other_server.folder_messages(destination_folder).first["FLAGS"] | ||
flags.reject! { |f| f == :Recent } | ||
expect(flags).to eq([:Seen]) | ||
end | ||
end | ||
|
||
context "when there are emails on the destination server that are not on the source server" do | ||
before do | ||
other_server.send_email destination_folder, **message_three | ||
end | ||
|
||
it "keeps them" do | ||
run_command_and_stop command | ||
|
||
messages = other_server.folder_messages(destination_folder).map do |m| | ||
server_message_to_body(m) | ||
end | ||
expect(messages).to eq( | ||
[ | ||
message_as_server_message(**message_one), | ||
message_as_server_message(**message_three), | ||
message_as_server_message(**message_two) | ||
] | ||
) | ||
end | ||
end | ||
end | ||
|
||
context "when a config path is supplied" do | ||
let(:custom_config_path) { File.join(File.expand_path("~/.imap-backup"), "foo.json") } | ||
let(:config_options) { super().merge(path: custom_config_path) } | ||
let(:command) do | ||
"imap-backup copy " \ | ||
"--destination-prefix=other_public " \ | ||
"--destination-delimiter=. " \ | ||
"#{test_server_connection_parameters[:username]} " \ | ||
"#{other_server_connection_parameters[:username]} " \ | ||
"--config #{custom_config_path}" | ||
end | ||
|
||
it "copies messages" do | ||
run_command_and_stop command | ||
|
||
messages = other_server.folder_messages(destination_folder).map do |m| | ||
server_message_to_body(m) | ||
end | ||
expect(messages).to eq([message_as_server_message(**message_one)]) | ||
end | ||
end | ||
end |
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