ci(fuzz): Fine-tune some Debug implementations
This commit is contained in:
parent
383d72427c
commit
df9c71700e
2 changed files with 10 additions and 11 deletions
|
@ -63,18 +63,10 @@ impl <'k> Debug for FileOperation<'k> {
|
||||||
options, self.path, target.to_owned()))
|
options, self.path, target.to_owned()))
|
||||||
},
|
},
|
||||||
BasicFileOperation::ShallowCopy(base) => {
|
BasicFileOperation::ShallowCopy(base) => {
|
||||||
f.write_fmt(format_args!("let path = {:?};\n\
|
f.write_fmt(format_args!("{:?}writer.shallow_copy_file_from_path(path, {:?})?;\n", base, self.path))
|
||||||
{{\n\
|
|
||||||
{:?}
|
|
||||||
}}\n\
|
|
||||||
writer.shallow_copy_file_from_path(path, {:?})?;\n", base.path, base, self.path))
|
|
||||||
},
|
},
|
||||||
BasicFileOperation::DeepCopy(base) => {
|
BasicFileOperation::DeepCopy(base) => {
|
||||||
f.write_fmt(format_args!("let path = {:?};\n\
|
f.write_fmt(format_args!("{:?}writer.deep_copy_file_from_path(path, {:?})?;\n", base, self.path))
|
||||||
{{\n\
|
|
||||||
{:?}
|
|
||||||
}}\n\
|
|
||||||
writer.deep_copy_file_from_path(path, {:?})?;\n", base.path, base, self.path))
|
|
||||||
},
|
},
|
||||||
BasicFileOperation::MergeWithOtherFile {operations} => {
|
BasicFileOperation::MergeWithOtherFile {operations} => {
|
||||||
f.write_str("let sub_writer = {\n\
|
f.write_str("let sub_writer = {\n\
|
||||||
|
|
|
@ -260,12 +260,19 @@ pub type SimpleFileOptions = FileOptions<'static, ()>;
|
||||||
/// Adds Extra Data and Central Extra Data. It does not implement copy.
|
/// Adds Extra Data and Central Extra Data. It does not implement copy.
|
||||||
pub type FullFileOptions<'k> = FileOptions<'k, ExtendedFileOptions>;
|
pub type FullFileOptions<'k> = FileOptions<'k, ExtendedFileOptions>;
|
||||||
/// The Extension for Extra Data and Central Extra Data
|
/// The Extension for Extra Data and Central Extra Data
|
||||||
#[derive(Clone, Debug, Default)]
|
#[derive(Clone, Default)]
|
||||||
pub struct ExtendedFileOptions {
|
pub struct ExtendedFileOptions {
|
||||||
extra_data: Arc<Vec<u8>>,
|
extra_data: Arc<Vec<u8>>,
|
||||||
central_extra_data: Arc<Vec<u8>>,
|
central_extra_data: Arc<Vec<u8>>,
|
||||||
}
|
}
|
||||||
|
|
||||||
|
impl Debug for ExtendedFileOptions {
|
||||||
|
fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), std::fmt::Error> {
|
||||||
|
f.write_fmt(format_args!("ExtendedFileptions {{extra_data: vec!{:?}.into(), central_extra_data: vec!{:?}.into()}}",
|
||||||
|
self.extra_data, self.central_extra_data))
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
#[cfg(fuzzing)]
|
#[cfg(fuzzing)]
|
||||||
impl<'a> arbitrary::Arbitrary<'a> for FileOptions<'a, ExtendedFileOptions> {
|
impl<'a> arbitrary::Arbitrary<'a> for FileOptions<'a, ExtendedFileOptions> {
|
||||||
fn arbitrary(u: &mut arbitrary::Unstructured<'a>) -> arbitrary::Result<Self> {
|
fn arbitrary(u: &mut arbitrary::Unstructured<'a>) -> arbitrary::Result<Self> {
|
||||||
|
|
Loading…
Add table
Reference in a new issue