mirror of
https://github.com/servo/servo.git
synced 2025-08-15 10:25:32 +01:00
Fix FileManager thread panic and other misc improvements
- Add shut down logic for FileManager thread - Add an unit test for filemanager_thread
This commit is contained in:
parent
caada0fb33
commit
96b2093121
6 changed files with 46 additions and 3 deletions
34
tests/unit/net/filemanager_thread.rs
Normal file
34
tests/unit/net/filemanager_thread.rs
Normal file
|
@ -0,0 +1,34 @@
|
|||
/* This Source Code Form is subject to the terms of the Mozilla Public
|
||||
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
||||
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
||||
|
||||
use ipc_channel::ipc::{self, IpcSender};
|
||||
use net::filemanager_thread::FileManagerThreadFactory;
|
||||
use net_traits::filemanager_thread::{FileManagerThreadMsg, FileManagerThreadError};
|
||||
|
||||
#[test]
|
||||
fn test_filemanager() {
|
||||
let chan: IpcSender<FileManagerThreadMsg> = FileManagerThreadFactory::new();
|
||||
|
||||
{
|
||||
let (tx, rx) = ipc::channel().unwrap();
|
||||
let _ = chan.send(FileManagerThreadMsg::SelectFile(tx));
|
||||
|
||||
match rx.recv().unwrap() {
|
||||
Err(FileManagerThreadError::InvalidSelection) => {},
|
||||
_ => assert!(false, "Should be an invalid selection before dialog is implemented"),
|
||||
}
|
||||
}
|
||||
|
||||
let _ = chan.send(FileManagerThreadMsg::Exit);
|
||||
|
||||
{
|
||||
let (tx, rx) = ipc::channel().unwrap();
|
||||
let _ = chan.send(FileManagerThreadMsg::SelectFile(tx));
|
||||
|
||||
match rx.try_recv() {
|
||||
Ok(_) => assert!(false, "The thread should not response fine after exited"),
|
||||
Err(_) => {},
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue