mirror of
https://github.com/RGBCube/uutils-coreutils
synced 2025-08-01 13:37:48 +00:00
Merge branch 'master' of github.com:uutils/coreutils into refactoring_parse_size
This commit is contained in:
commit
cc659c8572
315 changed files with 12179 additions and 1508 deletions
|
@ -3,7 +3,7 @@ use uu_factor::numeric;
|
|||
|
||||
fn gcd(c: &mut Criterion) {
|
||||
let inputs = {
|
||||
// Deterministic RNG; use an explicitely-named RNG to guarantee stability
|
||||
// Deterministic RNG; use an explicitly-named RNG to guarantee stability
|
||||
use rand::{RngCore, SeedableRng};
|
||||
use rand_chacha::ChaCha8Rng;
|
||||
const SEED: u64 = 0xa_b4d_1dea_dead_cafe;
|
||||
|
|
|
@ -15,10 +15,10 @@ fn table(c: &mut Criterion) {
|
|||
CHUNK_SIZE
|
||||
);
|
||||
let inputs = {
|
||||
// Deterministic RNG; use an explicitely-named RNG to guarantee stability
|
||||
// Deterministic RNG; use an explicitly-named RNG to guarantee stability
|
||||
use rand::{RngCore, SeedableRng};
|
||||
use rand_chacha::ChaCha8Rng;
|
||||
const SEED: u64 = 0xdead_bebe_ea75_cafe;
|
||||
const SEED: u64 = 0xdead_bebe_ea75_cafe; // spell-checker:disable-line
|
||||
let mut rng = ChaCha8Rng::seed_from_u64(SEED);
|
||||
|
||||
std::iter::repeat_with(move || array_init::<_, _, INPUT_SIZE>(|_| rng.next_u64()))
|
||||
|
|
|
@ -14,14 +14,14 @@ fn test_encode() {
|
|||
new_ucmd!()
|
||||
.pipe_in(input)
|
||||
.succeeds()
|
||||
.stdout_only("JBSWY3DPFQQFO33SNRSCC===\n");
|
||||
.stdout_only("JBSWY3DPFQQFO33SNRSCC===\n"); // spell-checker:disable-line
|
||||
|
||||
// Using '-' as our file
|
||||
new_ucmd!()
|
||||
.arg("-")
|
||||
.pipe_in(input)
|
||||
.succeeds()
|
||||
.stdout_only("JBSWY3DPFQQFO33SNRSCC===\n");
|
||||
.stdout_only("JBSWY3DPFQQFO33SNRSCC===\n"); // spell-checker:disable-line
|
||||
}
|
||||
|
||||
#[test]
|
||||
|
@ -29,13 +29,13 @@ fn test_base32_encode_file() {
|
|||
new_ucmd!()
|
||||
.arg("input-simple.txt")
|
||||
.succeeds()
|
||||
.stdout_only("JBSWY3DPFQQFO33SNRSCCCQ=\n");
|
||||
.stdout_only("JBSWY3DPFQQFO33SNRSCCCQ=\n"); // spell-checker:disable-line
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn test_decode() {
|
||||
for decode_param in &["-d", "--decode"] {
|
||||
let input = "JBSWY3DPFQQFO33SNRSCC===\n";
|
||||
let input = "JBSWY3DPFQQFO33SNRSCC===\n"; // spell-checker:disable-line
|
||||
new_ucmd!()
|
||||
.arg(decode_param)
|
||||
.pipe_in(input)
|
||||
|
@ -46,7 +46,7 @@ fn test_decode() {
|
|||
|
||||
#[test]
|
||||
fn test_garbage() {
|
||||
let input = "aGVsbG8sIHdvcmxkIQ==\0";
|
||||
let input = "aGVsbG8sIHdvcmxkIQ==\0"; // spell-checker:disable-line
|
||||
new_ucmd!()
|
||||
.arg("-d")
|
||||
.pipe_in(input)
|
||||
|
@ -57,7 +57,7 @@ fn test_garbage() {
|
|||
#[test]
|
||||
fn test_ignore_garbage() {
|
||||
for ignore_garbage_param in &["-i", "--ignore-garbage"] {
|
||||
let input = "JBSWY\x013DPFQ\x02QFO33SNRSCC===\n";
|
||||
let input = "JBSWY\x013DPFQ\x02QFO33SNRSCC===\n"; // spell-checker:disable-line
|
||||
new_ucmd!()
|
||||
.arg("-d")
|
||||
.arg(ignore_garbage_param)
|
||||
|
@ -77,7 +77,7 @@ fn test_wrap() {
|
|||
.pipe_in(input)
|
||||
.succeeds()
|
||||
.stdout_only(
|
||||
"KRUGKIDROVUWG2ZAMJZG\n653OEBTG66BANJ2W24DT\nEBXXMZLSEB2GQZJANRQX\nU6JAMRXWOLQ=\n",
|
||||
"KRUGKIDROVUWG2ZAMJZG\n653OEBTG66BANJ2W24DT\nEBXXMZLSEB2GQZJANRQX\nU6JAMRXWOLQ=\n", // spell-checker:disable-line
|
||||
);
|
||||
}
|
||||
}
|
||||
|
|
|
@ -6,14 +6,14 @@ fn test_encode() {
|
|||
new_ucmd!()
|
||||
.pipe_in(input)
|
||||
.succeeds()
|
||||
.stdout_only("aGVsbG8sIHdvcmxkIQ==\n");
|
||||
.stdout_only("aGVsbG8sIHdvcmxkIQ==\n"); // spell-checker:disable-line
|
||||
|
||||
// Using '-' as our file
|
||||
new_ucmd!()
|
||||
.arg("-")
|
||||
.pipe_in(input)
|
||||
.succeeds()
|
||||
.stdout_only("aGVsbG8sIHdvcmxkIQ==\n");
|
||||
.stdout_only("aGVsbG8sIHdvcmxkIQ==\n"); // spell-checker:disable-line
|
||||
}
|
||||
|
||||
#[test]
|
||||
|
@ -21,13 +21,13 @@ fn test_base64_encode_file() {
|
|||
new_ucmd!()
|
||||
.arg("input-simple.txt")
|
||||
.succeeds()
|
||||
.stdout_only("SGVsbG8sIFdvcmxkIQo=\n");
|
||||
.stdout_only("SGVsbG8sIFdvcmxkIQo=\n"); // spell-checker:disable-line
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn test_decode() {
|
||||
for decode_param in &["-d", "--decode"] {
|
||||
let input = "aGVsbG8sIHdvcmxkIQ==";
|
||||
let input = "aGVsbG8sIHdvcmxkIQ=="; // spell-checker:disable-line
|
||||
new_ucmd!()
|
||||
.arg(decode_param)
|
||||
.pipe_in(input)
|
||||
|
@ -38,7 +38,7 @@ fn test_decode() {
|
|||
|
||||
#[test]
|
||||
fn test_garbage() {
|
||||
let input = "aGVsbG8sIHdvcmxkIQ==\0";
|
||||
let input = "aGVsbG8sIHdvcmxkIQ==\0"; // spell-checker:disable-line
|
||||
new_ucmd!()
|
||||
.arg("-d")
|
||||
.pipe_in(input)
|
||||
|
@ -49,7 +49,7 @@ fn test_garbage() {
|
|||
#[test]
|
||||
fn test_ignore_garbage() {
|
||||
for ignore_garbage_param in &["-i", "--ignore-garbage"] {
|
||||
let input = "aGVsbG8sIHdvcmxkIQ==\0";
|
||||
let input = "aGVsbG8sIHdvcmxkIQ==\0"; // spell-checker:disable-line
|
||||
new_ucmd!()
|
||||
.arg("-d")
|
||||
.arg(ignore_garbage_param)
|
||||
|
@ -68,6 +68,7 @@ fn test_wrap() {
|
|||
.arg("20")
|
||||
.pipe_in(input)
|
||||
.succeeds()
|
||||
// spell-checker:disable-next-line
|
||||
.stdout_only("VGhlIHF1aWNrIGJyb3du\nIGZveCBqdW1wcyBvdmVy\nIHRoZSBsYXp5IGRvZy4=\n");
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,3 +1,5 @@
|
|||
// spell-checker:ignore (words) reallylongexecutable
|
||||
|
||||
use crate::common::util::*;
|
||||
#[cfg(any(unix, target_os = "redox"))]
|
||||
use std::ffi::OsStr;
|
||||
|
@ -50,7 +52,7 @@ fn test_remove_suffix() {
|
|||
}
|
||||
|
||||
#[test]
|
||||
fn test_dont_remove_suffix() {
|
||||
fn test_do_not_remove_suffix() {
|
||||
new_ucmd!()
|
||||
.args(&["/foo/bar/baz", "baz"])
|
||||
.succeeds()
|
||||
|
@ -64,7 +66,7 @@ fn test_multiple_param() {
|
|||
new_ucmd!()
|
||||
.args(&[multiple_param, path, path])
|
||||
.succeeds()
|
||||
.stdout_only("baz\nbaz\n");
|
||||
.stdout_only("baz\nbaz\n"); // spell-checker:disable-line
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -75,7 +77,7 @@ fn test_suffix_param() {
|
|||
new_ucmd!()
|
||||
.args(&[suffix_param, ".exe", path, path])
|
||||
.succeeds()
|
||||
.stdout_only("baz\nbaz\n");
|
||||
.stdout_only("baz\nbaz\n"); // spell-checker:disable-line
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -9,11 +9,12 @@ fn test_output_simple() {
|
|||
new_ucmd!()
|
||||
.args(&["alpha.txt"])
|
||||
.succeeds()
|
||||
.stdout_only("abcde\nfghij\nklmno\npqrst\nuvwxyz\n");
|
||||
.stdout_only("abcde\nfghij\nklmno\npqrst\nuvwxyz\n"); // spell-checker:disable-line
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn test_no_options() {
|
||||
// spell-checker:disable-next-line
|
||||
for fixture in &["empty.txt", "alpha.txt", "nonewline.txt"] {
|
||||
// Give fixture through command line file argument
|
||||
new_ucmd!()
|
||||
|
@ -66,8 +67,8 @@ fn test_fifo_symlink() {
|
|||
assert!(s.fixtures.is_fifo("dir/pipe"));
|
||||
|
||||
// Make cat read the pipe through a symlink
|
||||
s.fixtures.symlink_file("dir/pipe", "sympipe");
|
||||
let proc = s.ucmd().args(&["sympipe"]).run_no_wait();
|
||||
s.fixtures.symlink_file("dir/pipe", "sympipe"); // spell-checker:disable-line
|
||||
let proc = s.ucmd().args(&["sympipe"]).run_no_wait(); // spell-checker:disable-line
|
||||
|
||||
let data = vec_of_size(128 * 1024);
|
||||
let data2 = data.clone();
|
||||
|
@ -110,7 +111,7 @@ fn test_piped_to_regular_file() {
|
|||
.succeeds();
|
||||
}
|
||||
let contents = read_to_string(&file_path).unwrap();
|
||||
assert_eq!(contents, "abcde\nfghij\nklmno\npqrst\nuvwxyz\n");
|
||||
assert_eq!(contents, "abcde\nfghij\nklmno\npqrst\nuvwxyz\n"); // spell-checker:disable-line
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -169,6 +170,7 @@ fn test_directory() {
|
|||
fn test_directory_and_file() {
|
||||
let s = TestScenario::new(util_name!());
|
||||
s.fixtures.mkdir("test_directory2");
|
||||
// spell-checker:disable-next-line
|
||||
for fixture in &["empty.txt", "alpha.txt", "nonewline.txt"] {
|
||||
s.ucmd()
|
||||
.args(&["test_directory2", fixture])
|
||||
|
@ -190,8 +192,8 @@ fn test_three_directories_and_file_and_stdin() {
|
|||
"test_directory3/test_directory4",
|
||||
"alpha.txt",
|
||||
"-",
|
||||
"filewhichdoesnotexist.txt",
|
||||
"nonewline.txt",
|
||||
"file_which_does_not_exist.txt",
|
||||
"nonewline.txt", // spell-checker:disable-line
|
||||
"test_directory3/test_directory5",
|
||||
"test_directory3/../test_directory3/test_directory5",
|
||||
"test_directory3",
|
||||
|
@ -200,12 +202,13 @@ fn test_three_directories_and_file_and_stdin() {
|
|||
.fails()
|
||||
.stderr_is_fixture("three_directories_and_file_and_stdin.stderr.expected")
|
||||
.stdout_is(
|
||||
"abcde\nfghij\nklmno\npqrst\nuvwxyz\nstdout bytestext without a trailing newline",
|
||||
"abcde\nfghij\nklmno\npqrst\nuvwxyz\nstdout bytestext without a trailing newline", // spell-checker:disable-line
|
||||
);
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn test_output_multi_files_print_all_chars() {
|
||||
// spell-checker:disable
|
||||
new_ucmd!()
|
||||
.args(&["alpha.txt", "256.txt", "-A", "-n"])
|
||||
.succeeds()
|
||||
|
@ -222,10 +225,12 @@ fn test_output_multi_files_print_all_chars() {
|
|||
M-VM-WM-XM-YM-ZM-[M-\\M-]M-^M-_M-`M-aM-bM-cM-dM-eM-fM-gM-hM-iM-jM-kM-lM-mM-nM-oM-\
|
||||
pM-qM-rM-sM-tM-uM-vM-wM-xM-yM-zM-{M-|M-}M-~M-^?",
|
||||
);
|
||||
// spell-checker:enable
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn test_numbered_lines_no_trailing_newline() {
|
||||
// spell-checker:disable
|
||||
new_ucmd!()
|
||||
.args(&["nonewline.txt", "alpha.txt", "-n"])
|
||||
.succeeds()
|
||||
|
@ -233,6 +238,7 @@ fn test_numbered_lines_no_trailing_newline() {
|
|||
" 1\ttext without a trailing newlineabcde\n 2\tfghij\n \
|
||||
3\tklmno\n 4\tpqrst\n 5\tuvwxyz\n",
|
||||
);
|
||||
// spell-checker:enable
|
||||
}
|
||||
|
||||
#[test]
|
||||
|
@ -310,6 +316,7 @@ fn test_stdin_squeeze_blank() {
|
|||
|
||||
#[test]
|
||||
fn test_stdin_number_non_blank() {
|
||||
// spell-checker:disable-next-line
|
||||
for same_param in &["-b", "--number-nonblank"] {
|
||||
new_ucmd!()
|
||||
.arg(same_param)
|
||||
|
@ -322,6 +329,7 @@ fn test_stdin_number_non_blank() {
|
|||
|
||||
#[test]
|
||||
fn test_non_blank_overrides_number() {
|
||||
// spell-checker:disable-next-line
|
||||
for &same_param in &["-b", "--number-nonblank"] {
|
||||
new_ucmd!()
|
||||
.args(&[same_param, "-"])
|
||||
|
|
|
@ -1,3 +1,5 @@
|
|||
// spell-checker:ignore (words) nosuchgroup
|
||||
|
||||
use crate::common::util::*;
|
||||
use rust_users::*;
|
||||
|
||||
|
|
|
@ -21,7 +21,7 @@ struct TestCase {
|
|||
after: u32,
|
||||
}
|
||||
|
||||
fn mkfile(file: &str, mode: u32) {
|
||||
fn make_file(file: &str, mode: u32) {
|
||||
OpenOptions::new()
|
||||
.mode(mode)
|
||||
.create(true)
|
||||
|
@ -34,7 +34,7 @@ fn mkfile(file: &str, mode: u32) {
|
|||
}
|
||||
|
||||
fn run_single_test(test: &TestCase, at: AtPath, mut ucmd: UCommand) {
|
||||
mkfile(&at.plus_as_string(TEST_FILE), test.before);
|
||||
make_file(&at.plus_as_string(TEST_FILE), test.before);
|
||||
let perms = at.metadata(TEST_FILE).permissions().mode();
|
||||
if perms != test.before {
|
||||
panic!(
|
||||
|
@ -123,6 +123,7 @@ fn test_chmod_octal() {
|
|||
|
||||
#[test]
|
||||
#[allow(clippy::unreadable_literal)]
|
||||
// spell-checker:disable-next-line
|
||||
fn test_chmod_ugoa() {
|
||||
let _guard = UMASK_MUTEX.lock();
|
||||
|
||||
|
@ -283,7 +284,7 @@ fn test_chmod_reference_file() {
|
|||
},
|
||||
];
|
||||
let (at, ucmd) = at_and_ucmd!();
|
||||
mkfile(&at.plus_as_string(REFERENCE_FILE), REFERENCE_PERMS);
|
||||
make_file(&at.plus_as_string(REFERENCE_FILE), REFERENCE_PERMS);
|
||||
run_single_test(&tests[0], at, ucmd);
|
||||
}
|
||||
|
||||
|
@ -318,10 +319,10 @@ fn test_chmod_recursive() {
|
|||
at.mkdir("a/b");
|
||||
at.mkdir("a/b/c");
|
||||
at.mkdir("z");
|
||||
mkfile(&at.plus_as_string("a/a"), 0o100444);
|
||||
mkfile(&at.plus_as_string("a/b/b"), 0o100444);
|
||||
mkfile(&at.plus_as_string("a/b/c/c"), 0o100444);
|
||||
mkfile(&at.plus_as_string("z/y"), 0o100444);
|
||||
make_file(&at.plus_as_string("a/a"), 0o100444);
|
||||
make_file(&at.plus_as_string("a/b/b"), 0o100444);
|
||||
make_file(&at.plus_as_string("a/b/c/c"), 0o100444);
|
||||
make_file(&at.plus_as_string("z/y"), 0o100444);
|
||||
|
||||
ucmd.arg("-R")
|
||||
.arg("--verbose")
|
||||
|
@ -351,9 +352,9 @@ fn test_chmod_non_existing_file() {
|
|||
.arg("-R")
|
||||
.arg("--verbose")
|
||||
.arg("-r,a+w")
|
||||
.arg("dont-exist")
|
||||
.arg("does-not-exist")
|
||||
.fails()
|
||||
.stderr_contains(&"cannot access 'dont-exist': No such file or directory");
|
||||
.stderr_contains(&"cannot access 'does-not-exist': No such file or directory");
|
||||
}
|
||||
|
||||
#[test]
|
||||
|
@ -432,6 +433,7 @@ fn test_chmod_symlink_non_existing_file_recursive() {
|
|||
.no_stdout();
|
||||
|
||||
let expected_stdout = &format!(
|
||||
// spell-checker:disable-next-line
|
||||
"mode of '{}' retained as 0755 (rwxr-xr-x)\nneither symbolic link '{}/{}' nor referent has been changed",
|
||||
test_directory, test_directory, test_symlink
|
||||
);
|
||||
|
@ -473,8 +475,8 @@ fn test_chmod_strip_minus_from_mode() {
|
|||
("chmod -c -R +w FILE ", "chmod -c -R +w FILE "),
|
||||
("chmod a=r,=xX FILE", "chmod a=r,=xX FILE"),
|
||||
(
|
||||
"chmod -v --reference RFILE -R FILE",
|
||||
"chmod -v --reference RFILE -R FILE",
|
||||
"chmod -v --reference REF_FILE -R FILE",
|
||||
"chmod -v --reference REF_FILE -R FILE",
|
||||
),
|
||||
("chmod -Rvc -w-x FILE", "chmod -Rvc w-x FILE"),
|
||||
("chmod 755 -v FILE", "chmod 755 -v FILE"),
|
||||
|
|
|
@ -1,3 +1,5 @@
|
|||
// spell-checker:ignore (words) agroupthatdoesntexist auserthatdoesntexist groupname notexisting passgrp
|
||||
|
||||
use crate::common::util::*;
|
||||
#[cfg(target_os = "linux")]
|
||||
use rust_users::get_effective_uid;
|
||||
|
|
|
@ -1,3 +1,5 @@
|
|||
// spell-checker:ignore (words) araba newroot userspec
|
||||
|
||||
use crate::common::util::*;
|
||||
|
||||
#[test]
|
||||
|
|
|
@ -1,3 +1,5 @@
|
|||
// spell-checker:ignore (words) asdf
|
||||
|
||||
use crate::common::util::*;
|
||||
|
||||
#[test]
|
||||
|
@ -40,7 +42,7 @@ fn test_empty() {
|
|||
#[test]
|
||||
fn test_arg_overrides_stdin() {
|
||||
let (at, mut ucmd) = at_and_ucmd!();
|
||||
let input = "foobarfoobar";
|
||||
let input = "foobarfoobar"; // spell-checker:disable-line
|
||||
|
||||
at.touch("a");
|
||||
|
||||
|
@ -78,17 +80,17 @@ fn test_invalid_file() {
|
|||
}
|
||||
|
||||
// Make sure crc is correct for files larger than 32 bytes
|
||||
// but <128 bytes (1 fold pclmul)
|
||||
// but <128 bytes (1 fold pclmul) // spell-checker:disable-line
|
||||
#[test]
|
||||
fn test_crc_for_bigger_than_32_bytes() {
|
||||
let (_, mut ucmd) = at_and_ucmd!();
|
||||
|
||||
let result = ucmd.arg("chars.txt").succeeds();
|
||||
|
||||
let mut stdout_splitted = result.stdout_str().split(' ');
|
||||
let mut stdout_split = result.stdout_str().split(' ');
|
||||
|
||||
let cksum: i64 = stdout_splitted.next().unwrap().parse().unwrap();
|
||||
let bytes_cnt: i64 = stdout_splitted.next().unwrap().parse().unwrap();
|
||||
let cksum: i64 = stdout_split.next().unwrap().parse().unwrap();
|
||||
let bytes_cnt: i64 = stdout_split.next().unwrap().parse().unwrap();
|
||||
|
||||
assert_eq!(cksum, 586_047_089);
|
||||
assert_eq!(bytes_cnt, 16);
|
||||
|
@ -100,10 +102,10 @@ fn test_stdin_larger_than_128_bytes() {
|
|||
|
||||
let result = ucmd.arg("larger_than_2056_bytes.txt").succeeds();
|
||||
|
||||
let mut stdout_splitted = result.stdout_str().split(' ');
|
||||
let mut stdout_split = result.stdout_str().split(' ');
|
||||
|
||||
let cksum: i64 = stdout_splitted.next().unwrap().parse().unwrap();
|
||||
let bytes_cnt: i64 = stdout_splitted.next().unwrap().parse().unwrap();
|
||||
let cksum: i64 = stdout_split.next().unwrap().parse().unwrap();
|
||||
let bytes_cnt: i64 = stdout_split.next().unwrap().parse().unwrap();
|
||||
|
||||
assert_eq!(cksum, 945_881_979);
|
||||
assert_eq!(bytes_cnt, 2058);
|
||||
|
|
|
@ -1,3 +1,5 @@
|
|||
// spell-checker:ignore (words) defaultcheck nocheck
|
||||
|
||||
use crate::common::util::*;
|
||||
|
||||
#[test]
|
||||
|
@ -33,19 +35,19 @@ fn ab_dash_three() {
|
|||
}
|
||||
|
||||
#[test]
|
||||
fn aempty() {
|
||||
fn a_empty() {
|
||||
new_ucmd!()
|
||||
.args(&["a", "empty"])
|
||||
.succeeds()
|
||||
.stdout_only_fixture("aempty.expected");
|
||||
.stdout_only_fixture("aempty.expected"); // spell-checker:disable-line
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn emptyempty() {
|
||||
fn empty_empty() {
|
||||
new_ucmd!()
|
||||
.args(&["empty", "empty"])
|
||||
.succeeds()
|
||||
.stdout_only_fixture("emptyempty.expected");
|
||||
.stdout_only_fixture("emptyempty.expected"); // spell-checker:disable-line
|
||||
}
|
||||
|
||||
#[cfg_attr(not(feature = "test_unimplemented"), ignore)]
|
||||
|
@ -68,8 +70,8 @@ fn output_delimiter_require_arg() {
|
|||
|
||||
// even though (info) documentation suggests this is an option
|
||||
// in latest GNU Coreutils comm, it actually is not.
|
||||
// this test is essentially an alarm in case someone well-intendingly
|
||||
// implements it.
|
||||
// this test is essentially an alarm in case some well-intending
|
||||
// developer implements it.
|
||||
//marked as unimplemented as error message not set yet.
|
||||
#[cfg_attr(not(feature = "test_unimplemented"), ignore)]
|
||||
#[test]
|
||||
|
|
|
@ -1,3 +1,5 @@
|
|||
// spell-checker:ignore (flags) reflink (fs) tmpfs
|
||||
|
||||
use crate::common::util::*;
|
||||
#[cfg(not(windows))]
|
||||
use std::fs::set_permissions;
|
||||
|
@ -926,7 +928,7 @@ fn test_cp_archive() {
|
|||
let (at, mut ucmd) = at_and_ucmd!();
|
||||
let ts = time::now().to_timespec();
|
||||
let previous = FileTime::from_unix_time(ts.sec as i64 - 3600, ts.nsec as u32);
|
||||
// set the file creation/modif an hour ago
|
||||
// set the file creation/modification an hour ago
|
||||
filetime::set_file_times(
|
||||
at.plus_as_string(TEST_HELLO_WORLD_SOURCE),
|
||||
previous,
|
||||
|
@ -1055,7 +1057,7 @@ fn test_cp_preserve_timestamps() {
|
|||
let (at, mut ucmd) = at_and_ucmd!();
|
||||
let ts = time::now().to_timespec();
|
||||
let previous = FileTime::from_unix_time(ts.sec as i64 - 3600, ts.nsec as u32);
|
||||
// set the file creation/modif an hour ago
|
||||
// set the file creation/modification an hour ago
|
||||
filetime::set_file_times(
|
||||
at.plus_as_string(TEST_HELLO_WORLD_SOURCE),
|
||||
previous,
|
||||
|
@ -1084,11 +1086,11 @@ fn test_cp_preserve_timestamps() {
|
|||
|
||||
#[test]
|
||||
#[cfg(target_os = "linux")]
|
||||
fn test_cp_dont_preserve_timestamps() {
|
||||
fn test_cp_no_preserve_timestamps() {
|
||||
let (at, mut ucmd) = at_and_ucmd!();
|
||||
let ts = time::now().to_timespec();
|
||||
let previous = FileTime::from_unix_time(ts.sec as i64 - 3600, ts.nsec as u32);
|
||||
// set the file creation/modif an hour ago
|
||||
// set the file creation/modification an hour ago
|
||||
filetime::set_file_times(
|
||||
at.plus_as_string(TEST_HELLO_WORLD_SOURCE),
|
||||
previous,
|
||||
|
@ -1181,7 +1183,7 @@ fn test_cp_one_file_system() {
|
|||
scene.cmd("umount").arg(mountpoint_path).succeeds();
|
||||
|
||||
assert!(!at_dst.file_exists(TEST_MOUNT_OTHER_FILESYSTEM_FILE));
|
||||
// Check if the other files were copied from the source folder hirerarchy
|
||||
// Check if the other files were copied from the source folder hierarchy
|
||||
for entry in WalkDir::new(at_src.as_string()) {
|
||||
let entry = entry.unwrap();
|
||||
let relative_src = entry
|
||||
|
|
|
@ -904,7 +904,7 @@ fn test_no_match() {
|
|||
}
|
||||
|
||||
#[test]
|
||||
fn test_too_small_linenum() {
|
||||
fn test_too_small_line_num() {
|
||||
let (at, mut ucmd) = at_and_ucmd!();
|
||||
ucmd.args(&["numbers50.txt", "/20/", "10", "/40/"])
|
||||
.succeeds()
|
||||
|
@ -921,7 +921,7 @@ fn test_too_small_linenum() {
|
|||
}
|
||||
|
||||
#[test]
|
||||
fn test_too_small_linenum_equal() {
|
||||
fn test_too_small_line_num_equal() {
|
||||
let (at, mut ucmd) = at_and_ucmd!();
|
||||
ucmd.args(&["numbers50.txt", "/20/", "20"])
|
||||
.succeeds()
|
||||
|
@ -937,7 +937,7 @@ fn test_too_small_linenum_equal() {
|
|||
}
|
||||
|
||||
#[test]
|
||||
fn test_too_small_linenum_elided() {
|
||||
fn test_too_small_line_num_elided() {
|
||||
let (at, mut ucmd) = at_and_ucmd!();
|
||||
ucmd.args(&["numbers50.txt", "-z", "/20/", "10", "/40/"])
|
||||
.succeeds()
|
||||
|
@ -953,7 +953,7 @@ fn test_too_small_linenum_elided() {
|
|||
}
|
||||
|
||||
#[test]
|
||||
fn test_too_small_linenum_negative_offset() {
|
||||
fn test_too_small_line_num_negative_offset() {
|
||||
let (at, mut ucmd) = at_and_ucmd!();
|
||||
ucmd.args(&["numbers50.txt", "/20/-5", "10", "/40/"])
|
||||
.succeeds()
|
||||
|
@ -970,7 +970,7 @@ fn test_too_small_linenum_negative_offset() {
|
|||
}
|
||||
|
||||
#[test]
|
||||
fn test_too_small_linenum_twice() {
|
||||
fn test_too_small_line_num_twice() {
|
||||
let (at, mut ucmd) = at_and_ucmd!();
|
||||
ucmd.args(&["numbers50.txt", "/20/", "10", "15", "/40/"])
|
||||
.succeeds()
|
||||
|
@ -988,7 +988,7 @@ fn test_too_small_linenum_twice() {
|
|||
}
|
||||
|
||||
#[test]
|
||||
fn test_too_small_linenum_repeat() {
|
||||
fn test_too_small_line_num_repeat() {
|
||||
let (at, mut ucmd) = at_and_ucmd!();
|
||||
ucmd.args(&["numbers50.txt", "/20/", "10", "{*}"])
|
||||
.fails()
|
||||
|
@ -1020,7 +1020,7 @@ fn test_too_small_linenum_repeat() {
|
|||
}
|
||||
|
||||
#[test]
|
||||
fn test_linenum_out_of_range1() {
|
||||
fn test_line_num_out_of_range1() {
|
||||
let (at, mut ucmd) = at_and_ucmd!();
|
||||
ucmd.args(&["numbers50.txt", "100"])
|
||||
.fails()
|
||||
|
@ -1046,7 +1046,7 @@ fn test_linenum_out_of_range1() {
|
|||
}
|
||||
|
||||
#[test]
|
||||
fn test_linenum_out_of_range2() {
|
||||
fn test_line_num_out_of_range2() {
|
||||
let (at, mut ucmd) = at_and_ucmd!();
|
||||
ucmd.args(&["numbers50.txt", "10", "100"])
|
||||
.fails()
|
||||
|
@ -1073,7 +1073,7 @@ fn test_linenum_out_of_range2() {
|
|||
}
|
||||
|
||||
#[test]
|
||||
fn test_linenum_out_of_range3() {
|
||||
fn test_line_num_out_of_range3() {
|
||||
let (at, mut ucmd) = at_and_ucmd!();
|
||||
ucmd.args(&["numbers50.txt", "40", "{2}"])
|
||||
.fails()
|
||||
|
@ -1100,7 +1100,7 @@ fn test_linenum_out_of_range3() {
|
|||
}
|
||||
|
||||
#[test]
|
||||
fn test_linenum_out_of_range4() {
|
||||
fn test_line_num_out_of_range4() {
|
||||
let (at, mut ucmd) = at_and_ucmd!();
|
||||
ucmd.args(&["numbers50.txt", "40", "{*}"])
|
||||
.fails()
|
||||
|
@ -1141,7 +1141,7 @@ fn test_skip_to_match_negative_offset_before_a_match() {
|
|||
}
|
||||
|
||||
#[test]
|
||||
fn test_skip_to_match_negative_offset_before_a_linenum() {
|
||||
fn test_skip_to_match_negative_offset_before_a_line_num() {
|
||||
let (at, mut ucmd) = at_and_ucmd!();
|
||||
ucmd.args(&["numbers50.txt", "/20/-10", "15"])
|
||||
.succeeds()
|
||||
|
@ -1247,7 +1247,7 @@ fn test_up_to_match_context_underflow() {
|
|||
// the offset is out of range because of the first pattern
|
||||
// NOTE: output different than gnu's: the empty split is written but the rest of the input file is not
|
||||
#[test]
|
||||
fn test_linenum_range_with_up_to_match1() {
|
||||
fn test_line_num_range_with_up_to_match1() {
|
||||
let (at, mut ucmd) = at_and_ucmd!();
|
||||
ucmd.args(&["numbers50.txt", "10", "/12/-5"])
|
||||
.fails()
|
||||
|
@ -1277,7 +1277,7 @@ fn test_linenum_range_with_up_to_match1() {
|
|||
// the offset is out of range because more lines are needed than physically available
|
||||
// NOTE: output different than gnu's: the empty split is not written but the rest of the input file is
|
||||
#[test]
|
||||
fn test_linenum_range_with_up_to_match2() {
|
||||
fn test_line_num_range_with_up_to_match2() {
|
||||
let (at, mut ucmd) = at_and_ucmd!();
|
||||
ucmd.args(&["numbers50.txt", "10", "/12/-15"])
|
||||
.fails()
|
||||
|
@ -1306,7 +1306,7 @@ fn test_linenum_range_with_up_to_match2() {
|
|||
|
||||
// NOTE: output different than gnu's: the pattern /10/ is matched but should not
|
||||
#[test]
|
||||
fn test_linenum_range_with_up_to_match3() {
|
||||
fn test_line_num_range_with_up_to_match3() {
|
||||
let (at, mut ucmd) = at_and_ucmd!();
|
||||
ucmd.args(&["numbers50.txt", "10", "/10/", "-k"])
|
||||
.fails()
|
||||
|
|
|
@ -181,7 +181,7 @@ fn test_date_set_valid_2() {
|
|||
if get_effective_uid() == 0 {
|
||||
let result = new_ucmd!()
|
||||
.arg("--set")
|
||||
.arg("Sat 20 Mar 2021 14:53:01 AWST")
|
||||
.arg("Sat 20 Mar 2021 14:53:01 AWST") // spell-checker:disable-line
|
||||
.fails();
|
||||
result.no_stdout();
|
||||
assert!(result.stderr_str().starts_with("date: invalid date "));
|
||||
|
|
|
@ -30,14 +30,14 @@ fn test_shell_syntax() {
|
|||
}
|
||||
|
||||
#[test]
|
||||
fn test_strutils() {
|
||||
fn test_str_utils() {
|
||||
let s = " asd#zcv #hk\t\n ";
|
||||
assert_eq!("asd#zcv", s.purify());
|
||||
|
||||
let s = "con256asd";
|
||||
assert!(s.fnmatch("*[2][3-6][5-9]?sd"));
|
||||
assert!(s.fnmatch("*[2][3-6][5-9]?sd")); // spell-checker:disable-line
|
||||
|
||||
let s = "zxc \t\nqwe jlk hjl";
|
||||
let s = "zxc \t\nqwe jlk hjl"; // spell-checker:disable-line
|
||||
let (k, v) = s.split_two();
|
||||
assert_eq!("zxc", k);
|
||||
assert_eq!("qwe jlk hjl", v);
|
||||
|
|
|
@ -1,3 +1,5 @@
|
|||
// spell-checker:ignore (paths) sublink subwords
|
||||
|
||||
use crate::common::util::*;
|
||||
|
||||
const SUB_DIR: &str = "subdir/deeper";
|
||||
|
|
|
@ -1,3 +1,5 @@
|
|||
// spell-checker:ignore (words) araba merci
|
||||
|
||||
use crate::common::util::*;
|
||||
|
||||
#[test]
|
||||
|
@ -185,9 +187,9 @@ fn test_multiple_hyphen_values() {
|
|||
#[test]
|
||||
fn test_hyphen_values_inside_string() {
|
||||
new_ucmd!()
|
||||
.arg("'\"\n'CXXFLAGS=-g -O2'\n\"'")
|
||||
.arg("'\"\n'CXXFLAGS=-g -O2'\n\"'") // spell-checker:disable-line
|
||||
.succeeds()
|
||||
.stdout_contains("CXXFLAGS");
|
||||
.stdout_contains("CXXFLAGS"); // spell-checker:disable-line
|
||||
}
|
||||
|
||||
#[test]
|
||||
|
|
|
@ -1,3 +1,5 @@
|
|||
// spell-checker:ignore (words) bamf chdir
|
||||
|
||||
#[cfg(not(windows))]
|
||||
use std::fs;
|
||||
|
||||
|
|
|
@ -6,6 +6,8 @@
|
|||
// that was distributed with this source code.
|
||||
#![allow(clippy::unreadable_literal)]
|
||||
|
||||
// spell-checker:ignore (methods) hexdigest
|
||||
|
||||
use crate::common::util::*;
|
||||
use std::time::SystemTime;
|
||||
|
||||
|
@ -27,13 +29,13 @@ fn test_first_100000_integers() {
|
|||
extern crate sha1;
|
||||
|
||||
let n_integers = 100_000;
|
||||
let mut instring = String::new();
|
||||
let mut input_string = String::new();
|
||||
for i in 0..=n_integers {
|
||||
instring.push_str(&(format!("{} ", i))[..]);
|
||||
input_string.push_str(&(format!("{} ", i))[..]);
|
||||
}
|
||||
|
||||
println!("STDIN='{}'", instring);
|
||||
let result = new_ucmd!().pipe_in(instring.as_bytes()).succeeds();
|
||||
println!("STDIN='{}'", input_string);
|
||||
let result = new_ucmd!().pipe_in(input_string.as_bytes()).succeeds();
|
||||
|
||||
// `seq 0 100000 | factor | sha1sum` => "4ed2d8403934fa1c76fe4b84c5d4b8850299c359"
|
||||
let hash_check = sha1::Sha1::from(result.stdout()).hexdigest();
|
||||
|
@ -95,20 +97,20 @@ fn test_random() {
|
|||
};
|
||||
|
||||
// build an input and expected output string from factor
|
||||
let mut instring = String::new();
|
||||
let mut outstring = String::new();
|
||||
let mut input_string = String::new();
|
||||
let mut output_string = String::new();
|
||||
for _ in 0..NUM_TESTS {
|
||||
let (product, factors) = rand_gt(1 << 63);
|
||||
instring.push_str(&(format!("{} ", product))[..]);
|
||||
input_string.push_str(&(format!("{} ", product))[..]);
|
||||
|
||||
outstring.push_str(&(format!("{}:", product))[..]);
|
||||
output_string.push_str(&(format!("{}:", product))[..]);
|
||||
for factor in factors {
|
||||
outstring.push_str(&(format!(" {}", factor))[..]);
|
||||
output_string.push_str(&(format!(" {}", factor))[..]);
|
||||
}
|
||||
outstring.push('\n');
|
||||
output_string.push('\n');
|
||||
}
|
||||
|
||||
run(instring.as_bytes(), outstring.as_bytes());
|
||||
run(input_string.as_bytes(), output_string.as_bytes());
|
||||
}
|
||||
|
||||
#[test]
|
||||
|
@ -120,30 +122,30 @@ fn test_random_big() {
|
|||
println!("rng_seed={:?}", rng_seed);
|
||||
let mut rng = SmallRng::seed_from_u64(rng_seed);
|
||||
|
||||
let bitrange_1 = Uniform::new(14_usize, 51);
|
||||
let bit_range_1 = Uniform::new(14_usize, 51);
|
||||
let mut rand_64 = move || {
|
||||
// first, choose a random number of bits for the first factor
|
||||
let f_bit_1 = bitrange_1.sample(&mut rng);
|
||||
let f_bit_1 = bit_range_1.sample(&mut rng);
|
||||
// how many more bits do we need?
|
||||
let rem = 64 - f_bit_1;
|
||||
|
||||
// we will have a number of additional factors equal to nfacts + 1
|
||||
// where nfacts is in [0, floor(rem/14) ) NOTE half-open interval
|
||||
// we will have a number of additional factors equal to n_facts + 1
|
||||
// where n_facts is in [0, floor(rem/14) ) NOTE half-open interval
|
||||
// Each prime factor is at least 14 bits, hence floor(rem/14)
|
||||
let nfacts = Uniform::new(0_usize, rem / 14).sample(&mut rng);
|
||||
// we have to distribute extrabits among the (nfacts + 1) values
|
||||
let extrabits = rem - (nfacts + 1) * 14;
|
||||
let n_factors = Uniform::new(0_usize, rem / 14).sample(&mut rng);
|
||||
// we have to distribute extra_bits among the (n_facts + 1) values
|
||||
let extra_bits = rem - (n_factors + 1) * 14;
|
||||
// (remember, a Range is a half-open interval)
|
||||
let extrarange = Uniform::new(0_usize, extrabits + 1);
|
||||
let extra_range = Uniform::new(0_usize, extra_bits + 1);
|
||||
|
||||
// to generate an even split of this range, generate n-1 random elements
|
||||
// in the range, add the desired total value to the end, sort this list,
|
||||
// and then compute the sequential differences.
|
||||
let mut f_bits = Vec::new();
|
||||
for _ in 0..nfacts {
|
||||
f_bits.push(extrarange.sample(&mut rng));
|
||||
for _ in 0..n_factors {
|
||||
f_bits.push(extra_range.sample(&mut rng));
|
||||
}
|
||||
f_bits.push(extrabits);
|
||||
f_bits.push(extra_bits);
|
||||
f_bits.sort_unstable();
|
||||
|
||||
// compute sequential differences here. We leave off the +14 bits
|
||||
|
@ -160,59 +162,62 @@ fn test_random_big() {
|
|||
f_bits.push(f_bit_1 - 14); // index of f_bit_1 in PRIMES_BY_BITS
|
||||
let f_bits = f_bits;
|
||||
|
||||
let mut nbits = 0;
|
||||
let mut n_bits = 0;
|
||||
let mut product = 1_u64;
|
||||
let mut factors = Vec::new();
|
||||
for bit in f_bits {
|
||||
assert!(bit < 37);
|
||||
nbits += 14 + bit;
|
||||
n_bits += 14 + bit;
|
||||
let elm = Uniform::new(0, PRIMES_BY_BITS[bit].len()).sample(&mut rng);
|
||||
let factor = PRIMES_BY_BITS[bit][elm];
|
||||
factors.push(factor);
|
||||
product *= factor;
|
||||
}
|
||||
assert_eq!(nbits, 64);
|
||||
assert_eq!(n_bits, 64);
|
||||
|
||||
factors.sort_unstable();
|
||||
(product, factors)
|
||||
};
|
||||
|
||||
let mut instring = String::new();
|
||||
let mut outstring = String::new();
|
||||
let mut input_string = String::new();
|
||||
let mut output_string = String::new();
|
||||
for _ in 0..NUM_TESTS {
|
||||
let (product, factors) = rand_64();
|
||||
instring.push_str(&(format!("{} ", product))[..]);
|
||||
input_string.push_str(&(format!("{} ", product))[..]);
|
||||
|
||||
outstring.push_str(&(format!("{}:", product))[..]);
|
||||
output_string.push_str(&(format!("{}:", product))[..]);
|
||||
for factor in factors {
|
||||
outstring.push_str(&(format!(" {}", factor))[..]);
|
||||
output_string.push_str(&(format!(" {}", factor))[..]);
|
||||
}
|
||||
outstring.push('\n');
|
||||
output_string.push('\n');
|
||||
}
|
||||
|
||||
run(instring.as_bytes(), outstring.as_bytes());
|
||||
run(input_string.as_bytes(), output_string.as_bytes());
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn test_big_primes() {
|
||||
let mut instring = String::new();
|
||||
let mut outstring = String::new();
|
||||
let mut input_string = String::new();
|
||||
let mut output_string = String::new();
|
||||
for prime in PRIMES64 {
|
||||
instring.push_str(&(format!("{} ", prime))[..]);
|
||||
outstring.push_str(&(format!("{0}: {0}\n", prime))[..]);
|
||||
input_string.push_str(&(format!("{} ", prime))[..]);
|
||||
output_string.push_str(&(format!("{0}: {0}\n", prime))[..]);
|
||||
}
|
||||
|
||||
run(instring.as_bytes(), outstring.as_bytes());
|
||||
run(input_string.as_bytes(), output_string.as_bytes());
|
||||
}
|
||||
|
||||
fn run(instring: &[u8], outstring: &[u8]) {
|
||||
println!("STDIN='{}'", String::from_utf8_lossy(instring));
|
||||
println!("STDOUT(expected)='{}'", String::from_utf8_lossy(outstring));
|
||||
fn run(input_string: &[u8], output_string: &[u8]) {
|
||||
println!("STDIN='{}'", String::from_utf8_lossy(input_string));
|
||||
println!(
|
||||
"STDOUT(expected)='{}'",
|
||||
String::from_utf8_lossy(output_string)
|
||||
);
|
||||
// now run factor
|
||||
new_ucmd!()
|
||||
.pipe_in(instring)
|
||||
.pipe_in(input_string)
|
||||
.run()
|
||||
.stdout_is(String::from_utf8(outstring.to_owned()).unwrap());
|
||||
.stdout_is(String::from_utf8(output_string.to_owned()).unwrap());
|
||||
}
|
||||
|
||||
const PRIMES_BY_BITS: &[&[u64]] = &[
|
||||
|
|
|
@ -282,7 +282,7 @@ fn test_backspace_is_not_word_boundary() {
|
|||
.args(&["-w10", "-s"])
|
||||
.pipe_in("foobar\x086789abcdef")
|
||||
.succeeds()
|
||||
.stdout_is("foobar\x086789a\nbcdef");
|
||||
.stdout_is("foobar\x086789a\nbcdef"); // spell-checker:disable-line
|
||||
}
|
||||
|
||||
#[test]
|
||||
|
@ -291,7 +291,7 @@ fn test_carriage_return_should_be_preserved() {
|
|||
}
|
||||
|
||||
#[test]
|
||||
fn test_carriage_return_overwrriten_char_should_be_preserved() {
|
||||
fn test_carriage_return_overwritten_char_should_be_preserved() {
|
||||
new_ucmd!().pipe_in("x\ry").succeeds().stdout_is("x\ry");
|
||||
}
|
||||
|
||||
|
@ -308,9 +308,9 @@ fn test_carriage_return_should_reset_column_count() {
|
|||
fn test_carriage_return_is_not_word_boundary() {
|
||||
new_ucmd!()
|
||||
.args(&["-w6", "-s"])
|
||||
.pipe_in("fizz\rbuzz\rfizzbuzz")
|
||||
.pipe_in("fizz\rbuzz\rfizzbuzz") // spell-checker:disable-line
|
||||
.succeeds()
|
||||
.stdout_is("fizz\rbuzz\rfizzbu\nzz");
|
||||
.stdout_is("fizz\rbuzz\rfizzbu\nzz"); // spell-checker:disable-line
|
||||
}
|
||||
|
||||
//
|
||||
|
@ -496,7 +496,7 @@ fn test_bytewise_backspace_is_not_word_boundary() {
|
|||
.args(&["-w10", "-s", "-b"])
|
||||
.pipe_in("foobar\x0889abcdef")
|
||||
.succeeds()
|
||||
.stdout_is("foobar\x0889a\nbcdef");
|
||||
.stdout_is("foobar\x0889a\nbcdef"); // spell-checker:disable-line
|
||||
}
|
||||
|
||||
#[test]
|
||||
|
@ -509,7 +509,7 @@ fn test_bytewise_carriage_return_should_be_preserved() {
|
|||
}
|
||||
|
||||
#[test]
|
||||
fn test_bytewise_carriage_return_overwrriten_char_should_be_preserved() {
|
||||
fn test_bytewise_carriage_return_overwritten_char_should_be_preserved() {
|
||||
new_ucmd!()
|
||||
.arg("-b")
|
||||
.pipe_in("x\ry")
|
||||
|
@ -530,9 +530,9 @@ fn test_bytewise_carriage_return_should_not_reset_column_count() {
|
|||
fn test_bytewise_carriage_return_is_not_word_boundary() {
|
||||
new_ucmd!()
|
||||
.args(&["-w6", "-s", "-b"])
|
||||
.pipe_in("fizz\rbuzz\rfizzbuzz")
|
||||
.pipe_in("fizz\rbuzz\rfizzbuzz") // spell-checker:disable-line
|
||||
.succeeds()
|
||||
.stdout_is("fizz\rb\nuzz\rfi\nzzbuzz");
|
||||
.stdout_is("fizz\rb\nuzz\rfi\nzzbuzz"); // spell-checker:disable-line
|
||||
}
|
||||
#[test]
|
||||
fn test_obsolete_syntax() {
|
||||
|
|
|
@ -1,3 +1,5 @@
|
|||
// spell-checker:ignore (words) bogusfile emptyfile
|
||||
|
||||
use crate::common::util::*;
|
||||
|
||||
static INPUT: &str = "lorem_ipsum.txt";
|
||||
|
|
|
@ -1,3 +1,5 @@
|
|||
// spell-checker:ignore (words) helloworld objdump
|
||||
|
||||
use crate::common::util::*;
|
||||
use filetime::FileTime;
|
||||
use rust_users::*;
|
||||
|
|
|
@ -1,3 +1,5 @@
|
|||
// spell-checker:ignore (words) autoformat
|
||||
|
||||
use crate::common::util::*;
|
||||
|
||||
#[test]
|
||||
|
@ -141,7 +143,7 @@ fn new_line_separated() {
|
|||
}
|
||||
|
||||
#[test]
|
||||
fn multitab_character() {
|
||||
fn tab_multi_character() {
|
||||
new_ucmd!()
|
||||
.arg("semicolon_fields_1.txt")
|
||||
.arg("semicolon_fields_2.txt")
|
||||
|
|
|
@ -79,9 +79,10 @@ fn test_kill_list_one_signal_from_name() {
|
|||
|
||||
#[test]
|
||||
fn test_kill_set_bad_signal_name() {
|
||||
// spell-checker:disable-line
|
||||
new_ucmd!()
|
||||
.arg("-s")
|
||||
.arg("IAMNOTASIGNAL")
|
||||
.arg("IAMNOTASIGNAL") // spell-checker:disable-line
|
||||
.fails()
|
||||
.stderr_contains("unknown signal");
|
||||
}
|
||||
|
|
|
@ -65,10 +65,10 @@ fn test_symlink_circular() {
|
|||
}
|
||||
|
||||
#[test]
|
||||
fn test_symlink_dont_overwrite() {
|
||||
fn test_symlink_do_not_overwrite() {
|
||||
let (at, mut ucmd) = at_and_ucmd!();
|
||||
let file = "test_symlink_dont_overwrite";
|
||||
let link = "test_symlink_dont_overwrite_link";
|
||||
let file = "test_symlink_do_not_overwrite";
|
||||
let link = "test_symlink_do_not_overwrite_link";
|
||||
|
||||
at.touch(file);
|
||||
at.touch(link);
|
||||
|
@ -120,7 +120,7 @@ fn test_symlink_interactive() {
|
|||
scene
|
||||
.ucmd()
|
||||
.args(&["-i", "-s", file, link])
|
||||
.pipe_in("Yesh")
|
||||
.pipe_in("Yesh") // spell-checker:disable-line
|
||||
.succeeds()
|
||||
.no_stderr();
|
||||
|
||||
|
|
|
@ -1,3 +1,5 @@
|
|||
// spell-checker:ignore (words) READMECAREFULLY birthtime doesntexist oneline somebackup somefile somegroup somehiddenbackup somehiddenfile
|
||||
|
||||
#[cfg(unix)]
|
||||
extern crate unix_socket;
|
||||
use crate::common::util::*;
|
||||
|
@ -939,7 +941,7 @@ fn test_ls_color() {
|
|||
|
||||
let a_with_colors = "\x1b[1;34ma\x1b[0m";
|
||||
let z_with_colors = "\x1b[1;34mz\x1b[0m";
|
||||
let nested_dir_with_colors = "\x1b[1;34mnested_dir\x1b[0m";
|
||||
let nested_dir_with_colors = "\x1b[1;34mnested_dir\x1b[0m"; // spell-checker:disable-line
|
||||
|
||||
// Color is disabled by default
|
||||
let result = scene.ucmd().succeeds();
|
||||
|
|
|
@ -1,3 +1,5 @@
|
|||
// spell-checker:ignore (words) gpghome
|
||||
|
||||
use crate::common::util::*;
|
||||
|
||||
use std::path::PathBuf;
|
||||
|
@ -8,8 +10,8 @@ static TEST_TEMPLATE2: &str = "temp";
|
|||
static TEST_TEMPLATE3: &str = "tempX";
|
||||
static TEST_TEMPLATE4: &str = "tempXX";
|
||||
static TEST_TEMPLATE5: &str = "tempXXX";
|
||||
static TEST_TEMPLATE6: &str = "tempXXXlate";
|
||||
static TEST_TEMPLATE7: &str = "XXXtemplate";
|
||||
static TEST_TEMPLATE6: &str = "tempXXXlate"; // spell-checker:disable-line
|
||||
static TEST_TEMPLATE7: &str = "XXXtemplate"; // spell-checker:disable-line
|
||||
#[cfg(unix)]
|
||||
static TEST_TEMPLATE8: &str = "tempXXXl/ate";
|
||||
#[cfg(windows)]
|
||||
|
|
|
@ -5,12 +5,13 @@ fn test_more_no_arg() {
|
|||
// Reading from stdin is now supported, so this must succeed
|
||||
if atty::is(atty::Stream::Stdout) {
|
||||
new_ucmd!().succeeds();
|
||||
} else {}
|
||||
} else {
|
||||
}
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn test_more_dir_arg() {
|
||||
// Run the test only if there's a valud terminal, else do nothing
|
||||
// Run the test only if there's a valid terminal, else do nothing
|
||||
// Maybe we could capture the error, i.e. "Device not found" in that case
|
||||
// but I am leaving this for later
|
||||
if atty::is(atty::Stream::Stdout) {
|
||||
|
@ -19,5 +20,6 @@ fn test_more_dir_arg() {
|
|||
const EXPECTED_ERROR_MESSAGE: &str =
|
||||
"more: '.' is a directory.\nTry 'more --help' for more information.";
|
||||
assert_eq!(result.stderr_str().trim(), EXPECTED_ERROR_MESSAGE);
|
||||
} else {}
|
||||
} else {
|
||||
}
|
||||
}
|
||||
|
|
|
@ -171,7 +171,7 @@ fn test_mv_interactive() {
|
|||
.arg("-i")
|
||||
.arg(file_a)
|
||||
.arg(file_b)
|
||||
.pipe_in("Yesh")
|
||||
.pipe_in("Yesh") // spell-checker:disable-line
|
||||
.succeeds()
|
||||
.no_stderr();
|
||||
|
||||
|
|
|
@ -17,7 +17,7 @@ fn test_negative_adjustment() {
|
|||
let res = new_ucmd!().args(&["-n", "-1", "true"]).run();
|
||||
assert!(res
|
||||
.stderr_str()
|
||||
.starts_with("nice: warning: setpriority: Permission denied"));
|
||||
.starts_with("nice: warning: setpriority: Permission denied")); // spell-checker:disable-line
|
||||
}
|
||||
|
||||
#[test]
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
use crate::common::util::*;
|
||||
|
||||
#[test]
|
||||
fn test_stdin_nonewline() {
|
||||
fn test_stdin_no_newline() {
|
||||
new_ucmd!()
|
||||
.pipe_in("No Newline")
|
||||
.run()
|
||||
|
@ -41,6 +41,7 @@ fn test_padding_with_overflow() {
|
|||
|
||||
#[test]
|
||||
fn test_sections_and_styles() {
|
||||
// spell-checker:disable
|
||||
for &(fixture, output) in &[
|
||||
(
|
||||
"section.txt",
|
||||
|
@ -63,4 +64,5 @@ fn test_sections_and_styles() {
|
|||
.run()
|
||||
.stdout_is(output);
|
||||
}
|
||||
// spell-checker:enable
|
||||
}
|
||||
|
|
|
@ -1,3 +1,5 @@
|
|||
// spell-checker:ignore (paths) gnutest
|
||||
|
||||
use crate::common::util::*;
|
||||
|
||||
#[test]
|
||||
|
@ -231,7 +233,7 @@ fn test_should_skip_leading_space_from_stdin() {
|
|||
.run()
|
||||
.stdout_is("2048\n");
|
||||
|
||||
// multiline
|
||||
// multi-line
|
||||
new_ucmd!()
|
||||
.args(&["--from=auto"])
|
||||
.pipe_in("\t1Ki\n 2K")
|
||||
|
|
|
@ -8,7 +8,7 @@ use std::fs::File;
|
|||
use std::io::Write;
|
||||
use std::path::Path;
|
||||
|
||||
// octal dump of 'abcdefghijklmnopqrstuvwxyz\n'
|
||||
// octal dump of 'abcdefghijklmnopqrstuvwxyz\n' // spell-checker:disable-line
|
||||
static ALPHA_OUT: &str = "
|
||||
0000000 061141 062143 063145 064147 065151 066153 067155 070157
|
||||
0000020 071161 072163 073165 074167 075171 000012
|
||||
|
@ -16,7 +16,7 @@ static ALPHA_OUT: &str = "
|
|||
";
|
||||
|
||||
// XXX We could do a better job of ensuring that we have a fresh temp dir to ourselves,
|
||||
// not a general one full of other proc's leftovers.
|
||||
// not a general one full of other process leftovers.
|
||||
|
||||
// Test that od can read one file and dump with default format
|
||||
#[test]
|
||||
|
@ -29,6 +29,7 @@ fn test_file() {
|
|||
|
||||
{
|
||||
let mut f = File::create(&file).unwrap();
|
||||
// spell-checker:disable-next-line
|
||||
if f.write_all(b"abcdefghijklmnopqrstuvwxyz\n").is_err() {
|
||||
panic!("Test setup failed - could not write file");
|
||||
}
|
||||
|
@ -55,6 +56,7 @@ fn test_2files() {
|
|||
println!("number: {} letter:{}", n, a);
|
||||
}
|
||||
|
||||
// spell-checker:disable-next-line
|
||||
for &(path, data) in &[(&file1, "abcdefghijklmnop"), (&file2, "qrstuvwxyz\n")] {
|
||||
let mut f = File::create(&path).unwrap();
|
||||
if f.write_all(data.as_bytes()).is_err() {
|
||||
|
@ -79,7 +81,7 @@ fn test_2files() {
|
|||
fn test_no_file() {
|
||||
let temp = env::temp_dir();
|
||||
let tmpdir = Path::new(&temp);
|
||||
let file = tmpdir.join("}surely'none'would'thus'a'file'name");
|
||||
let file = tmpdir.join("}surely'none'would'thus'a'file'name"); // spell-checker:disable-line
|
||||
|
||||
new_ucmd!().arg(file.as_os_str()).fails();
|
||||
}
|
||||
|
@ -87,7 +89,7 @@ fn test_no_file() {
|
|||
// Test that od reads from stdin instead of a file
|
||||
#[test]
|
||||
fn test_from_stdin() {
|
||||
let input = "abcdefghijklmnopqrstuvwxyz\n";
|
||||
let input = "abcdefghijklmnopqrstuvwxyz\n"; // spell-checker:disable-line
|
||||
new_ucmd!()
|
||||
.arg("--endian=little")
|
||||
.run_piped_stdin(input.as_bytes())
|
||||
|
@ -104,6 +106,7 @@ fn test_from_mixed() {
|
|||
let file1 = tmpdir.join("test-1");
|
||||
let file3 = tmpdir.join("test-3");
|
||||
|
||||
// spell-checker:disable-next-line
|
||||
let (data1, data2, data3) = ("abcdefg", "hijklmnop", "qrstuvwxyz\n");
|
||||
for &(path, data) in &[(&file1, data1), (&file3, data3)] {
|
||||
let mut f = File::create(&path).unwrap();
|
||||
|
@ -125,7 +128,7 @@ fn test_from_mixed() {
|
|||
|
||||
#[test]
|
||||
fn test_multiple_formats() {
|
||||
let input = "abcdefghijklmnopqrstuvwxyz\n";
|
||||
let input = "abcdefghijklmnopqrstuvwxyz\n"; // spell-checker:disable-line
|
||||
new_ucmd!()
|
||||
.arg("-c")
|
||||
.arg("-b")
|
||||
|
@ -145,6 +148,7 @@ fn test_multiple_formats() {
|
|||
|
||||
#[test]
|
||||
fn test_dec() {
|
||||
// spell-checker:ignore (words) 0xffu8 xffu
|
||||
let input = [
|
||||
0u8, 0u8, 1u8, 0u8, 2u8, 0u8, 3u8, 0u8, 0xffu8, 0x7fu8, 0x00u8, 0x80u8, 0x01u8, 0x80u8,
|
||||
];
|
||||
|
@ -166,12 +170,14 @@ fn test_dec() {
|
|||
#[test]
|
||||
fn test_hex16() {
|
||||
let input: [u8; 9] = [0x01, 0x23, 0x45, 0x67, 0x89, 0xab, 0xcd, 0xef, 0xff];
|
||||
// spell-checker:disable
|
||||
let expected_output = unindent(
|
||||
"
|
||||
0000000 2301 6745 ab89 efcd 00ff
|
||||
0000011
|
||||
",
|
||||
);
|
||||
// spell-checker:enable
|
||||
new_ucmd!()
|
||||
.arg("--endian=little")
|
||||
.arg("-x")
|
||||
|
@ -288,7 +294,7 @@ fn test_multibyte() {
|
|||
new_ucmd!()
|
||||
.arg("-c")
|
||||
.arg("-w12")
|
||||
.run_piped_stdin("Universität Tübingen \u{1B000}".as_bytes())
|
||||
.run_piped_stdin("Universität Tübingen \u{1B000}".as_bytes()) // spell-checker:disable-line
|
||||
.success()
|
||||
.no_stderr()
|
||||
.stdout_is(unindent(
|
||||
|
@ -487,7 +493,7 @@ fn test_alignment_Fx() {
|
|||
}
|
||||
|
||||
#[test]
|
||||
fn test_maxuint() {
|
||||
fn test_max_uint() {
|
||||
let input = [0xFFu8; 8];
|
||||
let expected_output = unindent(
|
||||
"
|
||||
|
@ -505,7 +511,7 @@ fn test_maxuint() {
|
|||
|
||||
new_ucmd!()
|
||||
.arg("--format=o8")
|
||||
.arg("-Oobtu8")
|
||||
.arg("-Oobtu8") // spell-checker:disable-line
|
||||
.arg("-Dd")
|
||||
.arg("--format=u1")
|
||||
.run_piped_stdin(&input[..])
|
||||
|
@ -583,7 +589,7 @@ fn test_invalid_offset() {
|
|||
|
||||
#[test]
|
||||
fn test_skip_bytes() {
|
||||
let input = "abcdefghijklmnopq";
|
||||
let input = "abcdefghijklmnopq"; // spell-checker:disable-line
|
||||
new_ucmd!()
|
||||
.arg("-c")
|
||||
.arg("--skip-bytes=5")
|
||||
|
@ -609,7 +615,7 @@ fn test_skip_bytes_error() {
|
|||
|
||||
#[test]
|
||||
fn test_read_bytes() {
|
||||
let input = "abcdefghijklmnopqrstuvwxyz\n12345678";
|
||||
let input = "abcdefghijklmnopqrstuvwxyz\n12345678"; // spell-checker:disable-line
|
||||
new_ucmd!()
|
||||
.arg("--endian=little")
|
||||
.arg("--read-bytes=27")
|
||||
|
@ -626,7 +632,7 @@ fn test_ascii_dump() {
|
|||
0xa0, 0xb0, 0xc0, 0xd0, 0xe0, 0xf0, 0xff,
|
||||
];
|
||||
new_ucmd!()
|
||||
.arg("-tx1zacz")
|
||||
.arg("-tx1zacz") // spell-checker:disable-line
|
||||
.run_piped_stdin(&input[..])
|
||||
.no_stderr()
|
||||
.success()
|
||||
|
@ -645,7 +651,7 @@ fn test_ascii_dump() {
|
|||
|
||||
#[test]
|
||||
fn test_filename_parsing() {
|
||||
// files "a" and "x" both exists, but are no filenames in the commandline below
|
||||
// files "a" and "x" both exists, but are no filenames in the command line below
|
||||
// "-f" must be treated as a filename, it contains the text: minus lowercase f
|
||||
// so "-f" should not be interpreted as a formatting option.
|
||||
new_ucmd!()
|
||||
|
@ -668,7 +674,7 @@ fn test_filename_parsing() {
|
|||
|
||||
#[test]
|
||||
fn test_stdin_offset() {
|
||||
let input = "abcdefghijklmnopq";
|
||||
let input = "abcdefghijklmnopq"; // spell-checker:disable-line
|
||||
new_ucmd!()
|
||||
.arg("-c")
|
||||
.arg("+5")
|
||||
|
@ -703,7 +709,7 @@ fn test_file_offset() {
|
|||
#[test]
|
||||
fn test_traditional() {
|
||||
// note gnu od does not align both lines
|
||||
let input = "abcdefghijklmnopq";
|
||||
let input = "abcdefghijklmnopq"; // spell-checker:disable-line
|
||||
new_ucmd!()
|
||||
.arg("--traditional")
|
||||
.arg("-a")
|
||||
|
@ -726,7 +732,7 @@ fn test_traditional() {
|
|||
#[test]
|
||||
fn test_traditional_with_skip_bytes_override() {
|
||||
// --skip-bytes is ignored in this case
|
||||
let input = "abcdefghijklmnop";
|
||||
let input = "abcdefghijklmnop"; // spell-checker:disable-line
|
||||
new_ucmd!()
|
||||
.arg("--traditional")
|
||||
.arg("--skip-bytes=10")
|
||||
|
@ -746,7 +752,7 @@ fn test_traditional_with_skip_bytes_override() {
|
|||
#[test]
|
||||
fn test_traditional_with_skip_bytes_non_override() {
|
||||
// no offset specified in the traditional way, so --skip-bytes is used
|
||||
let input = "abcdefghijklmnop";
|
||||
let input = "abcdefghijklmnop"; // spell-checker:disable-line
|
||||
new_ucmd!()
|
||||
.arg("--traditional")
|
||||
.arg("--skip-bytes=10")
|
||||
|
@ -776,7 +782,7 @@ fn test_traditional_error() {
|
|||
|
||||
#[test]
|
||||
fn test_traditional_only_label() {
|
||||
let input = "abcdefghijklmnopqrstuvwxyz";
|
||||
let input = "abcdefghijklmnopqrstuvwxyz"; // spell-checker:disable-line
|
||||
new_ucmd!()
|
||||
.arg("-An")
|
||||
.arg("--traditional")
|
||||
|
|
|
@ -9,24 +9,24 @@ pub use self::pinky::*;
|
|||
|
||||
#[test]
|
||||
fn test_capitalize() {
|
||||
assert_eq!("Zbnmasd", "zbnmasd".capitalize());
|
||||
assert_eq!("Abnmasd", "Abnmasd".capitalize());
|
||||
assert_eq!("1masd", "1masd".capitalize());
|
||||
assert_eq!("Zbnmasd", "zbnmasd".capitalize()); // spell-checker:disable-line
|
||||
assert_eq!("Abnmasd", "Abnmasd".capitalize()); // spell-checker:disable-line
|
||||
assert_eq!("1masd", "1masd".capitalize()); // spell-checker:disable-line
|
||||
assert_eq!("", "".capitalize());
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn test_long_format() {
|
||||
let ulogin = "root";
|
||||
let pw: Passwd = Passwd::locate(ulogin).unwrap();
|
||||
let login = "root";
|
||||
let pw: Passwd = Passwd::locate(login).unwrap();
|
||||
let real_name = pw.user_info().replace("&", &pw.name().capitalize());
|
||||
new_ucmd!()
|
||||
.arg("-l")
|
||||
.arg(ulogin)
|
||||
.arg(login)
|
||||
.succeeds()
|
||||
.stdout_is(format!(
|
||||
"Login name: {:<28}In real life: {}\nDirectory: {:<29}Shell: {}\n\n",
|
||||
ulogin,
|
||||
login,
|
||||
real_name,
|
||||
pw.user_dir(),
|
||||
pw.user_shell()
|
||||
|
@ -34,11 +34,11 @@ fn test_long_format() {
|
|||
|
||||
new_ucmd!()
|
||||
.arg("-lb")
|
||||
.arg(ulogin)
|
||||
.arg(login)
|
||||
.succeeds()
|
||||
.stdout_is(format!(
|
||||
"Login name: {:<28}In real life: {1}\n\n",
|
||||
ulogin, real_name
|
||||
login, real_name
|
||||
));
|
||||
}
|
||||
|
||||
|
|
517
tests/by-util/test_pr.rs
Normal file
517
tests/by-util/test_pr.rs
Normal file
|
@ -0,0 +1,517 @@
|
|||
// spell-checker:ignore (ToDO) Sdivide
|
||||
|
||||
use crate::common::util::*;
|
||||
use chrono::offset::Local;
|
||||
use chrono::DateTime;
|
||||
use std::fs::metadata;
|
||||
|
||||
fn file_last_modified_time(ucmd: &UCommand, path: &str) -> String {
|
||||
let tmp_dir_path = ucmd.get_full_fixture_path(path);
|
||||
let file_metadata = metadata(tmp_dir_path);
|
||||
file_metadata
|
||||
.map(|i| {
|
||||
i.modified()
|
||||
.map(|x| {
|
||||
let date_time: DateTime<Local> = x.into();
|
||||
date_time.format("%b %d %H:%M %Y").to_string()
|
||||
})
|
||||
.unwrap_or_default()
|
||||
})
|
||||
.unwrap_or_default()
|
||||
}
|
||||
|
||||
fn now_time() -> String {
|
||||
Local::now().format("%b %d %H:%M %Y").to_string()
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn test_without_any_options() {
|
||||
let test_file_path = "test_one_page.log";
|
||||
let expected_test_file_path = "test_one_page.log.expected";
|
||||
let mut scenario = new_ucmd!();
|
||||
let value = file_last_modified_time(&scenario, test_file_path);
|
||||
scenario
|
||||
.args(&[test_file_path])
|
||||
.succeeds()
|
||||
.stdout_is_templated_fixture(
|
||||
expected_test_file_path,
|
||||
vec![(&"{last_modified_time}".to_string(), &value)],
|
||||
);
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn test_with_numbering_option_with_number_width() {
|
||||
let test_file_path = "test_num_page.log";
|
||||
let expected_test_file_path = "test_num_page_2.log.expected";
|
||||
let mut scenario = new_ucmd!();
|
||||
let value = file_last_modified_time(&scenario, test_file_path);
|
||||
scenario
|
||||
.args(&["-n", "2", test_file_path])
|
||||
.succeeds()
|
||||
.stdout_is_templated_fixture(
|
||||
expected_test_file_path,
|
||||
vec![(&"{last_modified_time}".to_string(), &value)],
|
||||
);
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn test_with_long_header_option() {
|
||||
let test_file_path = "test_one_page.log";
|
||||
let expected_test_file_path = "test_one_page_header.log.expected";
|
||||
let mut scenario = new_ucmd!();
|
||||
let value = file_last_modified_time(&scenario, test_file_path);
|
||||
let header = "new file";
|
||||
scenario
|
||||
.args(&["--header=new file", test_file_path])
|
||||
.succeeds()
|
||||
.stdout_is_templated_fixture(
|
||||
expected_test_file_path,
|
||||
vec![
|
||||
(&"{last_modified_time}".to_string(), &value),
|
||||
(&"{header}".to_string(), &header.to_string()),
|
||||
],
|
||||
);
|
||||
|
||||
new_ucmd!()
|
||||
.args(&["-h", header, test_file_path])
|
||||
.succeeds()
|
||||
.stdout_is_templated_fixture(
|
||||
expected_test_file_path,
|
||||
vec![
|
||||
(&"{last_modified_time}".to_string(), &value),
|
||||
(&"{header}".to_string(), &header.to_string()),
|
||||
],
|
||||
);
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn test_with_double_space_option() {
|
||||
let test_file_path = "test_one_page.log";
|
||||
let expected_test_file_path = "test_one_page_double_line.log.expected";
|
||||
let mut scenario = new_ucmd!();
|
||||
let value = file_last_modified_time(&scenario, test_file_path);
|
||||
scenario
|
||||
.args(&["-d", test_file_path])
|
||||
.succeeds()
|
||||
.stdout_is_templated_fixture(
|
||||
expected_test_file_path,
|
||||
vec![(&"{last_modified_time}".to_string(), &value)],
|
||||
);
|
||||
|
||||
new_ucmd!()
|
||||
.args(&["--double-space", test_file_path])
|
||||
.succeeds()
|
||||
.stdout_is_templated_fixture(
|
||||
expected_test_file_path,
|
||||
vec![(&"{last_modified_time}".to_string(), &value)],
|
||||
);
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn test_with_first_line_number_option() {
|
||||
let test_file_path = "test_one_page.log";
|
||||
let expected_test_file_path = "test_one_page_first_line.log.expected";
|
||||
let mut scenario = new_ucmd!();
|
||||
let value = file_last_modified_time(&scenario, test_file_path);
|
||||
scenario
|
||||
.args(&["-N", "5", "-n", test_file_path])
|
||||
.succeeds()
|
||||
.stdout_is_templated_fixture(
|
||||
expected_test_file_path,
|
||||
vec![(&"{last_modified_time}".to_string(), &value)],
|
||||
);
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn test_with_first_line_number_long_option() {
|
||||
let test_file_path = "test_one_page.log";
|
||||
let expected_test_file_path = "test_one_page_first_line.log.expected";
|
||||
let mut scenario = new_ucmd!();
|
||||
let value = file_last_modified_time(&scenario, test_file_path);
|
||||
scenario
|
||||
.args(&["--first-line-number=5", "-n", test_file_path])
|
||||
.succeeds()
|
||||
.stdout_is_templated_fixture(
|
||||
expected_test_file_path,
|
||||
vec![(&"{last_modified_time}".to_string(), &value)],
|
||||
);
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn test_with_number_option_with_custom_separator_char() {
|
||||
let test_file_path = "test_num_page.log";
|
||||
let expected_test_file_path = "test_num_page_char.log.expected";
|
||||
let mut scenario = new_ucmd!();
|
||||
let value = file_last_modified_time(&scenario, test_file_path);
|
||||
scenario
|
||||
.args(&["-nc", test_file_path])
|
||||
.succeeds()
|
||||
.stdout_is_templated_fixture(
|
||||
expected_test_file_path,
|
||||
vec![(&"{last_modified_time}".to_string(), &value)],
|
||||
);
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn test_with_number_option_with_custom_separator_char_and_width() {
|
||||
let test_file_path = "test_num_page.log";
|
||||
let expected_test_file_path = "test_num_page_char_one.log.expected";
|
||||
let mut scenario = new_ucmd!();
|
||||
let value = file_last_modified_time(&scenario, test_file_path);
|
||||
scenario
|
||||
.args(&["-nc1", test_file_path])
|
||||
.succeeds()
|
||||
.stdout_is_templated_fixture(
|
||||
expected_test_file_path,
|
||||
vec![(&"{last_modified_time}".to_string(), &value)],
|
||||
);
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn test_with_valid_page_ranges() {
|
||||
let test_file_path = "test_num_page.log";
|
||||
let mut scenario = new_ucmd!();
|
||||
scenario
|
||||
.args(&["--pages=20:5", test_file_path])
|
||||
.fails()
|
||||
.stderr_is("pr: invalid --pages argument '20:5'")
|
||||
.stdout_is("");
|
||||
new_ucmd!()
|
||||
.args(&["--pages=1:5", test_file_path])
|
||||
.succeeds();
|
||||
new_ucmd!().args(&["--pages=1", test_file_path]).succeeds();
|
||||
new_ucmd!()
|
||||
.args(&["--pages=-1:5", test_file_path])
|
||||
.fails()
|
||||
.stderr_is("pr: invalid --pages argument '-1:5'")
|
||||
.stdout_is("");
|
||||
new_ucmd!()
|
||||
.args(&["--pages=1:-5", test_file_path])
|
||||
.fails()
|
||||
.stderr_is("pr: invalid --pages argument '1:-5'")
|
||||
.stdout_is("");
|
||||
new_ucmd!()
|
||||
.args(&["--pages=5:1", test_file_path])
|
||||
.fails()
|
||||
.stderr_is("pr: invalid --pages argument '5:1'")
|
||||
.stdout_is("");
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn test_with_page_range() {
|
||||
let test_file_path = "test.log";
|
||||
let expected_test_file_path = "test_page_range_1.log.expected";
|
||||
let expected_test_file_path1 = "test_page_range_2.log.expected";
|
||||
let mut scenario = new_ucmd!();
|
||||
let value = file_last_modified_time(&scenario, test_file_path);
|
||||
scenario
|
||||
.args(&["--pages=15", test_file_path])
|
||||
.succeeds()
|
||||
.stdout_is_templated_fixture(
|
||||
expected_test_file_path,
|
||||
vec![(&"{last_modified_time}".to_string(), &value)],
|
||||
);
|
||||
|
||||
new_ucmd!()
|
||||
.args(&["+15", test_file_path])
|
||||
.succeeds()
|
||||
.stdout_is_templated_fixture(
|
||||
expected_test_file_path,
|
||||
vec![(&"{last_modified_time}".to_string(), &value)],
|
||||
);
|
||||
|
||||
new_ucmd!()
|
||||
.args(&["--pages=15:17", test_file_path])
|
||||
.succeeds()
|
||||
.stdout_is_templated_fixture(
|
||||
expected_test_file_path1,
|
||||
vec![(&"{last_modified_time}".to_string(), &value)],
|
||||
);
|
||||
|
||||
new_ucmd!()
|
||||
.args(&["+15:17", test_file_path])
|
||||
.succeeds()
|
||||
.stdout_is_templated_fixture(
|
||||
expected_test_file_path1,
|
||||
vec![(&"{last_modified_time}".to_string(), &value)],
|
||||
);
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn test_with_no_header_trailer_option() {
|
||||
let test_file_path = "test_one_page.log";
|
||||
let expected_test_file_path = "test_one_page_no_ht.log.expected";
|
||||
let mut scenario = new_ucmd!();
|
||||
let value = file_last_modified_time(&scenario, test_file_path);
|
||||
scenario
|
||||
.args(&["-t", test_file_path])
|
||||
.succeeds()
|
||||
.stdout_is_templated_fixture(
|
||||
expected_test_file_path,
|
||||
vec![(&"{last_modified_time}".to_string(), &value)],
|
||||
);
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn test_with_page_length_option() {
|
||||
let test_file_path = "test.log";
|
||||
let expected_test_file_path = "test_page_length.log.expected";
|
||||
let expected_test_file_path1 = "test_page_length1.log.expected";
|
||||
let mut scenario = new_ucmd!();
|
||||
let value = file_last_modified_time(&scenario, test_file_path);
|
||||
scenario
|
||||
.args(&["--pages=2:3", "-l", "100", "-n", test_file_path])
|
||||
.succeeds()
|
||||
.stdout_is_templated_fixture(
|
||||
expected_test_file_path,
|
||||
vec![(&"{last_modified_time}".to_string(), &value)],
|
||||
);
|
||||
|
||||
new_ucmd!()
|
||||
.args(&["--pages=2:3", "-l", "5", "-n", test_file_path])
|
||||
.succeeds()
|
||||
.stdout_is_fixture(expected_test_file_path1);
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn test_with_suppress_error_option() {
|
||||
let test_file_path = "test_num_page.log";
|
||||
let mut scenario = new_ucmd!();
|
||||
scenario
|
||||
.args(&["--pages=20:5", "-r", test_file_path])
|
||||
.fails()
|
||||
.stderr_is("")
|
||||
.stdout_is("");
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn test_with_stdin() {
|
||||
let expected_file_path = "stdin.log.expected";
|
||||
let mut scenario = new_ucmd!();
|
||||
scenario
|
||||
.pipe_in_fixture("stdin.log")
|
||||
.args(&["--pages=1:2", "-n", "-"])
|
||||
.run()
|
||||
.stdout_is_templated_fixture(
|
||||
expected_file_path,
|
||||
vec![(&"{last_modified_time}".to_string(), &now_time())],
|
||||
);
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn test_with_column() {
|
||||
let test_file_path = "column.log";
|
||||
let expected_test_file_path = "column.log.expected";
|
||||
let mut scenario = new_ucmd!();
|
||||
let value = file_last_modified_time(&scenario, test_file_path);
|
||||
scenario
|
||||
.args(&["--pages=3:5", "--column=3", "-n", test_file_path])
|
||||
.succeeds()
|
||||
.stdout_is_templated_fixture(
|
||||
expected_test_file_path,
|
||||
vec![(&"{last_modified_time}".to_string(), &value)],
|
||||
);
|
||||
|
||||
new_ucmd!()
|
||||
.args(&["--pages=3:5", "-3", "-n", test_file_path])
|
||||
.succeeds()
|
||||
.stdout_is_templated_fixture(
|
||||
expected_test_file_path,
|
||||
vec![(&"{last_modified_time}".to_string(), &value)],
|
||||
);
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn test_with_column_across_option() {
|
||||
let test_file_path = "column.log";
|
||||
let expected_test_file_path = "column_across.log.expected";
|
||||
let mut scenario = new_ucmd!();
|
||||
let value = file_last_modified_time(&scenario, test_file_path);
|
||||
scenario
|
||||
.args(&["--pages=3:5", "--column=3", "-a", "-n", test_file_path])
|
||||
.succeeds()
|
||||
.stdout_is_templated_fixture(
|
||||
expected_test_file_path,
|
||||
vec![(&"{last_modified_time}".to_string(), &value)],
|
||||
);
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn test_with_column_across_option_and_column_separator() {
|
||||
let test_file_path = "column.log";
|
||||
let expected_test_file_path = "column_across_sep.log.expected";
|
||||
let expected_test_file_path1 = "column_across_sep1.log.expected";
|
||||
let mut scenario = new_ucmd!();
|
||||
let value = file_last_modified_time(&scenario, test_file_path);
|
||||
scenario
|
||||
.args(&[
|
||||
"--pages=3:5",
|
||||
"--column=3",
|
||||
"-s|",
|
||||
"-a",
|
||||
"-n",
|
||||
test_file_path,
|
||||
])
|
||||
.succeeds()
|
||||
.stdout_is_templated_fixture(
|
||||
expected_test_file_path,
|
||||
vec![(&"{last_modified_time}".to_string(), &value)],
|
||||
);
|
||||
|
||||
new_ucmd!()
|
||||
.args(&[
|
||||
"--pages=3:5",
|
||||
"--column=3",
|
||||
"-Sdivide",
|
||||
"-a",
|
||||
"-n",
|
||||
test_file_path,
|
||||
])
|
||||
.succeeds()
|
||||
.stdout_is_templated_fixture(
|
||||
expected_test_file_path1,
|
||||
vec![(&"{last_modified_time}".to_string(), &value)],
|
||||
);
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn test_with_mpr() {
|
||||
let test_file_path = "column.log";
|
||||
let test_file_path1 = "hosts.log";
|
||||
let expected_test_file_path = "mpr.log.expected";
|
||||
let expected_test_file_path1 = "mpr1.log.expected";
|
||||
let expected_test_file_path2 = "mpr2.log.expected";
|
||||
new_ucmd!()
|
||||
.args(&["--pages=1:2", "-m", "-n", test_file_path, test_file_path1])
|
||||
.succeeds()
|
||||
.stdout_is_templated_fixture(
|
||||
expected_test_file_path,
|
||||
vec![(&"{last_modified_time}".to_string(), &now_time())],
|
||||
);
|
||||
|
||||
new_ucmd!()
|
||||
.args(&["--pages=2:4", "-m", "-n", test_file_path, test_file_path1])
|
||||
.succeeds()
|
||||
.stdout_is_templated_fixture(
|
||||
expected_test_file_path1,
|
||||
vec![(&"{last_modified_time}".to_string(), &now_time())],
|
||||
);
|
||||
|
||||
new_ucmd!()
|
||||
.args(&[
|
||||
"--pages=1:2",
|
||||
"-l",
|
||||
"100",
|
||||
"-n",
|
||||
"-m",
|
||||
test_file_path,
|
||||
test_file_path1,
|
||||
test_file_path,
|
||||
])
|
||||
.succeeds()
|
||||
.stdout_is_templated_fixture(
|
||||
expected_test_file_path2,
|
||||
vec![(&"{last_modified_time}".to_string(), &now_time())],
|
||||
);
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn test_with_mpr_and_column_options() {
|
||||
let test_file_path = "column.log";
|
||||
new_ucmd!()
|
||||
.args(&["--column=2", "-m", "-n", test_file_path])
|
||||
.fails()
|
||||
.stderr_is("pr: cannot specify number of columns when printing in parallel")
|
||||
.stdout_is("");
|
||||
|
||||
new_ucmd!()
|
||||
.args(&["-a", "-m", "-n", test_file_path])
|
||||
.fails()
|
||||
.stderr_is("pr: cannot specify both printing across and printing in parallel")
|
||||
.stdout_is("");
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn test_with_offset_space_option() {
|
||||
let test_file_path = "column.log";
|
||||
let expected_test_file_path = "column_spaces_across.log.expected";
|
||||
let mut scenario = new_ucmd!();
|
||||
let value = file_last_modified_time(&scenario, test_file_path);
|
||||
scenario
|
||||
.args(&[
|
||||
"-o",
|
||||
"5",
|
||||
"--pages=3:5",
|
||||
"--column=3",
|
||||
"-a",
|
||||
"-n",
|
||||
test_file_path,
|
||||
])
|
||||
.succeeds()
|
||||
.stdout_is_templated_fixture(
|
||||
expected_test_file_path,
|
||||
vec![(&"{last_modified_time}".to_string(), &value)],
|
||||
);
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn test_with_pr_core_utils_tests() {
|
||||
let test_cases = vec![
|
||||
("", vec!["0Ft"], vec!["0F"], 0),
|
||||
("", vec!["0Fnt"], vec!["0F"], 0),
|
||||
("+3", vec!["0Ft"], vec!["3-0F"], 0),
|
||||
("+3 -f", vec!["0Ft"], vec!["3f-0F"], 0),
|
||||
("-a -3", vec!["0Ft"], vec!["a3-0F"], 0),
|
||||
("-a -3 -f", vec!["0Ft"], vec!["a3f-0F"], 0),
|
||||
("-a -3 -f", vec!["0Fnt"], vec!["a3f-0F"], 0),
|
||||
("+3 -a -3 -f", vec!["0Ft"], vec!["3a3f-0F"], 0),
|
||||
("-l 24", vec!["FnFn"], vec!["l24-FF"], 0),
|
||||
("-W 20 -l24 -f", vec!["tFFt-ll"], vec!["W20l24f-ll"], 0),
|
||||
];
|
||||
|
||||
for test_case in test_cases {
|
||||
let (flags, input_file, expected_file, return_code) = test_case;
|
||||
let mut scenario = new_ucmd!();
|
||||
let input_file_path = input_file.get(0).unwrap();
|
||||
let test_file_path = expected_file.get(0).unwrap();
|
||||
let value = file_last_modified_time(&scenario, test_file_path);
|
||||
let mut arguments: Vec<&str> = flags
|
||||
.split(' ')
|
||||
.into_iter()
|
||||
.filter(|i| i.trim() != "")
|
||||
.collect::<Vec<&str>>();
|
||||
|
||||
arguments.extend(input_file.clone());
|
||||
|
||||
let scenario_with_args = scenario.args(&arguments);
|
||||
|
||||
let scenario_with_expected_status = if return_code == 0 {
|
||||
scenario_with_args.succeeds()
|
||||
} else {
|
||||
scenario_with_args.fails()
|
||||
};
|
||||
|
||||
scenario_with_expected_status.stdout_is_templated_fixture(
|
||||
test_file_path,
|
||||
vec![
|
||||
(&"{last_modified_time}".to_string(), &value),
|
||||
(&"{file_name}".to_string(), &input_file_path.to_string()),
|
||||
],
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn test_with_join_lines_option() {
|
||||
let test_file_1 = "hosts.log";
|
||||
let test_file_2 = "test.log";
|
||||
let expected_file_path = "joined.log.expected";
|
||||
let mut scenario = new_ucmd!();
|
||||
scenario
|
||||
.args(&["+1:2", "-J", "-m", test_file_1, test_file_2])
|
||||
.run()
|
||||
.stdout_is_templated_fixture(
|
||||
expected_file_path,
|
||||
vec![(&"{last_modified_time}".to_string(), &now_time())],
|
||||
);
|
||||
}
|
|
@ -43,12 +43,12 @@ fn escaped_octal() {
|
|||
}
|
||||
|
||||
#[test]
|
||||
fn escaped_unicode_fourdigit() {
|
||||
fn escaped_unicode_four_digit() {
|
||||
new_ucmd!().args(&["\\u0125"]).succeeds().stdout_only("ĥ");
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn escaped_unicode_eightdigit() {
|
||||
fn escaped_unicode_eight_digit() {
|
||||
new_ucmd!()
|
||||
.args(&["\\U00000125"])
|
||||
.succeeds()
|
||||
|
@ -77,7 +77,7 @@ fn sub_string() {
|
|||
}
|
||||
|
||||
#[test]
|
||||
fn sub_multifield() {
|
||||
fn sub_multi_field() {
|
||||
new_ucmd!()
|
||||
.args(&["%s %s", "hello", "world"])
|
||||
.succeeds()
|
||||
|
@ -85,7 +85,7 @@ fn sub_multifield() {
|
|||
}
|
||||
|
||||
#[test]
|
||||
fn sub_repeat_formatstr() {
|
||||
fn sub_repeat_format_str() {
|
||||
new_ucmd!()
|
||||
.args(&["%s.", "hello", "world"])
|
||||
.succeeds()
|
||||
|
@ -101,7 +101,7 @@ fn sub_string_ignore_escapes() {
|
|||
}
|
||||
|
||||
#[test]
|
||||
fn sub_bstring_handle_escapes() {
|
||||
fn sub_b_string_handle_escapes() {
|
||||
new_ucmd!()
|
||||
.args(&["hello %b", "\\tworld"])
|
||||
.succeeds()
|
||||
|
@ -109,7 +109,7 @@ fn sub_bstring_handle_escapes() {
|
|||
}
|
||||
|
||||
#[test]
|
||||
fn sub_bstring_ignore_subs() {
|
||||
fn sub_b_string_ignore_subs() {
|
||||
new_ucmd!()
|
||||
.args(&["hello %b", "world %% %i"])
|
||||
.succeeds()
|
||||
|
@ -133,7 +133,7 @@ fn sub_num_int() {
|
|||
}
|
||||
|
||||
#[test]
|
||||
fn sub_num_int_minwidth() {
|
||||
fn sub_num_int_min_width() {
|
||||
new_ucmd!()
|
||||
.args(&["twenty is %1i", "20"])
|
||||
.succeeds()
|
||||
|
@ -181,11 +181,11 @@ fn sub_num_int_hex_in_neg() {
|
|||
}
|
||||
|
||||
#[test]
|
||||
fn sub_num_int_charconst_in() {
|
||||
fn sub_num_int_char_const_in() {
|
||||
new_ucmd!()
|
||||
.args(&["ninetyseven is %i", "'a"])
|
||||
.args(&["ninety seven is %i", "'a"])
|
||||
.succeeds()
|
||||
.stdout_only("ninetyseven is 97");
|
||||
.stdout_only("ninety seven is 97");
|
||||
}
|
||||
|
||||
#[test]
|
||||
|
@ -287,7 +287,7 @@ fn sub_num_hex_float_upper() {
|
|||
}
|
||||
|
||||
#[test]
|
||||
fn sub_minwidth() {
|
||||
fn sub_min_width() {
|
||||
new_ucmd!()
|
||||
.args(&["hello %7s", "world"])
|
||||
.succeeds()
|
||||
|
@ -295,7 +295,7 @@ fn sub_minwidth() {
|
|||
}
|
||||
|
||||
#[test]
|
||||
fn sub_minwidth_negative() {
|
||||
fn sub_min_width_negative() {
|
||||
new_ucmd!()
|
||||
.args(&["hello %-7s", "world"])
|
||||
.succeeds()
|
||||
|
@ -327,7 +327,7 @@ fn sub_int_leading_zeroes() {
|
|||
}
|
||||
|
||||
#[test]
|
||||
fn sub_int_leading_zeroes_prio() {
|
||||
fn sub_int_leading_zeroes_padded() {
|
||||
new_ucmd!()
|
||||
.args(&["%5.4i", "11"])
|
||||
.succeeds()
|
||||
|
@ -359,7 +359,7 @@ fn sub_float_no_octal_in() {
|
|||
}
|
||||
|
||||
#[test]
|
||||
fn sub_any_asterisk_firstparam() {
|
||||
fn sub_any_asterisk_first_param() {
|
||||
new_ucmd!()
|
||||
.args(&["%*i", "3", "11", "4", "12"])
|
||||
.succeeds()
|
||||
|
@ -401,7 +401,7 @@ fn sub_any_asterisk_hex_arg() {
|
|||
#[test]
|
||||
fn sub_any_specifiers_no_params() {
|
||||
new_ucmd!()
|
||||
.args(&["%ztlhLji", "3"])
|
||||
.args(&["%ztlhLji", "3"]) //spell-checker:disable-line
|
||||
.succeeds()
|
||||
.stdout_only("3");
|
||||
}
|
||||
|
@ -409,7 +409,7 @@ fn sub_any_specifiers_no_params() {
|
|||
#[test]
|
||||
fn sub_any_specifiers_after_first_param() {
|
||||
new_ucmd!()
|
||||
.args(&["%0ztlhLji", "3"])
|
||||
.args(&["%0ztlhLji", "3"]) //spell-checker:disable-line
|
||||
.succeeds()
|
||||
.stdout_only("3");
|
||||
}
|
||||
|
@ -417,7 +417,7 @@ fn sub_any_specifiers_after_first_param() {
|
|||
#[test]
|
||||
fn sub_any_specifiers_after_period() {
|
||||
new_ucmd!()
|
||||
.args(&["%0.ztlhLji", "3"])
|
||||
.args(&["%0.ztlhLji", "3"]) //spell-checker:disable-line
|
||||
.succeeds()
|
||||
.stdout_only("3");
|
||||
}
|
||||
|
@ -425,7 +425,7 @@ fn sub_any_specifiers_after_period() {
|
|||
#[test]
|
||||
fn sub_any_specifiers_after_second_param() {
|
||||
new_ucmd!()
|
||||
.args(&["%0.0ztlhLji", "3"])
|
||||
.args(&["%0.0ztlhLji", "3"]) //spell-checker:disable-line
|
||||
.succeeds()
|
||||
.stdout_only("3");
|
||||
}
|
||||
|
|
|
@ -1,43 +1,43 @@
|
|||
use crate::common::util::*;
|
||||
|
||||
#[test]
|
||||
fn gnu_ext_disabled_roff_no_ref() {
|
||||
fn gnu_ext_disabled_rightward_no_ref() {
|
||||
new_ucmd!()
|
||||
.args(&["-G", "-R", "input"])
|
||||
.succeeds()
|
||||
.stdout_only_fixture("gnu_ext_disabled_roff_no_ref.expected");
|
||||
.stdout_only_fixture("gnu_ext_disabled_rightward_no_ref.expected");
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn gnu_ext_disabled_roff_no_ref_empty_word_regexp() {
|
||||
fn gnu_ext_disabled_rightward_no_ref_empty_word_regexp() {
|
||||
new_ucmd!()
|
||||
.args(&["-G", "-R", "-W", "", "input"])
|
||||
.succeeds()
|
||||
.stdout_only_fixture("gnu_ext_disabled_roff_no_ref.expected");
|
||||
.stdout_only_fixture("gnu_ext_disabled_rightward_no_ref.expected");
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn gnu_ext_disabled_roff_no_ref_word_regexp_exc_space() {
|
||||
fn gnu_ext_disabled_rightward_no_ref_word_regexp_exc_space() {
|
||||
new_ucmd!()
|
||||
.args(&["-G", "-R", "-W", "[^\t\n]+", "input"])
|
||||
.succeeds()
|
||||
.stdout_only_fixture("gnu_ext_disabled_roff_no_ref_word_regexp_exc_space.expected");
|
||||
.stdout_only_fixture("gnu_ext_disabled_rightward_no_ref_word_regexp_exc_space.expected");
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn gnu_ext_disabled_roff_input_ref() {
|
||||
fn gnu_ext_disabled_rightward_input_ref() {
|
||||
new_ucmd!()
|
||||
.args(&["-G", "-r", "-R", "input"])
|
||||
.succeeds()
|
||||
.stdout_only_fixture("gnu_ext_disabled_roff_input_ref.expected");
|
||||
.stdout_only_fixture("gnu_ext_disabled_rightward_input_ref.expected");
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn gnu_ext_disabled_roff_auto_ref() {
|
||||
fn gnu_ext_disabled_rightward_auto_ref() {
|
||||
new_ucmd!()
|
||||
.args(&["-G", "-A", "-R", "input"])
|
||||
.succeeds()
|
||||
.stdout_only_fixture("gnu_ext_disabled_roff_auto_ref.expected");
|
||||
.stdout_only_fixture("gnu_ext_disabled_rightward_auto_ref.expected");
|
||||
}
|
||||
|
||||
#[test]
|
||||
|
|
|
@ -9,5 +9,5 @@ fn test_default() {
|
|||
#[test]
|
||||
fn test_failed() {
|
||||
let (_at, mut ucmd) = at_and_ucmd!();
|
||||
ucmd.arg("willfail").fails();
|
||||
ucmd.arg("will-fail").fails();
|
||||
}
|
||||
|
|
|
@ -115,12 +115,12 @@ fn test_relpath_with_from_with_d() {
|
|||
#[cfg(not(windows))]
|
||||
assert!(Path::new(&_result_stdout).is_relative());
|
||||
|
||||
// d is not part of subpath -> expect absolut path
|
||||
// d is not part of subpath -> expect absolute path
|
||||
_result_stdout = scene
|
||||
.ucmd()
|
||||
.arg(to)
|
||||
.arg(from)
|
||||
.arg("-dnon_existing")
|
||||
.arg("-dnon_existing") // spell-checker:disable-line
|
||||
.succeeds()
|
||||
.stdout_move_str();
|
||||
assert!(Path::new(&_result_stdout).is_absolute());
|
||||
|
@ -166,11 +166,11 @@ fn test_relpath_no_from_with_d() {
|
|||
#[cfg(not(windows))]
|
||||
assert!(Path::new(&_result_stdout).is_relative());
|
||||
|
||||
// d is not part of subpath -> expect absolut path
|
||||
// d is not part of subpath -> expect absolute path
|
||||
let result_stdout = scene
|
||||
.ucmd()
|
||||
.arg(to)
|
||||
.arg("-dnon_existing")
|
||||
.arg("-dnon_existing") // spell-checker:disable-line
|
||||
.succeeds()
|
||||
.stdout_move_str();
|
||||
assert!(Path::new(&result_stdout).is_absolute());
|
||||
|
|
|
@ -65,7 +65,7 @@ fn test_rm_interactive() {
|
|||
.arg("-i")
|
||||
.arg(file_a)
|
||||
.arg(file_b)
|
||||
.pipe_in("Yesh")
|
||||
.pipe_in("Yesh") // spell-checker:disable-line
|
||||
.succeeds();
|
||||
|
||||
assert!(!at.file_exists(file_a));
|
||||
|
|
|
@ -1,5 +1,7 @@
|
|||
use crate::common::util::*;
|
||||
|
||||
// ---- Tests for the big integer based path ----
|
||||
|
||||
#[test]
|
||||
fn test_count_up() {
|
||||
new_ucmd!()
|
||||
|
@ -26,6 +28,18 @@ fn test_separator_and_terminator() {
|
|||
.args(&["-s", ",", "-t", "!", "2", "6"])
|
||||
.run()
|
||||
.stdout_is("2,3,4,5,6!");
|
||||
new_ucmd!()
|
||||
.args(&["-s", ",", "2", "6"])
|
||||
.run()
|
||||
.stdout_is("2,3,4,5,6\n");
|
||||
new_ucmd!()
|
||||
.args(&["-s", "\n", "2", "6"])
|
||||
.run()
|
||||
.stdout_is("2\n3\n4\n5\n6\n");
|
||||
new_ucmd!()
|
||||
.args(&["-s", "\\n", "2", "6"])
|
||||
.run()
|
||||
.stdout_is("2\\n3\\n4\\n5\\n6\n");
|
||||
}
|
||||
|
||||
#[test]
|
||||
|
@ -45,3 +59,62 @@ fn test_seq_wrong_arg() {
|
|||
fn test_zero_step() {
|
||||
new_ucmd!().args(&["10", "0", "32"]).fails();
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn test_big_numbers() {
|
||||
new_ucmd!()
|
||||
.args(&[
|
||||
"1000000000000000000000000000",
|
||||
"1000000000000000000000000001",
|
||||
])
|
||||
.succeeds()
|
||||
.stdout_only("1000000000000000000000000000\n1000000000000000000000000001\n");
|
||||
}
|
||||
|
||||
// ---- Tests for the floating point based path ----
|
||||
|
||||
#[test]
|
||||
fn test_count_up_floats() {
|
||||
new_ucmd!()
|
||||
.args(&["10.0"])
|
||||
.run()
|
||||
.stdout_is("1\n2\n3\n4\n5\n6\n7\n8\n9\n10\n");
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn test_count_down_floats() {
|
||||
new_ucmd!()
|
||||
.args(&["--", "5", "-1.0", "1"])
|
||||
.run()
|
||||
.stdout_is("5.0\n4.0\n3.0\n2.0\n1.0\n");
|
||||
new_ucmd!()
|
||||
.args(&["5", "-1", "1.0"])
|
||||
.run()
|
||||
.stdout_is("5\n4\n3\n2\n1\n");
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn test_separator_and_terminator_floats() {
|
||||
new_ucmd!()
|
||||
.args(&["-s", ",", "-t", "!", "2.0", "6"])
|
||||
.run()
|
||||
.stdout_is("2.0,3.0,4.0,5.0,6.0!");
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn test_equalize_widths_floats() {
|
||||
new_ucmd!()
|
||||
.args(&["-w", "5", "10.0"])
|
||||
.run()
|
||||
.stdout_is("05\n06\n07\n08\n09\n10\n");
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn test_seq_wrong_arg_floats() {
|
||||
new_ucmd!().args(&["-w", "5", "10.0", "33", "32"]).fails();
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn test_zero_step_floats() {
|
||||
new_ucmd!().args(&["10.0", "0", "32"]).fails();
|
||||
}
|
||||
|
|
|
@ -19,7 +19,7 @@ fn test_output_is_random_permutation() {
|
|||
.map(|x| x.parse().unwrap())
|
||||
.collect();
|
||||
result_seq.sort_unstable();
|
||||
assert_ne!(result.stdout_str(), input, "Output is not randomised");
|
||||
assert_ne!(result.stdout_str(), input, "Output is not randomized");
|
||||
assert_eq!(result_seq, input_seq, "Output is not a permutation");
|
||||
}
|
||||
|
||||
|
|
|
@ -1,3 +1,5 @@
|
|||
// spell-checker:ignore (words) ints
|
||||
|
||||
use crate::common::util::*;
|
||||
|
||||
fn test_helper(file_name: &str, possible_args: &[&str]) {
|
||||
|
@ -61,7 +63,7 @@ fn test_ext_sort_stable() {
|
|||
}
|
||||
|
||||
#[test]
|
||||
fn test_extsort_zero_terminated() {
|
||||
fn test_ext_sort_zero_terminated() {
|
||||
new_ucmd!()
|
||||
.arg("-z")
|
||||
.arg("-S")
|
||||
|
@ -96,7 +98,7 @@ fn test_human_numeric_whitespace() {
|
|||
// This tests where serde often fails when reading back JSON
|
||||
// if it finds a null value
|
||||
#[test]
|
||||
fn test_extsort_as64_bailout() {
|
||||
fn test_ext_sort_as64_bailout() {
|
||||
new_ucmd!()
|
||||
.arg("-g")
|
||||
.arg("-S 5K")
|
||||
|
@ -290,10 +292,10 @@ fn test_dictionary_order() {
|
|||
fn test_dictionary_order2() {
|
||||
for non_dictionary_order2_param in &["-d"] {
|
||||
new_ucmd!()
|
||||
.pipe_in("a👦🏻aa b\naaaa b")
|
||||
.arg(non_dictionary_order2_param)
|
||||
.pipe_in("a👦🏻aa b\naaaa b") // spell-checker:disable-line
|
||||
.arg(non_dictionary_order2_param) // spell-checker:disable-line
|
||||
.succeeds()
|
||||
.stdout_only("a👦🏻aa b\naaaa b\n");
|
||||
.stdout_only("a👦🏻aa b\naaaa b\n"); // spell-checker:disable-line
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -301,10 +303,10 @@ fn test_dictionary_order2() {
|
|||
fn test_non_printing_chars() {
|
||||
for non_printing_chars_param in &["-i"] {
|
||||
new_ucmd!()
|
||||
.pipe_in("a👦🏻aa\naaaa")
|
||||
.arg(non_printing_chars_param)
|
||||
.pipe_in("a👦🏻aa\naaaa") // spell-checker:disable-line
|
||||
.arg(non_printing_chars_param) // spell-checker:disable-line
|
||||
.succeeds()
|
||||
.stdout_only("a👦🏻aa\naaaa\n");
|
||||
.stdout_only("a👦🏻aa\naaaa\n"); // spell-checker:disable-line
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -592,7 +594,7 @@ fn test_keys_ignore_flag() {
|
|||
}
|
||||
|
||||
#[test]
|
||||
fn test_doesnt_inherit_key_settings() {
|
||||
fn test_does_not_inherit_key_settings() {
|
||||
let input = " 1
|
||||
2
|
||||
10
|
||||
|
|
|
@ -242,7 +242,7 @@ fn test_filter() {
|
|||
.succeeds();
|
||||
|
||||
// assert all characters are 'i' / no character is not 'i'
|
||||
// (assert that command succeded)
|
||||
// (assert that command succeeded)
|
||||
let glob = Glob::new(&at, ".", r"x[[:alpha:]][[:alpha:]]$");
|
||||
assert!(
|
||||
glob.collate().iter().find(|&&c| {
|
||||
|
@ -265,7 +265,7 @@ fn test_filter_with_env_var_set() {
|
|||
let n_lines = 3;
|
||||
RandomFile::new(&at, name).add_lines(n_lines);
|
||||
|
||||
let env_var_value = "somevalue";
|
||||
let env_var_value = "some-value";
|
||||
env::set_var("FILE", &env_var_value);
|
||||
ucmd.args(&[format!("--filter={}", "cat > $FILE").as_str(), name])
|
||||
.succeeds();
|
||||
|
|
|
@ -6,20 +6,20 @@ extern crate stat;
|
|||
pub use self::stat::*;
|
||||
|
||||
#[test]
|
||||
fn test_scanutil() {
|
||||
fn test_scanners() {
|
||||
assert_eq!(Some((-5, 2)), "-5zxc".scan_num::<i32>());
|
||||
assert_eq!(Some((51, 2)), "51zxc".scan_num::<u32>());
|
||||
assert_eq!(Some((192, 4)), "+192zxc".scan_num::<i32>());
|
||||
assert_eq!(None, "z192zxc".scan_num::<i32>());
|
||||
|
||||
assert_eq!(Some(('a', 3)), "141zxc".scan_char(8));
|
||||
assert_eq!(Some(('\n', 2)), "12qzxc".scan_char(8));
|
||||
assert_eq!(Some(('\r', 1)), "dqzxc".scan_char(16));
|
||||
assert_eq!(None, "z2qzxc".scan_char(8));
|
||||
assert_eq!(Some(('\n', 2)), "12qzxc".scan_char(8)); // spell-checker:disable-line
|
||||
assert_eq!(Some(('\r', 1)), "dqzxc".scan_char(16)); // spell-checker:disable-line
|
||||
assert_eq!(None, "z2qzxc".scan_char(8)); // spell-checker:disable-line
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn test_groupnum() {
|
||||
fn test_group_num() {
|
||||
assert_eq!("12,379,821,234", group_num("12379821234"));
|
||||
assert_eq!("21,234", group_num("21234"));
|
||||
assert_eq!("821,234", group_num("821234"));
|
||||
|
@ -97,13 +97,13 @@ fn test_invalid_option() {
|
|||
}
|
||||
|
||||
#[cfg(any(target_os = "linux", target_vendor = "apple"))]
|
||||
const NORMAL_FMTSTR: &str =
|
||||
const NORMAL_FORMAT_STR: &str =
|
||||
"%a %A %b %B %d %D %f %F %g %G %h %i %m %n %o %s %u %U %x %X %y %Y %z %Z"; // avoid "%w %W" (birth/creation) due to `stat` limitations and linux kernel & rust version capability variations
|
||||
#[cfg(any(target_os = "linux"))]
|
||||
const DEV_FMTSTR: &str =
|
||||
const DEV_FORMAT_STR: &str =
|
||||
"%a %A %b %B %d %D %f %F %g %G %h %i %m %n %o %s (%t/%T) %u %U %w %W %x %X %y %Y %z %Z";
|
||||
#[cfg(target_os = "linux")]
|
||||
const FS_FMTSTR: &str = "%b %c %i %l %n %s %S %t %T"; // avoid "%a %d %f" which can cause test failure due to race conditions
|
||||
const FS_FORMAT_STR: &str = "%b %c %i %l %n %s %S %t %T"; // avoid "%a %d %f" which can cause test failure due to race conditions
|
||||
|
||||
#[test]
|
||||
#[cfg(target_os = "linux")]
|
||||
|
@ -118,7 +118,7 @@ fn test_terse_fs_format() {
|
|||
#[test]
|
||||
#[cfg(target_os = "linux")]
|
||||
fn test_fs_format() {
|
||||
let args = ["-f", "-c", FS_FMTSTR, "/dev/shm"];
|
||||
let args = ["-f", "-c", FS_FORMAT_STR, "/dev/shm"];
|
||||
new_ucmd!()
|
||||
.args(&args)
|
||||
.run()
|
||||
|
@ -207,7 +207,7 @@ fn test_format_created_seconds() {
|
|||
#[cfg(any(target_os = "linux", target_vendor = "apple"))]
|
||||
#[test]
|
||||
fn test_normal_format() {
|
||||
let args = ["-c", NORMAL_FMTSTR, "/bin"];
|
||||
let args = ["-c", NORMAL_FORMAT_STR, "/bin"];
|
||||
new_ucmd!()
|
||||
.args(&args)
|
||||
.succeeds()
|
||||
|
@ -231,14 +231,14 @@ fn test_symlinks() {
|
|||
] {
|
||||
if at.file_exists(file) && at.is_symlink(file) {
|
||||
tested = true;
|
||||
let args = ["-c", NORMAL_FMTSTR, file];
|
||||
let args = ["-c", NORMAL_FORMAT_STR, file];
|
||||
scene
|
||||
.ucmd()
|
||||
.args(&args)
|
||||
.succeeds()
|
||||
.stdout_is(expected_result(&args));
|
||||
// -L, --dereference follow links
|
||||
let args = ["-L", "-c", NORMAL_FMTSTR, file];
|
||||
let args = ["-L", "-c", NORMAL_FORMAT_STR, file];
|
||||
scene
|
||||
.ucmd()
|
||||
.args(&args)
|
||||
|
@ -261,7 +261,7 @@ fn test_char() {
|
|||
let args = [
|
||||
"-c",
|
||||
#[cfg(target_os = "linux")]
|
||||
DEV_FMTSTR,
|
||||
DEV_FORMAT_STR,
|
||||
#[cfg(target_os = "linux")]
|
||||
"/dev/pts/ptmx",
|
||||
#[cfg(any(target_vendor = "apple"))]
|
||||
|
@ -280,7 +280,7 @@ fn test_char() {
|
|||
fn test_multi_files() {
|
||||
let args = [
|
||||
"-c",
|
||||
NORMAL_FMTSTR,
|
||||
NORMAL_FORMAT_STR,
|
||||
"/dev",
|
||||
"/usr/lib",
|
||||
#[cfg(target_os = "linux")]
|
||||
|
|
|
@ -77,7 +77,7 @@ fn test_follow_multiple() {
|
|||
at.append(FOOBAR_2_TXT, first_append);
|
||||
assert_eq!(read_size(&mut child, first_append.len()), first_append);
|
||||
|
||||
let second_append = "doce\ntrece\n";
|
||||
let second_append = "twenty\nthirty\n";
|
||||
let expected = at.read("foobar_follow_multiple_appended.expected");
|
||||
at.append(FOOBAR_TXT, second_append);
|
||||
assert_eq!(read_size(&mut child, expected.len()), expected);
|
||||
|
@ -94,7 +94,7 @@ fn test_follow_stdin() {
|
|||
.stdout_is_fixture("follow_stdin.expected");
|
||||
}
|
||||
|
||||
// FixME: test PASSES for usual windows builds, but fails for coverage testing builds (likely related to the specific RUSTFLAGS '-Zpanic_abort_tests -Cpanic=abort') This test also breaks tty settings under bash requiring a 'stty sane' or reset.
|
||||
// FixME: test PASSES for usual windows builds, but fails for coverage testing builds (likely related to the specific RUSTFLAGS '-Zpanic_abort_tests -Cpanic=abort') This test also breaks tty settings under bash requiring a 'stty sane' or reset. // spell-checker:disable-line
|
||||
#[cfg(disable_until_fixed)]
|
||||
#[test]
|
||||
fn test_follow_with_pid() {
|
||||
|
@ -129,7 +129,7 @@ fn test_follow_with_pid() {
|
|||
at.append(FOOBAR_2_TXT, first_append);
|
||||
assert_eq!(read_size(&mut child, first_append.len()), first_append);
|
||||
|
||||
let second_append = "doce\ntrece\n";
|
||||
let second_append = "twenty\nthirty\n";
|
||||
let expected = at.read("foobar_follow_multiple_appended.expected");
|
||||
at.append(FOOBAR_TXT, second_append);
|
||||
assert_eq!(read_size(&mut child, expected.len()), expected);
|
||||
|
|
|
@ -8,6 +8,8 @@
|
|||
// file that was distributed with this source code.
|
||||
//
|
||||
|
||||
// spell-checker:ignore (words) pseudofloat
|
||||
|
||||
use crate::common::util::*;
|
||||
|
||||
#[test]
|
||||
|
@ -73,13 +75,13 @@ fn test_negated_or() {
|
|||
}
|
||||
|
||||
#[test]
|
||||
fn test_strlen_of_nothing() {
|
||||
fn test_string_length_of_nothing() {
|
||||
// odd but matches GNU, which must interpret -n as a literal here
|
||||
new_ucmd!().arg("-n").succeeds();
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn test_strlen_of_empty() {
|
||||
fn test_string_length_of_empty() {
|
||||
new_ucmd!().args(&["-n", ""]).run().status_code(1);
|
||||
|
||||
// STRING equivalent to -n STRING
|
||||
|
@ -98,7 +100,7 @@ fn test_zero_len_of_empty() {
|
|||
}
|
||||
|
||||
#[test]
|
||||
fn test_solo_paren_is_literal() {
|
||||
fn test_solo_parenthesis_is_literal() {
|
||||
let scenario = TestScenario::new(util_name!());
|
||||
let tests = [["("], [")"]];
|
||||
|
||||
|
@ -167,7 +169,7 @@ fn test_dangling_string_comparison_is_error() {
|
|||
}
|
||||
|
||||
#[test]
|
||||
fn test_stringop_is_literal_after_bang() {
|
||||
fn test_string_operator_is_literal_after_bang() {
|
||||
let scenario = TestScenario::new(util_name!());
|
||||
let tests = [
|
||||
["!", "="],
|
||||
|
@ -208,7 +210,7 @@ fn test_pseudofloat_not_equal() {
|
|||
#[test]
|
||||
fn test_negative_arg_is_a_string() {
|
||||
new_ucmd!().arg("-12345").succeeds();
|
||||
new_ucmd!().arg("--qwert").succeeds();
|
||||
new_ucmd!().arg("--qwert").succeeds(); // spell-checker:disable-line
|
||||
}
|
||||
|
||||
#[test]
|
||||
|
@ -475,12 +477,12 @@ fn test_nonexistent_file_is_not_symlink() {
|
|||
}
|
||||
|
||||
#[test]
|
||||
fn test_op_prec_and_or_1() {
|
||||
fn test_op_precedence_and_or_1() {
|
||||
new_ucmd!().args(&[" ", "-o", "", "-a", ""]).succeeds();
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn test_op_prec_and_or_1_overridden_by_parentheses() {
|
||||
fn test_op_precedence_and_or_1_overridden_by_parentheses() {
|
||||
new_ucmd!()
|
||||
.args(&["(", " ", "-o", "", ")", "-a", ""])
|
||||
.run()
|
||||
|
@ -488,14 +490,14 @@ fn test_op_prec_and_or_1_overridden_by_parentheses() {
|
|||
}
|
||||
|
||||
#[test]
|
||||
fn test_op_prec_and_or_2() {
|
||||
fn test_op_precedence_and_or_2() {
|
||||
new_ucmd!()
|
||||
.args(&["", "-a", "", "-o", " ", "-a", " "])
|
||||
.succeeds();
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn test_op_prec_and_or_2_overridden_by_parentheses() {
|
||||
fn test_op_precedence_and_or_2_overridden_by_parentheses() {
|
||||
new_ucmd!()
|
||||
.args(&["", "-a", "(", "", "-o", " ", ")", "-a", " "])
|
||||
.run()
|
||||
|
@ -529,7 +531,7 @@ fn test_negated_boolean_precedence() {
|
|||
}
|
||||
|
||||
#[test]
|
||||
fn test_bang_boolop_precedence() {
|
||||
fn test_bang_bool_op_precedence() {
|
||||
// For a Boolean combination of two literals, bang inverts the entire expression
|
||||
new_ucmd!().args(&["!", "", "-a", ""]).succeeds();
|
||||
new_ucmd!().args(&["!", "", "-o", ""]).succeeds();
|
||||
|
@ -564,7 +566,7 @@ fn test_bang_boolop_precedence() {
|
|||
}
|
||||
|
||||
#[test]
|
||||
fn test_inverted_parenthetical_boolop_precedence() {
|
||||
fn test_inverted_parenthetical_bool_op_precedence() {
|
||||
// For a Boolean combination of two literals, bang inverts the entire expression
|
||||
new_ucmd!()
|
||||
.args(&["!", "a value", "-o", "another value"])
|
||||
|
@ -618,6 +620,6 @@ fn test_or_as_filename() {
|
|||
|
||||
#[test]
|
||||
#[ignore = "GNU considers this an error"]
|
||||
fn test_strlen_and_nothing() {
|
||||
fn test_string_length_and_nothing() {
|
||||
new_ucmd!().args(&["-n", "a", "-a"]).run().status_code(2);
|
||||
}
|
||||
|
|
|
@ -4,7 +4,7 @@ use crate::common::util::*;
|
|||
// the best solution is probably to generate some test binaries that we can call for any
|
||||
// utility that requires executing another program (kill, for instance)
|
||||
#[test]
|
||||
fn test_subcommand_retcode() {
|
||||
fn test_subcommand_return_code() {
|
||||
new_ucmd!().arg("1").arg("true").succeeds();
|
||||
|
||||
new_ucmd!().arg("1").arg("false").run().status_code(1);
|
||||
|
|
|
@ -1,3 +1,5 @@
|
|||
// spell-checker:ignore (formats) cymdhm cymdhms mdhm mdhms ymdhm ymdhms
|
||||
|
||||
extern crate touch;
|
||||
use self::touch::filetime::{self, FileTime};
|
||||
|
||||
|
@ -354,6 +356,34 @@ fn test_touch_set_date() {
|
|||
assert_eq!(mtime, start_of_year);
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn test_touch_set_date2() {
|
||||
let (at, mut ucmd) = at_and_ucmd!();
|
||||
let file = "test_touch_set_date";
|
||||
|
||||
ucmd.args(&["-d", "2000-01-23", file])
|
||||
.succeeds()
|
||||
.no_stderr();
|
||||
|
||||
assert!(at.file_exists(file));
|
||||
|
||||
let start_of_year = str_to_filetime("%Y%m%d%H%M", "200001230000");
|
||||
let (atime, mtime) = get_file_times(&at, file);
|
||||
assert_eq!(atime, mtime);
|
||||
assert_eq!(atime, start_of_year);
|
||||
assert_eq!(mtime, start_of_year);
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn test_touch_set_date_wrong_format() {
|
||||
let (_at, mut ucmd) = at_and_ucmd!();
|
||||
let file = "test_touch_set_date_wrong_format";
|
||||
|
||||
ucmd.args(&["-d", "2005-43-21", file])
|
||||
.fails()
|
||||
.stderr_contains("Unable to parse date: 2005-43-21");
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn test_touch_mtime_dst_succeeds() {
|
||||
let (at, mut ucmd) = at_and_ucmd!();
|
||||
|
@ -383,13 +413,13 @@ fn is_dst_switch_hour(ts: time::Timespec) -> bool {
|
|||
tm_after.tm_hour == tm.tm_hour + 2
|
||||
}
|
||||
|
||||
// get_dstswitch_hour returns date string for which touch -m -t fails.
|
||||
// get_dst_switch_hour returns date string for which touch -m -t fails.
|
||||
// For example, in EST (UTC-5), that will be "202003080200" so
|
||||
// touch -m -t 202003080200 somefile
|
||||
// touch -m -t 202003080200 file
|
||||
// fails (that date/time does not exist).
|
||||
// In other locales it will be a different date/time, and in some locales
|
||||
// it doesn't exist at all, in which case this function will return None.
|
||||
fn get_dstswitch_hour() -> Option<String> {
|
||||
fn get_dst_switch_hour() -> Option<String> {
|
||||
let now = time::now();
|
||||
// Start from January 1, 2020, 00:00.
|
||||
let mut tm = time::strptime("20200101-0000", "%Y%m%d-%H%M").unwrap();
|
||||
|
@ -415,7 +445,7 @@ fn test_touch_mtime_dst_fails() {
|
|||
let (_at, mut ucmd) = at_and_ucmd!();
|
||||
let file = "test_touch_set_mtime_dst_fails";
|
||||
|
||||
if let Some(s) = get_dstswitch_hour() {
|
||||
if let Some(s) = get_dst_switch_hour() {
|
||||
ucmd.args(&["-m", "-t", &s, file]).fails();
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
use crate::common::util::*;
|
||||
|
||||
#[test]
|
||||
fn test_toupper() {
|
||||
fn test_to_upper() {
|
||||
new_ucmd!()
|
||||
.args(&["a-z", "A-Z"])
|
||||
.pipe_in("!abcd!")
|
||||
|
@ -80,10 +80,10 @@ fn test_complement2() {
|
|||
#[test]
|
||||
fn test_complement3() {
|
||||
new_ucmd!()
|
||||
.args(&["-c", "abcdefgh", "123"])
|
||||
.args(&["-c", "abcdefgh", "123"]) // spell-checker:disable-line
|
||||
.pipe_in("the cat and the bat")
|
||||
.run()
|
||||
.stdout_is("3he3ca33a3d33he3ba3");
|
||||
.stdout_is("3he3ca33a3d33he3ba3"); // spell-checker:disable-line
|
||||
}
|
||||
|
||||
#[test]
|
||||
|
@ -140,9 +140,9 @@ fn test_translate_and_squeeze() {
|
|||
fn test_translate_and_squeeze_multiple_lines() {
|
||||
new_ucmd!()
|
||||
.args(&["-s", "x", "y"])
|
||||
.pipe_in("xxaax\nxaaxx")
|
||||
.pipe_in("xxaax\nxaaxx") // spell-checker:disable-line
|
||||
.run()
|
||||
.stdout_is("yaay\nyaay");
|
||||
.stdout_is("yaay\nyaay"); // spell-checker:disable-line
|
||||
}
|
||||
|
||||
#[test]
|
||||
|
@ -169,7 +169,7 @@ fn test_set1_longer_than_set2() {
|
|||
.args(&["abc", "xy"])
|
||||
.pipe_in("abcde")
|
||||
.run()
|
||||
.stdout_is("xyyde");
|
||||
.stdout_is("xyyde"); // spell-checker:disable-line
|
||||
}
|
||||
|
||||
#[test]
|
||||
|
@ -178,7 +178,7 @@ fn test_set1_shorter_than_set2() {
|
|||
.args(&["ab", "xyz"])
|
||||
.pipe_in("abcde")
|
||||
.run()
|
||||
.stdout_is("xycde");
|
||||
.stdout_is("xycde"); // spell-checker:disable-line
|
||||
}
|
||||
|
||||
#[test]
|
||||
|
@ -187,7 +187,7 @@ fn test_truncate() {
|
|||
.args(&["-t", "abc", "xy"])
|
||||
.pipe_in("abcde")
|
||||
.run()
|
||||
.stdout_is("xycde");
|
||||
.stdout_is("xycde"); // spell-checker:disable-line
|
||||
}
|
||||
|
||||
#[test]
|
||||
|
@ -196,7 +196,7 @@ fn test_truncate_with_set1_shorter_than_set2() {
|
|||
.args(&["-t", "ab", "xyz"])
|
||||
.pipe_in("abcde")
|
||||
.run()
|
||||
.stdout_is("xycde");
|
||||
.stdout_is("xycde"); // spell-checker:disable-line
|
||||
}
|
||||
|
||||
#[test]
|
||||
|
@ -216,8 +216,8 @@ fn missing_required_second_arg_fails() {
|
|||
#[test]
|
||||
fn test_interpret_backslash_escapes() {
|
||||
new_ucmd!()
|
||||
.args(&["abfnrtv", r"\a\b\f\n\r\t\v"])
|
||||
.pipe_in("abfnrtv")
|
||||
.args(&["abfnrtv", r"\a\b\f\n\r\t\v"]) // spell-checker:disable-line
|
||||
.pipe_in("abfnrtv") // spell-checker:disable-line
|
||||
.succeeds()
|
||||
.stdout_is("\u{7}\u{8}\u{c}\n\r\t\u{b}");
|
||||
}
|
||||
|
|
|
@ -1,15 +1,15 @@
|
|||
use crate::common::util::*;
|
||||
use std::io::{Seek, SeekFrom, Write};
|
||||
|
||||
static TFILE1: &str = "truncate_test_1";
|
||||
static TFILE2: &str = "truncate_test_2";
|
||||
static FILE1: &str = "truncate_test_1";
|
||||
static FILE2: &str = "truncate_test_2";
|
||||
|
||||
#[test]
|
||||
fn test_increase_file_size() {
|
||||
let expected = 5 * 1024;
|
||||
let (at, mut ucmd) = at_and_ucmd!();
|
||||
let mut file = at.make_file(TFILE1);
|
||||
ucmd.args(&["-s", "+5K", TFILE1]).succeeds();
|
||||
let mut file = at.make_file(FILE1);
|
||||
ucmd.args(&["-s", "+5K", FILE1]).succeeds();
|
||||
|
||||
file.seek(SeekFrom::End(0)).unwrap();
|
||||
let actual = file.seek(SeekFrom::Current(0)).unwrap();
|
||||
|
@ -25,8 +25,8 @@ fn test_increase_file_size() {
|
|||
fn test_increase_file_size_kb() {
|
||||
let expected = 5 * 1000;
|
||||
let (at, mut ucmd) = at_and_ucmd!();
|
||||
let mut file = at.make_file(TFILE1);
|
||||
ucmd.args(&["-s", "+5KB", TFILE1]).succeeds();
|
||||
let mut file = at.make_file(FILE1);
|
||||
ucmd.args(&["-s", "+5KB", FILE1]).succeeds();
|
||||
|
||||
file.seek(SeekFrom::End(0)).unwrap();
|
||||
let actual = file.seek(SeekFrom::Current(0)).unwrap();
|
||||
|
@ -43,18 +43,19 @@ fn test_reference() {
|
|||
let expected = 5 * 1000;
|
||||
let scene = TestScenario::new(util_name!());
|
||||
let at = &scene.fixtures;
|
||||
let mut file = at.make_file(TFILE2);
|
||||
let mut file = at.make_file(FILE2);
|
||||
|
||||
// TODO: 'truncate' should create the file in this case because '--no-create' wasn't used
|
||||
// A FILE argument that does not exist is created.
|
||||
at.touch(TFILE1);
|
||||
scene.ucmd().arg("-s").arg("+5KB").arg(TFILE1).succeeds();
|
||||
// manpage: "A FILE argument that does not exist is created."
|
||||
// TODO: 'truncate' does not create the file in this case,
|
||||
// but should because '--no-create' wasn't specified.
|
||||
at.touch(FILE1); // TODO: remove this when fixed
|
||||
scene.ucmd().arg("-s").arg("+5KB").arg(FILE1).succeeds();
|
||||
|
||||
scene
|
||||
.ucmd()
|
||||
.arg("--reference")
|
||||
.arg(TFILE1)
|
||||
.arg(TFILE2)
|
||||
.arg(FILE1)
|
||||
.arg(FILE2)
|
||||
.succeeds();
|
||||
|
||||
file.seek(SeekFrom::End(0)).unwrap();
|
||||
|
@ -71,9 +72,9 @@ fn test_reference() {
|
|||
fn test_decrease_file_size() {
|
||||
let expected = 6;
|
||||
let (at, mut ucmd) = at_and_ucmd!();
|
||||
let mut file = at.make_file(TFILE2);
|
||||
let mut file = at.make_file(FILE2);
|
||||
file.write_all(b"1234567890").unwrap();
|
||||
ucmd.args(&["--size=-4", TFILE2]).succeeds();
|
||||
ucmd.args(&["--size=-4", FILE2]).succeeds();
|
||||
file.seek(SeekFrom::End(0)).unwrap();
|
||||
let actual = file.seek(SeekFrom::Current(0)).unwrap();
|
||||
assert!(
|
||||
|
@ -88,9 +89,9 @@ fn test_decrease_file_size() {
|
|||
fn test_space_in_size() {
|
||||
let expected = 4;
|
||||
let (at, mut ucmd) = at_and_ucmd!();
|
||||
let mut file = at.make_file(TFILE2);
|
||||
let mut file = at.make_file(FILE2);
|
||||
file.write_all(b"1234567890").unwrap();
|
||||
ucmd.args(&["--size", " 4", TFILE2]).succeeds();
|
||||
ucmd.args(&["--size", " 4", FILE2]).succeeds();
|
||||
file.seek(SeekFrom::End(0)).unwrap();
|
||||
let actual = file.seek(SeekFrom::Current(0)).unwrap();
|
||||
assert!(
|
||||
|
@ -109,22 +110,22 @@ fn test_failed() {
|
|||
#[test]
|
||||
fn test_failed_2() {
|
||||
let (_at, mut ucmd) = at_and_ucmd!();
|
||||
ucmd.args(&[TFILE1]).fails();
|
||||
ucmd.args(&[FILE1]).fails();
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn test_failed_incorrect_arg() {
|
||||
let (_at, mut ucmd) = at_and_ucmd!();
|
||||
ucmd.args(&["-s", "+5A", TFILE1]).fails();
|
||||
ucmd.args(&["-s", "+5A", FILE1]).fails();
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn test_at_most_shrinks() {
|
||||
let expected = 4;
|
||||
let (at, mut ucmd) = at_and_ucmd!();
|
||||
let mut file = at.make_file(TFILE2);
|
||||
let mut file = at.make_file(FILE2);
|
||||
file.write_all(b"1234567890").unwrap();
|
||||
ucmd.args(&["--size", "<4", TFILE2]).succeeds();
|
||||
ucmd.args(&["--size", "<4", FILE2]).succeeds();
|
||||
file.seek(SeekFrom::End(0)).unwrap();
|
||||
let actual = file.seek(SeekFrom::Current(0)).unwrap();
|
||||
assert!(
|
||||
|
@ -139,9 +140,9 @@ fn test_at_most_shrinks() {
|
|||
fn test_at_most_no_change() {
|
||||
let expected = 10;
|
||||
let (at, mut ucmd) = at_and_ucmd!();
|
||||
let mut file = at.make_file(TFILE2);
|
||||
let mut file = at.make_file(FILE2);
|
||||
file.write_all(b"1234567890").unwrap();
|
||||
ucmd.args(&["--size", "<40", TFILE2]).succeeds();
|
||||
ucmd.args(&["--size", "<40", FILE2]).succeeds();
|
||||
file.seek(SeekFrom::End(0)).unwrap();
|
||||
let actual = file.seek(SeekFrom::Current(0)).unwrap();
|
||||
assert!(
|
||||
|
@ -156,9 +157,9 @@ fn test_at_most_no_change() {
|
|||
fn test_at_least_grows() {
|
||||
let expected = 15;
|
||||
let (at, mut ucmd) = at_and_ucmd!();
|
||||
let mut file = at.make_file(TFILE2);
|
||||
let mut file = at.make_file(FILE2);
|
||||
file.write_all(b"1234567890").unwrap();
|
||||
ucmd.args(&["--size", ">15", TFILE2]).succeeds();
|
||||
ucmd.args(&["--size", ">15", FILE2]).succeeds();
|
||||
file.seek(SeekFrom::End(0)).unwrap();
|
||||
let actual = file.seek(SeekFrom::Current(0)).unwrap();
|
||||
assert!(
|
||||
|
@ -173,9 +174,9 @@ fn test_at_least_grows() {
|
|||
fn test_at_least_no_change() {
|
||||
let expected = 10;
|
||||
let (at, mut ucmd) = at_and_ucmd!();
|
||||
let mut file = at.make_file(TFILE2);
|
||||
let mut file = at.make_file(FILE2);
|
||||
file.write_all(b"1234567890").unwrap();
|
||||
ucmd.args(&["--size", ">4", TFILE2]).succeeds();
|
||||
ucmd.args(&["--size", ">4", FILE2]).succeeds();
|
||||
file.seek(SeekFrom::End(0)).unwrap();
|
||||
let actual = file.seek(SeekFrom::Current(0)).unwrap();
|
||||
assert!(
|
||||
|
@ -190,9 +191,9 @@ fn test_at_least_no_change() {
|
|||
fn test_round_down() {
|
||||
let expected = 8;
|
||||
let (at, mut ucmd) = at_and_ucmd!();
|
||||
let mut file = at.make_file(TFILE2);
|
||||
let mut file = at.make_file(FILE2);
|
||||
file.write_all(b"1234567890").unwrap();
|
||||
ucmd.args(&["--size", "/4", TFILE2]).succeeds();
|
||||
ucmd.args(&["--size", "/4", FILE2]).succeeds();
|
||||
file.seek(SeekFrom::End(0)).unwrap();
|
||||
let actual = file.seek(SeekFrom::Current(0)).unwrap();
|
||||
assert!(
|
||||
|
@ -207,9 +208,9 @@ fn test_round_down() {
|
|||
fn test_round_up() {
|
||||
let expected = 12;
|
||||
let (at, mut ucmd) = at_and_ucmd!();
|
||||
let mut file = at.make_file(TFILE2);
|
||||
let mut file = at.make_file(FILE2);
|
||||
file.write_all(b"1234567890").unwrap();
|
||||
ucmd.args(&["--size", "%4", TFILE2]).succeeds();
|
||||
ucmd.args(&["--size", "%4", FILE2]).succeeds();
|
||||
file.seek(SeekFrom::End(0)).unwrap();
|
||||
let actual = file.seek(SeekFrom::Current(0)).unwrap();
|
||||
assert!(
|
||||
|
@ -224,10 +225,10 @@ fn test_round_up() {
|
|||
fn test_size_and_reference() {
|
||||
let expected = 15;
|
||||
let (at, mut ucmd) = at_and_ucmd!();
|
||||
let mut file1 = at.make_file(TFILE1);
|
||||
let mut file2 = at.make_file(TFILE2);
|
||||
let mut file1 = at.make_file(FILE1);
|
||||
let mut file2 = at.make_file(FILE2);
|
||||
file1.write_all(b"1234567890").unwrap();
|
||||
ucmd.args(&["--reference", TFILE1, "--size", "+5", TFILE2])
|
||||
ucmd.args(&["--reference", FILE1, "--size", "+5", FILE2])
|
||||
.succeeds();
|
||||
file2.seek(SeekFrom::End(0)).unwrap();
|
||||
let actual = file2.seek(SeekFrom::Current(0)).unwrap();
|
||||
|
|
|
@ -17,7 +17,7 @@ fn test_uname_processor() {
|
|||
}
|
||||
|
||||
#[test]
|
||||
fn test_uname_hwplatform() {
|
||||
fn test_uname_hardware_platform() {
|
||||
let result = new_ucmd!().arg("-i").succeeds();
|
||||
assert_eq!(result.stdout_str().trim_end(), "unknown");
|
||||
}
|
||||
|
|
|
@ -38,7 +38,7 @@ fn unexpand_init_list_1() {
|
|||
}
|
||||
|
||||
#[test]
|
||||
fn unexpand_aflag_0() {
|
||||
fn unexpand_flag_a_0() {
|
||||
new_ucmd!()
|
||||
.args(&["--"])
|
||||
.pipe_in("e E\nf F\ng G\nh H\n")
|
||||
|
@ -47,7 +47,7 @@ fn unexpand_aflag_0() {
|
|||
}
|
||||
|
||||
#[test]
|
||||
fn unexpand_aflag_1() {
|
||||
fn unexpand_flag_a_1() {
|
||||
new_ucmd!()
|
||||
.args(&["-a"])
|
||||
.pipe_in("e E\nf F\ng G\nh H\n")
|
||||
|
@ -56,7 +56,7 @@ fn unexpand_aflag_1() {
|
|||
}
|
||||
|
||||
#[test]
|
||||
fn unexpand_aflag_2() {
|
||||
fn unexpand_flag_a_2() {
|
||||
new_ucmd!()
|
||||
.args(&["-t8"])
|
||||
.pipe_in("e E\nf F\ng G\nh H\n")
|
||||
|
|
|
@ -22,5 +22,5 @@ fn test_uptime_since() {
|
|||
|
||||
#[test]
|
||||
fn test_failed() {
|
||||
new_ucmd!().arg("willfail").fails();
|
||||
new_ucmd!().arg("will-fail").fails();
|
||||
}
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
use crate::common::util::*;
|
||||
|
||||
#[test]
|
||||
fn test_users_noarg() {
|
||||
fn test_users_no_arg() {
|
||||
new_ucmd!().succeeds();
|
||||
}
|
||||
|
||||
|
|
|
@ -1,5 +1,7 @@
|
|||
use crate::common::util::*;
|
||||
|
||||
// spell-checker:ignore (flags) lwmcL clmwL ; (path) bogusfile emptyfile manyemptylines moby notrailingnewline onelongemptyline onelongword
|
||||
|
||||
#[test]
|
||||
fn test_count_bytes_large_stdin() {
|
||||
for &n in &[
|
||||
|
|
|
@ -1,5 +1,7 @@
|
|||
use crate::common::util::*;
|
||||
|
||||
// spell-checker:ignore (flags) runlevel mesg
|
||||
|
||||
#[cfg(any(target_vendor = "apple", target_os = "linux"))]
|
||||
#[test]
|
||||
fn test_count() {
|
||||
|
|
|
@ -221,6 +221,20 @@ impl CmdResult {
|
|||
let contents = read_scenario_fixture(&self.tmpd, file_rel_path);
|
||||
self.stdout_is(String::from_utf8(contents).unwrap())
|
||||
}
|
||||
/// like stdout_is_fixture(...), but replaces the data in fixture file based on values provided in template_vars
|
||||
/// command output
|
||||
pub fn stdout_is_templated_fixture<T: AsRef<OsStr>>(
|
||||
&self,
|
||||
file_rel_path: T,
|
||||
template_vars: Vec<(&String, &String)>,
|
||||
) -> &CmdResult {
|
||||
let mut contents =
|
||||
String::from_utf8(read_scenario_fixture(&self.tmpd, file_rel_path)).unwrap();
|
||||
for kv in template_vars {
|
||||
contents = contents.replace(kv.0, kv.1);
|
||||
}
|
||||
self.stdout_is(contents)
|
||||
}
|
||||
|
||||
/// asserts that the command resulted in stderr stream output that equals the
|
||||
/// passed in value, when both are trimmed of trailing whitespace
|
||||
|
@ -632,7 +646,7 @@ impl TestScenario {
|
|||
let tmpd = Rc::new(TempDir::new().unwrap());
|
||||
let ts = TestScenario {
|
||||
bin_path: {
|
||||
// Instead of hardcoding the path relative to the current
|
||||
// Instead of hard coding the path relative to the current
|
||||
// directory, use Cargo's OUT_DIR to find path to executable.
|
||||
// This allows tests to be run using profiles other than debug.
|
||||
let target_dir = path_concat!(env!("OUT_DIR"), "..", "..", "..", PROGNAME);
|
||||
|
@ -722,9 +736,10 @@ impl UCommand {
|
|||
cmd.current_dir(curdir.as_ref());
|
||||
if env_clear {
|
||||
if cfg!(windows) {
|
||||
// spell-checker:ignore (dll) rsaenh
|
||||
// %SYSTEMROOT% is required on Windows to initialize crypto provider
|
||||
// ... and crypto provider is required for std::rand
|
||||
// From procmon: RegQueryValue HKLM\SOFTWARE\Microsoft\Cryptography\Defaults\Provider\Microsoft Strong Cryptographic Provider\Image Path
|
||||
// From `procmon`: RegQueryValue HKLM\SOFTWARE\Microsoft\Cryptography\Defaults\Provider\Microsoft Strong Cryptographic Provider\Image Path
|
||||
// SUCCESS Type: REG_SZ, Length: 66, Data: %SystemRoot%\system32\rsaenh.dll"
|
||||
for (key, _) in env::vars_os() {
|
||||
if key.as_os_str() != "SYSTEMROOT" {
|
||||
|
@ -802,7 +817,7 @@ impl UCommand {
|
|||
self
|
||||
}
|
||||
|
||||
/// provides stdinput to feed in to the command when spawned
|
||||
/// provides standard input to feed in to the command when spawned
|
||||
pub fn pipe_in<T: Into<Vec<u8>>>(&mut self, input: T) -> &mut UCommand {
|
||||
if self.bytes_into_stdin.is_some() {
|
||||
panic!("{}", MULTIPLE_STDIN_MEANINGLESS);
|
||||
|
@ -910,6 +925,11 @@ impl UCommand {
|
|||
cmd_result.failure();
|
||||
cmd_result
|
||||
}
|
||||
|
||||
pub fn get_full_fixture_path(&self, file_rel_path: &str) -> String {
|
||||
let tmpdir_path = self.tmpd.as_ref().unwrap().path();
|
||||
format!("{}/{}", tmpdir_path.to_str().unwrap(), file_rel_path)
|
||||
}
|
||||
}
|
||||
|
||||
pub fn read_size(child: &mut Child, size: usize) -> String {
|
||||
|
@ -934,6 +954,7 @@ pub fn vec_of_size(n: usize) -> Vec<u8> {
|
|||
/// Sanity checks for test utils
|
||||
#[cfg(test)]
|
||||
mod tests {
|
||||
// spell-checker:ignore (tests) asdfsadfa
|
||||
use super::*;
|
||||
|
||||
#[test]
|
||||
|
@ -1012,7 +1033,7 @@ mod tests {
|
|||
}
|
||||
|
||||
#[test]
|
||||
fn test_no_std_errout() {
|
||||
fn test_no_stderr_output() {
|
||||
let res = CmdResult {
|
||||
tmpd: None,
|
||||
code: None,
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
cat: test_directory3/test_directory4: Is a directory
|
||||
cat: filewhichdoesnotexist.txt: No such file or directory (os error 2)
|
||||
cat: file_which_does_not_exist.txt: No such file or directory (os error 2)
|
||||
cat: test_directory3/test_directory5: Is a directory
|
||||
cat: test_directory3/../test_directory3/test_directory5: Is a directory
|
||||
cat: test_directory3: Is a directory
|
||||
|
|
330
tests/fixtures/pr/0F
vendored
Normal file
330
tests/fixtures/pr/0F
vendored
Normal file
|
@ -0,0 +1,330 @@
|
|||
|
||||
|
||||
{last_modified_time} {file_name} Page 1
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
{last_modified_time} {file_name} Page 2
|
||||
|
||||
|
||||
1 FF-Test: FF's at Start of File V
|
||||
2 Options -b -3 / -a -3 / ...
|
||||
3 --------------------------------------------
|
||||
4 3456789 123456789 123456789 123456789 12345678
|
||||
5 3 Columns downwards ..., <= 5 lines per page
|
||||
6 FF-Arangements: Empty Pages at start
|
||||
7 \ftext; \f\ntext;
|
||||
8 \f\ftext; \f\f\ntext; \f\n\ftext; \f\n\f\n;
|
||||
9 3456789 123456789 123456789
|
||||
10 zzzzzzzzzzzzzzzzzzzzzzzzzz123456789
|
||||
1 12345678
|
||||
2 12345678
|
||||
3 line truncation before FF; r_r_o_l-test:
|
||||
14 456789 123456789 123456789 123456789
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
{last_modified_time} {file_name} Page 3
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
{last_modified_time} {file_name} Page 4
|
||||
|
||||
|
||||
15 xyzxyzxyz XYZXYZXYZ abcabcab
|
||||
16 456789 123456789 xyzxyzxyz XYZXYZXYZ
|
||||
7 12345678
|
||||
8 12345678
|
||||
9 3456789 ab
|
||||
20 DEFGHI 123
|
||||
1 12345678
|
||||
2 12345678
|
||||
3 12345678
|
||||
4 12345678
|
||||
5 12345678
|
||||
6 12345678
|
||||
27 no truncation before FF; (r_l-test):
|
||||
28 no trunc
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
{last_modified_time} {file_name} Page 5
|
||||
|
||||
|
||||
29 xyzxyzxyz XYZXYZXYZ abcabcab
|
||||
30 456789 123456789 xyzxyzxyz XYZXYZXYZ
|
||||
1 12345678
|
||||
2 3456789 abcdefghi
|
||||
3 12345678
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
36
tests/fixtures/pr/0Fnt
vendored
Normal file
36
tests/fixtures/pr/0Fnt
vendored
Normal file
|
@ -0,0 +1,36 @@
|
|||
|
||||
1 FF-Test: FF's at Start of File V
|
||||
2 Options -b -3 / -a -3 / ...
|
||||
3 --------------------------------------------
|
||||
4 3456789 123456789 123456789 123456789 12345678
|
||||
5 3 Columns downwards ..., <= 5 lines per page
|
||||
6 FF-Arangements: Empty Pages at start
|
||||
7 \ftext; \f\ntext;
|
||||
8 \f\ftext; \f\f\ntext; \f\n\ftext; \f\n\f\n;
|
||||
9 3456789 123456789 123456789
|
||||
10 zzzzzzzzzzzzzzzzzzzzzzzzzz123456789
|
||||
1 12345678
|
||||
2 12345678
|
||||
3 line truncation before FF; r_r_o_l-test:
|
||||
14 456789 123456789 123456789 123456789
|
||||
|
||||
15 xyzxyzxyz XYZXYZXYZ abcabcab
|
||||
16 456789 123456789 xyzxyzxyz XYZXYZXYZ
|
||||
7 12345678
|
||||
8 12345678
|
||||
9 3456789 ab
|
||||
20 DEFGHI 123
|
||||
1 12345678
|
||||
2 12345678
|
||||
3 12345678
|
||||
4 12345678
|
||||
5 12345678
|
||||
6 12345678
|
||||
27 no truncation before FF; (r_l-test):
|
||||
28 no trunc
|
||||
|
||||
29 xyzxyzxyz XYZXYZXYZ abcabcab
|
||||
30 456789 123456789 xyzxyzxyz XYZXYZXYZ
|
||||
1 12345678
|
||||
2 3456789 abcdefghi
|
||||
3 12345678
|
35
tests/fixtures/pr/0Ft
vendored
Normal file
35
tests/fixtures/pr/0Ft
vendored
Normal file
|
@ -0,0 +1,35 @@
|
|||
1 FF-Test: FF's at Start of File V
|
||||
2 Options -b -3 / -a -3 / ...
|
||||
3 --------------------------------------------
|
||||
4 3456789 123456789 123456789 123456789 12345678
|
||||
5 3 Columns downwards ..., <= 5 lines per page
|
||||
6 FF-Arangements: Empty Pages at start
|
||||
7 \ftext; \f\ntext;
|
||||
8 \f\ftext; \f\f\ntext; \f\n\ftext; \f\n\f\n;
|
||||
9 3456789 123456789 123456789
|
||||
10 zzzzzzzzzzzzzzzzzzzzzzzzzz123456789
|
||||
1 12345678
|
||||
2 12345678
|
||||
3 line truncation before FF; r_r_o_l-test:
|
||||
14 456789 123456789 123456789 123456789
|
||||
|
||||
15 xyzxyzxyz XYZXYZXYZ abcabcab
|
||||
16 456789 123456789 xyzxyzxyz XYZXYZXYZ
|
||||
7 12345678
|
||||
8 12345678
|
||||
9 3456789 ab
|
||||
20 DEFGHI 123
|
||||
1 12345678
|
||||
2 12345678
|
||||
3 12345678
|
||||
4 12345678
|
||||
5 12345678
|
||||
6 12345678
|
||||
27 no truncation before FF; (r_l-test):
|
||||
28 no trunc
|
||||
|
||||
29 xyzxyzxyz XYZXYZXYZ abcabcab
|
||||
30 456789 123456789 xyzxyzxyz XYZXYZXYZ
|
||||
1 12345678
|
||||
2 3456789 abcdefghi
|
||||
3 12345678
|
198
tests/fixtures/pr/3-0F
vendored
Normal file
198
tests/fixtures/pr/3-0F
vendored
Normal file
|
@ -0,0 +1,198 @@
|
|||
|
||||
|
||||
{last_modified_time} {file_name} Page 3
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
{last_modified_time} {file_name} Page 4
|
||||
|
||||
|
||||
15 xyzxyzxyz XYZXYZXYZ abcabcab
|
||||
16 456789 123456789 xyzxyzxyz XYZXYZXYZ
|
||||
7 12345678
|
||||
8 12345678
|
||||
9 3456789 ab
|
||||
20 DEFGHI 123
|
||||
1 12345678
|
||||
2 12345678
|
||||
3 12345678
|
||||
4 12345678
|
||||
5 12345678
|
||||
6 12345678
|
||||
27 no truncation before FF; (r_l-test):
|
||||
28 no trunc
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
{last_modified_time} {file_name} Page 5
|
||||
|
||||
|
||||
29 xyzxyzxyz XYZXYZXYZ abcabcab
|
||||
30 456789 123456789 xyzxyzxyz XYZXYZXYZ
|
||||
1 12345678
|
||||
2 3456789 abcdefghi
|
||||
3 12345678
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
22
tests/fixtures/pr/3a3f-0F
vendored
Normal file
22
tests/fixtures/pr/3a3f-0F
vendored
Normal file
|
@ -0,0 +1,22 @@
|
|||
|
||||
|
||||
{last_modified_time} {file_name} Page 3
|
||||
|
||||
|
||||
|
||||
|
||||
{last_modified_time} {file_name} Page 4
|
||||
|
||||
|
||||
15 xyzxyzxyz XYZXYZXYZ 16 456789 123456789 xyz 7
|
||||
8 9 3456789 ab 20 DEFGHI 123
|
||||
1 2 3
|
||||
4 5 6
|
||||
27 no truncation before 28 no trunc
|
||||
|
||||
|
||||
{last_modified_time} {file_name} Page 5
|
||||
|
||||
|
||||
29 xyzxyzxyz XYZXYZXYZ 30 456789 123456789 xyz 1
|
||||
2 3456789 abcdefghi 3
|
36
tests/fixtures/pr/3f-0F
vendored
Normal file
36
tests/fixtures/pr/3f-0F
vendored
Normal file
|
@ -0,0 +1,36 @@
|
|||
|
||||
|
||||
{last_modified_time} {file_name} Page 3
|
||||
|
||||
|
||||
|
||||
|
||||
{last_modified_time} {file_name} Page 4
|
||||
|
||||
|
||||
15 xyzxyzxyz XYZXYZXYZ abcabcab
|
||||
16 456789 123456789 xyzxyzxyz XYZXYZXYZ
|
||||
7 12345678
|
||||
8 12345678
|
||||
9 3456789 ab
|
||||
20 DEFGHI 123
|
||||
1 12345678
|
||||
2 12345678
|
||||
3 12345678
|
||||
4 12345678
|
||||
5 12345678
|
||||
6 12345678
|
||||
27 no truncation before FF; (r_l-test):
|
||||
28 no trunc
|
||||
|
||||
|
||||
|
||||
{last_modified_time} {file_name} Page 5
|
||||
|
||||
|
||||
29 xyzxyzxyz XYZXYZXYZ abcabcab
|
||||
30 456789 123456789 xyzxyzxyz XYZXYZXYZ
|
||||
1 12345678
|
||||
2 3456789 abcdefghi
|
||||
3 12345678
|
||||
|
68
tests/fixtures/pr/FnFn
vendored
Normal file
68
tests/fixtures/pr/FnFn
vendored
Normal file
|
@ -0,0 +1,68 @@
|
|||
1 FF-Test: FF's in Text V
|
||||
2 Options -b -3 / -a -3 / ...
|
||||
3 --------------------------------------------
|
||||
4 3456789 123456789 123456789 123456789 12345678
|
||||
5 3 Columns downwards ..., <= 5 lines per page
|
||||
6 FF-Arangements: One Empty Page
|
||||
7 text\f\f\n; text\f\n\ftext; \f\ftext;
|
||||
8 \f\f\n; \f\n\f\n;
|
||||
9
|
||||
10 zzzzzzzzzzzzzzzzzzzzzzzzzz123456789
|
||||
1 12345678
|
||||
2 12345678
|
||||
3 line truncation before FF; r_r_o_l-test:
|
||||
14 456789 123456789 123456789 123456789
|
||||
|
||||
|
||||
15 xyzxyzxyz XYZXYZXYZ abcabcab
|
||||
16 456789 123456789 xyzxyzxyz XYZXYZXYZ
|
||||
7 12345678
|
||||
8 12345678
|
||||
9 3456789 ab
|
||||
20 DEFGHI 123
|
||||
1 12345678
|
||||
2 12345678
|
||||
3 12345678
|
||||
4 12345678
|
||||
5 12345678
|
||||
6 12345678
|
||||
27 no truncation before FF; (r_l-test):
|
||||
28 no trunc
|
||||
|
||||
|
||||
29 xyzxyzxyz XYZXYZXYZ abcabcab
|
||||
30 456789 123456789 xyzxyzxyz XYZXYZXYZ
|
||||
1 12345678
|
||||
2 3456789 abcdefghi
|
||||
3 12345678
|
||||
4 12345678
|
||||
5 12345678
|
||||
6 12345678
|
||||
7 12345678
|
||||
8 12345678
|
||||
9 3456789 abcdefghi
|
||||
40 DEFGHI 123456789
|
||||
41 yzxyzxyz XYZXYZXYZ abcabcab
|
||||
42 456789 123456789 abcdefghi ABCDEDFHI
|
||||
|
||||
|
||||
|
||||
43 xyzxyzxyz XYZXYZXYZ abcabcab
|
||||
44 456789 123456789 xyzxyzxyz XYZXYZXYZ
|
||||
5 12345678
|
||||
6 12345678
|
||||
7 12345678
|
||||
8 12345678
|
||||
9 12345678
|
||||
50 12345678
|
||||
1 12345678
|
||||
2 12345678
|
||||
3 12345678
|
||||
4 12345678
|
||||
55 yzxyzxyz XYZXYZXYZ abcabcab
|
||||
56 456789 123456789 abcdefghi ABCDEDFHI
|
||||
|
||||
57 xyzxyzxyz XYZXYZXYZ abcabcab
|
||||
58 456789 123456789 xyzxyzxyz XYZXYZXYZ
|
||||
9 12345678
|
||||
60 DEFGHI 123456789
|
106
tests/fixtures/pr/W20l24f-ll
vendored
Normal file
106
tests/fixtures/pr/W20l24f-ll
vendored
Normal file
|
@ -0,0 +1,106 @@
|
|||
|
||||
|
||||
{last_modified_time} {file_name} Page 1
|
||||
|
||||
|
||||
1<<< -Test: FF's in
|
||||
2<<< -b -3 / -a -3
|
||||
3<<< >>>
|
||||
4<<< 123456789 1234
|
||||
|
||||
6<<< -Arangements:
|
||||
7<<< \f\f\n; text\f
|
||||
8<<< f\f\n; \f\n\f\
|
||||
9<<< >>>
|
||||
10<<< >>>
|
||||
1<<< >>>
|
||||
2<<< >>>
|
||||
3<<< truncation bef
|
||||
14<<< 123456789 123
|
||||
|
||||
|
||||
{last_modified_time} {file_name} Page 2
|
||||
|
||||
|
||||
|
||||
|
||||
{last_modified_time} {file_name} Page 3
|
||||
|
||||
|
||||
15<<< xyzxyzxyz XYZ
|
||||
16<<< 123456789 xyz
|
||||
7<<< >>>
|
||||
8<<< >>>
|
||||
9<<< >>>
|
||||
20<<< >>>
|
||||
1<<< >>>
|
||||
|
||||
|
||||
4<<< >>>
|
||||
5<<< >>>
|
||||
6<<< >>>
|
||||
27<<< truncation be
|
||||
28<<< trunc
|
||||
|
||||
|
||||
{last_modified_time} {file_name} Page 4
|
||||
|
||||
|
||||
|
||||
|
||||
{last_modified_time} {file_name} Page 5
|
||||
|
||||
|
||||
29<<<xyzxyzxyz XYZXY
|
||||
30<<< 123456789 xyz
|
||||
1<<< >>>
|
||||
2<<< abcdefghi >>>
|
||||
3<<< >>>
|
||||
4<<< >>>
|
||||
5<<< >>>
|
||||
6<<< >>>
|
||||
7<<< >>>
|
||||
8<<< >>>
|
||||
9<<< abcdefghi >>>
|
||||
40<<< 123456789 >>
|
||||
41<<< XYZXYZXYZ abc
|
||||
42<<< 123456789 abc
|
||||
|
||||
|
||||
{last_modified_time} {file_name} Page 6
|
||||
|
||||
|
||||
|
||||
|
||||
{last_modified_time} {file_name} Page 7
|
||||
|
||||
|
||||
|
||||
|
||||
{last_modified_time} {file_name} Page 8
|
||||
|
||||
|
||||
43<<< xyzxyzxyz XYZ
|
||||
44<<< 123456789 xyz
|
||||
5<<< >>>
|
||||
6<<< >>>
|
||||
7<<< >>>
|
||||
8<<< >>>
|
||||
9<<< >>>
|
||||
50<<< >>>
|
||||
1<<< >>>
|
||||
2<<< >>>
|
||||
3<<< >>>
|
||||
4<<< >>>
|
||||
55<<< XYZXYZXYZ abc
|
||||
56<<< 123456789 abc
|
||||
|
||||
|
||||
{last_modified_time} {file_name} Page 9
|
||||
|
||||
|
||||
57<<< xyzxyzxyz XYZ
|
||||
58<<< 123456789 xyz
|
||||
9<<< >>>
|
||||
60<<< 123456789 >>
|
||||
|
330
tests/fixtures/pr/a3-0F
vendored
Normal file
330
tests/fixtures/pr/a3-0F
vendored
Normal file
|
@ -0,0 +1,330 @@
|
|||
|
||||
|
||||
{last_modified_time} {file_name} Page 1
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
{last_modified_time} {file_name} Page 2
|
||||
|
||||
|
||||
1 FF-Test: FF's at St 2 Options -b -3 / -a 3 -------------------
|
||||
4 3456789 123456789 123 5 3 Columns downwards 6 FF-Arangements: Emp
|
||||
7 \ftext; \f\ntext; 8 \f\ftext; \f\f\ntex 9 3456789 123456789 123
|
||||
10 zzzzzzzzzzzzzzzzzzz 1 2
|
||||
3 line truncation befor 14 456789 123456789 123
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
{last_modified_time} {file_name} Page 3
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
{last_modified_time} {file_name} Page 4
|
||||
|
||||
|
||||
15 xyzxyzxyz XYZXYZXYZ 16 456789 123456789 xyz 7
|
||||
8 9 3456789 ab 20 DEFGHI 123
|
||||
1 2 3
|
||||
4 5 6
|
||||
27 no truncation before 28 no trunc
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
{last_modified_time} {file_name} Page 5
|
||||
|
||||
|
||||
29 xyzxyzxyz XYZXYZXYZ 30 456789 123456789 xyz 1
|
||||
2 3456789 abcdefghi 3
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
37
tests/fixtures/pr/a3f-0F
vendored
Normal file
37
tests/fixtures/pr/a3f-0F
vendored
Normal file
|
@ -0,0 +1,37 @@
|
|||
|
||||
|
||||
{last_modified_time} {file_name} Page 1
|
||||
|
||||
|
||||
|
||||
|
||||
{last_modified_time} {file_name} Page 2
|
||||
|
||||
|
||||
1 FF-Test: FF's at St 2 Options -b -3 / -a 3 -------------------
|
||||
4 3456789 123456789 123 5 3 Columns downwards 6 FF-Arangements: Emp
|
||||
7 \ftext; \f\ntext; 8 \f\ftext; \f\f\ntex 9 3456789 123456789 123
|
||||
10 zzzzzzzzzzzzzzzzzzz 1 2
|
||||
3 line truncation befor 14 456789 123456789 123
|
||||
|
||||
|
||||
{last_modified_time} {file_name} Page 3
|
||||
|
||||
|
||||
|
||||
|
||||
{last_modified_time} {file_name} Page 4
|
||||
|
||||
|
||||
15 xyzxyzxyz XYZXYZXYZ 16 456789 123456789 xyz 7
|
||||
8 9 3456789 ab 20 DEFGHI 123
|
||||
1 2 3
|
||||
4 5 6
|
||||
27 no truncation before 28 no trunc
|
||||
|
||||
|
||||
{last_modified_time} {file_name} Page 5
|
||||
|
||||
|
||||
29 xyzxyzxyz XYZXYZXYZ 30 456789 123456789 xyz 1
|
||||
2 3456789 abcdefghi 3
|
2000
tests/fixtures/pr/column.log
vendored
Normal file
2000
tests/fixtures/pr/column.log
vendored
Normal file
File diff suppressed because it is too large
Load diff
198
tests/fixtures/pr/column.log.expected
vendored
Normal file
198
tests/fixtures/pr/column.log.expected
vendored
Normal file
|
@ -0,0 +1,198 @@
|
|||
|
||||
|
||||
{last_modified_time} column.log Page 3
|
||||
|
||||
|
||||
337 337 393 393 449 449
|
||||
338 338 394 394 450 450
|
||||
339 339 395 395 451 451
|
||||
340 340 396 396 452 452
|
||||
341 341 397 397 453 453
|
||||
342 342 398 398 454 454
|
||||
343 343 399 399 455 455
|
||||
344 344 400 400 456 456
|
||||
345 345 401 401 457 457
|
||||
346 346 402 402 458 458
|
||||
347 347 403 403 459 459
|
||||
348 348 404 404 460 460
|
||||
349 349 405 405 461 461
|
||||
350 350 406 406 462 462
|
||||
351 351 407 407 463 463
|
||||
352 352 408 408 464 464
|
||||
353 353 409 409 465 465
|
||||
354 354 410 410 466 466
|
||||
355 355 411 411 467 467
|
||||
356 356 412 412 468 468
|
||||
357 357 413 413 469 469
|
||||
358 358 414 414 470 470
|
||||
359 359 415 415 471 471
|
||||
360 360 416 416 472 472
|
||||
361 361 417 417 473 473
|
||||
362 362 418 418 474 474
|
||||
363 363 419 419 475 475
|
||||
364 364 420 420 476 476
|
||||
365 365 421 421 477 477
|
||||
366 366 422 422 478 478
|
||||
367 367 423 423 479 479
|
||||
368 368 424 424 480 480
|
||||
369 369 425 425 481 481
|
||||
370 370 426 426 482 482
|
||||
371 371 427 427 483 483
|
||||
372 372 428 428 484 484
|
||||
373 373 429 429 485 485
|
||||
374 374 430 430 486 486
|
||||
375 375 431 431 487 487
|
||||
376 376 432 432 488 488
|
||||
377 377 433 433 489 489
|
||||
378 378 434 434 490 490
|
||||
379 379 435 435 491 491
|
||||
380 380 436 436 492 492
|
||||
381 381 437 437 493 493
|
||||
382 382 438 438 494 494
|
||||
383 383 439 439 495 495
|
||||
384 384 440 440 496 496
|
||||
385 385 441 441 497 497
|
||||
386 386 442 442 498 498
|
||||
387 387 443 443 499 499
|
||||
388 388 444 444 500 500
|
||||
389 389 445 445 501 501
|
||||
390 390 446 446 502 502
|
||||
391 391 447 447 503 503
|
||||
392 392 448 448 504 504
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
{last_modified_time} column.log Page 4
|
||||
|
||||
|
||||
505 505 561 561 617 617
|
||||
506 506 562 562 618 618
|
||||
507 507 563 563 619 619
|
||||
508 508 564 564 620 620
|
||||
509 509 565 565 621 621
|
||||
510 510 566 566 622 622
|
||||
511 511 567 567 623 623
|
||||
512 512 568 568 624 624
|
||||
513 513 569 569 625 625
|
||||
514 514 570 570 626 626
|
||||
515 515 571 571 627 627
|
||||
516 516 572 572 628 628
|
||||
517 517 573 573 629 629
|
||||
518 518 574 574 630 630
|
||||
519 519 575 575 631 631
|
||||
520 520 576 576 632 632
|
||||
521 521 577 577 633 633
|
||||
522 522 578 578 634 634
|
||||
523 523 579 579 635 635
|
||||
524 524 580 580 636 636
|
||||
525 525 581 581 637 637
|
||||
526 526 582 582 638 638
|
||||
527 527 583 583 639 639
|
||||
528 528 584 584 640 640
|
||||
529 529 585 585 641 641
|
||||
530 530 586 586 642 642
|
||||
531 531 587 587 643 643
|
||||
532 532 588 588 644 644
|
||||
533 533 589 589 645 645
|
||||
534 534 590 590 646 646
|
||||
535 535 591 591 647 647
|
||||
536 536 592 592 648 648
|
||||
537 537 593 593 649 649
|
||||
538 538 594 594 650 650
|
||||
539 539 595 595 651 651
|
||||
540 540 596 596 652 652
|
||||
541 541 597 597 653 653
|
||||
542 542 598 598 654 654
|
||||
543 543 599 599 655 655
|
||||
544 544 600 600 656 656
|
||||
545 545 601 601 657 657
|
||||
546 546 602 602 658 658
|
||||
547 547 603 603 659 659
|
||||
548 548 604 604 660 660
|
||||
549 549 605 605 661 661
|
||||
550 550 606 606 662 662
|
||||
551 551 607 607 663 663
|
||||
552 552 608 608 664 664
|
||||
553 553 609 609 665 665
|
||||
554 554 610 610 666 666
|
||||
555 555 611 611 667 667
|
||||
556 556 612 612 668 668
|
||||
557 557 613 613 669 669
|
||||
558 558 614 614 670 670
|
||||
559 559 615 615 671 671
|
||||
560 560 616 616 672 672
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
{last_modified_time} column.log Page 5
|
||||
|
||||
|
||||
673 673 729 729 785 785
|
||||
674 674 730 730 786 786
|
||||
675 675 731 731 787 787
|
||||
676 676 732 732 788 788
|
||||
677 677 733 733 789 789
|
||||
678 678 734 734 790 790
|
||||
679 679 735 735 791 791
|
||||
680 680 736 736 792 792
|
||||
681 681 737 737 793 793
|
||||
682 682 738 738 794 794
|
||||
683 683 739 739 795 795
|
||||
684 684 740 740 796 796
|
||||
685 685 741 741 797 797
|
||||
686 686 742 742 798 798
|
||||
687 687 743 743 799 799
|
||||
688 688 744 744 800 800
|
||||
689 689 745 745 801 801
|
||||
690 690 746 746 802 802
|
||||
691 691 747 747 803 803
|
||||
692 692 748 748 804 804
|
||||
693 693 749 749 805 805
|
||||
694 694 750 750 806 806
|
||||
695 695 751 751 807 807
|
||||
696 696 752 752 808 808
|
||||
697 697 753 753 809 809
|
||||
698 698 754 754 810 810
|
||||
699 699 755 755 811 811
|
||||
700 700 756 756 812 812
|
||||
701 701 757 757 813 813
|
||||
702 702 758 758 814 814
|
||||
703 703 759 759 815 815
|
||||
704 704 760 760 816 816
|
||||
705 705 761 761 817 817
|
||||
706 706 762 762 818 818
|
||||
707 707 763 763 819 819
|
||||
708 708 764 764 820 820
|
||||
709 709 765 765 821 821
|
||||
710 710 766 766 822 822
|
||||
711 711 767 767 823 823
|
||||
712 712 768 768 824 824
|
||||
713 713 769 769 825 825
|
||||
714 714 770 770 826 826
|
||||
715 715 771 771 827 827
|
||||
716 716 772 772 828 828
|
||||
717 717 773 773 829 829
|
||||
718 718 774 774 830 830
|
||||
719 719 775 775 831 831
|
||||
720 720 776 776 832 832
|
||||
721 721 777 777 833 833
|
||||
722 722 778 778 834 834
|
||||
723 723 779 779 835 835
|
||||
724 724 780 780 836 836
|
||||
725 725 781 781 837 837
|
||||
726 726 782 782 838 838
|
||||
727 727 783 783 839 839
|
||||
728 728 784 784 840 840
|
||||
|
||||
|
||||
|
||||
|
||||
|
198
tests/fixtures/pr/column_across.log.expected
vendored
Normal file
198
tests/fixtures/pr/column_across.log.expected
vendored
Normal file
|
@ -0,0 +1,198 @@
|
|||
|
||||
|
||||
{last_modified_time} column.log Page 3
|
||||
|
||||
|
||||
337 337 338 338 339 339
|
||||
340 340 341 341 342 342
|
||||
343 343 344 344 345 345
|
||||
346 346 347 347 348 348
|
||||
349 349 350 350 351 351
|
||||
352 352 353 353 354 354
|
||||
355 355 356 356 357 357
|
||||
358 358 359 359 360 360
|
||||
361 361 362 362 363 363
|
||||
364 364 365 365 366 366
|
||||
367 367 368 368 369 369
|
||||
370 370 371 371 372 372
|
||||
373 373 374 374 375 375
|
||||
376 376 377 377 378 378
|
||||
379 379 380 380 381 381
|
||||
382 382 383 383 384 384
|
||||
385 385 386 386 387 387
|
||||
388 388 389 389 390 390
|
||||
391 391 392 392 393 393
|
||||
394 394 395 395 396 396
|
||||
397 397 398 398 399 399
|
||||
400 400 401 401 402 402
|
||||
403 403 404 404 405 405
|
||||
406 406 407 407 408 408
|
||||
409 409 410 410 411 411
|
||||
412 412 413 413 414 414
|
||||
415 415 416 416 417 417
|
||||
418 418 419 419 420 420
|
||||
421 421 422 422 423 423
|
||||
424 424 425 425 426 426
|
||||
427 427 428 428 429 429
|
||||
430 430 431 431 432 432
|
||||
433 433 434 434 435 435
|
||||
436 436 437 437 438 438
|
||||
439 439 440 440 441 441
|
||||
442 442 443 443 444 444
|
||||
445 445 446 446 447 447
|
||||
448 448 449 449 450 450
|
||||
451 451 452 452 453 453
|
||||
454 454 455 455 456 456
|
||||
457 457 458 458 459 459
|
||||
460 460 461 461 462 462
|
||||
463 463 464 464 465 465
|
||||
466 466 467 467 468 468
|
||||
469 469 470 470 471 471
|
||||
472 472 473 473 474 474
|
||||
475 475 476 476 477 477
|
||||
478 478 479 479 480 480
|
||||
481 481 482 482 483 483
|
||||
484 484 485 485 486 486
|
||||
487 487 488 488 489 489
|
||||
490 490 491 491 492 492
|
||||
493 493 494 494 495 495
|
||||
496 496 497 497 498 498
|
||||
499 499 500 500 501 501
|
||||
502 502 503 503 504 504
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
{last_modified_time} column.log Page 4
|
||||
|
||||
|
||||
505 505 506 506 507 507
|
||||
508 508 509 509 510 510
|
||||
511 511 512 512 513 513
|
||||
514 514 515 515 516 516
|
||||
517 517 518 518 519 519
|
||||
520 520 521 521 522 522
|
||||
523 523 524 524 525 525
|
||||
526 526 527 527 528 528
|
||||
529 529 530 530 531 531
|
||||
532 532 533 533 534 534
|
||||
535 535 536 536 537 537
|
||||
538 538 539 539 540 540
|
||||
541 541 542 542 543 543
|
||||
544 544 545 545 546 546
|
||||
547 547 548 548 549 549
|
||||
550 550 551 551 552 552
|
||||
553 553 554 554 555 555
|
||||
556 556 557 557 558 558
|
||||
559 559 560 560 561 561
|
||||
562 562 563 563 564 564
|
||||
565 565 566 566 567 567
|
||||
568 568 569 569 570 570
|
||||
571 571 572 572 573 573
|
||||
574 574 575 575 576 576
|
||||
577 577 578 578 579 579
|
||||
580 580 581 581 582 582
|
||||
583 583 584 584 585 585
|
||||
586 586 587 587 588 588
|
||||
589 589 590 590 591 591
|
||||
592 592 593 593 594 594
|
||||
595 595 596 596 597 597
|
||||
598 598 599 599 600 600
|
||||
601 601 602 602 603 603
|
||||
604 604 605 605 606 606
|
||||
607 607 608 608 609 609
|
||||
610 610 611 611 612 612
|
||||
613 613 614 614 615 615
|
||||
616 616 617 617 618 618
|
||||
619 619 620 620 621 621
|
||||
622 622 623 623 624 624
|
||||
625 625 626 626 627 627
|
||||
628 628 629 629 630 630
|
||||
631 631 632 632 633 633
|
||||
634 634 635 635 636 636
|
||||
637 637 638 638 639 639
|
||||
640 640 641 641 642 642
|
||||
643 643 644 644 645 645
|
||||
646 646 647 647 648 648
|
||||
649 649 650 650 651 651
|
||||
652 652 653 653 654 654
|
||||
655 655 656 656 657 657
|
||||
658 658 659 659 660 660
|
||||
661 661 662 662 663 663
|
||||
664 664 665 665 666 666
|
||||
667 667 668 668 669 669
|
||||
670 670 671 671 672 672
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
{last_modified_time} column.log Page 5
|
||||
|
||||
|
||||
673 673 674 674 675 675
|
||||
676 676 677 677 678 678
|
||||
679 679 680 680 681 681
|
||||
682 682 683 683 684 684
|
||||
685 685 686 686 687 687
|
||||
688 688 689 689 690 690
|
||||
691 691 692 692 693 693
|
||||
694 694 695 695 696 696
|
||||
697 697 698 698 699 699
|
||||
700 700 701 701 702 702
|
||||
703 703 704 704 705 705
|
||||
706 706 707 707 708 708
|
||||
709 709 710 710 711 711
|
||||
712 712 713 713 714 714
|
||||
715 715 716 716 717 717
|
||||
718 718 719 719 720 720
|
||||
721 721 722 722 723 723
|
||||
724 724 725 725 726 726
|
||||
727 727 728 728 729 729
|
||||
730 730 731 731 732 732
|
||||
733 733 734 734 735 735
|
||||
736 736 737 737 738 738
|
||||
739 739 740 740 741 741
|
||||
742 742 743 743 744 744
|
||||
745 745 746 746 747 747
|
||||
748 748 749 749 750 750
|
||||
751 751 752 752 753 753
|
||||
754 754 755 755 756 756
|
||||
757 757 758 758 759 759
|
||||
760 760 761 761 762 762
|
||||
763 763 764 764 765 765
|
||||
766 766 767 767 768 768
|
||||
769 769 770 770 771 771
|
||||
772 772 773 773 774 774
|
||||
775 775 776 776 777 777
|
||||
778 778 779 779 780 780
|
||||
781 781 782 782 783 783
|
||||
784 784 785 785 786 786
|
||||
787 787 788 788 789 789
|
||||
790 790 791 791 792 792
|
||||
793 793 794 794 795 795
|
||||
796 796 797 797 798 798
|
||||
799 799 800 800 801 801
|
||||
802 802 803 803 804 804
|
||||
805 805 806 806 807 807
|
||||
808 808 809 809 810 810
|
||||
811 811 812 812 813 813
|
||||
814 814 815 815 816 816
|
||||
817 817 818 818 819 819
|
||||
820 820 821 821 822 822
|
||||
823 823 824 824 825 825
|
||||
826 826 827 827 828 828
|
||||
829 829 830 830 831 831
|
||||
832 832 833 833 834 834
|
||||
835 835 836 836 837 837
|
||||
838 838 839 839 840 840
|
||||
|
||||
|
||||
|
||||
|
||||
|
198
tests/fixtures/pr/column_across_sep.log.expected
vendored
Normal file
198
tests/fixtures/pr/column_across_sep.log.expected
vendored
Normal file
|
@ -0,0 +1,198 @@
|
|||
|
||||
|
||||
{last_modified_time} column.log Page 3
|
||||
|
||||
|
||||
337 337 | 338 338 | 339 339
|
||||
340 340 | 341 341 | 342 342
|
||||
343 343 | 344 344 | 345 345
|
||||
346 346 | 347 347 | 348 348
|
||||
349 349 | 350 350 | 351 351
|
||||
352 352 | 353 353 | 354 354
|
||||
355 355 | 356 356 | 357 357
|
||||
358 358 | 359 359 | 360 360
|
||||
361 361 | 362 362 | 363 363
|
||||
364 364 | 365 365 | 366 366
|
||||
367 367 | 368 368 | 369 369
|
||||
370 370 | 371 371 | 372 372
|
||||
373 373 | 374 374 | 375 375
|
||||
376 376 | 377 377 | 378 378
|
||||
379 379 | 380 380 | 381 381
|
||||
382 382 | 383 383 | 384 384
|
||||
385 385 | 386 386 | 387 387
|
||||
388 388 | 389 389 | 390 390
|
||||
391 391 | 392 392 | 393 393
|
||||
394 394 | 395 395 | 396 396
|
||||
397 397 | 398 398 | 399 399
|
||||
400 400 | 401 401 | 402 402
|
||||
403 403 | 404 404 | 405 405
|
||||
406 406 | 407 407 | 408 408
|
||||
409 409 | 410 410 | 411 411
|
||||
412 412 | 413 413 | 414 414
|
||||
415 415 | 416 416 | 417 417
|
||||
418 418 | 419 419 | 420 420
|
||||
421 421 | 422 422 | 423 423
|
||||
424 424 | 425 425 | 426 426
|
||||
427 427 | 428 428 | 429 429
|
||||
430 430 | 431 431 | 432 432
|
||||
433 433 | 434 434 | 435 435
|
||||
436 436 | 437 437 | 438 438
|
||||
439 439 | 440 440 | 441 441
|
||||
442 442 | 443 443 | 444 444
|
||||
445 445 | 446 446 | 447 447
|
||||
448 448 | 449 449 | 450 450
|
||||
451 451 | 452 452 | 453 453
|
||||
454 454 | 455 455 | 456 456
|
||||
457 457 | 458 458 | 459 459
|
||||
460 460 | 461 461 | 462 462
|
||||
463 463 | 464 464 | 465 465
|
||||
466 466 | 467 467 | 468 468
|
||||
469 469 | 470 470 | 471 471
|
||||
472 472 | 473 473 | 474 474
|
||||
475 475 | 476 476 | 477 477
|
||||
478 478 | 479 479 | 480 480
|
||||
481 481 | 482 482 | 483 483
|
||||
484 484 | 485 485 | 486 486
|
||||
487 487 | 488 488 | 489 489
|
||||
490 490 | 491 491 | 492 492
|
||||
493 493 | 494 494 | 495 495
|
||||
496 496 | 497 497 | 498 498
|
||||
499 499 | 500 500 | 501 501
|
||||
502 502 | 503 503 | 504 504
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
{last_modified_time} column.log Page 4
|
||||
|
||||
|
||||
505 505 | 506 506 | 507 507
|
||||
508 508 | 509 509 | 510 510
|
||||
511 511 | 512 512 | 513 513
|
||||
514 514 | 515 515 | 516 516
|
||||
517 517 | 518 518 | 519 519
|
||||
520 520 | 521 521 | 522 522
|
||||
523 523 | 524 524 | 525 525
|
||||
526 526 | 527 527 | 528 528
|
||||
529 529 | 530 530 | 531 531
|
||||
532 532 | 533 533 | 534 534
|
||||
535 535 | 536 536 | 537 537
|
||||
538 538 | 539 539 | 540 540
|
||||
541 541 | 542 542 | 543 543
|
||||
544 544 | 545 545 | 546 546
|
||||
547 547 | 548 548 | 549 549
|
||||
550 550 | 551 551 | 552 552
|
||||
553 553 | 554 554 | 555 555
|
||||
556 556 | 557 557 | 558 558
|
||||
559 559 | 560 560 | 561 561
|
||||
562 562 | 563 563 | 564 564
|
||||
565 565 | 566 566 | 567 567
|
||||
568 568 | 569 569 | 570 570
|
||||
571 571 | 572 572 | 573 573
|
||||
574 574 | 575 575 | 576 576
|
||||
577 577 | 578 578 | 579 579
|
||||
580 580 | 581 581 | 582 582
|
||||
583 583 | 584 584 | 585 585
|
||||
586 586 | 587 587 | 588 588
|
||||
589 589 | 590 590 | 591 591
|
||||
592 592 | 593 593 | 594 594
|
||||
595 595 | 596 596 | 597 597
|
||||
598 598 | 599 599 | 600 600
|
||||
601 601 | 602 602 | 603 603
|
||||
604 604 | 605 605 | 606 606
|
||||
607 607 | 608 608 | 609 609
|
||||
610 610 | 611 611 | 612 612
|
||||
613 613 | 614 614 | 615 615
|
||||
616 616 | 617 617 | 618 618
|
||||
619 619 | 620 620 | 621 621
|
||||
622 622 | 623 623 | 624 624
|
||||
625 625 | 626 626 | 627 627
|
||||
628 628 | 629 629 | 630 630
|
||||
631 631 | 632 632 | 633 633
|
||||
634 634 | 635 635 | 636 636
|
||||
637 637 | 638 638 | 639 639
|
||||
640 640 | 641 641 | 642 642
|
||||
643 643 | 644 644 | 645 645
|
||||
646 646 | 647 647 | 648 648
|
||||
649 649 | 650 650 | 651 651
|
||||
652 652 | 653 653 | 654 654
|
||||
655 655 | 656 656 | 657 657
|
||||
658 658 | 659 659 | 660 660
|
||||
661 661 | 662 662 | 663 663
|
||||
664 664 | 665 665 | 666 666
|
||||
667 667 | 668 668 | 669 669
|
||||
670 670 | 671 671 | 672 672
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
{last_modified_time} column.log Page 5
|
||||
|
||||
|
||||
673 673 | 674 674 | 675 675
|
||||
676 676 | 677 677 | 678 678
|
||||
679 679 | 680 680 | 681 681
|
||||
682 682 | 683 683 | 684 684
|
||||
685 685 | 686 686 | 687 687
|
||||
688 688 | 689 689 | 690 690
|
||||
691 691 | 692 692 | 693 693
|
||||
694 694 | 695 695 | 696 696
|
||||
697 697 | 698 698 | 699 699
|
||||
700 700 | 701 701 | 702 702
|
||||
703 703 | 704 704 | 705 705
|
||||
706 706 | 707 707 | 708 708
|
||||
709 709 | 710 710 | 711 711
|
||||
712 712 | 713 713 | 714 714
|
||||
715 715 | 716 716 | 717 717
|
||||
718 718 | 719 719 | 720 720
|
||||
721 721 | 722 722 | 723 723
|
||||
724 724 | 725 725 | 726 726
|
||||
727 727 | 728 728 | 729 729
|
||||
730 730 | 731 731 | 732 732
|
||||
733 733 | 734 734 | 735 735
|
||||
736 736 | 737 737 | 738 738
|
||||
739 739 | 740 740 | 741 741
|
||||
742 742 | 743 743 | 744 744
|
||||
745 745 | 746 746 | 747 747
|
||||
748 748 | 749 749 | 750 750
|
||||
751 751 | 752 752 | 753 753
|
||||
754 754 | 755 755 | 756 756
|
||||
757 757 | 758 758 | 759 759
|
||||
760 760 | 761 761 | 762 762
|
||||
763 763 | 764 764 | 765 765
|
||||
766 766 | 767 767 | 768 768
|
||||
769 769 | 770 770 | 771 771
|
||||
772 772 | 773 773 | 774 774
|
||||
775 775 | 776 776 | 777 777
|
||||
778 778 | 779 779 | 780 780
|
||||
781 781 | 782 782 | 783 783
|
||||
784 784 | 785 785 | 786 786
|
||||
787 787 | 788 788 | 789 789
|
||||
790 790 | 791 791 | 792 792
|
||||
793 793 | 794 794 | 795 795
|
||||
796 796 | 797 797 | 798 798
|
||||
799 799 | 800 800 | 801 801
|
||||
802 802 | 803 803 | 804 804
|
||||
805 805 | 806 806 | 807 807
|
||||
808 808 | 809 809 | 810 810
|
||||
811 811 | 812 812 | 813 813
|
||||
814 814 | 815 815 | 816 816
|
||||
817 817 | 818 818 | 819 819
|
||||
820 820 | 821 821 | 822 822
|
||||
823 823 | 824 824 | 825 825
|
||||
826 826 | 827 827 | 828 828
|
||||
829 829 | 830 830 | 831 831
|
||||
832 832 | 833 833 | 834 834
|
||||
835 835 | 836 836 | 837 837
|
||||
838 838 | 839 839 | 840 840
|
||||
|
||||
|
||||
|
||||
|
||||
|
198
tests/fixtures/pr/column_across_sep1.log.expected
vendored
Normal file
198
tests/fixtures/pr/column_across_sep1.log.expected
vendored
Normal file
|
@ -0,0 +1,198 @@
|
|||
|
||||
|
||||
{last_modified_time} column.log Page 3
|
||||
|
||||
|
||||
337 337 divide 338 338 divide 339 339
|
||||
340 340 divide 341 341 divide 342 342
|
||||
343 343 divide 344 344 divide 345 345
|
||||
346 346 divide 347 347 divide 348 348
|
||||
349 349 divide 350 350 divide 351 351
|
||||
352 352 divide 353 353 divide 354 354
|
||||
355 355 divide 356 356 divide 357 357
|
||||
358 358 divide 359 359 divide 360 360
|
||||
361 361 divide 362 362 divide 363 363
|
||||
364 364 divide 365 365 divide 366 366
|
||||
367 367 divide 368 368 divide 369 369
|
||||
370 370 divide 371 371 divide 372 372
|
||||
373 373 divide 374 374 divide 375 375
|
||||
376 376 divide 377 377 divide 378 378
|
||||
379 379 divide 380 380 divide 381 381
|
||||
382 382 divide 383 383 divide 384 384
|
||||
385 385 divide 386 386 divide 387 387
|
||||
388 388 divide 389 389 divide 390 390
|
||||
391 391 divide 392 392 divide 393 393
|
||||
394 394 divide 395 395 divide 396 396
|
||||
397 397 divide 398 398 divide 399 399
|
||||
400 400 divide 401 401 divide 402 402
|
||||
403 403 divide 404 404 divide 405 405
|
||||
406 406 divide 407 407 divide 408 408
|
||||
409 409 divide 410 410 divide 411 411
|
||||
412 412 divide 413 413 divide 414 414
|
||||
415 415 divide 416 416 divide 417 417
|
||||
418 418 divide 419 419 divide 420 420
|
||||
421 421 divide 422 422 divide 423 423
|
||||
424 424 divide 425 425 divide 426 426
|
||||
427 427 divide 428 428 divide 429 429
|
||||
430 430 divide 431 431 divide 432 432
|
||||
433 433 divide 434 434 divide 435 435
|
||||
436 436 divide 437 437 divide 438 438
|
||||
439 439 divide 440 440 divide 441 441
|
||||
442 442 divide 443 443 divide 444 444
|
||||
445 445 divide 446 446 divide 447 447
|
||||
448 448 divide 449 449 divide 450 450
|
||||
451 451 divide 452 452 divide 453 453
|
||||
454 454 divide 455 455 divide 456 456
|
||||
457 457 divide 458 458 divide 459 459
|
||||
460 460 divide 461 461 divide 462 462
|
||||
463 463 divide 464 464 divide 465 465
|
||||
466 466 divide 467 467 divide 468 468
|
||||
469 469 divide 470 470 divide 471 471
|
||||
472 472 divide 473 473 divide 474 474
|
||||
475 475 divide 476 476 divide 477 477
|
||||
478 478 divide 479 479 divide 480 480
|
||||
481 481 divide 482 482 divide 483 483
|
||||
484 484 divide 485 485 divide 486 486
|
||||
487 487 divide 488 488 divide 489 489
|
||||
490 490 divide 491 491 divide 492 492
|
||||
493 493 divide 494 494 divide 495 495
|
||||
496 496 divide 497 497 divide 498 498
|
||||
499 499 divide 500 500 divide 501 501
|
||||
502 502 divide 503 503 divide 504 504
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
{last_modified_time} column.log Page 4
|
||||
|
||||
|
||||
505 505 divide 506 506 divide 507 507
|
||||
508 508 divide 509 509 divide 510 510
|
||||
511 511 divide 512 512 divide 513 513
|
||||
514 514 divide 515 515 divide 516 516
|
||||
517 517 divide 518 518 divide 519 519
|
||||
520 520 divide 521 521 divide 522 522
|
||||
523 523 divide 524 524 divide 525 525
|
||||
526 526 divide 527 527 divide 528 528
|
||||
529 529 divide 530 530 divide 531 531
|
||||
532 532 divide 533 533 divide 534 534
|
||||
535 535 divide 536 536 divide 537 537
|
||||
538 538 divide 539 539 divide 540 540
|
||||
541 541 divide 542 542 divide 543 543
|
||||
544 544 divide 545 545 divide 546 546
|
||||
547 547 divide 548 548 divide 549 549
|
||||
550 550 divide 551 551 divide 552 552
|
||||
553 553 divide 554 554 divide 555 555
|
||||
556 556 divide 557 557 divide 558 558
|
||||
559 559 divide 560 560 divide 561 561
|
||||
562 562 divide 563 563 divide 564 564
|
||||
565 565 divide 566 566 divide 567 567
|
||||
568 568 divide 569 569 divide 570 570
|
||||
571 571 divide 572 572 divide 573 573
|
||||
574 574 divide 575 575 divide 576 576
|
||||
577 577 divide 578 578 divide 579 579
|
||||
580 580 divide 581 581 divide 582 582
|
||||
583 583 divide 584 584 divide 585 585
|
||||
586 586 divide 587 587 divide 588 588
|
||||
589 589 divide 590 590 divide 591 591
|
||||
592 592 divide 593 593 divide 594 594
|
||||
595 595 divide 596 596 divide 597 597
|
||||
598 598 divide 599 599 divide 600 600
|
||||
601 601 divide 602 602 divide 603 603
|
||||
604 604 divide 605 605 divide 606 606
|
||||
607 607 divide 608 608 divide 609 609
|
||||
610 610 divide 611 611 divide 612 612
|
||||
613 613 divide 614 614 divide 615 615
|
||||
616 616 divide 617 617 divide 618 618
|
||||
619 619 divide 620 620 divide 621 621
|
||||
622 622 divide 623 623 divide 624 624
|
||||
625 625 divide 626 626 divide 627 627
|
||||
628 628 divide 629 629 divide 630 630
|
||||
631 631 divide 632 632 divide 633 633
|
||||
634 634 divide 635 635 divide 636 636
|
||||
637 637 divide 638 638 divide 639 639
|
||||
640 640 divide 641 641 divide 642 642
|
||||
643 643 divide 644 644 divide 645 645
|
||||
646 646 divide 647 647 divide 648 648
|
||||
649 649 divide 650 650 divide 651 651
|
||||
652 652 divide 653 653 divide 654 654
|
||||
655 655 divide 656 656 divide 657 657
|
||||
658 658 divide 659 659 divide 660 660
|
||||
661 661 divide 662 662 divide 663 663
|
||||
664 664 divide 665 665 divide 666 666
|
||||
667 667 divide 668 668 divide 669 669
|
||||
670 670 divide 671 671 divide 672 672
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
{last_modified_time} column.log Page 5
|
||||
|
||||
|
||||
673 673 divide 674 674 divide 675 675
|
||||
676 676 divide 677 677 divide 678 678
|
||||
679 679 divide 680 680 divide 681 681
|
||||
682 682 divide 683 683 divide 684 684
|
||||
685 685 divide 686 686 divide 687 687
|
||||
688 688 divide 689 689 divide 690 690
|
||||
691 691 divide 692 692 divide 693 693
|
||||
694 694 divide 695 695 divide 696 696
|
||||
697 697 divide 698 698 divide 699 699
|
||||
700 700 divide 701 701 divide 702 702
|
||||
703 703 divide 704 704 divide 705 705
|
||||
706 706 divide 707 707 divide 708 708
|
||||
709 709 divide 710 710 divide 711 711
|
||||
712 712 divide 713 713 divide 714 714
|
||||
715 715 divide 716 716 divide 717 717
|
||||
718 718 divide 719 719 divide 720 720
|
||||
721 721 divide 722 722 divide 723 723
|
||||
724 724 divide 725 725 divide 726 726
|
||||
727 727 divide 728 728 divide 729 729
|
||||
730 730 divide 731 731 divide 732 732
|
||||
733 733 divide 734 734 divide 735 735
|
||||
736 736 divide 737 737 divide 738 738
|
||||
739 739 divide 740 740 divide 741 741
|
||||
742 742 divide 743 743 divide 744 744
|
||||
745 745 divide 746 746 divide 747 747
|
||||
748 748 divide 749 749 divide 750 750
|
||||
751 751 divide 752 752 divide 753 753
|
||||
754 754 divide 755 755 divide 756 756
|
||||
757 757 divide 758 758 divide 759 759
|
||||
760 760 divide 761 761 divide 762 762
|
||||
763 763 divide 764 764 divide 765 765
|
||||
766 766 divide 767 767 divide 768 768
|
||||
769 769 divide 770 770 divide 771 771
|
||||
772 772 divide 773 773 divide 774 774
|
||||
775 775 divide 776 776 divide 777 777
|
||||
778 778 divide 779 779 divide 780 780
|
||||
781 781 divide 782 782 divide 783 783
|
||||
784 784 divide 785 785 divide 786 786
|
||||
787 787 divide 788 788 divide 789 789
|
||||
790 790 divide 791 791 divide 792 792
|
||||
793 793 divide 794 794 divide 795 795
|
||||
796 796 divide 797 797 divide 798 798
|
||||
799 799 divide 800 800 divide 801 801
|
||||
802 802 divide 803 803 divide 804 804
|
||||
805 805 divide 806 806 divide 807 807
|
||||
808 808 divide 809 809 divide 810 810
|
||||
811 811 divide 812 812 divide 813 813
|
||||
814 814 divide 815 815 divide 816 816
|
||||
817 817 divide 818 818 divide 819 819
|
||||
820 820 divide 821 821 divide 822 822
|
||||
823 823 divide 824 824 divide 825 825
|
||||
826 826 divide 827 827 divide 828 828
|
||||
829 829 divide 830 830 divide 831 831
|
||||
832 832 divide 833 833 divide 834 834
|
||||
835 835 divide 836 836 divide 837 837
|
||||
838 838 divide 839 839 divide 840 840
|
||||
|
||||
|
||||
|
||||
|
||||
|
198
tests/fixtures/pr/column_spaces_across.log.expected
vendored
Normal file
198
tests/fixtures/pr/column_spaces_across.log.expected
vendored
Normal file
|
@ -0,0 +1,198 @@
|
|||
|
||||
|
||||
{last_modified_time} column.log Page 3
|
||||
|
||||
|
||||
337 337 338 338 339 339
|
||||
340 340 341 341 342 342
|
||||
343 343 344 344 345 345
|
||||
346 346 347 347 348 348
|
||||
349 349 350 350 351 351
|
||||
352 352 353 353 354 354
|
||||
355 355 356 356 357 357
|
||||
358 358 359 359 360 360
|
||||
361 361 362 362 363 363
|
||||
364 364 365 365 366 366
|
||||
367 367 368 368 369 369
|
||||
370 370 371 371 372 372
|
||||
373 373 374 374 375 375
|
||||
376 376 377 377 378 378
|
||||
379 379 380 380 381 381
|
||||
382 382 383 383 384 384
|
||||
385 385 386 386 387 387
|
||||
388 388 389 389 390 390
|
||||
391 391 392 392 393 393
|
||||
394 394 395 395 396 396
|
||||
397 397 398 398 399 399
|
||||
400 400 401 401 402 402
|
||||
403 403 404 404 405 405
|
||||
406 406 407 407 408 408
|
||||
409 409 410 410 411 411
|
||||
412 412 413 413 414 414
|
||||
415 415 416 416 417 417
|
||||
418 418 419 419 420 420
|
||||
421 421 422 422 423 423
|
||||
424 424 425 425 426 426
|
||||
427 427 428 428 429 429
|
||||
430 430 431 431 432 432
|
||||
433 433 434 434 435 435
|
||||
436 436 437 437 438 438
|
||||
439 439 440 440 441 441
|
||||
442 442 443 443 444 444
|
||||
445 445 446 446 447 447
|
||||
448 448 449 449 450 450
|
||||
451 451 452 452 453 453
|
||||
454 454 455 455 456 456
|
||||
457 457 458 458 459 459
|
||||
460 460 461 461 462 462
|
||||
463 463 464 464 465 465
|
||||
466 466 467 467 468 468
|
||||
469 469 470 470 471 471
|
||||
472 472 473 473 474 474
|
||||
475 475 476 476 477 477
|
||||
478 478 479 479 480 480
|
||||
481 481 482 482 483 483
|
||||
484 484 485 485 486 486
|
||||
487 487 488 488 489 489
|
||||
490 490 491 491 492 492
|
||||
493 493 494 494 495 495
|
||||
496 496 497 497 498 498
|
||||
499 499 500 500 501 501
|
||||
502 502 503 503 504 504
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
{last_modified_time} column.log Page 4
|
||||
|
||||
|
||||
505 505 506 506 507 507
|
||||
508 508 509 509 510 510
|
||||
511 511 512 512 513 513
|
||||
514 514 515 515 516 516
|
||||
517 517 518 518 519 519
|
||||
520 520 521 521 522 522
|
||||
523 523 524 524 525 525
|
||||
526 526 527 527 528 528
|
||||
529 529 530 530 531 531
|
||||
532 532 533 533 534 534
|
||||
535 535 536 536 537 537
|
||||
538 538 539 539 540 540
|
||||
541 541 542 542 543 543
|
||||
544 544 545 545 546 546
|
||||
547 547 548 548 549 549
|
||||
550 550 551 551 552 552
|
||||
553 553 554 554 555 555
|
||||
556 556 557 557 558 558
|
||||
559 559 560 560 561 561
|
||||
562 562 563 563 564 564
|
||||
565 565 566 566 567 567
|
||||
568 568 569 569 570 570
|
||||
571 571 572 572 573 573
|
||||
574 574 575 575 576 576
|
||||
577 577 578 578 579 579
|
||||
580 580 581 581 582 582
|
||||
583 583 584 584 585 585
|
||||
586 586 587 587 588 588
|
||||
589 589 590 590 591 591
|
||||
592 592 593 593 594 594
|
||||
595 595 596 596 597 597
|
||||
598 598 599 599 600 600
|
||||
601 601 602 602 603 603
|
||||
604 604 605 605 606 606
|
||||
607 607 608 608 609 609
|
||||
610 610 611 611 612 612
|
||||
613 613 614 614 615 615
|
||||
616 616 617 617 618 618
|
||||
619 619 620 620 621 621
|
||||
622 622 623 623 624 624
|
||||
625 625 626 626 627 627
|
||||
628 628 629 629 630 630
|
||||
631 631 632 632 633 633
|
||||
634 634 635 635 636 636
|
||||
637 637 638 638 639 639
|
||||
640 640 641 641 642 642
|
||||
643 643 644 644 645 645
|
||||
646 646 647 647 648 648
|
||||
649 649 650 650 651 651
|
||||
652 652 653 653 654 654
|
||||
655 655 656 656 657 657
|
||||
658 658 659 659 660 660
|
||||
661 661 662 662 663 663
|
||||
664 664 665 665 666 666
|
||||
667 667 668 668 669 669
|
||||
670 670 671 671 672 672
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
{last_modified_time} column.log Page 5
|
||||
|
||||
|
||||
673 673 674 674 675 675
|
||||
676 676 677 677 678 678
|
||||
679 679 680 680 681 681
|
||||
682 682 683 683 684 684
|
||||
685 685 686 686 687 687
|
||||
688 688 689 689 690 690
|
||||
691 691 692 692 693 693
|
||||
694 694 695 695 696 696
|
||||
697 697 698 698 699 699
|
||||
700 700 701 701 702 702
|
||||
703 703 704 704 705 705
|
||||
706 706 707 707 708 708
|
||||
709 709 710 710 711 711
|
||||
712 712 713 713 714 714
|
||||
715 715 716 716 717 717
|
||||
718 718 719 719 720 720
|
||||
721 721 722 722 723 723
|
||||
724 724 725 725 726 726
|
||||
727 727 728 728 729 729
|
||||
730 730 731 731 732 732
|
||||
733 733 734 734 735 735
|
||||
736 736 737 737 738 738
|
||||
739 739 740 740 741 741
|
||||
742 742 743 743 744 744
|
||||
745 745 746 746 747 747
|
||||
748 748 749 749 750 750
|
||||
751 751 752 752 753 753
|
||||
754 754 755 755 756 756
|
||||
757 757 758 758 759 759
|
||||
760 760 761 761 762 762
|
||||
763 763 764 764 765 765
|
||||
766 766 767 767 768 768
|
||||
769 769 770 770 771 771
|
||||
772 772 773 773 774 774
|
||||
775 775 776 776 777 777
|
||||
778 778 779 779 780 780
|
||||
781 781 782 782 783 783
|
||||
784 784 785 785 786 786
|
||||
787 787 788 788 789 789
|
||||
790 790 791 791 792 792
|
||||
793 793 794 794 795 795
|
||||
796 796 797 797 798 798
|
||||
799 799 800 800 801 801
|
||||
802 802 803 803 804 804
|
||||
805 805 806 806 807 807
|
||||
808 808 809 809 810 810
|
||||
811 811 812 812 813 813
|
||||
814 814 815 815 816 816
|
||||
817 817 818 818 819 819
|
||||
820 820 821 821 822 822
|
||||
823 823 824 824 825 825
|
||||
826 826 827 827 828 828
|
||||
829 829 830 830 831 831
|
||||
832 832 833 833 834 834
|
||||
835 835 836 836 837 837
|
||||
838 838 839 839 840 840
|
||||
|
||||
|
||||
|
||||
|
||||
|
11
tests/fixtures/pr/hosts.log
vendored
Normal file
11
tests/fixtures/pr/hosts.log
vendored
Normal file
|
@ -0,0 +1,11 @@
|
|||
##
|
||||
# Host Database
|
||||
#
|
||||
# localhost is used to configure the loopback interface
|
||||
# when the system is booting. Do not change this entry.
|
||||
##
|
||||
127.0.0.1 localhost
|
||||
127.0.0.1 Techopss-MacBook-Pro.local
|
||||
127.0.0.1 tilakpr
|
||||
255.255.255.255 broadcasthost
|
||||
::1 localhost
|
132
tests/fixtures/pr/joined.log.expected
vendored
Normal file
132
tests/fixtures/pr/joined.log.expected
vendored
Normal file
|
@ -0,0 +1,132 @@
|
|||
|
||||
|
||||
{last_modified_time} Page 1
|
||||
|
||||
|
||||
##ntation processAirPortStateChanges]: pppConnectionState 0
|
||||
# Host DatabaseMon Dec 10 11:42:56.558 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
#Mon Dec 10 11:42:56.705 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
|
||||
# localhost is used to configure the loopback interfaceMon Dec 10 11:42:56.706 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
|
||||
# when the system is booting. Do not change this entry.Mon Dec 10 11:42:56.706 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
##Mon Dec 10 11:42:56.854 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
|
||||
127.0.0.1 localhostMon Dec 10 11:42:56.855 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
|
||||
127.0.0.1 Techopss-MacBook-Pro.localMon Dec 10 11:42:56.856 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
127.0.0.1 tilakprMon Dec 10 11:42:57.002 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
|
||||
255.255.255.255 broadcasthostMon Dec 10 11:42:57.003 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
|
||||
::1 localhostMon Dec 10 11:42:57.003 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
Mon Dec 10 11:42:57.152 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
|
||||
Mon Dec 10 11:42:57.154 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
|
||||
Mon Dec 10 11:42:57.154 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
Mon Dec 10 11:42:57.302 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
|
||||
Mon Dec 10 11:42:57.304 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
|
||||
Mon Dec 10 11:42:57.304 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
Mon Dec 10 11:42:57.449 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
|
||||
Mon Dec 10 11:42:57.451 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
|
||||
Mon Dec 10 11:42:57.451 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
Mon Dec 10 11:42:57.600 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
|
||||
Mon Dec 10 11:42:57.601 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
|
||||
Mon Dec 10 11:42:57.602 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
Mon Dec 10 11:42:57.624 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
|
||||
Mon Dec 10 11:42:57.624 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
Mon Dec 10 11:42:57.749 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
|
||||
Mon Dec 10 11:42:57.750 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
|
||||
Mon Dec 10 11:42:57.751 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
Mon Dec 10 11:42:57.896 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
|
||||
Mon Dec 10 11:42:57.897 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
|
||||
Mon Dec 10 11:42:57.897 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
Mon Dec 10 11:42:58.045 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
|
||||
Mon Dec 10 11:42:58.047 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
|
||||
Mon Dec 10 11:42:58.047 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
Mon Dec 10 11:42:58.193 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
|
||||
Mon Dec 10 11:42:58.195 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
|
||||
Mon Dec 10 11:42:58.195 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
Mon Dec 10 11:42:58.342 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
|
||||
Mon Dec 10 11:42:58.343 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
|
||||
Mon Dec 10 11:42:58.344 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
Mon Dec 10 11:42:58.491 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
|
||||
Mon Dec 10 11:42:58.493 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
|
||||
Mon Dec 10 11:42:58.494 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
Mon Dec 10 11:42:58.640 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
|
||||
Mon Dec 10 11:42:58.642 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
|
||||
Mon Dec 10 11:42:58.642 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
Mon Dec 10 11:42:58.805 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
|
||||
Mon Dec 10 11:42:58.806 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
|
||||
Mon Dec 10 11:42:58.806 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
Mon Dec 10 11:42:58.958 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
|
||||
Mon Dec 10 11:42:58.959 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
|
||||
Mon Dec 10 11:42:58.960 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
Mon Dec 10 11:42:59.155 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
|
||||
Mon Dec 10 11:42:59.157 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
|
||||
Mon Dec 10 11:42:59.159 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
Mon Dec 10 11:42:59.352 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
{last_modified_time} Page 2
|
||||
|
||||
|
||||
Mon Dec 10 11:42:59.354 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
|
||||
Mon Dec 10 11:42:59.354 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
Mon Dec 10 11:42:59.372 Driver Event: <airportd[160]> _bsd_80211_event_callback: APPLE80211_M_ROAM_END (en0)
|
||||
Mon Dec 10 11:42:59.372 Info: <airportd[160]> Roaming ended on interface en0
|
||||
Mon Dec 10 11:42:59.372 Driver Event: <airportd[160]> _bsd_80211_event_callback: RSN_HANDSHAKE_DONE (en0)
|
||||
Mon Dec 10 11:42:59.373 Info: <airportd[160]> -[CWXPCInterfaceContext setRoamInProgress:reason:]_block_invoke: roam status metric data: CWAWDMetricRoamStatus: status:0 security: 4 profile:5 origin:<34fcb9>(-69) target:<6cf37f>(-56) latency:6.083439s
|
||||
Mon Dec 10 11:42:59.373 Info: <airportd[160]> -[CWAWDManager submitMetric:]: submitting metric id 0x90046
|
||||
Mon Dec 10 11:42:59.373 Info: <airportd[160]> RESUME AWDL for interface en0, reason=Roam token=2685
|
||||
Mon Dec 10 11:42:59.373 Info: <airportd[160]> PRIORITY LOCK REMOVED [client=airportd, type=4, interface=en0, priority=5]
|
||||
Mon Dec 10 11:42:59.374 Info: <airportd[160]> -[CWXPCInterfaceContext __setAWDLOperatingMode:interface:error:]: attempting to set AWDL mode to 0
|
||||
Mon Dec 10 11:43:01.072 SC: <airportd[160]> airportdProcessSystemConfigurationEvent: Processing 'State:/Network/Service/18E14EA7-4641-4104-B315-A9315814912A/DHCP'
|
||||
Mon Dec 10 11:43:01.072 SC: <airportd[160]> _processDHCPChanges: State:/Network/Service/18E14EA7-4641-4104-B315-A9315814912A/DHCP
|
||||
Mon Dec 10 11:43:01.072 SC: <airportd[160]> _processDHCPChanges: DHCP airport_changed = 1
|
||||
Mon Dec 10 11:43:01.073 Info: <airportd[160]> -[CWXPCSubsystem internal_submitIPConfigLatencyMetric:leaseDuration:]: IPConfig Latency metric data: CWAWDMetricIPConfigLatencyData: DHCP latency: 29010 msecs, duration: 480 mins, security: 4
|
||||
Mon Dec 10 11:43:01.073 Info: <airportd[160]> -[CWAWDManager submitMetric:]: submitting metric id 0x90007
|
||||
Mon Dec 10 11:43:01.073 SC: <airportd[160]> _setDHCPMessage: dhcpInfoKey "State:/Network/Interface/en0/AirPort/DHCP Message" = (null)
|
||||
Mon Dec 10 11:43:10.369 Driver Event: <airportd[160]> _bsd_80211_event_callback: LINK_QUALITY (en0)
|
||||
Mon Dec 10 11:43:10.369 Info: <airportd[160]> _bsd_80211_event_callback: <en0> link quality: RSSI=-57 dBm TxRate=162 Mbps
|
||||
Mon Dec 10 11:43:10.369 Info: <Wi-Fi Menu Extra[335]> link quality changed
|
||||
Mon Dec 10 11:43:23.376 Driver Event: <airportd[160]> _bsd_80211_event_callback: LINK_QUALITY (en0)
|
||||
Mon Dec 10 11:43:23.377 Info: <airportd[160]> _bsd_80211_event_callback: <en0> link quality: RSSI=-58 dBm TxRate=243 Mbps
|
||||
Mon Dec 10 11:43:23.377 Info: <Wi-Fi Menu Extra[335]> link quality changed
|
||||
Mon Dec 10 11:43:28.380 Driver Event: <airportd[160]> _bsd_80211_event_callback: LINK_QUALITY (en0)
|
||||
Mon Dec 10 11:43:28.380 Info: <airportd[160]> _bsd_80211_event_callback: <en0> link quality: RSSI=-58 dBm TxRate=216 Mbps
|
||||
Mon Dec 10 11:43:28.380 Info: <Wi-Fi Menu Extra[335]> link quality changed
|
||||
Mon Dec 10 11:43:31.744 AutoJoin: <airportd[160]> BACKGROUND SCAN request on interface en0 with SSID list (null)
|
||||
Mon Dec 10 11:43:31.747 Scan: <airportd[160]> Cache-assisted scan request on channel 1 does not require a live scan
|
||||
Mon Dec 10 11:43:31.748 Scan: <airportd[160]> Cache-assisted scan request on channel 2 does not require a live scan
|
||||
Mon Dec 10 11:43:31.748 Scan: <airportd[160]> Cache-assisted scan request on channel 3 does not require a live scan
|
||||
Mon Dec 10 11:43:31.748 Scan: <airportd[160]> Cache-assisted scan request does not require a live scan
|
||||
Mon Dec 10 11:43:31.748 AutoJoin: <airportd[160]> Successful cache-assisted background scan request with channels {(
|
||||
Mon Dec 10 11:43:31.748 <CWChannel: 0x7fc3fcd22180> [channelNumber=1(2GHz), channelWidth={20MHz}, active],
|
||||
Mon Dec 10 11:43:31.748 <CWChannel: 0x7fc3fcd284a0> [channelNumber=2(2GHz), channelWidth={20MHz}, active],
|
||||
Mon Dec 10 11:43:31.748 <CWChannel: 0x7fc3fcd13910> [channelNumber=3(2GHz), channelWidth={20MHz}, active]
|
||||
Mon Dec 10 11:43:31.748 )} took 0.0025 seconds, returned 10 results
|
||||
Mon Dec 10 11:43:31.748 Scan: <airportd[160]> Cache-assisted scan request on channel 4 does not require a live scan
|
||||
Mon Dec 10 11:43:31.748 Scan: <airportd[160]> Cache-assisted scan request on channel 5 does not require a live scan
|
||||
Mon Dec 10 11:43:31.749 Scan: <airportd[160]> Cache-assisted scan request on channel 6 does not require a live scan
|
||||
Mon Dec 10 11:43:31.749 Scan: <airportd[160]> Cache-assisted scan request does not require a live scan
|
||||
Mon Dec 10 11:43:31.749 AutoJoin: <airportd[160]> Successful cache-assisted background scan request with channels {(
|
||||
Mon Dec 10 11:43:31.749 <CWChannel: 0x7fc3fcd0e7e0> [channelNumber=4(2GHz), channelWidth={20MHz}, active],
|
||||
Mon Dec 10 11:43:31.749 <CWChannel: 0x7fc3fcd18a40> [channelNumber=5(2GHz), channelWidth={20MHz}, active],
|
||||
Mon Dec 10 11:43:31.749 <CWChannel: 0x7fc3fcd0ae10> [channelNumber=6(2GHz), channelWidth={20MHz}, active]
|
||||
Mon Dec 10 11:43:31.749 )} took 0.0008 seconds, returned 7 results
|
||||
Mon Dec 10 11:43:31.749 Scan: <airportd[160]> Cache-assisted scan request on channel 7 does not require a live scan
|
||||
Mon Dec 10 11:43:31.749 Scan: <airportd[160]> Cache-assisted scan request on channel 8 does not require a live scan
|
||||
Mon Dec 10 11:43:31.749 Scan: <airportd[160]> Cache-assisted scan request on channel 9 does not require a live scan
|
||||
Mon Dec 10 11:43:31.749 Scan: <airportd[160]> Cache-assisted scan request does not require a live scan
|
||||
Mon Dec 10 11:43:31.749 AutoJoin: <airportd[160]> Successful cache-assisted background scan request with channels {(
|
||||
Mon Dec 10 11:43:31.749 <CWChannel: 0x7fc3fcd57a80> [channelNumber=7(2GHz), channelWidth={20MHz}, active],
|
||||
Mon Dec 10 11:43:31.749 <CWChannel: 0x7fc3fcd32290> [channelNumber=8(2GHz), channelWidth={20MHz}, active],
|
||||
Mon Dec 10 11:43:31.749 <CWChannel: 0x7fc3fcd77ab0> [channelNumber=9(2GHz), channelWidth={20MHz}, active]
|
||||
Mon Dec 10 11:43:31.749 )} took 0.0002 seconds, returned 1 results
|
||||
Mon Dec 10 11:43:31.749 Scan: <airportd[160]> Cache-assisted scan request on channel 10 does not require a live scan
|
||||
Mon Dec 10 11:43:31.749 Scan: <airportd[160]> Cache-assisted scan request on channel 11 does not require a live scan
|
||||
Mon Dec 10 11:43:31.750 Scan: <airportd[160]> Cache-assisted scan request on channel 12 does not require a live scan
|
||||
|
||||
|
||||
|
||||
|
||||
|
312
tests/fixtures/pr/l24-FF
vendored
Normal file
312
tests/fixtures/pr/l24-FF
vendored
Normal file
|
@ -0,0 +1,312 @@
|
|||
|
||||
|
||||
{last_modified_time} {file_name} Page 1
|
||||
|
||||
|
||||
1 FF-Test: FF's in Text V
|
||||
2 Options -b -3 / -a -3 / ...
|
||||
3 --------------------------------------------
|
||||
4 3456789 123456789 123456789 123456789 12345678
|
||||
5 3 Columns downwards ..., <= 5 lines per page
|
||||
6 FF-Arangements: One Empty Page
|
||||
7 text\f\f\n; text\f\n\ftext; \f\ftext;
|
||||
8 \f\f\n; \f\n\f\n;
|
||||
9
|
||||
10 zzzzzzzzzzzzzzzzzzzzzzzzzz123456789
|
||||
1 12345678
|
||||
2 12345678
|
||||
3 line truncation before FF; r_r_o_l-test:
|
||||
14 456789 123456789 123456789 123456789
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
{last_modified_time} {file_name} Page 2
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
{last_modified_time} {file_name} Page 3
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
{last_modified_time} {file_name} Page 4
|
||||
|
||||
|
||||
15 xyzxyzxyz XYZXYZXYZ abcabcab
|
||||
16 456789 123456789 xyzxyzxyz XYZXYZXYZ
|
||||
7 12345678
|
||||
8 12345678
|
||||
9 3456789 ab
|
||||
20 DEFGHI 123
|
||||
1 12345678
|
||||
2 12345678
|
||||
3 12345678
|
||||
4 12345678
|
||||
5 12345678
|
||||
6 12345678
|
||||
27 no truncation before FF; (r_l-test):
|
||||
28 no trunc
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
{last_modified_time} {file_name} Page 5
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
{last_modified_time} {file_name} Page 6
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
{last_modified_time} {file_name} Page 7
|
||||
|
||||
|
||||
29 xyzxyzxyz XYZXYZXYZ abcabcab
|
||||
30 456789 123456789 xyzxyzxyz XYZXYZXYZ
|
||||
1 12345678
|
||||
2 3456789 abcdefghi
|
||||
3 12345678
|
||||
4 12345678
|
||||
5 12345678
|
||||
6 12345678
|
||||
7 12345678
|
||||
8 12345678
|
||||
9 3456789 abcdefghi
|
||||
40 DEFGHI 123456789
|
||||
41 yzxyzxyz XYZXYZXYZ abcabcab
|
||||
42 456789 123456789 abcdefghi ABCDEDFHI
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
{last_modified_time} {file_name} Page 8
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
{last_modified_time} {file_name} Page 9
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
{last_modified_time} {file_name} Page 10
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
{last_modified_time} {file_name} Page 11
|
||||
|
||||
|
||||
43 xyzxyzxyz XYZXYZXYZ abcabcab
|
||||
44 456789 123456789 xyzxyzxyz XYZXYZXYZ
|
||||
5 12345678
|
||||
6 12345678
|
||||
7 12345678
|
||||
8 12345678
|
||||
9 12345678
|
||||
50 12345678
|
||||
1 12345678
|
||||
2 12345678
|
||||
3 12345678
|
||||
4 12345678
|
||||
55 yzxyzxyz XYZXYZXYZ abcabcab
|
||||
56 456789 123456789 abcdefghi ABCDEDFHI
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
{last_modified_time} {file_name} Page 12
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
{last_modified_time} {file_name} Page 13
|
||||
|
||||
|
||||
57 xyzxyzxyz XYZXYZXYZ abcabcab
|
||||
58 456789 123456789 xyzxyzxyz XYZXYZXYZ
|
||||
9 12345678
|
||||
60 DEFGHI 123456789
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
132
tests/fixtures/pr/mpr.log.expected
vendored
Normal file
132
tests/fixtures/pr/mpr.log.expected
vendored
Normal file
|
@ -0,0 +1,132 @@
|
|||
|
||||
|
||||
{last_modified_time} Page 1
|
||||
|
||||
|
||||
1 1 ##
|
||||
2 2 # Host Database
|
||||
3 3 #
|
||||
4 4 # localhost is used to configure th
|
||||
5 5 # when the system is booting. Do n
|
||||
6 6 ##
|
||||
7 7 127.0.0.1 localhost
|
||||
8 8 127.0.0.1 Techopss-MacBook-Pro.loca
|
||||
9 9 127.0.0.1 tilakpr
|
||||
10 10 255.255.255.255 broadcasthost
|
||||
11 11 ::1 localhost
|
||||
12 12
|
||||
13 13
|
||||
14 14
|
||||
15 15
|
||||
16 16
|
||||
17 17
|
||||
18 18
|
||||
19 19
|
||||
20 20
|
||||
21 21
|
||||
22 22
|
||||
23 23
|
||||
24 24
|
||||
25 25
|
||||
26 26
|
||||
27 27
|
||||
28 28
|
||||
29 29
|
||||
30 30
|
||||
31 31
|
||||
32 32
|
||||
33 33
|
||||
34 34
|
||||
35 35
|
||||
36 36
|
||||
37 37
|
||||
38 38
|
||||
39 39
|
||||
40 40
|
||||
41 41
|
||||
42 42
|
||||
43 43
|
||||
44 44
|
||||
45 45
|
||||
46 46
|
||||
47 47
|
||||
48 48
|
||||
49 49
|
||||
50 50
|
||||
51 51
|
||||
52 52
|
||||
53 53
|
||||
54 54
|
||||
55 55
|
||||
56 56
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
{last_modified_time} Page 2
|
||||
|
||||
|
||||
57 57
|
||||
58 58
|
||||
59 59
|
||||
60 60
|
||||
61 61
|
||||
62 62
|
||||
63 63
|
||||
64 64
|
||||
65 65
|
||||
66 66
|
||||
67 67
|
||||
68 68
|
||||
69 69
|
||||
70 70
|
||||
71 71
|
||||
72 72
|
||||
73 73
|
||||
74 74
|
||||
75 75
|
||||
76 76
|
||||
77 77
|
||||
78 78
|
||||
79 79
|
||||
80 80
|
||||
81 81
|
||||
82 82
|
||||
83 83
|
||||
84 84
|
||||
85 85
|
||||
86 86
|
||||
87 87
|
||||
88 88
|
||||
89 89
|
||||
90 90
|
||||
91 91
|
||||
92 92
|
||||
93 93
|
||||
94 94
|
||||
95 95
|
||||
96 96
|
||||
97 97
|
||||
98 98
|
||||
99 99
|
||||
100 100
|
||||
101 101
|
||||
102 102
|
||||
103 103
|
||||
104 104
|
||||
105 105
|
||||
106 106
|
||||
107 107
|
||||
108 108
|
||||
109 109
|
||||
110 110
|
||||
111 111
|
||||
112 112
|
||||
|
||||
|
||||
|
||||
|
||||
|
198
tests/fixtures/pr/mpr1.log.expected
vendored
Normal file
198
tests/fixtures/pr/mpr1.log.expected
vendored
Normal file
|
@ -0,0 +1,198 @@
|
|||
|
||||
|
||||
{last_modified_time} Page 2
|
||||
|
||||
|
||||
57 57
|
||||
58 58
|
||||
59 59
|
||||
60 60
|
||||
61 61
|
||||
62 62
|
||||
63 63
|
||||
64 64
|
||||
65 65
|
||||
66 66
|
||||
67 67
|
||||
68 68
|
||||
69 69
|
||||
70 70
|
||||
71 71
|
||||
72 72
|
||||
73 73
|
||||
74 74
|
||||
75 75
|
||||
76 76
|
||||
77 77
|
||||
78 78
|
||||
79 79
|
||||
80 80
|
||||
81 81
|
||||
82 82
|
||||
83 83
|
||||
84 84
|
||||
85 85
|
||||
86 86
|
||||
87 87
|
||||
88 88
|
||||
89 89
|
||||
90 90
|
||||
91 91
|
||||
92 92
|
||||
93 93
|
||||
94 94
|
||||
95 95
|
||||
96 96
|
||||
97 97
|
||||
98 98
|
||||
99 99
|
||||
100 100
|
||||
101 101
|
||||
102 102
|
||||
103 103
|
||||
104 104
|
||||
105 105
|
||||
106 106
|
||||
107 107
|
||||
108 108
|
||||
109 109
|
||||
110 110
|
||||
111 111
|
||||
112 112
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
{last_modified_time} Page 3
|
||||
|
||||
|
||||
113 113
|
||||
114 114
|
||||
115 115
|
||||
116 116
|
||||
117 117
|
||||
118 118
|
||||
119 119
|
||||
120 120
|
||||
121 121
|
||||
122 122
|
||||
123 123
|
||||
124 124
|
||||
125 125
|
||||
126 126
|
||||
127 127
|
||||
128 128
|
||||
129 129
|
||||
130 130
|
||||
131 131
|
||||
132 132
|
||||
133 133
|
||||
134 134
|
||||
135 135
|
||||
136 136
|
||||
137 137
|
||||
138 138
|
||||
139 139
|
||||
140 140
|
||||
141 141
|
||||
142 142
|
||||
143 143
|
||||
144 144
|
||||
145 145
|
||||
146 146
|
||||
147 147
|
||||
148 148
|
||||
149 149
|
||||
150 150
|
||||
151 151
|
||||
152 152
|
||||
153 153
|
||||
154 154
|
||||
155 155
|
||||
156 156
|
||||
157 157
|
||||
158 158
|
||||
159 159
|
||||
160 160
|
||||
161 161
|
||||
162 162
|
||||
163 163
|
||||
164 164
|
||||
165 165
|
||||
166 166
|
||||
167 167
|
||||
168 168
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
{last_modified_time} Page 4
|
||||
|
||||
|
||||
169 169
|
||||
170 170
|
||||
171 171
|
||||
172 172
|
||||
173 173
|
||||
174 174
|
||||
175 175
|
||||
176 176
|
||||
177 177
|
||||
178 178
|
||||
179 179
|
||||
180 180
|
||||
181 181
|
||||
182 182
|
||||
183 183
|
||||
184 184
|
||||
185 185
|
||||
186 186
|
||||
187 187
|
||||
188 188
|
||||
189 189
|
||||
190 190
|
||||
191 191
|
||||
192 192
|
||||
193 193
|
||||
194 194
|
||||
195 195
|
||||
196 196
|
||||
197 197
|
||||
198 198
|
||||
199 199
|
||||
200 200
|
||||
201 201
|
||||
202 202
|
||||
203 203
|
||||
204 204
|
||||
205 205
|
||||
206 206
|
||||
207 207
|
||||
208 208
|
||||
209 209
|
||||
210 210
|
||||
211 211
|
||||
212 212
|
||||
213 213
|
||||
214 214
|
||||
215 215
|
||||
216 216
|
||||
217 217
|
||||
218 218
|
||||
219 219
|
||||
220 220
|
||||
221 221
|
||||
222 222
|
||||
223 223
|
||||
224 224
|
||||
|
||||
|
||||
|
||||
|
||||
|
200
tests/fixtures/pr/mpr2.log.expected
vendored
Normal file
200
tests/fixtures/pr/mpr2.log.expected
vendored
Normal file
|
@ -0,0 +1,200 @@
|
|||
|
||||
|
||||
{last_modified_time} Page 1
|
||||
|
||||
|
||||
1 1 ## 1
|
||||
2 2 # Host Database 2
|
||||
3 3 # 3
|
||||
4 4 # localhost is used to 4
|
||||
5 5 # when the system is bo 5
|
||||
6 6 ## 6
|
||||
7 7 127.0.0.1 localhost 7
|
||||
8 8 127.0.0.1 Techopss-MacB 8
|
||||
9 9 127.0.0.1 tilakpr 9
|
||||
10 10 255.255.255.255 broadca 10
|
||||
11 11 ::1 localho 11
|
||||
12 12 12
|
||||
13 13 13
|
||||
14 14 14
|
||||
15 15 15
|
||||
16 16 16
|
||||
17 17 17
|
||||
18 18 18
|
||||
19 19 19
|
||||
20 20 20
|
||||
21 21 21
|
||||
22 22 22
|
||||
23 23 23
|
||||
24 24 24
|
||||
25 25 25
|
||||
26 26 26
|
||||
27 27 27
|
||||
28 28 28
|
||||
29 29 29
|
||||
30 30 30
|
||||
31 31 31
|
||||
32 32 32
|
||||
33 33 33
|
||||
34 34 34
|
||||
35 35 35
|
||||
36 36 36
|
||||
37 37 37
|
||||
38 38 38
|
||||
39 39 39
|
||||
40 40 40
|
||||
41 41 41
|
||||
42 42 42
|
||||
43 43 43
|
||||
44 44 44
|
||||
45 45 45
|
||||
46 46 46
|
||||
47 47 47
|
||||
48 48 48
|
||||
49 49 49
|
||||
50 50 50
|
||||
51 51 51
|
||||
52 52 52
|
||||
53 53 53
|
||||
54 54 54
|
||||
55 55 55
|
||||
56 56 56
|
||||
57 57 57
|
||||
58 58 58
|
||||
59 59 59
|
||||
60 60 60
|
||||
61 61 61
|
||||
62 62 62
|
||||
63 63 63
|
||||
64 64 64
|
||||
65 65 65
|
||||
66 66 66
|
||||
67 67 67
|
||||
68 68 68
|
||||
69 69 69
|
||||
70 70 70
|
||||
71 71 71
|
||||
72 72 72
|
||||
73 73 73
|
||||
74 74 74
|
||||
75 75 75
|
||||
76 76 76
|
||||
77 77 77
|
||||
78 78 78
|
||||
79 79 79
|
||||
80 80 80
|
||||
81 81 81
|
||||
82 82 82
|
||||
83 83 83
|
||||
84 84 84
|
||||
85 85 85
|
||||
86 86 86
|
||||
87 87 87
|
||||
88 88 88
|
||||
89 89 89
|
||||
90 90 90
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
{last_modified_time} Page 2
|
||||
|
||||
|
||||
91 91 91
|
||||
92 92 92
|
||||
93 93 93
|
||||
94 94 94
|
||||
95 95 95
|
||||
96 96 96
|
||||
97 97 97
|
||||
98 98 98
|
||||
99 99 99
|
||||
100 100 100
|
||||
101 101 101
|
||||
102 102 102
|
||||
103 103 103
|
||||
104 104 104
|
||||
105 105 105
|
||||
106 106 106
|
||||
107 107 107
|
||||
108 108 108
|
||||
109 109 109
|
||||
110 110 110
|
||||
111 111 111
|
||||
112 112 112
|
||||
113 113 113
|
||||
114 114 114
|
||||
115 115 115
|
||||
116 116 116
|
||||
117 117 117
|
||||
118 118 118
|
||||
119 119 119
|
||||
120 120 120
|
||||
121 121 121
|
||||
122 122 122
|
||||
123 123 123
|
||||
124 124 124
|
||||
125 125 125
|
||||
126 126 126
|
||||
127 127 127
|
||||
128 128 128
|
||||
129 129 129
|
||||
130 130 130
|
||||
131 131 131
|
||||
132 132 132
|
||||
133 133 133
|
||||
134 134 134
|
||||
135 135 135
|
||||
136 136 136
|
||||
137 137 137
|
||||
138 138 138
|
||||
139 139 139
|
||||
140 140 140
|
||||
141 141 141
|
||||
142 142 142
|
||||
143 143 143
|
||||
144 144 144
|
||||
145 145 145
|
||||
146 146 146
|
||||
147 147 147
|
||||
148 148 148
|
||||
149 149 149
|
||||
150 150 150
|
||||
151 151 151
|
||||
152 152 152
|
||||
153 153 153
|
||||
154 154 154
|
||||
155 155 155
|
||||
156 156 156
|
||||
157 157 157
|
||||
158 158 158
|
||||
159 159 159
|
||||
160 160 160
|
||||
161 161 161
|
||||
162 162 162
|
||||
163 163 163
|
||||
164 164 164
|
||||
165 165 165
|
||||
166 166 166
|
||||
167 167 167
|
||||
168 168 168
|
||||
169 169 169
|
||||
170 170 170
|
||||
171 171 171
|
||||
172 172 172
|
||||
173 173 173
|
||||
174 174 174
|
||||
175 175 175
|
||||
176 176 176
|
||||
177 177 177
|
||||
178 178 178
|
||||
179 179 179
|
||||
180 180 180
|
||||
|
||||
|
||||
|
||||
|
||||
|
82
tests/fixtures/pr/stdin.log
vendored
Normal file
82
tests/fixtures/pr/stdin.log
vendored
Normal file
|
@ -0,0 +1,82 @@
|
|||
ntation processAirPortStateChanges]: pppConnectionState 0
|
||||
Mon Dec 10 11:42:56.558 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
Mon Dec 10 11:42:56.705 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
|
||||
Mon Dec 10 11:42:56.706 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
|
||||
Mon Dec 10 11:42:56.706 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
Mon Dec 10 11:42:56.854 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
|
||||
Mon Dec 10 11:42:56.855 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
|
||||
Mon Dec 10 11:42:56.856 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
Mon Dec 10 11:42:57.002 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
|
||||
Mon Dec 10 11:42:57.003 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
|
||||
Mon Dec 10 11:42:57.003 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
Mon Dec 10 11:42:57.152 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
|
||||
Mon Dec 10 11:42:57.154 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
|
||||
Mon Dec 10 11:42:57.154 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
Mon Dec 10 11:42:57.302 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
|
||||
Mon Dec 10 11:42:57.304 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
|
||||
Mon Dec 10 11:42:57.304 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
Mon Dec 10 11:42:57.449 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
|
||||
Mon Dec 10 11:42:57.451 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
|
||||
Mon Dec 10 11:42:57.451 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
Mon Dec 10 11:42:57.600 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
|
||||
Mon Dec 10 11:42:57.601 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
|
||||
Mon Dec 10 11:42:57.602 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
Mon Dec 10 11:42:57.624 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
|
||||
Mon Dec 10 11:42:57.624 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
Mon Dec 10 11:42:57.749 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
|
||||
Mon Dec 10 11:42:57.750 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
|
||||
Mon Dec 10 11:42:57.751 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
Mon Dec 10 11:42:57.896 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
|
||||
Mon Dec 10 11:42:57.897 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
|
||||
Mon Dec 10 11:42:57.897 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
Mon Dec 10 11:42:58.045 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
|
||||
Mon Dec 10 11:42:58.047 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
|
||||
Mon Dec 10 11:42:58.047 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
Mon Dec 10 11:42:58.193 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
|
||||
Mon Dec 10 11:42:58.195 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
|
||||
Mon Dec 10 11:42:58.195 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
Mon Dec 10 11:42:58.342 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
|
||||
Mon Dec 10 11:42:58.343 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
|
||||
Mon Dec 10 11:42:58.344 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
Mon Dec 10 11:42:58.491 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
|
||||
Mon Dec 10 11:42:58.493 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
|
||||
Mon Dec 10 11:42:58.494 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
Mon Dec 10 11:42:58.640 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
|
||||
Mon Dec 10 11:42:58.642 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
|
||||
Mon Dec 10 11:42:58.642 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
Mon Dec 10 11:42:58.805 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
|
||||
Mon Dec 10 11:42:58.806 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
|
||||
Mon Dec 10 11:42:58.806 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
Mon Dec 10 11:42:58.958 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
|
||||
Mon Dec 10 11:42:58.959 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
|
||||
Mon Dec 10 11:42:58.960 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
Mon Dec 10 11:42:59.155 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
|
||||
Mon Dec 10 11:42:59.157 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
|
||||
Mon Dec 10 11:42:59.159 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
Mon Dec 10 11:42:59.352 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
|
||||
Mon Dec 10 11:42:59.354 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
|
||||
Mon Dec 10 11:42:59.354 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
Mon Dec 10 11:42:59.372 Driver Event: <airportd[160]> _bsd_80211_event_callback: APPLE80211_M_ROAM_END (en0)
|
||||
Mon Dec 10 11:42:59.372 Info: <airportd[160]> Roaming ended on interface en0
|
||||
Mon Dec 10 11:42:59.372 Driver Event: <airportd[160]> _bsd_80211_event_callback: RSN_HANDSHAKE_DONE (en0)
|
||||
Mon Dec 10 11:42:59.373 Info: <airportd[160]> -[CWXPCInterfaceContext setRoamInProgress:reason:]_block_invoke: roam status metric data: CWAWDMetricRoamStatus: status:0 security: 4 profile:5 origin:<34fcb9>(-69) target:<6cf37f>(-56) latency:6.083439s
|
||||
Mon Dec 10 11:42:59.373 Info: <airportd[160]> -[CWAWDManager submitMetric:]: submitting metric id 0x90046
|
||||
Mon Dec 10 11:42:59.373 Info: <airportd[160]> RESUME AWDL for interface en0, reason=Roam token=2685
|
||||
Mon Dec 10 11:42:59.373 Info: <airportd[160]> PRIORITY LOCK REMOVED [client=airportd, type=4, interface=en0, priority=5]
|
||||
Mon Dec 10 11:42:59.374 Info: <airportd[160]> -[CWXPCInterfaceContext __setAWDLOperatingMode:interface:error:]: attempting to set AWDL mode to 0
|
||||
Mon Dec 10 11:43:01.072 SC: <airportd[160]> airportdProcessSystemConfigurationEvent: Processing 'State:/Network/Service/18E14EA7-4641-4104-B315-A9315814912A/DHCP'
|
||||
Mon Dec 10 11:43:01.072 SC: <airportd[160]> _processDHCPChanges: State:/Network/Service/18E14EA7-4641-4104-B315-A9315814912A/DHCP
|
||||
Mon Dec 10 11:43:01.072 SC: <airportd[160]> _processDHCPChanges: DHCP airport_changed = 1
|
||||
Mon Dec 10 11:43:01.073 Info: <airportd[160]> -[CWXPCSubsystem internal_submitIPConfigLatencyMetric:leaseDuration:]: IPConfig Latency metric data: CWAWDMetricIPConfigLatencyData: DHCP latency: 29010 msecs, duration: 480 mins, security: 4
|
||||
Mon Dec 10 11:43:01.073 Info: <airportd[160]> -[CWAWDManager submitMetric:]: submitting metric id 0x90007
|
||||
Mon Dec 10 11:43:01.073 SC: <airportd[160]> _setDHCPMessage: dhcpInfoKey "State:/Network/Interface/en0/AirPort/DHCP Message" = (null)
|
||||
Mon Dec 10 11:43:10.369 Driver Event: <airportd[160]> _bsd_80211_event_callback: LINK_QUALITY (en0)
|
||||
Mon Dec 10 11:43:10.369 Info: <airportd[160]> _bsd_80211_event_callback: <en0> link quality: RSSI=-57 dBm TxRate=162 Mbps
|
||||
Mon Dec 10 11:43:10.369 Info: <Wi-Fi Menu Extra[335]> link quality changed
|
||||
Mon Dec 10 11:43:23.376 Driver Event: <airportd[160]> _bsd_80211_event_callback: LINK_QUALITY (en0)
|
||||
Mon Dec 10 11:43:23.377 Info: <airportd[160]> _bsd_80211_event_callback: <en0> link quality: RSSI=-58 dBm TxRate=243 Mbps
|
||||
Mon Dec 10 11:43:23.377 Info: <Wi-Fi Menu Extra[335]> link quality changed
|
||||
Mon Dec 10 11:43:28.380 Driver Event: <airportd[160]> _bsd_80211_event_callback: LINK_QUALITY (en0)
|
||||
Mon Dec 10 11:43:28.380 Info: <airportd[160]> _bsd_80211_event_callback: <en0> link quality: RSSI=-58 dBm TxRate=216 Mbps
|
||||
Mon Dec 10 11:43:28.380 Info: <Wi-Fi Menu Extra[335]> link quality changed
|
||||
Mon Dec 10 11:43:31.744 AutoJoin: <airportd[160]> BACKGROUND SCAN request on interface en0 with SSID list (null)
|
132
tests/fixtures/pr/stdin.log.expected
vendored
Normal file
132
tests/fixtures/pr/stdin.log.expected
vendored
Normal file
|
@ -0,0 +1,132 @@
|
|||
|
||||
|
||||
{last_modified_time} Page 1
|
||||
|
||||
|
||||
1 ntation processAirPortStateChanges]: pppConnectionState 0
|
||||
2 Mon Dec 10 11:42:56.558 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
3 Mon Dec 10 11:42:56.705 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
|
||||
4 Mon Dec 10 11:42:56.706 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
|
||||
5 Mon Dec 10 11:42:56.706 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
6 Mon Dec 10 11:42:56.854 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
|
||||
7 Mon Dec 10 11:42:56.855 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
|
||||
8 Mon Dec 10 11:42:56.856 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
9 Mon Dec 10 11:42:57.002 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
|
||||
10 Mon Dec 10 11:42:57.003 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
|
||||
11 Mon Dec 10 11:42:57.003 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
12 Mon Dec 10 11:42:57.152 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
|
||||
13 Mon Dec 10 11:42:57.154 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
|
||||
14 Mon Dec 10 11:42:57.154 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
15 Mon Dec 10 11:42:57.302 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
|
||||
16 Mon Dec 10 11:42:57.304 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
|
||||
17 Mon Dec 10 11:42:57.304 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
18 Mon Dec 10 11:42:57.449 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
|
||||
19 Mon Dec 10 11:42:57.451 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
|
||||
20 Mon Dec 10 11:42:57.451 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
21 Mon Dec 10 11:42:57.600 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
|
||||
22 Mon Dec 10 11:42:57.601 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
|
||||
23 Mon Dec 10 11:42:57.602 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
24 Mon Dec 10 11:42:57.624 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
|
||||
25 Mon Dec 10 11:42:57.624 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
26 Mon Dec 10 11:42:57.749 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
|
||||
27 Mon Dec 10 11:42:57.750 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
|
||||
28 Mon Dec 10 11:42:57.751 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
29 Mon Dec 10 11:42:57.896 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
|
||||
30 Mon Dec 10 11:42:57.897 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
|
||||
31 Mon Dec 10 11:42:57.897 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
32 Mon Dec 10 11:42:58.045 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
|
||||
33 Mon Dec 10 11:42:58.047 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
|
||||
34 Mon Dec 10 11:42:58.047 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
35 Mon Dec 10 11:42:58.193 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
|
||||
36 Mon Dec 10 11:42:58.195 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
|
||||
37 Mon Dec 10 11:42:58.195 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
38 Mon Dec 10 11:42:58.342 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
|
||||
39 Mon Dec 10 11:42:58.343 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
|
||||
40 Mon Dec 10 11:42:58.344 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
41 Mon Dec 10 11:42:58.491 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
|
||||
42 Mon Dec 10 11:42:58.493 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
|
||||
43 Mon Dec 10 11:42:58.494 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
44 Mon Dec 10 11:42:58.640 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
|
||||
45 Mon Dec 10 11:42:58.642 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
|
||||
46 Mon Dec 10 11:42:58.642 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
47 Mon Dec 10 11:42:58.805 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
|
||||
48 Mon Dec 10 11:42:58.806 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
|
||||
49 Mon Dec 10 11:42:58.806 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
50 Mon Dec 10 11:42:58.958 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
|
||||
51 Mon Dec 10 11:42:58.959 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
|
||||
52 Mon Dec 10 11:42:58.960 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
53 Mon Dec 10 11:42:59.155 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
|
||||
54 Mon Dec 10 11:42:59.157 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
|
||||
55 Mon Dec 10 11:42:59.159 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
56 Mon Dec 10 11:42:59.352 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
{last_modified_time} Page 2
|
||||
|
||||
|
||||
57 Mon Dec 10 11:42:59.354 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
|
||||
58 Mon Dec 10 11:42:59.354 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
59 Mon Dec 10 11:42:59.372 Driver Event: <airportd[160]> _bsd_80211_event_callback: APPLE80211_M_ROAM_END (en0)
|
||||
60 Mon Dec 10 11:42:59.372 Info: <airportd[160]> Roaming ended on interface en0
|
||||
61 Mon Dec 10 11:42:59.372 Driver Event: <airportd[160]> _bsd_80211_event_callback: RSN_HANDSHAKE_DONE (en0)
|
||||
62 Mon Dec 10 11:42:59.373 Info: <airportd[160]> -[CWXPCInterfaceContext setRoamInProgress:reason:]_block_invoke: roam status metric data: CWAWDMetricRoamStatus: status:0 security: 4 profile:5 origin:<34fcb9>(-69) target:<6cf37f>(-56) latency:6.083439s
|
||||
63 Mon Dec 10 11:42:59.373 Info: <airportd[160]> -[CWAWDManager submitMetric:]: submitting metric id 0x90046
|
||||
64 Mon Dec 10 11:42:59.373 Info: <airportd[160]> RESUME AWDL for interface en0, reason=Roam token=2685
|
||||
65 Mon Dec 10 11:42:59.373 Info: <airportd[160]> PRIORITY LOCK REMOVED [client=airportd, type=4, interface=en0, priority=5]
|
||||
66 Mon Dec 10 11:42:59.374 Info: <airportd[160]> -[CWXPCInterfaceContext __setAWDLOperatingMode:interface:error:]: attempting to set AWDL mode to 0
|
||||
67 Mon Dec 10 11:43:01.072 SC: <airportd[160]> airportdProcessSystemConfigurationEvent: Processing 'State:/Network/Service/18E14EA7-4641-4104-B315-A9315814912A/DHCP'
|
||||
68 Mon Dec 10 11:43:01.072 SC: <airportd[160]> _processDHCPChanges: State:/Network/Service/18E14EA7-4641-4104-B315-A9315814912A/DHCP
|
||||
69 Mon Dec 10 11:43:01.072 SC: <airportd[160]> _processDHCPChanges: DHCP airport_changed = 1
|
||||
70 Mon Dec 10 11:43:01.073 Info: <airportd[160]> -[CWXPCSubsystem internal_submitIPConfigLatencyMetric:leaseDuration:]: IPConfig Latency metric data: CWAWDMetricIPConfigLatencyData: DHCP latency: 29010 msecs, duration: 480 mins, security: 4
|
||||
71 Mon Dec 10 11:43:01.073 Info: <airportd[160]> -[CWAWDManager submitMetric:]: submitting metric id 0x90007
|
||||
72 Mon Dec 10 11:43:01.073 SC: <airportd[160]> _setDHCPMessage: dhcpInfoKey "State:/Network/Interface/en0/AirPort/DHCP Message" = (null)
|
||||
73 Mon Dec 10 11:43:10.369 Driver Event: <airportd[160]> _bsd_80211_event_callback: LINK_QUALITY (en0)
|
||||
74 Mon Dec 10 11:43:10.369 Info: <airportd[160]> _bsd_80211_event_callback: <en0> link quality: RSSI=-57 dBm TxRate=162 Mbps
|
||||
75 Mon Dec 10 11:43:10.369 Info: <Wi-Fi Menu Extra[335]> link quality changed
|
||||
76 Mon Dec 10 11:43:23.376 Driver Event: <airportd[160]> _bsd_80211_event_callback: LINK_QUALITY (en0)
|
||||
77 Mon Dec 10 11:43:23.377 Info: <airportd[160]> _bsd_80211_event_callback: <en0> link quality: RSSI=-58 dBm TxRate=243 Mbps
|
||||
78 Mon Dec 10 11:43:23.377 Info: <Wi-Fi Menu Extra[335]> link quality changed
|
||||
79 Mon Dec 10 11:43:28.380 Driver Event: <airportd[160]> _bsd_80211_event_callback: LINK_QUALITY (en0)
|
||||
80 Mon Dec 10 11:43:28.380 Info: <airportd[160]> _bsd_80211_event_callback: <en0> link quality: RSSI=-58 dBm TxRate=216 Mbps
|
||||
81 Mon Dec 10 11:43:28.380 Info: <Wi-Fi Menu Extra[335]> link quality changed
|
||||
82 Mon Dec 10 11:43:31.744 AutoJoin: <airportd[160]> BACKGROUND SCAN request on interface en0 with SSID list (null)
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
56
tests/fixtures/pr/tFFt-ll
vendored
Normal file
56
tests/fixtures/pr/tFFt-ll
vendored
Normal file
|
@ -0,0 +1,56 @@
|
|||
1<<< -Test: FF's in Text >>>
|
||||
2<<< -b -3 / -a -3 / ... >>>
|
||||
3<<< >>>
|
||||
4<<< 123456789 123456789 123456789 123456789 123456789 123456789 123456789 >>>
|
||||
|
||||
6<<< -Arangements: One Empty Page >>>
|
||||
7<<< \f\f\n; text\f\n\ftext; \f\ftext; >>>
|
||||
8<<< f\f\n; \f\n\f\n; >>>
|
||||
9<<< >>>
|
||||
10<<< >>>
|
||||
1<<< >>>
|
||||
2<<< >>>
|
||||
3<<< truncation before FF; r_r_o_l-test: >>>
|
||||
14<<< 123456789 123456789 123456789 >>>15<<< xyzxyzxyz XYZXYZXYZ abcabcab >>>
|
||||
16<<< 123456789 xyzxyzxyz XYZXYZXYZ >>>
|
||||
7<<< >>>
|
||||
8<<< >>>
|
||||
9<<< >>>
|
||||
20<<< >>>
|
||||
1<<< >>>
|
||||
|
||||
|
||||
4<<< >>>
|
||||
5<<< >>>
|
||||
6<<< >>>
|
||||
27<<< truncation before FF; (r_l-test): >>>
|
||||
28<<< trunc29<<<xyzxyzxyz XYZXYZXYZ abcabcab >>>
|
||||
30<<< 123456789 xyzxyzxyz XYZXYZXYZ >>>
|
||||
1<<< >>>
|
||||
2<<< abcdefghi >>>
|
||||
3<<< >>>
|
||||
4<<< >>>
|
||||
5<<< >>>
|
||||
6<<< >>>
|
||||
7<<< >>>
|
||||
8<<< >>>
|
||||
9<<< abcdefghi >>>
|
||||
40<<< 123456789 >>>
|
||||
41<<< XYZXYZXYZ abcabcab >>>
|
||||
42<<< 123456789 abcdefghi ABCDEDFHI >>>43<<< xyzxyzxyz XYZXYZXYZ abcabcab >>>
|
||||
44<<< 123456789 xyzxyzxyz XYZXYZXYZ >>>
|
||||
5<<< >>>
|
||||
6<<< >>>
|
||||
7<<< >>>
|
||||
8<<< >>>
|
||||
9<<< >>>
|
||||
50<<< >>>
|
||||
1<<< >>>
|
||||
2<<< >>>
|
||||
3<<< >>>
|
||||
4<<< >>>
|
||||
55<<< XYZXYZXYZ abcabcab >>>
|
||||
56<<< 123456789 abcdefghi ABCDEDFHI >>>57<<< xyzxyzxyz XYZXYZXYZ abcabcab >>>
|
||||
58<<< 123456789 xyzxyzxyz XYZXYZXYZ >>>
|
||||
9<<< >>>
|
||||
60<<< 123456789 >>>
|
1000
tests/fixtures/pr/test.log
vendored
Normal file
1000
tests/fixtures/pr/test.log
vendored
Normal file
File diff suppressed because it is too large
Load diff
112
tests/fixtures/pr/test_num_page.log
vendored
Normal file
112
tests/fixtures/pr/test_num_page.log
vendored
Normal file
|
@ -0,0 +1,112 @@
|
|||
ntation processAirPortStateChanges]: pppConnectionState 0
|
||||
Mon Dec 10 11:42:56.558 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
Mon Dec 10 11:42:56.705 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
|
||||
Mon Dec 10 11:42:56.706 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
|
||||
Mon Dec 10 11:42:56.706 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
Mon Dec 10 11:42:56.854 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
|
||||
Mon Dec 10 11:42:56.855 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
|
||||
Mon Dec 10 11:42:56.856 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
Mon Dec 10 11:42:57.002 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
|
||||
Mon Dec 10 11:42:57.003 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
|
||||
Mon Dec 10 11:42:57.003 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
Mon Dec 10 11:42:57.152 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
|
||||
Mon Dec 10 11:42:57.154 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
|
||||
Mon Dec 10 11:42:57.154 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
Mon Dec 10 11:42:57.302 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
|
||||
Mon Dec 10 11:42:57.304 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
|
||||
Mon Dec 10 11:42:57.304 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
Mon Dec 10 11:42:57.449 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
|
||||
Mon Dec 10 11:42:57.451 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
|
||||
Mon Dec 10 11:42:57.451 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
Mon Dec 10 11:42:57.600 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
|
||||
Mon Dec 10 11:42:57.601 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
|
||||
Mon Dec 10 11:42:57.602 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
Mon Dec 10 11:42:57.624 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
|
||||
Mon Dec 10 11:42:57.624 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
Mon Dec 10 11:42:57.749 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
|
||||
Mon Dec 10 11:42:57.750 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
|
||||
Mon Dec 10 11:42:57.751 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
Mon Dec 10 11:42:57.896 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
|
||||
Mon Dec 10 11:42:57.897 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
|
||||
Mon Dec 10 11:42:57.897 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
Mon Dec 10 11:42:58.045 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
|
||||
Mon Dec 10 11:42:58.047 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
|
||||
Mon Dec 10 11:42:58.047 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
Mon Dec 10 11:42:58.193 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
|
||||
Mon Dec 10 11:42:58.195 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
|
||||
Mon Dec 10 11:42:58.195 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
Mon Dec 10 11:42:58.342 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
|
||||
Mon Dec 10 11:42:58.343 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
|
||||
Mon Dec 10 11:42:58.344 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
Mon Dec 10 11:42:58.491 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
|
||||
Mon Dec 10 11:42:58.493 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
|
||||
Mon Dec 10 11:42:58.494 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
Mon Dec 10 11:42:58.640 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
|
||||
Mon Dec 10 11:42:58.642 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
|
||||
Mon Dec 10 11:42:58.642 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
Mon Dec 10 11:42:58.805 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
|
||||
Mon Dec 10 11:42:58.806 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
|
||||
Mon Dec 10 11:42:58.806 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
Mon Dec 10 11:42:58.958 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
|
||||
Mon Dec 10 11:42:58.959 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
|
||||
Mon Dec 10 11:42:58.960 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
Mon Dec 10 11:42:59.155 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
|
||||
Mon Dec 10 11:42:59.157 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
|
||||
Mon Dec 10 11:42:59.159 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
Mon Dec 10 11:42:59.352 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
|
||||
ntation processAirPortStateChanges]: pppConnectionState 0
|
||||
Mon Dec 10 11:42:56.558 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
Mon Dec 10 11:42:56.705 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
|
||||
Mon Dec 10 11:42:56.706 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
|
||||
Mon Dec 10 11:42:56.706 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
Mon Dec 10 11:42:56.854 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
|
||||
Mon Dec 10 11:42:56.855 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
|
||||
Mon Dec 10 11:42:56.856 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
Mon Dec 10 11:42:57.002 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
|
||||
Mon Dec 10 11:42:57.003 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
|
||||
Mon Dec 10 11:42:57.003 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
Mon Dec 10 11:42:57.152 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
|
||||
Mon Dec 10 11:42:57.154 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
|
||||
Mon Dec 10 11:42:57.154 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
Mon Dec 10 11:42:57.302 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
|
||||
Mon Dec 10 11:42:57.304 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
|
||||
Mon Dec 10 11:42:57.304 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
Mon Dec 10 11:42:57.449 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
|
||||
Mon Dec 10 11:42:57.451 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
|
||||
Mon Dec 10 11:42:57.451 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
Mon Dec 10 11:42:57.600 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
|
||||
Mon Dec 10 11:42:57.601 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
|
||||
Mon Dec 10 11:42:57.602 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
Mon Dec 10 11:42:57.624 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
|
||||
Mon Dec 10 11:42:57.624 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
Mon Dec 10 11:42:57.749 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
|
||||
Mon Dec 10 11:42:57.750 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
|
||||
Mon Dec 10 11:42:57.751 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
Mon Dec 10 11:42:57.896 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
|
||||
Mon Dec 10 11:42:57.897 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
|
||||
Mon Dec 10 11:42:57.897 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
Mon Dec 10 11:42:58.045 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
|
||||
Mon Dec 10 11:42:58.047 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
|
||||
Mon Dec 10 11:42:58.047 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
Mon Dec 10 11:42:58.193 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
|
||||
Mon Dec 10 11:42:58.195 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
|
||||
Mon Dec 10 11:42:58.195 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
Mon Dec 10 11:42:58.342 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
|
||||
Mon Dec 10 11:42:58.343 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
|
||||
Mon Dec 10 11:42:58.344 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
Mon Dec 10 11:42:58.491 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
|
||||
Mon Dec 10 11:42:58.493 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
|
||||
Mon Dec 10 11:42:58.494 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
Mon Dec 10 11:42:58.640 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
|
||||
Mon Dec 10 11:42:58.642 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
|
||||
Mon Dec 10 11:42:58.642 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
Mon Dec 10 11:42:58.805 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
|
||||
Mon Dec 10 11:42:58.806 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
|
||||
Mon Dec 10 11:42:58.806 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
Mon Dec 10 11:42:58.958 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
|
||||
Mon Dec 10 11:42:58.959 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
|
||||
Mon Dec 10 11:42:58.960 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
Mon Dec 10 11:42:59.155 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
|
||||
Mon Dec 10 11:42:59.157 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
|
||||
Mon Dec 10 11:42:59.159 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
Mon Dec 10 11:42:59.352 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
|
132
tests/fixtures/pr/test_num_page_2.log.expected
vendored
Normal file
132
tests/fixtures/pr/test_num_page_2.log.expected
vendored
Normal file
|
@ -0,0 +1,132 @@
|
|||
|
||||
|
||||
{last_modified_time} test_num_page.log Page 1
|
||||
|
||||
|
||||
1 ntation processAirPortStateChanges]: pppConnectionState 0
|
||||
2 Mon Dec 10 11:42:56.558 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
3 Mon Dec 10 11:42:56.705 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
|
||||
4 Mon Dec 10 11:42:56.706 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
|
||||
5 Mon Dec 10 11:42:56.706 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
6 Mon Dec 10 11:42:56.854 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
|
||||
7 Mon Dec 10 11:42:56.855 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
|
||||
8 Mon Dec 10 11:42:56.856 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
9 Mon Dec 10 11:42:57.002 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
|
||||
10 Mon Dec 10 11:42:57.003 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
|
||||
11 Mon Dec 10 11:42:57.003 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
12 Mon Dec 10 11:42:57.152 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
|
||||
13 Mon Dec 10 11:42:57.154 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
|
||||
14 Mon Dec 10 11:42:57.154 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
15 Mon Dec 10 11:42:57.302 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
|
||||
16 Mon Dec 10 11:42:57.304 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
|
||||
17 Mon Dec 10 11:42:57.304 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
18 Mon Dec 10 11:42:57.449 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
|
||||
19 Mon Dec 10 11:42:57.451 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
|
||||
20 Mon Dec 10 11:42:57.451 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
21 Mon Dec 10 11:42:57.600 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
|
||||
22 Mon Dec 10 11:42:57.601 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
|
||||
23 Mon Dec 10 11:42:57.602 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
24 Mon Dec 10 11:42:57.624 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
|
||||
25 Mon Dec 10 11:42:57.624 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
26 Mon Dec 10 11:42:57.749 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
|
||||
27 Mon Dec 10 11:42:57.750 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
|
||||
28 Mon Dec 10 11:42:57.751 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
29 Mon Dec 10 11:42:57.896 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
|
||||
30 Mon Dec 10 11:42:57.897 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
|
||||
31 Mon Dec 10 11:42:57.897 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
32 Mon Dec 10 11:42:58.045 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
|
||||
33 Mon Dec 10 11:42:58.047 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
|
||||
34 Mon Dec 10 11:42:58.047 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
35 Mon Dec 10 11:42:58.193 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
|
||||
36 Mon Dec 10 11:42:58.195 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
|
||||
37 Mon Dec 10 11:42:58.195 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
38 Mon Dec 10 11:42:58.342 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
|
||||
39 Mon Dec 10 11:42:58.343 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
|
||||
40 Mon Dec 10 11:42:58.344 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
41 Mon Dec 10 11:42:58.491 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
|
||||
42 Mon Dec 10 11:42:58.493 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
|
||||
43 Mon Dec 10 11:42:58.494 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
44 Mon Dec 10 11:42:58.640 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
|
||||
45 Mon Dec 10 11:42:58.642 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
|
||||
46 Mon Dec 10 11:42:58.642 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
47 Mon Dec 10 11:42:58.805 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
|
||||
48 Mon Dec 10 11:42:58.806 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
|
||||
49 Mon Dec 10 11:42:58.806 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
50 Mon Dec 10 11:42:58.958 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
|
||||
51 Mon Dec 10 11:42:58.959 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
|
||||
52 Mon Dec 10 11:42:58.960 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
53 Mon Dec 10 11:42:59.155 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
|
||||
54 Mon Dec 10 11:42:59.157 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
|
||||
55 Mon Dec 10 11:42:59.159 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
56 Mon Dec 10 11:42:59.352 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
{last_modified_time} test_num_page.log Page 2
|
||||
|
||||
|
||||
57 ntation processAirPortStateChanges]: pppConnectionState 0
|
||||
58 Mon Dec 10 11:42:56.558 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
59 Mon Dec 10 11:42:56.705 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
|
||||
60 Mon Dec 10 11:42:56.706 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
|
||||
61 Mon Dec 10 11:42:56.706 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
62 Mon Dec 10 11:42:56.854 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
|
||||
63 Mon Dec 10 11:42:56.855 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
|
||||
64 Mon Dec 10 11:42:56.856 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
65 Mon Dec 10 11:42:57.002 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
|
||||
66 Mon Dec 10 11:42:57.003 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
|
||||
67 Mon Dec 10 11:42:57.003 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
68 Mon Dec 10 11:42:57.152 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
|
||||
69 Mon Dec 10 11:42:57.154 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
|
||||
70 Mon Dec 10 11:42:57.154 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
71 Mon Dec 10 11:42:57.302 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
|
||||
72 Mon Dec 10 11:42:57.304 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
|
||||
73 Mon Dec 10 11:42:57.304 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
74 Mon Dec 10 11:42:57.449 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
|
||||
75 Mon Dec 10 11:42:57.451 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
|
||||
76 Mon Dec 10 11:42:57.451 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
77 Mon Dec 10 11:42:57.600 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
|
||||
78 Mon Dec 10 11:42:57.601 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
|
||||
79 Mon Dec 10 11:42:57.602 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
80 Mon Dec 10 11:42:57.624 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
|
||||
81 Mon Dec 10 11:42:57.624 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
82 Mon Dec 10 11:42:57.749 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
|
||||
83 Mon Dec 10 11:42:57.750 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
|
||||
84 Mon Dec 10 11:42:57.751 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
85 Mon Dec 10 11:42:57.896 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
|
||||
86 Mon Dec 10 11:42:57.897 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
|
||||
87 Mon Dec 10 11:42:57.897 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
88 Mon Dec 10 11:42:58.045 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
|
||||
89 Mon Dec 10 11:42:58.047 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
|
||||
90 Mon Dec 10 11:42:58.047 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
91 Mon Dec 10 11:42:58.193 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
|
||||
92 Mon Dec 10 11:42:58.195 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
|
||||
93 Mon Dec 10 11:42:58.195 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
94 Mon Dec 10 11:42:58.342 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
|
||||
95 Mon Dec 10 11:42:58.343 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
|
||||
96 Mon Dec 10 11:42:58.344 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
97 Mon Dec 10 11:42:58.491 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
|
||||
98 Mon Dec 10 11:42:58.493 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
|
||||
99 Mon Dec 10 11:42:58.494 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
00 Mon Dec 10 11:42:58.640 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
|
||||
01 Mon Dec 10 11:42:58.642 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
|
||||
02 Mon Dec 10 11:42:58.642 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
03 Mon Dec 10 11:42:58.805 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
|
||||
04 Mon Dec 10 11:42:58.806 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
|
||||
05 Mon Dec 10 11:42:58.806 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
06 Mon Dec 10 11:42:58.958 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
|
||||
07 Mon Dec 10 11:42:58.959 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
|
||||
08 Mon Dec 10 11:42:58.960 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
09 Mon Dec 10 11:42:59.155 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
|
||||
10 Mon Dec 10 11:42:59.157 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
|
||||
11 Mon Dec 10 11:42:59.159 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
12 Mon Dec 10 11:42:59.352 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
|
||||
|
||||
|
||||
|
||||
|
||||
|
132
tests/fixtures/pr/test_num_page_char.log.expected
vendored
Normal file
132
tests/fixtures/pr/test_num_page_char.log.expected
vendored
Normal file
|
@ -0,0 +1,132 @@
|
|||
|
||||
|
||||
{last_modified_time} test_num_page.log Page 1
|
||||
|
||||
|
||||
1cntation processAirPortStateChanges]: pppConnectionState 0
|
||||
2cMon Dec 10 11:42:56.558 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
3cMon Dec 10 11:42:56.705 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
|
||||
4cMon Dec 10 11:42:56.706 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
|
||||
5cMon Dec 10 11:42:56.706 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
6cMon Dec 10 11:42:56.854 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
|
||||
7cMon Dec 10 11:42:56.855 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
|
||||
8cMon Dec 10 11:42:56.856 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
9cMon Dec 10 11:42:57.002 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
|
||||
10cMon Dec 10 11:42:57.003 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
|
||||
11cMon Dec 10 11:42:57.003 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
12cMon Dec 10 11:42:57.152 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
|
||||
13cMon Dec 10 11:42:57.154 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
|
||||
14cMon Dec 10 11:42:57.154 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
15cMon Dec 10 11:42:57.302 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
|
||||
16cMon Dec 10 11:42:57.304 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
|
||||
17cMon Dec 10 11:42:57.304 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
18cMon Dec 10 11:42:57.449 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
|
||||
19cMon Dec 10 11:42:57.451 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
|
||||
20cMon Dec 10 11:42:57.451 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
21cMon Dec 10 11:42:57.600 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
|
||||
22cMon Dec 10 11:42:57.601 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
|
||||
23cMon Dec 10 11:42:57.602 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
24cMon Dec 10 11:42:57.624 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
|
||||
25cMon Dec 10 11:42:57.624 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
26cMon Dec 10 11:42:57.749 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
|
||||
27cMon Dec 10 11:42:57.750 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
|
||||
28cMon Dec 10 11:42:57.751 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
29cMon Dec 10 11:42:57.896 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
|
||||
30cMon Dec 10 11:42:57.897 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
|
||||
31cMon Dec 10 11:42:57.897 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
32cMon Dec 10 11:42:58.045 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
|
||||
33cMon Dec 10 11:42:58.047 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
|
||||
34cMon Dec 10 11:42:58.047 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
35cMon Dec 10 11:42:58.193 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
|
||||
36cMon Dec 10 11:42:58.195 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
|
||||
37cMon Dec 10 11:42:58.195 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
38cMon Dec 10 11:42:58.342 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
|
||||
39cMon Dec 10 11:42:58.343 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
|
||||
40cMon Dec 10 11:42:58.344 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
41cMon Dec 10 11:42:58.491 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
|
||||
42cMon Dec 10 11:42:58.493 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
|
||||
43cMon Dec 10 11:42:58.494 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
44cMon Dec 10 11:42:58.640 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
|
||||
45cMon Dec 10 11:42:58.642 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
|
||||
46cMon Dec 10 11:42:58.642 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
47cMon Dec 10 11:42:58.805 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
|
||||
48cMon Dec 10 11:42:58.806 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
|
||||
49cMon Dec 10 11:42:58.806 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
50cMon Dec 10 11:42:58.958 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
|
||||
51cMon Dec 10 11:42:58.959 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
|
||||
52cMon Dec 10 11:42:58.960 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
53cMon Dec 10 11:42:59.155 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
|
||||
54cMon Dec 10 11:42:59.157 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
|
||||
55cMon Dec 10 11:42:59.159 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
56cMon Dec 10 11:42:59.352 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
{last_modified_time} test_num_page.log Page 2
|
||||
|
||||
|
||||
57cntation processAirPortStateChanges]: pppConnectionState 0
|
||||
58cMon Dec 10 11:42:56.558 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
59cMon Dec 10 11:42:56.705 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
|
||||
60cMon Dec 10 11:42:56.706 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
|
||||
61cMon Dec 10 11:42:56.706 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
62cMon Dec 10 11:42:56.854 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
|
||||
63cMon Dec 10 11:42:56.855 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
|
||||
64cMon Dec 10 11:42:56.856 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
65cMon Dec 10 11:42:57.002 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
|
||||
66cMon Dec 10 11:42:57.003 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
|
||||
67cMon Dec 10 11:42:57.003 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
68cMon Dec 10 11:42:57.152 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
|
||||
69cMon Dec 10 11:42:57.154 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
|
||||
70cMon Dec 10 11:42:57.154 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
71cMon Dec 10 11:42:57.302 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
|
||||
72cMon Dec 10 11:42:57.304 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
|
||||
73cMon Dec 10 11:42:57.304 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
74cMon Dec 10 11:42:57.449 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
|
||||
75cMon Dec 10 11:42:57.451 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
|
||||
76cMon Dec 10 11:42:57.451 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
77cMon Dec 10 11:42:57.600 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
|
||||
78cMon Dec 10 11:42:57.601 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
|
||||
79cMon Dec 10 11:42:57.602 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
80cMon Dec 10 11:42:57.624 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
|
||||
81cMon Dec 10 11:42:57.624 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
82cMon Dec 10 11:42:57.749 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
|
||||
83cMon Dec 10 11:42:57.750 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
|
||||
84cMon Dec 10 11:42:57.751 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
85cMon Dec 10 11:42:57.896 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
|
||||
86cMon Dec 10 11:42:57.897 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
|
||||
87cMon Dec 10 11:42:57.897 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
88cMon Dec 10 11:42:58.045 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
|
||||
89cMon Dec 10 11:42:58.047 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
|
||||
90cMon Dec 10 11:42:58.047 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
91cMon Dec 10 11:42:58.193 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
|
||||
92cMon Dec 10 11:42:58.195 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
|
||||
93cMon Dec 10 11:42:58.195 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
94cMon Dec 10 11:42:58.342 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
|
||||
95cMon Dec 10 11:42:58.343 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
|
||||
96cMon Dec 10 11:42:58.344 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
97cMon Dec 10 11:42:58.491 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
|
||||
98cMon Dec 10 11:42:58.493 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
|
||||
99cMon Dec 10 11:42:58.494 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
100cMon Dec 10 11:42:58.640 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
|
||||
101cMon Dec 10 11:42:58.642 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
|
||||
102cMon Dec 10 11:42:58.642 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
103cMon Dec 10 11:42:58.805 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
|
||||
104cMon Dec 10 11:42:58.806 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
|
||||
105cMon Dec 10 11:42:58.806 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
106cMon Dec 10 11:42:58.958 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
|
||||
107cMon Dec 10 11:42:58.959 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
|
||||
108cMon Dec 10 11:42:58.960 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
109cMon Dec 10 11:42:59.155 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
|
||||
110cMon Dec 10 11:42:59.157 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
|
||||
111cMon Dec 10 11:42:59.159 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
112cMon Dec 10 11:42:59.352 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
|
||||
|
||||
|
||||
|
||||
|
||||
|
132
tests/fixtures/pr/test_num_page_char_one.log.expected
vendored
Normal file
132
tests/fixtures/pr/test_num_page_char_one.log.expected
vendored
Normal file
|
@ -0,0 +1,132 @@
|
|||
|
||||
|
||||
{last_modified_time} test_num_page.log Page 1
|
||||
|
||||
|
||||
1cntation processAirPortStateChanges]: pppConnectionState 0
|
||||
2cMon Dec 10 11:42:56.558 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
3cMon Dec 10 11:42:56.705 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
|
||||
4cMon Dec 10 11:42:56.706 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
|
||||
5cMon Dec 10 11:42:56.706 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
6cMon Dec 10 11:42:56.854 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
|
||||
7cMon Dec 10 11:42:56.855 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
|
||||
8cMon Dec 10 11:42:56.856 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
9cMon Dec 10 11:42:57.002 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
|
||||
0cMon Dec 10 11:42:57.003 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
|
||||
1cMon Dec 10 11:42:57.003 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
2cMon Dec 10 11:42:57.152 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
|
||||
3cMon Dec 10 11:42:57.154 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
|
||||
4cMon Dec 10 11:42:57.154 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
5cMon Dec 10 11:42:57.302 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
|
||||
6cMon Dec 10 11:42:57.304 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
|
||||
7cMon Dec 10 11:42:57.304 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
8cMon Dec 10 11:42:57.449 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
|
||||
9cMon Dec 10 11:42:57.451 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
|
||||
0cMon Dec 10 11:42:57.451 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
1cMon Dec 10 11:42:57.600 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
|
||||
2cMon Dec 10 11:42:57.601 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
|
||||
3cMon Dec 10 11:42:57.602 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
4cMon Dec 10 11:42:57.624 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
|
||||
5cMon Dec 10 11:42:57.624 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
6cMon Dec 10 11:42:57.749 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
|
||||
7cMon Dec 10 11:42:57.750 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
|
||||
8cMon Dec 10 11:42:57.751 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
9cMon Dec 10 11:42:57.896 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
|
||||
0cMon Dec 10 11:42:57.897 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
|
||||
1cMon Dec 10 11:42:57.897 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
2cMon Dec 10 11:42:58.045 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
|
||||
3cMon Dec 10 11:42:58.047 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
|
||||
4cMon Dec 10 11:42:58.047 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
5cMon Dec 10 11:42:58.193 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
|
||||
6cMon Dec 10 11:42:58.195 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
|
||||
7cMon Dec 10 11:42:58.195 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
8cMon Dec 10 11:42:58.342 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
|
||||
9cMon Dec 10 11:42:58.343 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
|
||||
0cMon Dec 10 11:42:58.344 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
1cMon Dec 10 11:42:58.491 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
|
||||
2cMon Dec 10 11:42:58.493 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
|
||||
3cMon Dec 10 11:42:58.494 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
4cMon Dec 10 11:42:58.640 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
|
||||
5cMon Dec 10 11:42:58.642 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
|
||||
6cMon Dec 10 11:42:58.642 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
7cMon Dec 10 11:42:58.805 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
|
||||
8cMon Dec 10 11:42:58.806 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
|
||||
9cMon Dec 10 11:42:58.806 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
0cMon Dec 10 11:42:58.958 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
|
||||
1cMon Dec 10 11:42:58.959 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
|
||||
2cMon Dec 10 11:42:58.960 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
3cMon Dec 10 11:42:59.155 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
|
||||
4cMon Dec 10 11:42:59.157 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
|
||||
5cMon Dec 10 11:42:59.159 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
6cMon Dec 10 11:42:59.352 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
{last_modified_time} test_num_page.log Page 2
|
||||
|
||||
|
||||
7cntation processAirPortStateChanges]: pppConnectionState 0
|
||||
8cMon Dec 10 11:42:56.558 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
9cMon Dec 10 11:42:56.705 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
|
||||
0cMon Dec 10 11:42:56.706 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
|
||||
1cMon Dec 10 11:42:56.706 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
2cMon Dec 10 11:42:56.854 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
|
||||
3cMon Dec 10 11:42:56.855 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
|
||||
4cMon Dec 10 11:42:56.856 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
5cMon Dec 10 11:42:57.002 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
|
||||
6cMon Dec 10 11:42:57.003 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
|
||||
7cMon Dec 10 11:42:57.003 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
8cMon Dec 10 11:42:57.152 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
|
||||
9cMon Dec 10 11:42:57.154 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
|
||||
0cMon Dec 10 11:42:57.154 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
1cMon Dec 10 11:42:57.302 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
|
||||
2cMon Dec 10 11:42:57.304 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
|
||||
3cMon Dec 10 11:42:57.304 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
4cMon Dec 10 11:42:57.449 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
|
||||
5cMon Dec 10 11:42:57.451 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
|
||||
6cMon Dec 10 11:42:57.451 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
7cMon Dec 10 11:42:57.600 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
|
||||
8cMon Dec 10 11:42:57.601 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
|
||||
9cMon Dec 10 11:42:57.602 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
0cMon Dec 10 11:42:57.624 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
|
||||
1cMon Dec 10 11:42:57.624 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
2cMon Dec 10 11:42:57.749 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
|
||||
3cMon Dec 10 11:42:57.750 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
|
||||
4cMon Dec 10 11:42:57.751 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
5cMon Dec 10 11:42:57.896 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
|
||||
6cMon Dec 10 11:42:57.897 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
|
||||
7cMon Dec 10 11:42:57.897 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
8cMon Dec 10 11:42:58.045 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
|
||||
9cMon Dec 10 11:42:58.047 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
|
||||
0cMon Dec 10 11:42:58.047 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
1cMon Dec 10 11:42:58.193 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
|
||||
2cMon Dec 10 11:42:58.195 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
|
||||
3cMon Dec 10 11:42:58.195 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
4cMon Dec 10 11:42:58.342 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
|
||||
5cMon Dec 10 11:42:58.343 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
|
||||
6cMon Dec 10 11:42:58.344 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
7cMon Dec 10 11:42:58.491 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
|
||||
8cMon Dec 10 11:42:58.493 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
|
||||
9cMon Dec 10 11:42:58.494 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
0cMon Dec 10 11:42:58.640 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
|
||||
1cMon Dec 10 11:42:58.642 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
|
||||
2cMon Dec 10 11:42:58.642 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
3cMon Dec 10 11:42:58.805 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
|
||||
4cMon Dec 10 11:42:58.806 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
|
||||
5cMon Dec 10 11:42:58.806 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
6cMon Dec 10 11:42:58.958 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
|
||||
7cMon Dec 10 11:42:58.959 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
|
||||
8cMon Dec 10 11:42:58.960 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
9cMon Dec 10 11:42:59.155 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
|
||||
0cMon Dec 10 11:42:59.157 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
|
||||
1cMon Dec 10 11:42:59.159 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
2cMon Dec 10 11:42:59.352 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
|
||||
|
||||
|
||||
|
||||
|
||||
|
56
tests/fixtures/pr/test_one_page.log
vendored
Normal file
56
tests/fixtures/pr/test_one_page.log
vendored
Normal file
|
@ -0,0 +1,56 @@
|
|||
ntation processAirPortStateChanges]: pppConnectionState 0
|
||||
Mon Dec 10 11:42:56.558 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
Mon Dec 10 11:42:56.705 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
|
||||
Mon Dec 10 11:42:56.706 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
|
||||
Mon Dec 10 11:42:56.706 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
Mon Dec 10 11:42:56.854 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
|
||||
Mon Dec 10 11:42:56.855 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
|
||||
Mon Dec 10 11:42:56.856 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
Mon Dec 10 11:42:57.002 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
|
||||
Mon Dec 10 11:42:57.003 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
|
||||
Mon Dec 10 11:42:57.003 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
Mon Dec 10 11:42:57.152 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
|
||||
Mon Dec 10 11:42:57.154 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
|
||||
Mon Dec 10 11:42:57.154 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
Mon Dec 10 11:42:57.302 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
|
||||
Mon Dec 10 11:42:57.304 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
|
||||
Mon Dec 10 11:42:57.304 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
Mon Dec 10 11:42:57.449 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
|
||||
Mon Dec 10 11:42:57.451 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
|
||||
Mon Dec 10 11:42:57.451 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
Mon Dec 10 11:42:57.600 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
|
||||
Mon Dec 10 11:42:57.601 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
|
||||
Mon Dec 10 11:42:57.602 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
Mon Dec 10 11:42:57.624 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
|
||||
Mon Dec 10 11:42:57.624 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
Mon Dec 10 11:42:57.749 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
|
||||
Mon Dec 10 11:42:57.750 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
|
||||
Mon Dec 10 11:42:57.751 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
Mon Dec 10 11:42:57.896 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
|
||||
Mon Dec 10 11:42:57.897 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
|
||||
Mon Dec 10 11:42:57.897 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
Mon Dec 10 11:42:58.045 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
|
||||
Mon Dec 10 11:42:58.047 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
|
||||
Mon Dec 10 11:42:58.047 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
Mon Dec 10 11:42:58.193 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
|
||||
Mon Dec 10 11:42:58.195 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
|
||||
Mon Dec 10 11:42:58.195 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
Mon Dec 10 11:42:58.342 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
|
||||
Mon Dec 10 11:42:58.343 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
|
||||
Mon Dec 10 11:42:58.344 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
Mon Dec 10 11:42:58.491 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
|
||||
Mon Dec 10 11:42:58.493 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
|
||||
Mon Dec 10 11:42:58.494 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
Mon Dec 10 11:42:58.640 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
|
||||
Mon Dec 10 11:42:58.642 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
|
||||
Mon Dec 10 11:42:58.642 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
Mon Dec 10 11:42:58.805 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
|
||||
Mon Dec 10 11:42:58.806 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
|
||||
Mon Dec 10 11:42:58.806 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
Mon Dec 10 11:42:58.958 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
|
||||
Mon Dec 10 11:42:58.959 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
|
||||
Mon Dec 10 11:42:58.960 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
Mon Dec 10 11:42:59.155 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
|
||||
Mon Dec 10 11:42:59.157 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
|
||||
Mon Dec 10 11:42:59.159 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
Mon Dec 10 11:42:59.352 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
|
66
tests/fixtures/pr/test_one_page.log.expected
vendored
Normal file
66
tests/fixtures/pr/test_one_page.log.expected
vendored
Normal file
|
@ -0,0 +1,66 @@
|
|||
|
||||
|
||||
{last_modified_time} test_one_page.log Page 1
|
||||
|
||||
|
||||
ntation processAirPortStateChanges]: pppConnectionState 0
|
||||
Mon Dec 10 11:42:56.558 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
Mon Dec 10 11:42:56.705 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
|
||||
Mon Dec 10 11:42:56.706 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
|
||||
Mon Dec 10 11:42:56.706 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
Mon Dec 10 11:42:56.854 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
|
||||
Mon Dec 10 11:42:56.855 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
|
||||
Mon Dec 10 11:42:56.856 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
Mon Dec 10 11:42:57.002 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
|
||||
Mon Dec 10 11:42:57.003 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
|
||||
Mon Dec 10 11:42:57.003 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
Mon Dec 10 11:42:57.152 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
|
||||
Mon Dec 10 11:42:57.154 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
|
||||
Mon Dec 10 11:42:57.154 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
Mon Dec 10 11:42:57.302 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
|
||||
Mon Dec 10 11:42:57.304 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
|
||||
Mon Dec 10 11:42:57.304 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
Mon Dec 10 11:42:57.449 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
|
||||
Mon Dec 10 11:42:57.451 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
|
||||
Mon Dec 10 11:42:57.451 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
Mon Dec 10 11:42:57.600 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
|
||||
Mon Dec 10 11:42:57.601 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
|
||||
Mon Dec 10 11:42:57.602 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
Mon Dec 10 11:42:57.624 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
|
||||
Mon Dec 10 11:42:57.624 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
Mon Dec 10 11:42:57.749 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
|
||||
Mon Dec 10 11:42:57.750 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
|
||||
Mon Dec 10 11:42:57.751 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
Mon Dec 10 11:42:57.896 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
|
||||
Mon Dec 10 11:42:57.897 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
|
||||
Mon Dec 10 11:42:57.897 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
Mon Dec 10 11:42:58.045 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
|
||||
Mon Dec 10 11:42:58.047 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
|
||||
Mon Dec 10 11:42:58.047 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
Mon Dec 10 11:42:58.193 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
|
||||
Mon Dec 10 11:42:58.195 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
|
||||
Mon Dec 10 11:42:58.195 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
Mon Dec 10 11:42:58.342 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
|
||||
Mon Dec 10 11:42:58.343 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
|
||||
Mon Dec 10 11:42:58.344 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
Mon Dec 10 11:42:58.491 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
|
||||
Mon Dec 10 11:42:58.493 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
|
||||
Mon Dec 10 11:42:58.494 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
Mon Dec 10 11:42:58.640 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
|
||||
Mon Dec 10 11:42:58.642 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
|
||||
Mon Dec 10 11:42:58.642 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
Mon Dec 10 11:42:58.805 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
|
||||
Mon Dec 10 11:42:58.806 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
|
||||
Mon Dec 10 11:42:58.806 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
Mon Dec 10 11:42:58.958 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
|
||||
Mon Dec 10 11:42:58.959 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
|
||||
Mon Dec 10 11:42:58.960 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
Mon Dec 10 11:42:59.155 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
|
||||
Mon Dec 10 11:42:59.157 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
|
||||
Mon Dec 10 11:42:59.159 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
Mon Dec 10 11:42:59.352 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
|
||||
|
||||
|
||||
|
||||
|
||||
|
132
tests/fixtures/pr/test_one_page_double_line.log.expected
vendored
Normal file
132
tests/fixtures/pr/test_one_page_double_line.log.expected
vendored
Normal file
|
@ -0,0 +1,132 @@
|
|||
|
||||
|
||||
{last_modified_time} test_one_page.log Page 1
|
||||
|
||||
|
||||
ntation processAirPortStateChanges]: pppConnectionState 0
|
||||
|
||||
Mon Dec 10 11:42:56.558 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
|
||||
Mon Dec 10 11:42:56.705 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
|
||||
|
||||
Mon Dec 10 11:42:56.706 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
|
||||
|
||||
Mon Dec 10 11:42:56.706 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
|
||||
Mon Dec 10 11:42:56.854 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
|
||||
|
||||
Mon Dec 10 11:42:56.855 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
|
||||
|
||||
Mon Dec 10 11:42:56.856 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
|
||||
Mon Dec 10 11:42:57.002 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
|
||||
|
||||
Mon Dec 10 11:42:57.003 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
|
||||
|
||||
Mon Dec 10 11:42:57.003 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
|
||||
Mon Dec 10 11:42:57.152 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
|
||||
|
||||
Mon Dec 10 11:42:57.154 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
|
||||
|
||||
Mon Dec 10 11:42:57.154 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
|
||||
Mon Dec 10 11:42:57.302 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
|
||||
|
||||
Mon Dec 10 11:42:57.304 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
|
||||
|
||||
Mon Dec 10 11:42:57.304 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
|
||||
Mon Dec 10 11:42:57.449 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
|
||||
|
||||
Mon Dec 10 11:42:57.451 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
|
||||
|
||||
Mon Dec 10 11:42:57.451 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
|
||||
Mon Dec 10 11:42:57.600 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
|
||||
|
||||
Mon Dec 10 11:42:57.601 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
|
||||
|
||||
Mon Dec 10 11:42:57.602 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
|
||||
Mon Dec 10 11:42:57.624 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
|
||||
|
||||
Mon Dec 10 11:42:57.624 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
|
||||
Mon Dec 10 11:42:57.749 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
|
||||
|
||||
Mon Dec 10 11:42:57.750 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
|
||||
|
||||
Mon Dec 10 11:42:57.751 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
{last_modified_time} test_one_page.log Page 2
|
||||
|
||||
|
||||
Mon Dec 10 11:42:57.896 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
|
||||
|
||||
Mon Dec 10 11:42:57.897 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
|
||||
|
||||
Mon Dec 10 11:42:57.897 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
|
||||
Mon Dec 10 11:42:58.045 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
|
||||
|
||||
Mon Dec 10 11:42:58.047 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
|
||||
|
||||
Mon Dec 10 11:42:58.047 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
|
||||
Mon Dec 10 11:42:58.193 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
|
||||
|
||||
Mon Dec 10 11:42:58.195 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
|
||||
|
||||
Mon Dec 10 11:42:58.195 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
|
||||
Mon Dec 10 11:42:58.342 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
|
||||
|
||||
Mon Dec 10 11:42:58.343 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
|
||||
|
||||
Mon Dec 10 11:42:58.344 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
|
||||
Mon Dec 10 11:42:58.491 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
|
||||
|
||||
Mon Dec 10 11:42:58.493 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
|
||||
|
||||
Mon Dec 10 11:42:58.494 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
|
||||
Mon Dec 10 11:42:58.640 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
|
||||
|
||||
Mon Dec 10 11:42:58.642 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
|
||||
|
||||
Mon Dec 10 11:42:58.642 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
|
||||
Mon Dec 10 11:42:58.805 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
|
||||
|
||||
Mon Dec 10 11:42:58.806 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
|
||||
|
||||
Mon Dec 10 11:42:58.806 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
|
||||
Mon Dec 10 11:42:58.958 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
|
||||
|
||||
Mon Dec 10 11:42:58.959 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
|
||||
|
||||
Mon Dec 10 11:42:58.960 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
|
||||
Mon Dec 10 11:42:59.155 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
|
||||
|
||||
Mon Dec 10 11:42:59.157 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
|
||||
|
||||
Mon Dec 10 11:42:59.159 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
|
||||
Mon Dec 10 11:42:59.352 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
66
tests/fixtures/pr/test_one_page_first_line.log.expected
vendored
Normal file
66
tests/fixtures/pr/test_one_page_first_line.log.expected
vendored
Normal file
|
@ -0,0 +1,66 @@
|
|||
|
||||
|
||||
{last_modified_time} test_one_page.log Page 1
|
||||
|
||||
|
||||
5 ntation processAirPortStateChanges]: pppConnectionState 0
|
||||
6 Mon Dec 10 11:42:56.558 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
7 Mon Dec 10 11:42:56.705 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
|
||||
8 Mon Dec 10 11:42:56.706 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
|
||||
9 Mon Dec 10 11:42:56.706 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
10 Mon Dec 10 11:42:56.854 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
|
||||
11 Mon Dec 10 11:42:56.855 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
|
||||
12 Mon Dec 10 11:42:56.856 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
13 Mon Dec 10 11:42:57.002 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
|
||||
14 Mon Dec 10 11:42:57.003 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
|
||||
15 Mon Dec 10 11:42:57.003 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
16 Mon Dec 10 11:42:57.152 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
|
||||
17 Mon Dec 10 11:42:57.154 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
|
||||
18 Mon Dec 10 11:42:57.154 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
19 Mon Dec 10 11:42:57.302 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
|
||||
20 Mon Dec 10 11:42:57.304 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
|
||||
21 Mon Dec 10 11:42:57.304 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
22 Mon Dec 10 11:42:57.449 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
|
||||
23 Mon Dec 10 11:42:57.451 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
|
||||
24 Mon Dec 10 11:42:57.451 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
25 Mon Dec 10 11:42:57.600 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
|
||||
26 Mon Dec 10 11:42:57.601 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
|
||||
27 Mon Dec 10 11:42:57.602 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
28 Mon Dec 10 11:42:57.624 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
|
||||
29 Mon Dec 10 11:42:57.624 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
30 Mon Dec 10 11:42:57.749 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
|
||||
31 Mon Dec 10 11:42:57.750 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
|
||||
32 Mon Dec 10 11:42:57.751 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
33 Mon Dec 10 11:42:57.896 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
|
||||
34 Mon Dec 10 11:42:57.897 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
|
||||
35 Mon Dec 10 11:42:57.897 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
36 Mon Dec 10 11:42:58.045 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
|
||||
37 Mon Dec 10 11:42:58.047 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
|
||||
38 Mon Dec 10 11:42:58.047 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
39 Mon Dec 10 11:42:58.193 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
|
||||
40 Mon Dec 10 11:42:58.195 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
|
||||
41 Mon Dec 10 11:42:58.195 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
42 Mon Dec 10 11:42:58.342 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
|
||||
43 Mon Dec 10 11:42:58.343 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
|
||||
44 Mon Dec 10 11:42:58.344 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
45 Mon Dec 10 11:42:58.491 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
|
||||
46 Mon Dec 10 11:42:58.493 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
|
||||
47 Mon Dec 10 11:42:58.494 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
48 Mon Dec 10 11:42:58.640 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
|
||||
49 Mon Dec 10 11:42:58.642 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
|
||||
50 Mon Dec 10 11:42:58.642 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
51 Mon Dec 10 11:42:58.805 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
|
||||
52 Mon Dec 10 11:42:58.806 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
|
||||
53 Mon Dec 10 11:42:58.806 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
54 Mon Dec 10 11:42:58.958 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
|
||||
55 Mon Dec 10 11:42:58.959 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
|
||||
56 Mon Dec 10 11:42:58.960 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
57 Mon Dec 10 11:42:59.155 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
|
||||
58 Mon Dec 10 11:42:59.157 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
|
||||
59 Mon Dec 10 11:42:59.159 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
60 Mon Dec 10 11:42:59.352 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
|
||||
|
||||
|
||||
|
||||
|
||||
|
66
tests/fixtures/pr/test_one_page_header.log.expected
vendored
Normal file
66
tests/fixtures/pr/test_one_page_header.log.expected
vendored
Normal file
|
@ -0,0 +1,66 @@
|
|||
|
||||
|
||||
{last_modified_time} {header} Page 1
|
||||
|
||||
|
||||
ntation processAirPortStateChanges]: pppConnectionState 0
|
||||
Mon Dec 10 11:42:56.558 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
Mon Dec 10 11:42:56.705 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
|
||||
Mon Dec 10 11:42:56.706 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
|
||||
Mon Dec 10 11:42:56.706 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
Mon Dec 10 11:42:56.854 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
|
||||
Mon Dec 10 11:42:56.855 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
|
||||
Mon Dec 10 11:42:56.856 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
Mon Dec 10 11:42:57.002 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
|
||||
Mon Dec 10 11:42:57.003 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
|
||||
Mon Dec 10 11:42:57.003 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
Mon Dec 10 11:42:57.152 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
|
||||
Mon Dec 10 11:42:57.154 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
|
||||
Mon Dec 10 11:42:57.154 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
Mon Dec 10 11:42:57.302 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
|
||||
Mon Dec 10 11:42:57.304 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
|
||||
Mon Dec 10 11:42:57.304 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
Mon Dec 10 11:42:57.449 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
|
||||
Mon Dec 10 11:42:57.451 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
|
||||
Mon Dec 10 11:42:57.451 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
Mon Dec 10 11:42:57.600 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
|
||||
Mon Dec 10 11:42:57.601 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
|
||||
Mon Dec 10 11:42:57.602 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
Mon Dec 10 11:42:57.624 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
|
||||
Mon Dec 10 11:42:57.624 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
Mon Dec 10 11:42:57.749 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
|
||||
Mon Dec 10 11:42:57.750 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
|
||||
Mon Dec 10 11:42:57.751 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
Mon Dec 10 11:42:57.896 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
|
||||
Mon Dec 10 11:42:57.897 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
|
||||
Mon Dec 10 11:42:57.897 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
Mon Dec 10 11:42:58.045 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
|
||||
Mon Dec 10 11:42:58.047 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
|
||||
Mon Dec 10 11:42:58.047 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
Mon Dec 10 11:42:58.193 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
|
||||
Mon Dec 10 11:42:58.195 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
|
||||
Mon Dec 10 11:42:58.195 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
Mon Dec 10 11:42:58.342 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
|
||||
Mon Dec 10 11:42:58.343 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
|
||||
Mon Dec 10 11:42:58.344 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
Mon Dec 10 11:42:58.491 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
|
||||
Mon Dec 10 11:42:58.493 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
|
||||
Mon Dec 10 11:42:58.494 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
Mon Dec 10 11:42:58.640 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
|
||||
Mon Dec 10 11:42:58.642 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
|
||||
Mon Dec 10 11:42:58.642 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
Mon Dec 10 11:42:58.805 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
|
||||
Mon Dec 10 11:42:58.806 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
|
||||
Mon Dec 10 11:42:58.806 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
Mon Dec 10 11:42:58.958 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
|
||||
Mon Dec 10 11:42:58.959 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
|
||||
Mon Dec 10 11:42:58.960 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
Mon Dec 10 11:42:59.155 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
|
||||
Mon Dec 10 11:42:59.157 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
|
||||
Mon Dec 10 11:42:59.159 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
Mon Dec 10 11:42:59.352 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
|
||||
|
||||
|
||||
|
||||
|
||||
|
57
tests/fixtures/pr/test_one_page_no_ht.log.expected
vendored
Normal file
57
tests/fixtures/pr/test_one_page_no_ht.log.expected
vendored
Normal file
|
@ -0,0 +1,57 @@
|
|||
ntation processAirPortStateChanges]: pppConnectionState 0
|
||||
Mon Dec 10 11:42:56.558 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
Mon Dec 10 11:42:56.705 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
|
||||
Mon Dec 10 11:42:56.706 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
|
||||
Mon Dec 10 11:42:56.706 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
Mon Dec 10 11:42:56.854 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
|
||||
Mon Dec 10 11:42:56.855 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
|
||||
Mon Dec 10 11:42:56.856 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
Mon Dec 10 11:42:57.002 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
|
||||
Mon Dec 10 11:42:57.003 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
|
||||
Mon Dec 10 11:42:57.003 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
Mon Dec 10 11:42:57.152 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
|
||||
Mon Dec 10 11:42:57.154 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
|
||||
Mon Dec 10 11:42:57.154 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
Mon Dec 10 11:42:57.302 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
|
||||
Mon Dec 10 11:42:57.304 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
|
||||
Mon Dec 10 11:42:57.304 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
Mon Dec 10 11:42:57.449 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
|
||||
Mon Dec 10 11:42:57.451 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
|
||||
Mon Dec 10 11:42:57.451 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
Mon Dec 10 11:42:57.600 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
|
||||
Mon Dec 10 11:42:57.601 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
|
||||
Mon Dec 10 11:42:57.602 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
Mon Dec 10 11:42:57.624 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
|
||||
Mon Dec 10 11:42:57.624 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
Mon Dec 10 11:42:57.749 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
|
||||
Mon Dec 10 11:42:57.750 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
|
||||
Mon Dec 10 11:42:57.751 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
Mon Dec 10 11:42:57.896 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
|
||||
Mon Dec 10 11:42:57.897 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
|
||||
Mon Dec 10 11:42:57.897 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
Mon Dec 10 11:42:58.045 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
|
||||
Mon Dec 10 11:42:58.047 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
|
||||
Mon Dec 10 11:42:58.047 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
Mon Dec 10 11:42:58.193 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
|
||||
Mon Dec 10 11:42:58.195 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
|
||||
Mon Dec 10 11:42:58.195 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
Mon Dec 10 11:42:58.342 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
|
||||
Mon Dec 10 11:42:58.343 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
|
||||
Mon Dec 10 11:42:58.344 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
Mon Dec 10 11:42:58.491 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
|
||||
Mon Dec 10 11:42:58.493 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
|
||||
Mon Dec 10 11:42:58.494 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
Mon Dec 10 11:42:58.640 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
|
||||
Mon Dec 10 11:42:58.642 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
|
||||
Mon Dec 10 11:42:58.642 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
Mon Dec 10 11:42:58.805 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
|
||||
Mon Dec 10 11:42:58.806 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
|
||||
Mon Dec 10 11:42:58.806 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
Mon Dec 10 11:42:58.958 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
|
||||
Mon Dec 10 11:42:58.959 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
|
||||
Mon Dec 10 11:42:58.960 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
Mon Dec 10 11:42:59.155 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
|
||||
Mon Dec 10 11:42:59.157 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
|
||||
Mon Dec 10 11:42:59.159 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
Mon Dec 10 11:42:59.352 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
|
||||
|
200
tests/fixtures/pr/test_page_length.log.expected
vendored
Normal file
200
tests/fixtures/pr/test_page_length.log.expected
vendored
Normal file
|
@ -0,0 +1,200 @@
|
|||
|
||||
|
||||
{last_modified_time} test.log Page 2
|
||||
|
||||
|
||||
91 Mon Dec 10 11:43:31.748 )} took 0.0025 seconds, returned 10 results
|
||||
92 Mon Dec 10 11:43:31.748 Scan: <airportd[160]> Cache-assisted scan request on channel 4 does not require a live scan
|
||||
93 Mon Dec 10 11:43:31.748 Scan: <airportd[160]> Cache-assisted scan request on channel 5 does not require a live scan
|
||||
94 Mon Dec 10 11:43:31.749 Scan: <airportd[160]> Cache-assisted scan request on channel 6 does not require a live scan
|
||||
95 Mon Dec 10 11:43:31.749 Scan: <airportd[160]> Cache-assisted scan request does not require a live scan
|
||||
96 Mon Dec 10 11:43:31.749 AutoJoin: <airportd[160]> Successful cache-assisted background scan request with channels {(
|
||||
97 Mon Dec 10 11:43:31.749 <CWChannel: 0x7fc3fcd0e7e0> [channelNumber=4(2GHz), channelWidth={20MHz}, active],
|
||||
98 Mon Dec 10 11:43:31.749 <CWChannel: 0x7fc3fcd18a40> [channelNumber=5(2GHz), channelWidth={20MHz}, active],
|
||||
99 Mon Dec 10 11:43:31.749 <CWChannel: 0x7fc3fcd0ae10> [channelNumber=6(2GHz), channelWidth={20MHz}, active]
|
||||
100 Mon Dec 10 11:43:31.749 )} took 0.0008 seconds, returned 7 results
|
||||
101 Mon Dec 10 11:43:31.749 Scan: <airportd[160]> Cache-assisted scan request on channel 7 does not require a live scan
|
||||
102 Mon Dec 10 11:43:31.749 Scan: <airportd[160]> Cache-assisted scan request on channel 8 does not require a live scan
|
||||
103 Mon Dec 10 11:43:31.749 Scan: <airportd[160]> Cache-assisted scan request on channel 9 does not require a live scan
|
||||
104 Mon Dec 10 11:43:31.749 Scan: <airportd[160]> Cache-assisted scan request does not require a live scan
|
||||
105 Mon Dec 10 11:43:31.749 AutoJoin: <airportd[160]> Successful cache-assisted background scan request with channels {(
|
||||
106 Mon Dec 10 11:43:31.749 <CWChannel: 0x7fc3fcd57a80> [channelNumber=7(2GHz), channelWidth={20MHz}, active],
|
||||
107 Mon Dec 10 11:43:31.749 <CWChannel: 0x7fc3fcd32290> [channelNumber=8(2GHz), channelWidth={20MHz}, active],
|
||||
108 Mon Dec 10 11:43:31.749 <CWChannel: 0x7fc3fcd77ab0> [channelNumber=9(2GHz), channelWidth={20MHz}, active]
|
||||
109 Mon Dec 10 11:43:31.749 )} took 0.0002 seconds, returned 1 results
|
||||
110 Mon Dec 10 11:43:31.749 Scan: <airportd[160]> Cache-assisted scan request on channel 10 does not require a live scan
|
||||
111 Mon Dec 10 11:43:31.749 Scan: <airportd[160]> Cache-assisted scan request on channel 11 does not require a live scan
|
||||
112 Mon Dec 10 11:43:31.750 Scan: <airportd[160]> Cache-assisted scan request on channel 12 does not require a live scan
|
||||
113 Mon Dec 10 11:43:31.750 Scan: <airportd[160]> Cache-assisted scan request does not require a live scan
|
||||
114 Mon Dec 10 11:43:31.750 AutoJoin: <airportd[160]> Successful cache-assisted background scan request with channels {(
|
||||
115 Mon Dec 10 11:43:31.750 <CWChannel: 0x7fc3fcd15170> [channelNumber=10(2GHz), channelWidth={20MHz}, active],
|
||||
116 Mon Dec 10 11:43:31.750 <CWChannel: 0x7fc3fcd8dfe0> [channelNumber=11(2GHz), channelWidth={20MHz}, active],
|
||||
117 Mon Dec 10 11:43:31.750 <CWChannel: 0x7fc3fcd67f40> [channelNumber=12(2GHz), channelWidth={20MHz}, active]
|
||||
118 Mon Dec 10 11:43:31.750 )} took 0.0004 seconds, returned 4 results
|
||||
119 Mon Dec 10 11:43:31.750 Scan: <airportd[160]> Cache-assisted scan request on channel 13 does not require a live scan
|
||||
120 Mon Dec 10 11:43:31.750 Scan: <airportd[160]> Cache-assisted scan request on channel 36 does not require a live scan
|
||||
121 Mon Dec 10 11:43:31.750 Scan: <airportd[160]> Cache-assisted scan request on channel 40 does not require a live scan
|
||||
122 Mon Dec 10 11:43:31.751 Scan: <airportd[160]> Cache-assisted scan request does not require a live scan
|
||||
123 Mon Dec 10 11:43:31.751 AutoJoin: <airportd[160]> Successful cache-assisted background scan request with channels {(
|
||||
124 Mon Dec 10 11:43:31.751 <CWChannel: 0x7fc3fcd01390> [channelNumber=13(2GHz), channelWidth={20MHz}, active],
|
||||
125 Mon Dec 10 11:43:31.751 <CWChannel: 0x7fc3fcd14e50> [channelNumber=36(5GHz), channelWidth={40MHz(+1)}, active],
|
||||
126 Mon Dec 10 11:43:31.751 <CWChannel: 0x7fc3fcd11a60> [channelNumber=40(5GHz), channelWidth={40MHz(-1)}, active]
|
||||
127 Mon Dec 10 11:43:31.751 )} took 0.0009 seconds, returned 9 results
|
||||
128 Mon Dec 10 11:43:31.751 Scan: <airportd[160]> Cache-assisted scan request on channel 44 does not require a live scan
|
||||
129 Mon Dec 10 11:43:31.751 Scan: <airportd[160]> Cache-assisted scan request on channel 48 does not require a live scan
|
||||
130 Mon Dec 10 11:43:31.751 Scan: <airportd[160]> Cache-assisted scan request on channel 149 does not require a live scan
|
||||
131 Mon Dec 10 11:43:31.752 Scan: <airportd[160]> Cache-assisted scan request does not require a live scan
|
||||
132 Mon Dec 10 11:43:31.752 AutoJoin: <airportd[160]> Successful cache-assisted background scan request with channels {(
|
||||
133 Mon Dec 10 11:43:31.752 <CWChannel: 0x7fc3fcd0d1b0> [channelNumber=44(5GHz), channelWidth={40MHz(+1)}, active],
|
||||
134 Mon Dec 10 11:43:31.752 <CWChannel: 0x7fc3fcd1e420> [channelNumber=48(5GHz), channelWidth={40MHz(-1)}, active],
|
||||
135 Mon Dec 10 11:43:31.752 <CWChannel: 0x7fc3fcd1bdd0> [channelNumber=149(5GHz), channelWidth={20MHz}, active]
|
||||
136 Mon Dec 10 11:43:31.752 )} took 0.0010 seconds, returned 9 results
|
||||
137 Mon Dec 10 11:43:31.752 Scan: <airportd[160]> Cache-assisted scan request on channel 153 does not require a live scan
|
||||
138 Mon Dec 10 11:43:31.752 Scan: <airportd[160]> Cache-assisted scan request on channel 157 does not require a live scan
|
||||
139 Mon Dec 10 11:43:31.752 Scan: <airportd[160]> Cache-assisted scan request on channel 161 does not require a live scan
|
||||
140 Mon Dec 10 11:43:31.752 Scan: <airportd[160]> Cache-assisted scan request does not require a live scan
|
||||
141 Mon Dec 10 11:43:31.753 AutoJoin: <airportd[160]> Successful cache-assisted background scan request with channels {(
|
||||
142 Mon Dec 10 11:43:31.753 <CWChannel: 0x7fc3fcd572d0> [channelNumber=153(5GHz), channelWidth={40MHz(-1)}, active],
|
||||
143 Mon Dec 10 11:43:31.753 <CWChannel: 0x7fc3fcd16030> [channelNumber=157(5GHz), channelWidth={20MHz}, active],
|
||||
144 Mon Dec 10 11:43:31.753 <CWChannel: 0x7fc3fcd74ee0> [channelNumber=161(5GHz), channelWidth={40MHz(-1)}, active]
|
||||
145 Mon Dec 10 11:43:31.753 )} took 0.0007 seconds, returned 9 results
|
||||
146 Mon Dec 10 11:43:31.753 Scan: <airportd[160]> Cache-assisted scan request on channel 165 does not require a live scan
|
||||
147 Mon Dec 10 11:43:31.753 Scan: <airportd[160]> Cache-assisted scan request on channel 52 does not require a live scan
|
||||
148 Mon Dec 10 11:43:31.753 Scan: <airportd[160]> Cache-assisted scan request on channel 56 does not require a live scan
|
||||
149 Mon Dec 10 11:43:31.753 Scan: <airportd[160]> Cache-assisted scan request does not require a live scan
|
||||
150 Mon Dec 10 11:43:31.753 AutoJoin: <airportd[160]> Successful cache-assisted background scan request with channels {(
|
||||
151 Mon Dec 10 11:43:31.753 <CWChannel: 0x7fc3fcd48070> [channelNumber=165(5GHz), channelWidth={20MHz}, active],
|
||||
152 Mon Dec 10 11:43:31.753 <CWChannel: 0x7fc3fcdb97b0> [channelNumber=52(5GHz), channelWidth={40MHz(+1)}, DFS],
|
||||
153 Mon Dec 10 11:43:31.753 <CWChannel: 0x7fc3fcd097e0> [channelNumber=56(5GHz), channelWidth={40MHz(-1)}, DFS]
|
||||
154 Mon Dec 10 11:43:31.753 )} took 0.0005 seconds, returned 6 results
|
||||
155 Mon Dec 10 11:43:31.753 Scan: <airportd[160]> Cache-assisted scan request on channel 60 does not require a live scan
|
||||
156 Mon Dec 10 11:43:31.753 Scan: <airportd[160]> Cache-assisted scan request on channel 64 does not require a live scan
|
||||
157 Mon Dec 10 11:43:31.753 Scan: <airportd[160]> Cache-assisted scan request does not require a live scan
|
||||
158 Mon Dec 10 11:43:31.753 AutoJoin: <airportd[160]> Successful cache-assisted background scan request with channels {(
|
||||
159 Mon Dec 10 11:43:31.754 <CWChannel: 0x7fc3fcd10860> [channelNumber=60(5GHz), channelWidth={40MHz(+1)}, DFS],
|
||||
160 Mon Dec 10 11:43:31.754 <CWChannel: 0x7fc3fcd0e430> [channelNumber=64(5GHz), channelWidth={40MHz(-1)}, DFS]
|
||||
161 Mon Dec 10 11:43:31.754 )} took 0.0003 seconds, returned 4 results
|
||||
162 Mon Dec 10 11:43:42.382 Driver Event: <airportd[160]> _bsd_80211_event_callback: LINK_QUALITY (en0)
|
||||
163 Mon Dec 10 11:43:42.382 Info: <airportd[160]> _bsd_80211_event_callback: <en0> link quality: RSSI=-57 dBm TxRate=270 Mbps
|
||||
164 Mon Dec 10 11:43:42.383 Info: <Wi-Fi Menu Extra[335]> link quality changed
|
||||
165 Mon Dec 10 11:49:12.347 Driver Event: <airportd[160]> _bsd_80211_event_callback: SCAN_CACHE_UPDATED (en0)
|
||||
166 Mon Dec 10 11:49:12.350 Info: <airportd[160]> QUERY SCAN CACHE request received from pid 92 (locationd)
|
||||
167 Mon Dec 10 11:52:32.194 Info: <airportd[160]> SCAN request received from pid 92 (locationd) with priority 2
|
||||
168 Mon Dec 10 11:52:32.448 Driver Event: <airportd[160]> _bsd_80211_event_callback: SCAN_CACHE_UPDATED (en0)
|
||||
169 Mon Dec 10 11:52:32.450 Info: <airportd[160]> QUERY SCAN CACHE request received from pid 92 (locationd)
|
||||
170 Mon Dec 10 11:52:32.451 AutoJoin: <airportd[160]> Successful cache-assisted scan request for locationd with channels {(
|
||||
171 Mon Dec 10 11:52:32.451 <CWChannel: 0x7fc3fcd11420> [channelNumber=1(2GHz), channelWidth={20MHz}, active],
|
||||
172 Mon Dec 10 11:52:32.451 <CWChannel: 0x7fc3fcd11560> [channelNumber=2(2GHz), channelWidth={20MHz}, active],
|
||||
173 Mon Dec 10 11:52:32.451 <CWChannel: 0x7fc3fcdab8c0> [channelNumber=3(2GHz), channelWidth={20MHz}, active],
|
||||
174 Mon Dec 10 11:52:32.451 <CWChannel: 0x7fc3fcd15400> [channelNumber=4(2GHz), channelWidth={20MHz}, active],
|
||||
175 Mon Dec 10 11:52:32.451 <CWChannel: 0x7fc3fcd21bc0> [channelNumber=5(2GHz), channelWidth={20MHz}, active],
|
||||
176 Mon Dec 10 11:52:32.451 <CWChannel: 0x7fc3fcd16540> [channelNumber=6(2GHz), channelWidth={20MHz}, active]
|
||||
177 Mon Dec 10 11:52:32.451 )} took 0.2566 seconds, returned 10 results
|
||||
178 Mon Dec 10 11:52:32.451 Info: <Wi-Fi Menu Extra[335]> scan cache updated
|
||||
179 Mon Dec 10 11:52:32.712 Driver Event: <airportd[160]> _bsd_80211_event_callback: SCAN_CACHE_UPDATED (en0)
|
||||
180 Mon Dec 10 11:52:32.715 Info: <airportd[160]> QUERY SCAN CACHE request received from pid 92 (locationd)
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
{last_modified_time} test.log Page 3
|
||||
|
||||
|
||||
181 Mon Dec 10 11:52:32.715 AutoJoin: <airportd[160]> Successful cache-assisted scan request for locationd with channels {(
|
||||
182 Mon Dec 10 11:52:32.715 <CWChannel: 0x7fc3fcd12470> [channelNumber=7(2GHz), channelWidth={20MHz}, active],
|
||||
183 Mon Dec 10 11:52:32.715 <CWChannel: 0x7fc3fcd15590> [channelNumber=8(2GHz), channelWidth={20MHz}, active],
|
||||
184 Mon Dec 10 11:52:32.715 <CWChannel: 0x7fc3fcd091c0> [channelNumber=9(2GHz), channelWidth={20MHz}, active],
|
||||
185 Mon Dec 10 11:52:32.715 <CWChannel: 0x7fc3fcd36ac0> [channelNumber=10(2GHz), channelWidth={20MHz}, active],
|
||||
186 Mon Dec 10 11:52:32.715 <CWChannel: 0x7fc3fcd3b1b0> [channelNumber=11(2GHz), channelWidth={20MHz}, active],
|
||||
187 Mon Dec 10 11:52:32.715 <CWChannel: 0x7fc3fcd37970> [channelNumber=12(2GHz), channelWidth={20MHz}, active]
|
||||
188 Mon Dec 10 11:52:32.715 )} took 0.2636 seconds, returned 10 results
|
||||
189 Mon Dec 10 11:52:32.994 Driver Event: <airportd[160]> _bsd_80211_event_callback: SCAN_CACHE_UPDATED (en0)
|
||||
190 Mon Dec 10 11:52:32.997 Info: <airportd[160]> QUERY SCAN CACHE request received from pid 92 (locationd)
|
||||
191 Mon Dec 10 11:52:32.998 AutoJoin: <airportd[160]> Successful cache-assisted scan request for locationd with channels {(
|
||||
192 Mon Dec 10 11:52:32.998 <CWChannel: 0x7fc3fcd0a4d0> [channelNumber=13(2GHz), channelWidth={20MHz}, active],
|
||||
193 Mon Dec 10 11:52:32.998 <CWChannel: 0x7fc3fcd37320> [channelNumber=36(5GHz), channelWidth={40MHz(+1)}, active],
|
||||
194 Mon Dec 10 11:52:32.998 <CWChannel: 0x7fc3fcd0fb50> [channelNumber=40(5GHz), channelWidth={40MHz(-1)}, active],
|
||||
195 Mon Dec 10 11:52:32.998 <CWChannel: 0x7fc3fcd17760> [channelNumber=44(5GHz), channelWidth={40MHz(+1)}, active],
|
||||
196 Mon Dec 10 11:52:32.998 <CWChannel: 0x7fc3fcd48130> [channelNumber=48(5GHz), channelWidth={40MHz(-1)}, active],
|
||||
197 Mon Dec 10 11:52:32.998 <CWChannel: 0x7fc3fcd147d0> [channelNumber=149(5GHz), channelWidth={20MHz}, active]
|
||||
198 Mon Dec 10 11:52:32.998 )} took 0.2822 seconds, returned 14 results
|
||||
199 Mon Dec 10 11:52:33.405 Driver Event: <airportd[160]> _bsd_80211_event_callback: SCAN_CACHE_UPDATED (en0)
|
||||
200 Mon Dec 10 11:52:33.408 Info: <airportd[160]> QUERY SCAN CACHE request received from pid 92 (locationd)
|
||||
201 Mon Dec 10 11:52:33.409 AutoJoin: <airportd[160]> Successful cache-assisted scan request for locationd with channels {(
|
||||
202 Mon Dec 10 11:52:33.409 <CWChannel: 0x7fc3fcd1c0c0> [channelNumber=153(5GHz), channelWidth={40MHz(-1)}, active],
|
||||
203 Mon Dec 10 11:52:33.409 <CWChannel: 0x7fc3fcd02590> [channelNumber=157(5GHz), channelWidth={20MHz}, active],
|
||||
204 Mon Dec 10 11:52:33.409 <CWChannel: 0x7fc3fcd01390> [channelNumber=161(5GHz), channelWidth={40MHz(-1)}, active],
|
||||
205 Mon Dec 10 11:52:33.409 <CWChannel: 0x7fc3fcd31d20> [channelNumber=165(5GHz), channelWidth={20MHz}, active],
|
||||
206 Mon Dec 10 11:52:33.409 <CWChannel: 0x7fc3fcd27100> [channelNumber=52(5GHz), channelWidth={40MHz(+1)}, DFS],
|
||||
207 Mon Dec 10 11:52:33.409 <CWChannel: 0x7fc3fcd17e60> [channelNumber=56(5GHz), channelWidth={40MHz(-1)}, DFS]
|
||||
208 Mon Dec 10 11:52:33.409 )} took 0.4099 seconds, returned 11 results
|
||||
209 Mon Dec 10 11:52:33.669 Driver Event: <airportd[160]> _bsd_80211_event_callback: SCAN_CACHE_UPDATED (en0)
|
||||
210 Mon Dec 10 11:52:33.672 Info: <airportd[160]> QUERY SCAN CACHE request received from pid 92 (locationd)
|
||||
211 Mon Dec 10 11:52:33.672 AutoJoin: <airportd[160]> Successful cache-assisted scan request for locationd with channels {(
|
||||
212 Mon Dec 10 11:52:33.672 <CWChannel: 0x7fc3fcd02d10> [channelNumber=60(5GHz), channelWidth={40MHz(+1)}, DFS],
|
||||
213 Mon Dec 10 11:52:33.672 <CWChannel: 0x7fc3fcd48ab0> [channelNumber=64(5GHz), channelWidth={40MHz(-1)}, DFS]
|
||||
214 Mon Dec 10 11:52:33.672 )} took 0.2625 seconds, returned 8 results
|
||||
215 Mon Dec 10 11:52:33.673 Info: <Wi-Fi Menu Extra[335]> scan cache updated
|
||||
216 Mon Dec 10 11:52:33.693 Info: <airportd[160]> SCAN request received from pid 92 (locationd) with priority 2
|
||||
217 Mon Dec 10 11:52:33.693 Scan: <airportd[160]> locationd requested a live scan less than 10 seconds after previous request (1.4991s) returning cached scan results
|
||||
218 Mon Dec 10 11:52:33.728 Info: <airportd[160]> SCAN request received from pid 92 (locationd) with priority 2
|
||||
219 Mon Dec 10 11:52:33.728 Scan: <airportd[160]> locationd requested a live scan less than 10 seconds after previous request (1.5339s) returning cached scan results
|
||||
220 Mon Dec 10 11:55:47.609 Driver Discovery: <airportd[160]> _PMConnectionHandler: caps = CPU Net Disk
|
||||
221 Mon Dec 10 11:55:47.609 Driver Discovery: <airportd[160]> _PMConnectionHandler: Being put into maintenance wake mode while fully awake.
|
||||
222 Mon Dec 10 11:55:47.610 Info: <airportd[160]> psCallback: powerSource = AC Power
|
||||
223 Mon Dec 10 11:55:47.610 Info: <airportd[160]> psCallback: set powersave disabled on en0
|
||||
224 Mon Dec 10 11:55:47.637 Info: <airportd[160]> RELINQUISH BT PAGING LOCK request received from pid 106 (bluetoothd)
|
||||
225 Mon Dec 10 11:55:47.637 Info: <airportd[160]> RELINQUISH BT PAGING LOCK request received from pid 106 (bluetoothd)
|
||||
226 Mon Dec 10 11:55:47.638 BTC: <airportd[160]> BT PAGING state already set to 0
|
||||
227 Mon Dec 10 11:55:47.638 BTC: <airportd[160]> BT PAGING state already set to 0
|
||||
228 Mon Dec 10 11:55:47.638 Info: <airportd[160]> BT PAGING LOCK RELINQUISHED after 0.0 seconds
|
||||
229 Mon Dec 10 11:55:47.638 Info: <airportd[160]> BT PAGING LOCK RELINQUISHED after 0.0 seconds
|
||||
230 Mon Dec 10 11:55:47.638 Info: <airportd[160]> <en0> BT PAGING LOCK RELINQUISHED, re-enabling deferred WiFi requests
|
||||
231 Mon Dec 10 11:55:47.638 Info: <airportd[160]> <en0> BT PAGING LOCK RELINQUISHED, re-enabling deferred WiFi requests
|
||||
232 Mon Dec 10 11:55:48.093 IPC: <airportd[160]> ADDED XPC CLIENT CONNECTION [loginwindow (pid=101, euid=1651299376, egid=604256670)]
|
||||
233 Mon Dec 10 11:55:48.093 Info: <airportd[160]> START MONITORING EVENT request received from pid 101 (loginwindow)
|
||||
234 Mon Dec 10 11:55:48.093 Info: <airportd[160]> START MONITORING EVENT request received from pid 101 (loginwindow)
|
||||
235 Mon Dec 10 11:55:48.094 Info: <airportd[160]> START MONITORING EVENT request received from pid 101 (loginwindow)
|
||||
236 Mon Dec 10 11:55:48.094 Info: <airportd[160]> START MONITORING EVENT request received from pid 101 (loginwindow)
|
||||
237 Mon Dec 10 11:55:48.094 Info: <airportd[160]> START MONITORING EVENT request received from pid 101 (loginwindow)
|
||||
238 Mon Dec 10 11:55:48.094 Info: <airportd[160]> START MONITORING EVENT request received from pid 101 (loginwindow)
|
||||
239 Mon Dec 10 11:55:48.094 Info: <airportd[160]> START MONITORING EVENT request received from pid 101 (loginwindow)
|
||||
240 Mon Dec 10 11:55:48.104 Info: <airportd[160]> STOP MONITORING EVENT request received from pid 101 (loginwindow)
|
||||
241 Mon Dec 10 11:55:48.104 Info: <airportd[160]> STOP MONITORING EVENT request received from pid 101 (loginwindow)
|
||||
242 Mon Dec 10 11:55:48.104 Info: <airportd[160]> STOP MONITORING EVENT request received from pid 101 (loginwindow)
|
||||
243 Mon Dec 10 11:55:48.104 Info: <airportd[160]> STOP MONITORING EVENT request received from pid 101 (loginwindow)
|
||||
244 Mon Dec 10 11:55:48.104 Info: <airportd[160]> STOP MONITORING EVENT request received from pid 101 (loginwindow)
|
||||
245 Mon Dec 10 11:55:48.104 Info: <airportd[160]> STOP MONITORING EVENT request received from pid 101 (loginwindow)
|
||||
246 Mon Dec 10 11:55:48.105 Info: <airportd[160]> STOP MONITORING EVENT request received from pid 101 (loginwindow)
|
||||
247 Mon Dec 10 11:56:07.629 Driver Discovery: <airportd[160]> _PMConnectionHandler: caps =
|
||||
248 Mon Dec 10 11:56:07.629 AutoJoin: <airportd[160]> BEST CONNECTED SCAN CANCELLED on interface en0
|
||||
249 Mon Dec 10 11:56:07.629 AutoJoin: <airportd[160]> BACKGROUND SCAN CANCELLED on interface en0
|
||||
250 Mon Dec 10 11:56:07.629 AutoJoin: <airportd[160]> Auto-join retry cancelled on interface en0
|
||||
251 Mon Dec 10 11:56:07.629 Offload: <airportd[160]> _tcpKeepAliveActive: TCP keep-alive is active.
|
||||
252 Mon Dec 10 11:56:07.637 P2P: <airportd[160]> _changeInterfaceFlags: Marking p2p0 down
|
||||
253 Mon Dec 10 11:56:07.637 Info: <airportd[160]> SleepAcknowledgementCheckForHostAP: Checking sleep readiness for HostAP
|
||||
254 Mon Dec 10 11:56:07.637 <airportd[160]> SleepAcknowledgementCheck: Checking sleep readiness
|
||||
255 Mon Dec 10 11:56:07.637 <airportd[160]> SleepAcknowledgementCheck: <p2p0> Delaying sleep acknowledgement because of VifUp
|
||||
256 Mon Dec 10 11:56:07.638 <airportd[160]> _interfaceFlagsChanged: KEV_DL_SIFFLAGS received for p2p0 [flags=0xffff8802 (down)].
|
||||
257 Mon Dec 10 11:56:07.638 <airportd[160]> _interfaceFlagsChanged: Flags changed for p2p0 (0xffff8843 -> 0xffff8802) (down).
|
||||
258 Mon Dec 10 11:56:07.638 P2P: <airportd[160]> _deviceInterfaceMarkedDown: p2p0 marked down
|
||||
259 Mon Dec 10 11:56:07.638 P2P: <airportd[160]> _removeTimeoutForActionAndParam: Attempting to remove 'Stop GO' action (param = 0x0)
|
||||
260 Mon Dec 10 11:56:07.638 P2P: <airportd[160]> _removeTimeoutForActionAndParam: Attempting to remove 'Scan' action (param = 0x0)
|
||||
261 Mon Dec 10 11:56:07.638 P2P: <airportd[160]> _p2pSupervisorEventRunLoopCallback: Mark down complete for p2p0
|
||||
262 Mon Dec 10 11:56:07.638 <airportd[160]> SleepAcknowledgementCheck: Checking sleep readiness
|
||||
263 Mon Dec 10 11:56:07.638 WoW: <airportd[160]> SleepAcknowledgementCheck: <en0> Checking if auto-join is in progress before sleep acknowledgement
|
||||
264 Mon Dec 10 11:56:07.638 WoW: <airportd[160]> SleepAcknowledgementDelayForAutoJoinAttempt_block_invoke: AUTO-JOIN attempt complete for en0, re-checking sleep readiness
|
||||
265 Mon Dec 10 11:56:07.638 <airportd[160]> SleepAcknowledgementCheck: Checking sleep readiness
|
||||
266 Mon Dec 10 11:56:07.639 WoW: <airportd[160]> _wowEnabled: WoW is active on en0
|
||||
267 Mon Dec 10 11:56:07.639 WoW: <airportd[160]> wowExchangeRequiredForNode: WoW exchange not required for en0
|
||||
268 Mon Dec 10 11:56:07.639 <airportd[160]> _acknowledgeSleepEvent: Acknowledging sleep event
|
||||
269 Mon Dec 10 11:56:07.639 Info: <airportd[160]> PRIORITY LOCK ADDED [client=airportd, type=4, interface=(null), priority=7]
|
||||
270 Mon Dec 10 11:56:07.640 AutoJoin: <airportd[160]> Auto-join retry cancelled on interface en0
|
||||
|
||||
|
||||
|
||||
|
||||
|
12
tests/fixtures/pr/test_page_length1.log.expected
vendored
Normal file
12
tests/fixtures/pr/test_page_length1.log.expected
vendored
Normal file
|
@ -0,0 +1,12 @@
|
|||
6 Mon Dec 10 11:42:56.854 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
|
||||
7 Mon Dec 10 11:42:56.855 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
|
||||
8 Mon Dec 10 11:42:56.856 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
9 Mon Dec 10 11:42:57.002 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
|
||||
10 Mon Dec 10 11:42:57.003 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
|
||||
|
||||
11 Mon Dec 10 11:42:57.003 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
12 Mon Dec 10 11:42:57.152 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
|
||||
13 Mon Dec 10 11:42:57.154 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
|
||||
14 Mon Dec 10 11:42:57.154 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
15 Mon Dec 10 11:42:57.302 Info: <Wi-Fi Menu Extra[335]> 802.1X changed
|
||||
|
264
tests/fixtures/pr/test_page_range_1.log.expected
vendored
Normal file
264
tests/fixtures/pr/test_page_range_1.log.expected
vendored
Normal file
|
@ -0,0 +1,264 @@
|
|||
|
||||
|
||||
{last_modified_time} test.log Page 15
|
||||
|
||||
|
||||
Mon Dec 10 12:05:48.183 <CWChannel: 0x7fc3ff50d600> [channelNumber=12(2GHz), channelWidth={20MHz}, active]
|
||||
Mon Dec 10 12:05:48.183 )} took 0.0007 seconds, returned 4 results
|
||||
Mon Dec 10 12:05:48.183 Scan: <airportd[160]> Cache-assisted scan request on channel 13 does not require a live scan
|
||||
Mon Dec 10 12:05:48.183 Scan: <airportd[160]> Cache-assisted scan request on channel 36 does not require a live scan
|
||||
Mon Dec 10 12:05:48.184 Scan: <airportd[160]> Cache-assisted scan request on channel 40 does not require a live scan
|
||||
Mon Dec 10 12:05:48.184 Scan: <airportd[160]> Cache-assisted scan request does not require a live scan
|
||||
Mon Dec 10 12:05:48.184 AutoJoin: <airportd[160]> Successful cache-assisted background scan request with channels {(
|
||||
Mon Dec 10 12:05:48.184 <CWChannel: 0x7fc3ff55aa40> [channelNumber=13(2GHz), channelWidth={20MHz}, active],
|
||||
Mon Dec 10 12:05:48.184 <CWChannel: 0x7fc3ff504b10> [channelNumber=36(5GHz), channelWidth={40MHz(+1)}, active],
|
||||
Mon Dec 10 12:05:48.184 <CWChannel: 0x7fc3ff55b310> [channelNumber=40(5GHz), channelWidth={40MHz(-1)}, active]
|
||||
Mon Dec 10 12:05:48.184 )} took 0.0007 seconds, returned 5 results
|
||||
Mon Dec 10 12:05:48.184 Scan: <airportd[160]> Cache-assisted scan request on channel 44 does not require a live scan
|
||||
Mon Dec 10 12:05:48.184 Scan: <airportd[160]> Cache-assisted scan request on channel 48 does not require a live scan
|
||||
Mon Dec 10 12:05:48.184 Scan: <airportd[160]> Cache-assisted scan request on channel 149 does not require a live scan
|
||||
Mon Dec 10 12:05:48.184 Scan: <airportd[160]> Cache-assisted scan request does not require a live scan
|
||||
Mon Dec 10 12:05:48.185 AutoJoin: <airportd[160]> Successful cache-assisted background scan request with channels {(
|
||||
Mon Dec 10 12:05:48.185 <CWChannel: 0x7fc3ff50cca0> [channelNumber=44(5GHz), channelWidth={40MHz(+1)}, active],
|
||||
Mon Dec 10 12:05:48.185 <CWChannel: 0x7fc3ff55ac00> [channelNumber=48(5GHz), channelWidth={40MHz(-1)}, active],
|
||||
Mon Dec 10 12:05:48.185 <CWChannel: 0x7fc3ff532a50> [channelNumber=149(5GHz), channelWidth={20MHz}, active]
|
||||
Mon Dec 10 12:05:48.185 )} took 0.0006 seconds, returned 4 results
|
||||
Mon Dec 10 12:05:48.185 Scan: <airportd[160]> Cache-assisted scan request on channel 153 does not require a live scan
|
||||
Mon Dec 10 12:05:48.185 Scan: <airportd[160]> Cache-assisted scan request on channel 157 does not require a live scan
|
||||
Mon Dec 10 12:05:48.185 Scan: <airportd[160]> Cache-assisted scan request on channel 161 does not require a live scan
|
||||
Mon Dec 10 12:05:48.186 Scan: <airportd[160]> Cache-assisted scan request does not require a live scan
|
||||
Mon Dec 10 12:05:48.186 AutoJoin: <airportd[160]> Successful cache-assisted background scan request with channels {(
|
||||
Mon Dec 10 12:05:48.186 <CWChannel: 0x7fc3ff5571c0> [channelNumber=153(5GHz), channelWidth={40MHz(-1)}, active],
|
||||
Mon Dec 10 12:05:48.186 <CWChannel: 0x7fc3ff5503a0> [channelNumber=157(5GHz), channelWidth={20MHz}, active],
|
||||
Mon Dec 10 12:05:48.186 <CWChannel: 0x7fc3ff55fe50> [channelNumber=161(5GHz), channelWidth={40MHz(-1)}, active]
|
||||
Mon Dec 10 12:05:48.186 )} took 0.0010 seconds, returned 7 results
|
||||
Mon Dec 10 12:05:48.186 Scan: <airportd[160]> Cache-assisted scan request on channel 165 does not require a live scan
|
||||
Mon Dec 10 12:05:48.186 Scan: <airportd[160]> Cache-assisted scan request on channel 52 does not require a live scan
|
||||
Mon Dec 10 12:05:48.186 Scan: <airportd[160]> Cache-assisted scan request on channel 56 does not require a live scan
|
||||
Mon Dec 10 12:05:48.186 Scan: <airportd[160]> Cache-assisted scan request does not require a live scan
|
||||
Mon Dec 10 12:05:48.187 AutoJoin: <airportd[160]> Successful cache-assisted background scan request with channels {(
|
||||
Mon Dec 10 12:05:48.187 <CWChannel: 0x7fc3ff513800> [channelNumber=165(5GHz), channelWidth={20MHz}, active],
|
||||
Mon Dec 10 12:05:48.187 <CWChannel: 0x7fc3ff524d50> [channelNumber=52(5GHz), channelWidth={40MHz(+1)}, DFS],
|
||||
Mon Dec 10 12:05:48.187 <CWChannel: 0x7fc3ff550d80> [channelNumber=56(5GHz), channelWidth={40MHz(-1)}, DFS]
|
||||
Mon Dec 10 12:05:48.187 )} took 0.0008 seconds, returned 5 results
|
||||
Mon Dec 10 12:05:48.187 Scan: <airportd[160]> Cache-assisted scan request on channel 60 does not require a live scan
|
||||
Mon Dec 10 12:05:48.187 Scan: <airportd[160]> Cache-assisted scan request on channel 64 does not require a live scan
|
||||
Mon Dec 10 12:05:48.188 Scan: <airportd[160]> Cache-assisted scan request does not require a live scan
|
||||
Mon Dec 10 12:05:48.188 AutoJoin: <airportd[160]> Successful cache-assisted background scan request with channels {(
|
||||
Mon Dec 10 12:05:48.188 <CWChannel: 0x7fc3ff54cf50> [channelNumber=60(5GHz), channelWidth={40MHz(+1)}, DFS],
|
||||
Mon Dec 10 12:05:48.188 <CWChannel: 0x7fc3ff538220> [channelNumber=64(5GHz), channelWidth={40MHz(-1)}, DFS]
|
||||
Mon Dec 10 12:05:48.188 )} took 0.0013 seconds, returned 8 results
|
||||
Mon Dec 10 12:05:50.375 Driver Event: <airportd[160]> _bsd_80211_event_callback: LINK_QUALITY (en0)
|
||||
Mon Dec 10 12:05:50.375 Info: <airportd[160]> _bsd_80211_event_callback: <en0> link quality: RSSI=-57 dBm TxRate=216 Mbps
|
||||
Mon Dec 10 12:05:50.376 Info: <Wi-Fi Menu Extra[335]> link quality changed
|
||||
Mon Dec 10 12:05:55.378 Driver Event: <airportd[160]> _bsd_80211_event_callback: LINK_QUALITY (en0)
|
||||
Mon Dec 10 12:05:55.378 Info: <airportd[160]> _bsd_80211_event_callback: <en0> link quality: RSSI=-56 dBm TxRate=243 Mbps
|
||||
Mon Dec 10 12:05:55.379 Info: <Wi-Fi Menu Extra[335]> link quality changed
|
||||
Mon Dec 10 12:06:28.759 Driver Event: <airportd[160]> _bsd_80211_event_callback: AWDL_SYNC_STATE_CHANGED (awdl0)
|
||||
Mon Dec 10 12:06:28.763 Info: <airportd[160]> AWDL started
|
||||
Mon Dec 10 12:06:28.763 Driver Event: <airportd[160]> _bsd_80211_event_callback: CHANNEL_SWITCH (en0)
|
||||
Mon Dec 10 12:06:28.765 Roam: <airportd[160]> ROAMING PROFILES updated to SINGLE-BAND, SINGLE-AP for 2.4GHz on en0
|
||||
Mon Dec 10 12:06:28.765 Roam: <airportd[160]> ROAMING PROFILES updated to SINGLE-BAND, SINGLE-AP for 5GHz on en0
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
{last_modified_time} test.log Page 16
|
||||
|
||||
|
||||
Mon Dec 10 12:06:28.770 SC: <airportd[160]> airportdProcessSystemConfigurationEvent: Processing 'State:/Network/Interface/en0/AirPort/ProfileID'
|
||||
Mon Dec 10 12:06:28.770 SC: <airportd[160]> airportdProcessSystemConfigurationEvent: Processing 'State:/Network/Interface/en0/AirPort/WEP40'
|
||||
Mon Dec 10 12:06:28.770 SC: <airportd[160]> airportdProcessSystemConfigurationEvent: Processing 'State:/Network/Interface/en0/AirPort/SSID_STR'
|
||||
Mon Dec 10 12:06:28.770 SC: <airportd[160]> airportdProcessSystemConfigurationEvent: Processing 'State:/Network/Interface/en0/AirPort/AirPlay'
|
||||
Mon Dec 10 12:06:28.770 SC: <airportd[160]> airportdProcessSystemConfigurationEvent: Processing 'State:/Network/Interface/en0/AirPort/AutoJoinTimestamp'
|
||||
Mon Dec 10 12:06:28.770 SC: <airportd[160]> airportdProcessSystemConfigurationEvent: Processing 'State:/Network/Interface/en0/AirPort/BSSID'
|
||||
Mon Dec 10 12:06:28.770 SC: <airportd[160]> airportdProcessSystemConfigurationEvent: Processing 'State:/Network/Interface/en0/AirPort/SSID'
|
||||
Mon Dec 10 12:06:28.770 SC: <airportd[160]> airportdProcessSystemConfigurationEvent: Processing 'State:/Network/Interface/en0/AirPort/CHANNEL'
|
||||
Mon Dec 10 12:06:28.770 SC: <airportd[160]> airportdProcessSystemConfigurationEvent: Processing 'State:/Network/Interface/en0/AirPort/Busy'
|
||||
Mon Dec 10 12:06:28.770 SC: <airportd[160]> airportdProcessSystemConfigurationEvent: Processing 'State:/Network/Interface/en0/AirPort/Power Status'
|
||||
Mon Dec 10 12:06:28.770 SC: <airportd[160]> airportdProcessSystemConfigurationEvent: Processing 'State:/Network/Interface/en0/AirPort/WEPOPENSYSTEM'
|
||||
Mon Dec 10 12:06:28.770 SC: <airportd[160]> airportdProcessSystemConfigurationEvent: Processing 'State:/Network/Interface/en0/AirPort/CachedScanRecord'
|
||||
Mon Dec 10 12:06:28.770 SC: <airportd[160]> airportdProcessSystemConfigurationEvent: Processing 'State:/Network/Interface/en0/AirPort/UserMode8021X'
|
||||
Mon Dec 10 12:06:28.771 SC: <airportd[160]> airportdProcessSystemConfigurationEvent: Processing 'State:/Network/Interface/en0/AirPort/BusyUI'
|
||||
Mon Dec 10 12:06:28.945 Info: <airportd[160]> INTERFACE STATE INFO request received from pid 362 (sharingd)
|
||||
Mon Dec 10 12:06:28.946 Info: <airportd[160]> -[CWXPCInterfaceContext __copyMACAddressForInterface:]: <awdl0> MAC address: <82cd0ac3 bf73>
|
||||
Mon Dec 10 12:06:30.064 Driver Event: <airportd[160]> _bsd_80211_event_callback: AWDL_PEER_PRESENCE (awdl0)
|
||||
Mon Dec 10 12:06:30.151 Driver Event: <airportd[160]> _bsd_80211_event_callback: AWDL_PEER_PRESENCE (awdl0)
|
||||
Mon Dec 10 12:06:30.151 Driver Event: <airportd[160]> _bsd_80211_event_callback: AWDL_PEER_PRESENCE (awdl0)
|
||||
Mon Dec 10 12:06:31.137 Driver Event: <airportd[160]> _bsd_80211_event_callback: AWDL_PEER_PRESENCE (awdl0)
|
||||
Mon Dec 10 12:06:31.138 Driver Event: <airportd[160]> _bsd_80211_event_callback: AWDL_PEER_PRESENCE (awdl0)
|
||||
Mon Dec 10 12:06:31.832 Driver Event: <airportd[160]> _bsd_80211_event_callback: AWDL_PEER_PRESENCE (awdl0)
|
||||
Mon Dec 10 12:06:31.832 Driver Event: <airportd[160]> _bsd_80211_event_callback: AWDL_PEER_PRESENCE (awdl0)
|
||||
Mon Dec 10 12:06:48.742 Driver Event: <airportd[160]> _bsd_80211_event_callback: AWDL_PEER_PRESENCE (awdl0)
|
||||
Mon Dec 10 12:06:48.742 Driver Event: <airportd[160]> _bsd_80211_event_callback: AWDL_PEER_PRESENCE (awdl0)
|
||||
Mon Dec 10 12:06:49.121 P2P: <airportd[160]> _terminateGroupOwnerTimer: Terminate group owner timer notification received.
|
||||
Mon Dec 10 12:06:49.267 Driver Event: <airportd[160]> _bsd_80211_event_callback: AWDL_PEER_PRESENCE (awdl0)
|
||||
Mon Dec 10 12:06:49.267 Driver Event: <airportd[160]> _bsd_80211_event_callback: AWDL_PEER_PRESENCE (awdl0)
|
||||
Mon Dec 10 12:06:49.793 Driver Event: <airportd[160]> _bsd_80211_event_callback: AWDL_PEER_PRESENCE (awdl0)
|
||||
Mon Dec 10 12:06:49.793 Driver Event: <airportd[160]> _bsd_80211_event_callback: AWDL_PEER_PRESENCE (awdl0)
|
||||
Mon Dec 10 12:06:50.931 Driver Event: <airportd[160]> _bsd_80211_event_callback: AWDL_REALTIME_MODE_END (awdl0)
|
||||
Mon Dec 10 12:06:50.931 Driver Event: <airportd[160]> _bsd_80211_event_callback: AWDL_STATISTICS (awdl0)
|
||||
Mon Dec 10 12:06:50.932 Info: <Wi-Fi Menu Extra[335]> AWDL real time mode ended
|
||||
Mon Dec 10 12:06:50.945 BTC: <airportd[160]> __BluetoothCoexHandleUpdateForNode: <en0> Handle Bluetooth Coex: FrequencyBand <2>, Bluetooth Bandwidth Utilization <3>, Clamshell Mode <0>
|
||||
Mon Dec 10 12:06:50.945 BTC: <airportd[160]> BluetoothCoexSetProfile: <en0> profile for band 2.4GHz didn't change
|
||||
Mon Dec 10 12:06:50.945 BTC: <airportd[160]> BluetoothCoexSetProfile: <en0> profile for band 5GHz didn't change
|
||||
Mon Dec 10 12:06:50.945 BTC: <airportd[160]> BluetoothCoexHandle_ApplyPolicy: <en0> Bluetooth Coex: band = 0x2
|
||||
Mon Dec 10 12:06:50.945 BTC: <airportd[160]> BluetoothCoexHandle_ApplyPolicy: <en0> Bluetooth Coex: hosting AP = NO, assoc as STA = YES, assoced in 2.4GHz = NO
|
||||
Mon Dec 10 12:06:50.945 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
|
||||
Mon Dec 10 12:06:50.945 BTC: <airportd[160]> BluetoothCoexHandle_ReconfigureAntennas: <en0> Bluetooth Coex: band = 2
|
||||
Mon Dec 10 12:06:50.945 BTC: <airportd[160]> BluetoothCoexGetCurrentBssidPhyMode: <en0> Bluetooth Coex: Active PHY Mode 16. PHY Mode
|
||||
Mon Dec 10 12:06:50.945 <CFBasicHash 0x7fc3fcd05ae0 [0x7fff9da548e0]>{type = mutable dict, count = 2,
|
||||
Mon Dec 10 12:06:50.945 entries =>
|
||||
Mon Dec 10 12:06:50.945 0 : <CFString 0x1042fdbe0 [0x7fff9da548e0]>{contents = "PHYMODE_ACTIVE"} = <CFNumber 0x27c86f4fab1424ff [0x7fff9da548e0]>{value = +16, type = kCFNumberSInt32Type}
|
||||
Mon Dec 10 12:06:50.945 1 : <CFString 0x104301b60 [0x7fff9da548e0]>{contents = "PHYMODE_SUPPORTED"} = <CFNumber 0x27c86f4fab14abff [0x7fff9da548e0]>{value = +159, type = kCFNumberSInt32Type}
|
||||
Mon Dec 10 12:06:50.945 }
|
||||
Mon Dec 10 12:06:50.945
|
||||
Mon Dec 10 12:06:50.945 BTC: <airportd[160]> BluetoothCoexHandle_ReconfigureAntennas: <en0> Bluetooth Coex: PHY mode: <10> 5GHz: YES
|
||||
Mon Dec 10 12:06:50.945 BTC: <airportd[160]> BluetoothCoexHandle_ReconfigureAntennas: <en0> MCS index set size = 16, NSS = 2SS, need to re-assoc = YES
|
||||
Mon Dec 10 12:06:50.945 BTC: <airportd[160]> BluetoothCoexHandle_ReconfigureAntennas: <en0> Bluetooth Coex: 11bg only = NO, BT on = YES, # HIDs = 0, # A2DP = 0, # SCO = 0, fallback = normal -> Middle Chain is ON
|
||||
Mon Dec 10 12:06:50.945 BTC: <airportd[160]> BluetoothCoexSettingPerChainPower: Chain Power Setting does not need to be updated
|
||||
Mon Dec 10 12:06:50.945 BTC: <airportd[160]> BluetoothCoexHandle_ReconfigureAntennas: <en0> Skipping REASSOC - The # of chains did not change.
|
||||
Mon Dec 10 12:06:50.945 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
Mon Dec 10 12:06:50.945 Driver Event: <airportd[160]> _bsd_80211_event_callback: AWDL_REALTIME_MODE_END (awdl0)
|
||||
Mon Dec 10 12:06:50.945 Driver Event: <airportd[160]> _bsd_80211_event_callback: AWDL_PEER_PRESENCE (awdl0)
|
||||
Mon Dec 10 12:06:50.945 BTC: <airportd[160]> __BluetoothCoexHandleUpdateForNode: <en0> Handle Bluetooth Coex: FrequencyBand <2>, Bluetooth Bandwidth Utilization <3>, Clamshell Mode <0>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
{last_modified_time} test.log Page 17
|
||||
|
||||
|
||||
Mon Dec 10 12:06:50.945 BTC: <airportd[160]> BluetoothCoexSetProfile: <en0> profile for band 2.4GHz didn't change
|
||||
Mon Dec 10 12:06:50.945 BTC: <airportd[160]> BluetoothCoexSetProfile: <en0> profile for band 5GHz didn't change
|
||||
Mon Dec 10 12:06:50.945 BTC: <airportd[160]> BluetoothCoexHandle_ApplyPolicy: <en0> Bluetooth Coex: band = 0x2
|
||||
Mon Dec 10 12:06:50.945 Info: <Wi-Fi Menu Extra[335]> AWDL real time mode ended
|
||||
Mon Dec 10 12:06:50.945 BTC: <airportd[160]> BluetoothCoexHandle_ApplyPolicy: <en0> Bluetooth Coex: hosting AP = NO, assoc as STA = YES, assoced in 2.4GHz = NO
|
||||
Mon Dec 10 12:06:50.946 BTC: <airportd[160]> BluetoothCoexHandle_ReconfigureAntennas: <en0> Bluetooth Coex: band = 2
|
||||
Mon Dec 10 12:06:50.946 BTC: <airportd[160]> BluetoothCoexGetCurrentBssidPhyMode: <en0> Bluetooth Coex: Active PHY Mode 16. PHY Mode
|
||||
Mon Dec 10 12:06:50.946 <CFBasicHash 0x7fc3ff5389a0 [0x7fff9da548e0]>{type = mutable dict, count = 2,
|
||||
Mon Dec 10 12:06:50.946 entries =>
|
||||
Mon Dec 10 12:06:50.946 0 : <CFString 0x1042fdbe0 [0x7fff9da548e0]>{contents = "PHYMODE_ACTIVE"} = <CFNumber 0x27c86f4fab1424ff [0x7fff9da548e0]>{value = +16, type = kCFNumberSInt32Type}
|
||||
Mon Dec 10 12:06:50.946 1 : <CFString 0x104301b60 [0x7fff9da548e0]>{contents = "PHYMODE_SUPPORTED"} = <CFNumber 0x27c86f4fab14abff [0x7fff9da548e0]>{value = +159, type = kCFNumberSInt32Type}
|
||||
Mon Dec 10 12:06:50.946 }
|
||||
Mon Dec 10 12:06:50.946
|
||||
Mon Dec 10 12:06:50.946 BTC: <airportd[160]> BluetoothCoexHandle_ReconfigureAntennas: <en0> Bluetooth Coex: PHY mode: <10> 5GHz: YES
|
||||
Mon Dec 10 12:06:50.946 BTC: <airportd[160]> BluetoothCoexHandle_ReconfigureAntennas: <en0> MCS index set size = 16, NSS = 2SS, need to re-assoc = YES
|
||||
Mon Dec 10 12:06:50.946 BTC: <airportd[160]> BluetoothCoexHandle_ReconfigureAntennas: <en0> Bluetooth Coex: 11bg only = NO, BT on = YES, # HIDs = 0, # A2DP = 0, # SCO = 0, fallback = normal -> Middle Chain is ON
|
||||
Mon Dec 10 12:06:50.946 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
|
||||
Mon Dec 10 12:06:50.946 BTC: <airportd[160]> BluetoothCoexSettingPerChainPower: Chain Power Setting does not need to be updated
|
||||
Mon Dec 10 12:06:50.946 BTC: <airportd[160]> BluetoothCoexHandle_ReconfigureAntennas: <en0> Skipping REASSOC - The # of chains did not change.
|
||||
Mon Dec 10 12:06:50.946 Driver Event: <airportd[160]> _bsd_80211_event_callback: AWDL_PEER_PRESENCE (awdl0)
|
||||
Mon Dec 10 12:06:50.946 Driver Event: <airportd[160]> _bsd_80211_event_callback: AWDL_PEER_PRESENCE (awdl0)
|
||||
Mon Dec 10 12:06:50.946 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
Mon Dec 10 12:06:50.946 Driver Event: <airportd[160]> _bsd_80211_event_callback: AWDL_PEER_PRESENCE (awdl0)
|
||||
Mon Dec 10 12:06:50.946 Driver Event: <airportd[160]> _bsd_80211_event_callback: AWDL_PEER_PRESENCE (awdl0)
|
||||
Mon Dec 10 12:06:50.946 Driver Event: <airportd[160]> _bsd_80211_event_callback: AWDL_PEER_PRESENCE (awdl0)
|
||||
Mon Dec 10 12:06:50.946 Driver Event: <airportd[160]> _bsd_80211_event_callback: AWDL_SYNC_STATE_CHANGED (awdl0)
|
||||
Mon Dec 10 12:06:50.947 Info: <airportd[160]> AWDL ended
|
||||
Mon Dec 10 12:06:50.951 Info: <airportd[160]> -[CWXPCInterfaceContext __submitAWDLUsageMetric:duration:]: AWDL usage metric data: CWAWDMetricAwdlUsageData: selfInfraChannel 40, peerInfraChannel 0, numOfPeers 6. Keys: Info: <airportd[160]> -[CWAWDManager submitMetric:]: submitting metric id 0x90013
|
||||
Mon Dec 10 12:06:50.952 Info: <airportd[160]> INTERFACE STATE INFO request received from pid 362 (sharingd)
|
||||
Mon Dec 10 12:06:50.952 Info: <airportd[160]> -[CWXPCInterfaceContext __copyMACAddressForInterface:]: <awdl0> MAC address: <82cd0ac3 bf73>
|
||||
Mon Dec 10 12:06:50.953 Roam: <airportd[160]> ROAMING PROFILES updated to AC POWER for 2.4GHz on en0
|
||||
Mon Dec 10 12:06:50.953 Roam: <airportd[160]> ROAMING PROFILES updated to AC POWER for 5GHz on en0
|
||||
Mon Dec 10 12:06:53.680 Info: <airportd[160]> -[CWXPCSubsystem handleDeviceCountMetricQuery:]_block_invoke: DeviceCount metric data: CWAWDMetricDeviceCountData: timeSinceBoot: 1515466.360642, deviceCount: 1
|
||||
Mon Dec 10 12:06:53.684 Info: <airportd[160]> -[CWXPCSubsystem handleNetworkPrefsMetricQuery:]: NetworkPrefs metric data: CWAWDMetricNetworkPrefsData: preferred 15 hidden 0 open 1 wep 0 wpa 12 eap 2
|
||||
Mon Dec 10 12:06:53.684 Info: <airportd[160]> -[CWAWDManager submitMetric:]: submitting metric id 0x90004
|
||||
Mon Dec 10 12:06:53.852 Info: <airportd[160]> -[CWAWDManager submitMetric:]: submitting metric id 0x90001
|
||||
Mon Dec 10 12:06:53.852 Info: <airportd[160]> -[CWAWDManager submitMetric:]: submitting metric id 0x9000d
|
||||
Mon Dec 10 12:06:53.852 Info: <airportd[160]> -[CWAWDManager submitMetric:]: submitting metric id 0x9000b
|
||||
Mon Dec 10 12:12:03.594 Driver Event: <airportd[160]> _bsd_80211_event_callback: LINK_QUALITY (en0)
|
||||
Mon Dec 10 12:12:03.594 Info: <airportd[160]> _bsd_80211_event_callback: <en0> link quality: RSSI=-57 dBm TxRate=216 Mbps
|
||||
Mon Dec 10 12:12:03.595 Info: <Wi-Fi Menu Extra[335]> link quality changed
|
||||
Mon Dec 10 12:12:09.598 Driver Event: <airportd[160]> _bsd_80211_event_callback: LINK_QUALITY (en0)
|
||||
Mon Dec 10 12:12:09.598 Info: <airportd[160]> _bsd_80211_event_callback: <en0> link quality: RSSI=-58 dBm TxRate=270 Mbps
|
||||
Mon Dec 10 12:12:09.599 Info: <Wi-Fi Menu Extra[335]> link quality changed
|
||||
Mon Dec 10 12:12:56.625 Driver Event: <airportd[160]> _bsd_80211_event_callback: LINK_QUALITY (en0)
|
||||
Mon Dec 10 12:12:56.625 Info: <airportd[160]> _bsd_80211_event_callback: <en0> link quality: RSSI=-58 dBm TxRate=216 Mbps
|
||||
Mon Dec 10 12:12:56.625 Info: <Wi-Fi Menu Extra[335]> link quality changed
|
||||
Mon Dec 10 12:13:01.625 Driver Event: <airportd[160]> _bsd_80211_event_callback: LINK_QUALITY (en0)
|
||||
Mon Dec 10 12:13:01.625 Info: <airportd[160]> _bsd_80211_event_callback: <en0> link quality: RSSI=-58 dBm TxRate=243 Mbps
|
||||
Mon Dec 10 12:13:01.626 Info: <Wi-Fi Menu Extra[335]> link quality changed
|
||||
Mon Dec 10 12:13:06.628 Driver Event: <airportd[160]> _bsd_80211_event_callback: LINK_QUALITY (en0)
|
||||
Mon Dec 10 12:13:06.628 Info: <airportd[160]> _bsd_80211_event_callback: <en0> link quality: RSSI=-58 dBm TxRate=216 Mbps
|
||||
Mon Dec 10 12:13:06.628 Info: <Wi-Fi Menu Extra[335]> link quality changed
|
||||
Mon Dec 10 12:13:27.639 Driver Event: <airportd[160]> _bsd_80211_event_callback: LINK_QUALITY (en0)
|
||||
Mon Dec 10 12:13:27.639 Info: <airportd[160]> _bsd_80211_event_callback: <en0> link quality: RSSI=-57 dBm TxRate=243 Mbps
|
||||
Mon Dec 10 12:13:27.640 Info: <Wi-Fi Menu Extra[335]> link quality changed
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
{last_modified_time} test.log Page 18
|
||||
|
||||
|
||||
Mon Dec 10 12:14:46.658 Info: <airportd[160]> SCAN request received from pid 92 (locationd) with priority 2
|
||||
Mon Dec 10 12:14:46.902 Driver Event: <airportd[160]> _bsd_80211_event_callback: SCAN_CACHE_UPDATED (en0)
|
||||
Mon Dec 10 12:14:46.905 Info: <airportd[160]> QUERY SCAN CACHE request received from pid 92 (locationd)
|
||||
Mon Dec 10 12:14:46.906 AutoJoin: <airportd[160]> Successful cache-assisted scan request for locationd with channels {(
|
||||
Mon Dec 10 12:14:46.906 <CWChannel: 0x7fc3ff54e6f0> [channelNumber=1(2GHz), channelWidth={20MHz}, active],
|
||||
Mon Dec 10 12:14:46.906 <CWChannel: 0x7fc3ff525b90> [channelNumber=2(2GHz), channelWidth={20MHz}, active],
|
||||
Mon Dec 10 12:14:46.906 <CWChannel: 0x7fc3ff50fff0> [channelNumber=3(2GHz), channelWidth={20MHz}, active],
|
||||
Mon Dec 10 12:14:46.906 <CWChannel: 0x7fc3ff506ba0> [channelNumber=4(2GHz), channelWidth={20MHz}, active],
|
||||
Mon Dec 10 12:14:46.906 <CWChannel: 0x7fc3ff502b10> [channelNumber=5(2GHz), channelWidth={20MHz}, active],
|
||||
Mon Dec 10 12:14:46.906 <CWChannel: 0x7fc3ff5389d0> [channelNumber=6(2GHz), channelWidth={20MHz}, active]
|
||||
Mon Dec 10 12:14:46.906 )} took 0.2478 seconds, returned 13 results
|
||||
Mon Dec 10 12:14:46.906 Info: <Wi-Fi Menu Extra[335]> scan cache updated
|
||||
Mon Dec 10 12:14:47.158 Driver Event: <airportd[160]> _bsd_80211_event_callback: SCAN_CACHE_UPDATED (en0)
|
||||
Mon Dec 10 12:14:47.160 AutoJoin: <airportd[160]> Successful cache-assisted scan request for locationd with channels {(
|
||||
Mon Dec 10 12:14:47.160 <CWChannel: 0x7fc3ff55aa40> [channelNumber=7(2GHz), channelWidth={20MHz}, active],
|
||||
Mon Dec 10 12:14:47.160 <CWChannel: 0x7fc3ff525af0> [channelNumber=8(2GHz), channelWidth={20MHz}, active],
|
||||
Mon Dec 10 12:14:47.160 <CWChannel: 0x7fc3ff555fa0> [channelNumber=9(2GHz), channelWidth={20MHz}, active],
|
||||
Mon Dec 10 12:14:47.160 <CWChannel: 0x7fc3ff5198e0> [channelNumber=10(2GHz), channelWidth={20MHz}, active],
|
||||
Mon Dec 10 12:14:47.160 <CWChannel: 0x7fc3ff53a7b0> [channelNumber=11(2GHz), channelWidth={20MHz}, active],
|
||||
Mon Dec 10 12:14:47.160 <CWChannel: 0x7fc3ff528060> [channelNumber=12(2GHz), channelWidth={20MHz}, active]
|
||||
Mon Dec 10 12:14:47.160 )} took 0.2532 seconds, returned 4 results
|
||||
Mon Dec 10 12:14:47.161 Info: <airportd[160]> QUERY SCAN CACHE request received from pid 92 (locationd)
|
||||
Mon Dec 10 12:14:47.433 Driver Event: <airportd[160]> _bsd_80211_event_callback: SCAN_CACHE_UPDATED (en0)
|
||||
Mon Dec 10 12:14:47.436 Info: <airportd[160]> QUERY SCAN CACHE request received from pid 92 (locationd)
|
||||
Mon Dec 10 12:14:47.437 AutoJoin: <airportd[160]> Successful cache-assisted scan request for locationd with channels {(
|
||||
Mon Dec 10 12:14:47.437 <CWChannel: 0x7fc3ff556320> [channelNumber=13(2GHz), channelWidth={20MHz}, active],
|
||||
Mon Dec 10 12:14:47.437 <CWChannel: 0x7fc3ff54cf20> [channelNumber=36(5GHz), channelWidth={40MHz(+1)}, active],
|
||||
Mon Dec 10 12:14:47.437 <CWChannel: 0x7fc3ff522290> [channelNumber=40(5GHz), channelWidth={40MHz(-1)}, active],
|
||||
Mon Dec 10 12:14:47.437 <CWChannel: 0x7fc3ff50c340> [channelNumber=44(5GHz), channelWidth={40MHz(+1)}, active],
|
||||
Mon Dec 10 12:14:47.437 <CWChannel: 0x7fc3ff5036d0> [channelNumber=48(5GHz), channelWidth={40MHz(-1)}, active],
|
||||
Mon Dec 10 12:14:47.437 <CWChannel: 0x7fc3ff54d880> [channelNumber=149(5GHz), channelWidth={20MHz}, active]
|
||||
Mon Dec 10 12:14:47.437 )} took 0.2763 seconds, returned 11 results
|
||||
Mon Dec 10 12:14:47.778 Driver Event: <airportd[160]> _bsd_80211_event_callback: SCAN_CACHE_UPDATED (en0)
|
||||
Mon Dec 10 12:14:47.781 Info: <airportd[160]> QUERY SCAN CACHE request received from pid 92 (locationd)
|
||||
Mon Dec 10 12:14:47.782 AutoJoin: <airportd[160]> Successful cache-assisted scan request for locationd with channels {(
|
||||
Mon Dec 10 12:14:47.782 <CWChannel: 0x7fc3ff502260> [channelNumber=153(5GHz), channelWidth={40MHz(-1)}, active],
|
||||
Mon Dec 10 12:14:47.782 <CWChannel: 0x7fc3ff50f420> [channelNumber=157(5GHz), channelWidth={20MHz}, active],
|
||||
Mon Dec 10 12:14:47.782 <CWChannel: 0x7fc3ff51e270> [channelNumber=161(5GHz), channelWidth={40MHz(-1)}, active],
|
||||
Mon Dec 10 12:14:47.782 <CWChannel: 0x7fc3ff513720> [channelNumber=165(5GHz), channelWidth={20MHz}, active],
|
||||
Mon Dec 10 12:14:47.782 <CWChannel: 0x7fc3ff505b60> [channelNumber=52(5GHz), channelWidth={40MHz(+1)}, DFS],
|
||||
Mon Dec 10 12:14:47.782 <CWChannel: 0x7fc3ff54f390> [channelNumber=56(5GHz), channelWidth={40MHz(-1)}, DFS]
|
||||
Mon Dec 10 12:14:47.782 )} took 0.3436 seconds, returned 9 results
|
||||
Mon Dec 10 12:14:48.052 Driver Event: <airportd[160]> _bsd_80211_event_callback: SCAN_CACHE_UPDATED (en0)
|
||||
Mon Dec 10 12:14:48.055 AutoJoin: <airportd[160]> Successful cache-assisted scan request for locationd with channels {(
|
||||
Mon Dec 10 12:14:48.055 <CWChannel: 0x7fc3ff550d00> [channelNumber=60(5GHz), channelWidth={40MHz(+1)}, DFS],
|
||||
Mon Dec 10 12:14:48.055 <CWChannel: 0x7fc3ff54fca0> [channelNumber=64(5GHz), channelWidth={40MHz(-1)}, DFS]
|
||||
Mon Dec 10 12:14:48.055 )} took 0.2714 seconds, returned 6 results
|
||||
Mon Dec 10 12:14:48.055 Info: <airportd[160]> QUERY SCAN CACHE request received from pid 92 (locationd)
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
198
tests/fixtures/pr/test_page_range_2.log.expected
vendored
Normal file
198
tests/fixtures/pr/test_page_range_2.log.expected
vendored
Normal file
|
@ -0,0 +1,198 @@
|
|||
|
||||
|
||||
{last_modified_time} test.log Page 15
|
||||
|
||||
|
||||
Mon Dec 10 12:05:48.183 <CWChannel: 0x7fc3ff50d600> [channelNumber=12(2GHz), channelWidth={20MHz}, active]
|
||||
Mon Dec 10 12:05:48.183 )} took 0.0007 seconds, returned 4 results
|
||||
Mon Dec 10 12:05:48.183 Scan: <airportd[160]> Cache-assisted scan request on channel 13 does not require a live scan
|
||||
Mon Dec 10 12:05:48.183 Scan: <airportd[160]> Cache-assisted scan request on channel 36 does not require a live scan
|
||||
Mon Dec 10 12:05:48.184 Scan: <airportd[160]> Cache-assisted scan request on channel 40 does not require a live scan
|
||||
Mon Dec 10 12:05:48.184 Scan: <airportd[160]> Cache-assisted scan request does not require a live scan
|
||||
Mon Dec 10 12:05:48.184 AutoJoin: <airportd[160]> Successful cache-assisted background scan request with channels {(
|
||||
Mon Dec 10 12:05:48.184 <CWChannel: 0x7fc3ff55aa40> [channelNumber=13(2GHz), channelWidth={20MHz}, active],
|
||||
Mon Dec 10 12:05:48.184 <CWChannel: 0x7fc3ff504b10> [channelNumber=36(5GHz), channelWidth={40MHz(+1)}, active],
|
||||
Mon Dec 10 12:05:48.184 <CWChannel: 0x7fc3ff55b310> [channelNumber=40(5GHz), channelWidth={40MHz(-1)}, active]
|
||||
Mon Dec 10 12:05:48.184 )} took 0.0007 seconds, returned 5 results
|
||||
Mon Dec 10 12:05:48.184 Scan: <airportd[160]> Cache-assisted scan request on channel 44 does not require a live scan
|
||||
Mon Dec 10 12:05:48.184 Scan: <airportd[160]> Cache-assisted scan request on channel 48 does not require a live scan
|
||||
Mon Dec 10 12:05:48.184 Scan: <airportd[160]> Cache-assisted scan request on channel 149 does not require a live scan
|
||||
Mon Dec 10 12:05:48.184 Scan: <airportd[160]> Cache-assisted scan request does not require a live scan
|
||||
Mon Dec 10 12:05:48.185 AutoJoin: <airportd[160]> Successful cache-assisted background scan request with channels {(
|
||||
Mon Dec 10 12:05:48.185 <CWChannel: 0x7fc3ff50cca0> [channelNumber=44(5GHz), channelWidth={40MHz(+1)}, active],
|
||||
Mon Dec 10 12:05:48.185 <CWChannel: 0x7fc3ff55ac00> [channelNumber=48(5GHz), channelWidth={40MHz(-1)}, active],
|
||||
Mon Dec 10 12:05:48.185 <CWChannel: 0x7fc3ff532a50> [channelNumber=149(5GHz), channelWidth={20MHz}, active]
|
||||
Mon Dec 10 12:05:48.185 )} took 0.0006 seconds, returned 4 results
|
||||
Mon Dec 10 12:05:48.185 Scan: <airportd[160]> Cache-assisted scan request on channel 153 does not require a live scan
|
||||
Mon Dec 10 12:05:48.185 Scan: <airportd[160]> Cache-assisted scan request on channel 157 does not require a live scan
|
||||
Mon Dec 10 12:05:48.185 Scan: <airportd[160]> Cache-assisted scan request on channel 161 does not require a live scan
|
||||
Mon Dec 10 12:05:48.186 Scan: <airportd[160]> Cache-assisted scan request does not require a live scan
|
||||
Mon Dec 10 12:05:48.186 AutoJoin: <airportd[160]> Successful cache-assisted background scan request with channels {(
|
||||
Mon Dec 10 12:05:48.186 <CWChannel: 0x7fc3ff5571c0> [channelNumber=153(5GHz), channelWidth={40MHz(-1)}, active],
|
||||
Mon Dec 10 12:05:48.186 <CWChannel: 0x7fc3ff5503a0> [channelNumber=157(5GHz), channelWidth={20MHz}, active],
|
||||
Mon Dec 10 12:05:48.186 <CWChannel: 0x7fc3ff55fe50> [channelNumber=161(5GHz), channelWidth={40MHz(-1)}, active]
|
||||
Mon Dec 10 12:05:48.186 )} took 0.0010 seconds, returned 7 results
|
||||
Mon Dec 10 12:05:48.186 Scan: <airportd[160]> Cache-assisted scan request on channel 165 does not require a live scan
|
||||
Mon Dec 10 12:05:48.186 Scan: <airportd[160]> Cache-assisted scan request on channel 52 does not require a live scan
|
||||
Mon Dec 10 12:05:48.186 Scan: <airportd[160]> Cache-assisted scan request on channel 56 does not require a live scan
|
||||
Mon Dec 10 12:05:48.186 Scan: <airportd[160]> Cache-assisted scan request does not require a live scan
|
||||
Mon Dec 10 12:05:48.187 AutoJoin: <airportd[160]> Successful cache-assisted background scan request with channels {(
|
||||
Mon Dec 10 12:05:48.187 <CWChannel: 0x7fc3ff513800> [channelNumber=165(5GHz), channelWidth={20MHz}, active],
|
||||
Mon Dec 10 12:05:48.187 <CWChannel: 0x7fc3ff524d50> [channelNumber=52(5GHz), channelWidth={40MHz(+1)}, DFS],
|
||||
Mon Dec 10 12:05:48.187 <CWChannel: 0x7fc3ff550d80> [channelNumber=56(5GHz), channelWidth={40MHz(-1)}, DFS]
|
||||
Mon Dec 10 12:05:48.187 )} took 0.0008 seconds, returned 5 results
|
||||
Mon Dec 10 12:05:48.187 Scan: <airportd[160]> Cache-assisted scan request on channel 60 does not require a live scan
|
||||
Mon Dec 10 12:05:48.187 Scan: <airportd[160]> Cache-assisted scan request on channel 64 does not require a live scan
|
||||
Mon Dec 10 12:05:48.188 Scan: <airportd[160]> Cache-assisted scan request does not require a live scan
|
||||
Mon Dec 10 12:05:48.188 AutoJoin: <airportd[160]> Successful cache-assisted background scan request with channels {(
|
||||
Mon Dec 10 12:05:48.188 <CWChannel: 0x7fc3ff54cf50> [channelNumber=60(5GHz), channelWidth={40MHz(+1)}, DFS],
|
||||
Mon Dec 10 12:05:48.188 <CWChannel: 0x7fc3ff538220> [channelNumber=64(5GHz), channelWidth={40MHz(-1)}, DFS]
|
||||
Mon Dec 10 12:05:48.188 )} took 0.0013 seconds, returned 8 results
|
||||
Mon Dec 10 12:05:50.375 Driver Event: <airportd[160]> _bsd_80211_event_callback: LINK_QUALITY (en0)
|
||||
Mon Dec 10 12:05:50.375 Info: <airportd[160]> _bsd_80211_event_callback: <en0> link quality: RSSI=-57 dBm TxRate=216 Mbps
|
||||
Mon Dec 10 12:05:50.376 Info: <Wi-Fi Menu Extra[335]> link quality changed
|
||||
Mon Dec 10 12:05:55.378 Driver Event: <airportd[160]> _bsd_80211_event_callback: LINK_QUALITY (en0)
|
||||
Mon Dec 10 12:05:55.378 Info: <airportd[160]> _bsd_80211_event_callback: <en0> link quality: RSSI=-56 dBm TxRate=243 Mbps
|
||||
Mon Dec 10 12:05:55.379 Info: <Wi-Fi Menu Extra[335]> link quality changed
|
||||
Mon Dec 10 12:06:28.759 Driver Event: <airportd[160]> _bsd_80211_event_callback: AWDL_SYNC_STATE_CHANGED (awdl0)
|
||||
Mon Dec 10 12:06:28.763 Info: <airportd[160]> AWDL started
|
||||
Mon Dec 10 12:06:28.763 Driver Event: <airportd[160]> _bsd_80211_event_callback: CHANNEL_SWITCH (en0)
|
||||
Mon Dec 10 12:06:28.765 Roam: <airportd[160]> ROAMING PROFILES updated to SINGLE-BAND, SINGLE-AP for 2.4GHz on en0
|
||||
Mon Dec 10 12:06:28.765 Roam: <airportd[160]> ROAMING PROFILES updated to SINGLE-BAND, SINGLE-AP for 5GHz on en0
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
{last_modified_time} test.log Page 16
|
||||
|
||||
|
||||
Mon Dec 10 12:06:28.770 SC: <airportd[160]> airportdProcessSystemConfigurationEvent: Processing 'State:/Network/Interface/en0/AirPort/ProfileID'
|
||||
Mon Dec 10 12:06:28.770 SC: <airportd[160]> airportdProcessSystemConfigurationEvent: Processing 'State:/Network/Interface/en0/AirPort/WEP40'
|
||||
Mon Dec 10 12:06:28.770 SC: <airportd[160]> airportdProcessSystemConfigurationEvent: Processing 'State:/Network/Interface/en0/AirPort/SSID_STR'
|
||||
Mon Dec 10 12:06:28.770 SC: <airportd[160]> airportdProcessSystemConfigurationEvent: Processing 'State:/Network/Interface/en0/AirPort/AirPlay'
|
||||
Mon Dec 10 12:06:28.770 SC: <airportd[160]> airportdProcessSystemConfigurationEvent: Processing 'State:/Network/Interface/en0/AirPort/AutoJoinTimestamp'
|
||||
Mon Dec 10 12:06:28.770 SC: <airportd[160]> airportdProcessSystemConfigurationEvent: Processing 'State:/Network/Interface/en0/AirPort/BSSID'
|
||||
Mon Dec 10 12:06:28.770 SC: <airportd[160]> airportdProcessSystemConfigurationEvent: Processing 'State:/Network/Interface/en0/AirPort/SSID'
|
||||
Mon Dec 10 12:06:28.770 SC: <airportd[160]> airportdProcessSystemConfigurationEvent: Processing 'State:/Network/Interface/en0/AirPort/CHANNEL'
|
||||
Mon Dec 10 12:06:28.770 SC: <airportd[160]> airportdProcessSystemConfigurationEvent: Processing 'State:/Network/Interface/en0/AirPort/Busy'
|
||||
Mon Dec 10 12:06:28.770 SC: <airportd[160]> airportdProcessSystemConfigurationEvent: Processing 'State:/Network/Interface/en0/AirPort/Power Status'
|
||||
Mon Dec 10 12:06:28.770 SC: <airportd[160]> airportdProcessSystemConfigurationEvent: Processing 'State:/Network/Interface/en0/AirPort/WEPOPENSYSTEM'
|
||||
Mon Dec 10 12:06:28.770 SC: <airportd[160]> airportdProcessSystemConfigurationEvent: Processing 'State:/Network/Interface/en0/AirPort/CachedScanRecord'
|
||||
Mon Dec 10 12:06:28.770 SC: <airportd[160]> airportdProcessSystemConfigurationEvent: Processing 'State:/Network/Interface/en0/AirPort/UserMode8021X'
|
||||
Mon Dec 10 12:06:28.771 SC: <airportd[160]> airportdProcessSystemConfigurationEvent: Processing 'State:/Network/Interface/en0/AirPort/BusyUI'
|
||||
Mon Dec 10 12:06:28.945 Info: <airportd[160]> INTERFACE STATE INFO request received from pid 362 (sharingd)
|
||||
Mon Dec 10 12:06:28.946 Info: <airportd[160]> -[CWXPCInterfaceContext __copyMACAddressForInterface:]: <awdl0> MAC address: <82cd0ac3 bf73>
|
||||
Mon Dec 10 12:06:30.064 Driver Event: <airportd[160]> _bsd_80211_event_callback: AWDL_PEER_PRESENCE (awdl0)
|
||||
Mon Dec 10 12:06:30.151 Driver Event: <airportd[160]> _bsd_80211_event_callback: AWDL_PEER_PRESENCE (awdl0)
|
||||
Mon Dec 10 12:06:30.151 Driver Event: <airportd[160]> _bsd_80211_event_callback: AWDL_PEER_PRESENCE (awdl0)
|
||||
Mon Dec 10 12:06:31.137 Driver Event: <airportd[160]> _bsd_80211_event_callback: AWDL_PEER_PRESENCE (awdl0)
|
||||
Mon Dec 10 12:06:31.138 Driver Event: <airportd[160]> _bsd_80211_event_callback: AWDL_PEER_PRESENCE (awdl0)
|
||||
Mon Dec 10 12:06:31.832 Driver Event: <airportd[160]> _bsd_80211_event_callback: AWDL_PEER_PRESENCE (awdl0)
|
||||
Mon Dec 10 12:06:31.832 Driver Event: <airportd[160]> _bsd_80211_event_callback: AWDL_PEER_PRESENCE (awdl0)
|
||||
Mon Dec 10 12:06:48.742 Driver Event: <airportd[160]> _bsd_80211_event_callback: AWDL_PEER_PRESENCE (awdl0)
|
||||
Mon Dec 10 12:06:48.742 Driver Event: <airportd[160]> _bsd_80211_event_callback: AWDL_PEER_PRESENCE (awdl0)
|
||||
Mon Dec 10 12:06:49.121 P2P: <airportd[160]> _terminateGroupOwnerTimer: Terminate group owner timer notification received.
|
||||
Mon Dec 10 12:06:49.267 Driver Event: <airportd[160]> _bsd_80211_event_callback: AWDL_PEER_PRESENCE (awdl0)
|
||||
Mon Dec 10 12:06:49.267 Driver Event: <airportd[160]> _bsd_80211_event_callback: AWDL_PEER_PRESENCE (awdl0)
|
||||
Mon Dec 10 12:06:49.793 Driver Event: <airportd[160]> _bsd_80211_event_callback: AWDL_PEER_PRESENCE (awdl0)
|
||||
Mon Dec 10 12:06:49.793 Driver Event: <airportd[160]> _bsd_80211_event_callback: AWDL_PEER_PRESENCE (awdl0)
|
||||
Mon Dec 10 12:06:50.931 Driver Event: <airportd[160]> _bsd_80211_event_callback: AWDL_REALTIME_MODE_END (awdl0)
|
||||
Mon Dec 10 12:06:50.931 Driver Event: <airportd[160]> _bsd_80211_event_callback: AWDL_STATISTICS (awdl0)
|
||||
Mon Dec 10 12:06:50.932 Info: <Wi-Fi Menu Extra[335]> AWDL real time mode ended
|
||||
Mon Dec 10 12:06:50.945 BTC: <airportd[160]> __BluetoothCoexHandleUpdateForNode: <en0> Handle Bluetooth Coex: FrequencyBand <2>, Bluetooth Bandwidth Utilization <3>, Clamshell Mode <0>
|
||||
Mon Dec 10 12:06:50.945 BTC: <airportd[160]> BluetoothCoexSetProfile: <en0> profile for band 2.4GHz didn't change
|
||||
Mon Dec 10 12:06:50.945 BTC: <airportd[160]> BluetoothCoexSetProfile: <en0> profile for band 5GHz didn't change
|
||||
Mon Dec 10 12:06:50.945 BTC: <airportd[160]> BluetoothCoexHandle_ApplyPolicy: <en0> Bluetooth Coex: band = 0x2
|
||||
Mon Dec 10 12:06:50.945 BTC: <airportd[160]> BluetoothCoexHandle_ApplyPolicy: <en0> Bluetooth Coex: hosting AP = NO, assoc as STA = YES, assoced in 2.4GHz = NO
|
||||
Mon Dec 10 12:06:50.945 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
|
||||
Mon Dec 10 12:06:50.945 BTC: <airportd[160]> BluetoothCoexHandle_ReconfigureAntennas: <en0> Bluetooth Coex: band = 2
|
||||
Mon Dec 10 12:06:50.945 BTC: <airportd[160]> BluetoothCoexGetCurrentBssidPhyMode: <en0> Bluetooth Coex: Active PHY Mode 16. PHY Mode
|
||||
Mon Dec 10 12:06:50.945 <CFBasicHash 0x7fc3fcd05ae0 [0x7fff9da548e0]>{type = mutable dict, count = 2,
|
||||
Mon Dec 10 12:06:50.945 entries =>
|
||||
Mon Dec 10 12:06:50.945 0 : <CFString 0x1042fdbe0 [0x7fff9da548e0]>{contents = "PHYMODE_ACTIVE"} = <CFNumber 0x27c86f4fab1424ff [0x7fff9da548e0]>{value = +16, type = kCFNumberSInt32Type}
|
||||
Mon Dec 10 12:06:50.945 1 : <CFString 0x104301b60 [0x7fff9da548e0]>{contents = "PHYMODE_SUPPORTED"} = <CFNumber 0x27c86f4fab14abff [0x7fff9da548e0]>{value = +159, type = kCFNumberSInt32Type}
|
||||
Mon Dec 10 12:06:50.945 }
|
||||
Mon Dec 10 12:06:50.945
|
||||
Mon Dec 10 12:06:50.945 BTC: <airportd[160]> BluetoothCoexHandle_ReconfigureAntennas: <en0> Bluetooth Coex: PHY mode: <10> 5GHz: YES
|
||||
Mon Dec 10 12:06:50.945 BTC: <airportd[160]> BluetoothCoexHandle_ReconfigureAntennas: <en0> MCS index set size = 16, NSS = 2SS, need to re-assoc = YES
|
||||
Mon Dec 10 12:06:50.945 BTC: <airportd[160]> BluetoothCoexHandle_ReconfigureAntennas: <en0> Bluetooth Coex: 11bg only = NO, BT on = YES, # HIDs = 0, # A2DP = 0, # SCO = 0, fallback = normal -> Middle Chain is ON
|
||||
Mon Dec 10 12:06:50.945 BTC: <airportd[160]> BluetoothCoexSettingPerChainPower: Chain Power Setting does not need to be updated
|
||||
Mon Dec 10 12:06:50.945 BTC: <airportd[160]> BluetoothCoexHandle_ReconfigureAntennas: <en0> Skipping REASSOC - The # of chains did not change.
|
||||
Mon Dec 10 12:06:50.945 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
Mon Dec 10 12:06:50.945 Driver Event: <airportd[160]> _bsd_80211_event_callback: AWDL_REALTIME_MODE_END (awdl0)
|
||||
Mon Dec 10 12:06:50.945 Driver Event: <airportd[160]> _bsd_80211_event_callback: AWDL_PEER_PRESENCE (awdl0)
|
||||
Mon Dec 10 12:06:50.945 BTC: <airportd[160]> __BluetoothCoexHandleUpdateForNode: <en0> Handle Bluetooth Coex: FrequencyBand <2>, Bluetooth Bandwidth Utilization <3>, Clamshell Mode <0>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
{last_modified_time} test.log Page 17
|
||||
|
||||
|
||||
Mon Dec 10 12:06:50.945 BTC: <airportd[160]> BluetoothCoexSetProfile: <en0> profile for band 2.4GHz didn't change
|
||||
Mon Dec 10 12:06:50.945 BTC: <airportd[160]> BluetoothCoexSetProfile: <en0> profile for band 5GHz didn't change
|
||||
Mon Dec 10 12:06:50.945 BTC: <airportd[160]> BluetoothCoexHandle_ApplyPolicy: <en0> Bluetooth Coex: band = 0x2
|
||||
Mon Dec 10 12:06:50.945 Info: <Wi-Fi Menu Extra[335]> AWDL real time mode ended
|
||||
Mon Dec 10 12:06:50.945 BTC: <airportd[160]> BluetoothCoexHandle_ApplyPolicy: <en0> Bluetooth Coex: hosting AP = NO, assoc as STA = YES, assoced in 2.4GHz = NO
|
||||
Mon Dec 10 12:06:50.946 BTC: <airportd[160]> BluetoothCoexHandle_ReconfigureAntennas: <en0> Bluetooth Coex: band = 2
|
||||
Mon Dec 10 12:06:50.946 BTC: <airportd[160]> BluetoothCoexGetCurrentBssidPhyMode: <en0> Bluetooth Coex: Active PHY Mode 16. PHY Mode
|
||||
Mon Dec 10 12:06:50.946 <CFBasicHash 0x7fc3ff5389a0 [0x7fff9da548e0]>{type = mutable dict, count = 2,
|
||||
Mon Dec 10 12:06:50.946 entries =>
|
||||
Mon Dec 10 12:06:50.946 0 : <CFString 0x1042fdbe0 [0x7fff9da548e0]>{contents = "PHYMODE_ACTIVE"} = <CFNumber 0x27c86f4fab1424ff [0x7fff9da548e0]>{value = +16, type = kCFNumberSInt32Type}
|
||||
Mon Dec 10 12:06:50.946 1 : <CFString 0x104301b60 [0x7fff9da548e0]>{contents = "PHYMODE_SUPPORTED"} = <CFNumber 0x27c86f4fab14abff [0x7fff9da548e0]>{value = +159, type = kCFNumberSInt32Type}
|
||||
Mon Dec 10 12:06:50.946 }
|
||||
Mon Dec 10 12:06:50.946
|
||||
Mon Dec 10 12:06:50.946 BTC: <airportd[160]> BluetoothCoexHandle_ReconfigureAntennas: <en0> Bluetooth Coex: PHY mode: <10> 5GHz: YES
|
||||
Mon Dec 10 12:06:50.946 BTC: <airportd[160]> BluetoothCoexHandle_ReconfigureAntennas: <en0> MCS index set size = 16, NSS = 2SS, need to re-assoc = YES
|
||||
Mon Dec 10 12:06:50.946 BTC: <airportd[160]> BluetoothCoexHandle_ReconfigureAntennas: <en0> Bluetooth Coex: 11bg only = NO, BT on = YES, # HIDs = 0, # A2DP = 0, # SCO = 0, fallback = normal -> Middle Chain is ON
|
||||
Mon Dec 10 12:06:50.946 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: pppConnectionState 0
|
||||
Mon Dec 10 12:06:50.946 BTC: <airportd[160]> BluetoothCoexSettingPerChainPower: Chain Power Setting does not need to be updated
|
||||
Mon Dec 10 12:06:50.946 BTC: <airportd[160]> BluetoothCoexHandle_ReconfigureAntennas: <en0> Skipping REASSOC - The # of chains did not change.
|
||||
Mon Dec 10 12:06:50.946 Driver Event: <airportd[160]> _bsd_80211_event_callback: AWDL_PEER_PRESENCE (awdl0)
|
||||
Mon Dec 10 12:06:50.946 Driver Event: <airportd[160]> _bsd_80211_event_callback: AWDL_PEER_PRESENCE (awdl0)
|
||||
Mon Dec 10 12:06:50.946 Info: <Wi-Fi Menu Extra[335]> -[AirPortExtraImplementation processAirPortStateChanges]: old state=4 bars, new state=4 bars
|
||||
Mon Dec 10 12:06:50.946 Driver Event: <airportd[160]> _bsd_80211_event_callback: AWDL_PEER_PRESENCE (awdl0)
|
||||
Mon Dec 10 12:06:50.946 Driver Event: <airportd[160]> _bsd_80211_event_callback: AWDL_PEER_PRESENCE (awdl0)
|
||||
Mon Dec 10 12:06:50.946 Driver Event: <airportd[160]> _bsd_80211_event_callback: AWDL_PEER_PRESENCE (awdl0)
|
||||
Mon Dec 10 12:06:50.946 Driver Event: <airportd[160]> _bsd_80211_event_callback: AWDL_SYNC_STATE_CHANGED (awdl0)
|
||||
Mon Dec 10 12:06:50.947 Info: <airportd[160]> AWDL ended
|
||||
Mon Dec 10 12:06:50.951 Info: <airportd[160]> -[CWXPCInterfaceContext __submitAWDLUsageMetric:duration:]: AWDL usage metric data: CWAWDMetricAwdlUsageData: selfInfraChannel 40, peerInfraChannel 0, numOfPeers 6. Keys: Info: <airportd[160]> -[CWAWDManager submitMetric:]: submitting metric id 0x90013
|
||||
Mon Dec 10 12:06:50.952 Info: <airportd[160]> INTERFACE STATE INFO request received from pid 362 (sharingd)
|
||||
Mon Dec 10 12:06:50.952 Info: <airportd[160]> -[CWXPCInterfaceContext __copyMACAddressForInterface:]: <awdl0> MAC address: <82cd0ac3 bf73>
|
||||
Mon Dec 10 12:06:50.953 Roam: <airportd[160]> ROAMING PROFILES updated to AC POWER for 2.4GHz on en0
|
||||
Mon Dec 10 12:06:50.953 Roam: <airportd[160]> ROAMING PROFILES updated to AC POWER for 5GHz on en0
|
||||
Mon Dec 10 12:06:53.680 Info: <airportd[160]> -[CWXPCSubsystem handleDeviceCountMetricQuery:]_block_invoke: DeviceCount metric data: CWAWDMetricDeviceCountData: timeSinceBoot: 1515466.360642, deviceCount: 1
|
||||
Mon Dec 10 12:06:53.684 Info: <airportd[160]> -[CWXPCSubsystem handleNetworkPrefsMetricQuery:]: NetworkPrefs metric data: CWAWDMetricNetworkPrefsData: preferred 15 hidden 0 open 1 wep 0 wpa 12 eap 2
|
||||
Mon Dec 10 12:06:53.684 Info: <airportd[160]> -[CWAWDManager submitMetric:]: submitting metric id 0x90004
|
||||
Mon Dec 10 12:06:53.852 Info: <airportd[160]> -[CWAWDManager submitMetric:]: submitting metric id 0x90001
|
||||
Mon Dec 10 12:06:53.852 Info: <airportd[160]> -[CWAWDManager submitMetric:]: submitting metric id 0x9000d
|
||||
Mon Dec 10 12:06:53.852 Info: <airportd[160]> -[CWAWDManager submitMetric:]: submitting metric id 0x9000b
|
||||
Mon Dec 10 12:12:03.594 Driver Event: <airportd[160]> _bsd_80211_event_callback: LINK_QUALITY (en0)
|
||||
Mon Dec 10 12:12:03.594 Info: <airportd[160]> _bsd_80211_event_callback: <en0> link quality: RSSI=-57 dBm TxRate=216 Mbps
|
||||
Mon Dec 10 12:12:03.595 Info: <Wi-Fi Menu Extra[335]> link quality changed
|
||||
Mon Dec 10 12:12:09.598 Driver Event: <airportd[160]> _bsd_80211_event_callback: LINK_QUALITY (en0)
|
||||
Mon Dec 10 12:12:09.598 Info: <airportd[160]> _bsd_80211_event_callback: <en0> link quality: RSSI=-58 dBm TxRate=270 Mbps
|
||||
Mon Dec 10 12:12:09.599 Info: <Wi-Fi Menu Extra[335]> link quality changed
|
||||
Mon Dec 10 12:12:56.625 Driver Event: <airportd[160]> _bsd_80211_event_callback: LINK_QUALITY (en0)
|
||||
Mon Dec 10 12:12:56.625 Info: <airportd[160]> _bsd_80211_event_callback: <en0> link quality: RSSI=-58 dBm TxRate=216 Mbps
|
||||
Mon Dec 10 12:12:56.625 Info: <Wi-Fi Menu Extra[335]> link quality changed
|
||||
Mon Dec 10 12:13:01.625 Driver Event: <airportd[160]> _bsd_80211_event_callback: LINK_QUALITY (en0)
|
||||
Mon Dec 10 12:13:01.625 Info: <airportd[160]> _bsd_80211_event_callback: <en0> link quality: RSSI=-58 dBm TxRate=243 Mbps
|
||||
Mon Dec 10 12:13:01.626 Info: <Wi-Fi Menu Extra[335]> link quality changed
|
||||
Mon Dec 10 12:13:06.628 Driver Event: <airportd[160]> _bsd_80211_event_callback: LINK_QUALITY (en0)
|
||||
Mon Dec 10 12:13:06.628 Info: <airportd[160]> _bsd_80211_event_callback: <en0> link quality: RSSI=-58 dBm TxRate=216 Mbps
|
||||
Mon Dec 10 12:13:06.628 Info: <Wi-Fi Menu Extra[335]> link quality changed
|
||||
Mon Dec 10 12:13:27.639 Driver Event: <airportd[160]> _bsd_80211_event_callback: LINK_QUALITY (en0)
|
||||
Mon Dec 10 12:13:27.639 Info: <airportd[160]> _bsd_80211_event_callback: <en0> link quality: RSSI=-57 dBm TxRate=243 Mbps
|
||||
Mon Dec 10 12:13:27.640 Info: <Wi-Fi Menu Extra[335]> link quality changed
|
||||
|
||||
|
||||
|
||||
|
||||
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Add table
Add a link
Reference in a new issue