1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162
|
mod root {
use rust_apt::new_cache;
use rust_apt::raw::progress::{raw, AcquireProgress, AptAcquireProgress, AptInstallProgress};
use rust_apt::util::*;
#[test]
fn lock() {
apt_lock().unwrap();
apt_lock().unwrap();
assert!(apt_is_locked());
apt_unlock();
assert!(apt_is_locked());
apt_unlock();
assert!(!apt_is_locked());
}
#[test]
fn update() {
struct Progress {}
impl AcquireProgress for Progress {
fn pulse_interval(&self) -> usize { 0 }
fn hit(&mut self, id: u32, description: String) {
println!("\rHit:{id} {description}");
}
fn fetch(&mut self, id: u32, description: String, file_size: u64) {
if file_size != 0 {
println!(
"\rGet:{id} {description} [{}]",
unit_str(file_size, NumSys::Decimal)
);
} else {
println!("\rGet:{id} {description}");
}
}
fn done(&mut self) {}
fn start(&mut self) {}
fn stop(
&mut self,
fetched_bytes: u64,
elapsed_time: u64,
current_cps: u64,
_pending_errors: bool,
) {
if fetched_bytes != 0 {
println!(
"Fetched {} in {} ({}/s)",
unit_str(fetched_bytes, NumSys::Decimal),
time_str(elapsed_time),
unit_str(current_cps, NumSys::Decimal)
);
} else {
println!("Nothing to fetch.");
}
}
fn fail(&mut self, id: u32, description: String, status: u32, error_text: String) {
let mut show_error = true;
if status == 0 || status == 2 {
println!("\rIgn: {id} {description}");
if error_text.is_empty() {
show_error = false;
}
} else {
println!("\rErr: {id} {description}");
}
if show_error {
println!("\r{error_text}");
}
}
fn pulse(
&mut self,
_workers: Vec<raw::Worker>,
_percent: f32,
_total_bytes: u64,
_current_bytes: u64,
_current_cps: u64,
) {
}
}
let cache = new_cache!().unwrap();
// Test a new impl for AcquireProgress
let mut progress: Box<dyn AcquireProgress> = Box::new(Progress {});
cache.update(&mut progress).unwrap();
let cache = new_cache!().unwrap();
// Test the default implementation for it
let mut progress = AptAcquireProgress::new_box();
cache.update(&mut progress).unwrap();
}
#[test]
fn install_and_remove() {
let cache = new_cache!().unwrap();
let pkg = cache.get("neofetch").unwrap();
pkg.protect();
pkg.mark_install(true, true);
cache.resolve(false).unwrap();
dbg!(pkg.marked_install());
let mut progress = AptAcquireProgress::new_box();
let mut inst_progress = AptInstallProgress::new_box();
cache.commit(&mut progress, &mut inst_progress).unwrap();
// After commit a new cache must be created for more operations
let cache = new_cache!().unwrap();
// I need to pick a better package. This removes my neofetch every time!
let pkg = cache.get("neofetch").unwrap();
pkg.mark_delete(true);
cache.commit(&mut progress, &mut inst_progress).unwrap();
}
#[test]
fn install_with_debs() {
let debs = [
"tests/files/cache/dep-pkg1_0.0.1.deb",
"tests/files/cache/dep-pkg2_0.0.1.deb",
];
let cache = new_cache!(&debs).unwrap();
let pkg1 = cache.get("dep-pkg1").unwrap();
let pkg2 = cache.get("dep-pkg2").unwrap();
pkg1.mark_install(true, true);
pkg2.mark_install(true, true);
cache.resolve(false).unwrap();
let mut progress = AptAcquireProgress::new_box();
let mut inst_progress = AptInstallProgress::new_box();
cache.commit(&mut progress, &mut inst_progress).unwrap();
// You have to get a new cache after using commit.
let cache = new_cache!(&debs).unwrap();
// New packages will be required as well.
let pkg1 = cache.get("dep-pkg1").unwrap();
let pkg2 = cache.get("dep-pkg2").unwrap();
// Leave no trace
pkg1.mark_delete(true);
pkg2.mark_delete(true);
cache.commit(&mut progress, &mut inst_progress).unwrap();
}
}
|