pkgcruft 0.0.18

QA library and tools based on pkgcraft
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
use std::collections::HashMap;
use std::io::Write;
use std::sync::Arc;
use std::time::Duration;

use dashmap::DashMap;
use indexmap::IndexMap;
use itertools::Itertools;
use owo_colors::OwoColorize;
use strfmt::strfmt;
use strum::{EnumString, VariantNames};

use crate::Error;
use crate::check::Check;
use crate::report::{Report, ReportKind, ReportScope};

#[derive(EnumString, VariantNames, Debug, Clone)]
#[strum(serialize_all = "kebab-case")]
pub enum Reporter {
    Count(CountReporter),
    Fancy(FancyReporter),
    Format(FormatReporter),
    Json(JsonReporter),
    Null,
    Simple(SimpleReporter),
    Stats(StatsReporter),
    Time(TimeReporter),
}

impl Reporter {
    /// Run a report through a reporter.
    pub fn report<W: Write>(&mut self, report: &Report, output: &mut W) -> crate::Result<()> {
        match self {
            Self::Count(r) => r.report(report, output),
            Self::Fancy(r) => r.report(report, output),
            Self::Format(r) => r.report(report, output),
            Self::Json(r) => r.report(report, output),
            Self::Null => Ok(()),
            Self::Simple(r) => r.report(report, output),
            Self::Stats(r) => r.report(report, output),
            Self::Time(_) => Ok(()),
        }
    }

    /// Perform any relevant reporter finalization.
    pub fn finish<W: Write>(&mut self, output: &mut W) -> crate::Result<()> {
        match self {
            Self::Count(r) => r.finish(output),
            Self::Stats(r) => r.finish(output),
            Self::Time(r) => r.finish(output),
            _ => Ok(()),
        }
    }
}

#[derive(Debug, Default, Clone)]
pub struct CountReporter(u64);

impl From<CountReporter> for Reporter {
    fn from(value: CountReporter) -> Self {
        Self::Count(value)
    }
}

impl CountReporter {
    fn report<W: Write>(&mut self, _report: &Report, _output: &mut W) -> crate::Result<()> {
        self.0 += 1;
        Ok(())
    }

    fn finish<W: Write>(&mut self, output: &mut W) -> crate::Result<()> {
        writeln!(output, "{}", self.0)?;
        Ok(())
    }
}

#[derive(Debug, Default, Clone)]
pub struct TimeReporter {
    pub stats: Arc<DashMap<Check, Duration>>,
}

impl From<TimeReporter> for Reporter {
    fn from(value: TimeReporter) -> Self {
        Self::Time(value)
    }
}

impl TimeReporter {
    fn finish<W: Write>(&mut self, output: &mut W) -> crate::Result<()> {
        for entry in self
            .stats
            .iter()
            .sorted_by(|e1, e2| e1.value().cmp(e2.value()))
        {
            let (check, time) = entry.pair();
            writeln!(output, "{check}: {time:.2?}")?;
        }
        Ok(())
    }
}

#[derive(Debug, Default, Clone)]
pub struct StatsReporter {
    cache: IndexMap<ReportKind, u64>,
    pub sort_by: String,
}

impl From<StatsReporter> for Reporter {
    fn from(value: StatsReporter) -> Self {
        Self::Stats(value)
    }
}

impl StatsReporter {
    fn report<W: Write>(&mut self, report: &Report, _output: &mut W) -> crate::Result<()> {
        *self.cache.entry(report.kind).or_default() += 1;
        Ok(())
    }

    fn finish<W: Write>(&mut self, output: &mut W) -> crate::Result<()> {
        match self.sort_by.as_str() {
            "count" => self
                .cache
                .sort_by(|k1, v1, k2, v2| v1.cmp(v2).then_with(|| k1.cmp(k2))),
            "level" => self
                .cache
                .sort_by(|k1, _, k2, _| k1.level().cmp(&k2.level()).then_with(|| k1.cmp(k2))),
            _ => self.cache.sort_keys(),
        }

        for (kind, count) in &self.cache {
            write!(output, "{}", kind.colorize())?;
            writeln!(output, ": {count}")?;
        }

        Ok(())
    }
}

#[derive(Debug, Default, Clone)]
pub struct SimpleReporter;

impl From<SimpleReporter> for Reporter {
    fn from(value: SimpleReporter) -> Self {
        Self::Simple(value)
    }
}

impl SimpleReporter {
    fn report<W: Write>(&mut self, report: &Report, output: &mut W) -> crate::Result<()> {
        writeln!(output, "{report}")?;
        Ok(())
    }
}

#[derive(Debug, Default, Clone)]
pub struct FancyReporter {
    prev_key: Option<String>,
}

impl From<FancyReporter> for Reporter {
    fn from(value: FancyReporter) -> Self {
        Self::Fancy(value)
    }
}

impl FancyReporter {
    fn report<W: Write>(&mut self, report: &Report, output: &mut W) -> crate::Result<()> {
        let scope = report.scope();
        let key = if let ReportScope::Version(cpv, _) = scope {
            cpv.cpn().to_string()
        } else {
            scope.to_string()
        };

        if !self
            .prev_key
            .as_ref()
            .map(|prev| prev == &key)
            .unwrap_or_default()
        {
            if self.prev_key.is_some() {
                writeln!(output)?;
            }
            writeln!(output, "{}", key.bright_blue())?;
            self.prev_key = Some(key);
        }

        write!(output, "  {}", report.kind.colorize())?;

        if let ReportScope::Version(cpv, location) = scope {
            write!(output, ": version {}", cpv.version())?;
            if let Some(value) = location {
                write!(output, ", {value}")?;
            }
        }

        if let Some(value) = report.message() {
            write!(output, ": {value}")?;
        }

        writeln!(output)?;
        Ok(())
    }
}

#[derive(Debug, Default, Clone)]
pub struct JsonReporter;

impl From<JsonReporter> for Reporter {
    fn from(value: JsonReporter) -> Self {
        Self::Json(value)
    }
}

impl JsonReporter {
    fn report<W: Write>(&self, report: &Report, output: &mut W) -> crate::Result<()> {
        writeln!(output, "{}", report.to_json())?;
        Ok(())
    }
}

#[derive(Debug, Default, Clone)]
pub struct FormatReporter {
    pub format: String,
}

impl From<FormatReporter> for Reporter {
    fn from(value: FormatReporter) -> Self {
        Self::Format(value)
    }
}

impl FormatReporter {
    fn report<W: Write>(&self, report: &Report, output: &mut W) -> crate::Result<()> {
        let mut attrs: HashMap<_, _> = [("name".to_string(), report.kind.to_string())]
            .into_iter()
            .collect();

        match report.scope() {
            ReportScope::Version(cpv, _) => {
                let category = cpv.category().to_string();
                let package = cpv.package().to_string();
                let version = cpv.version().to_string();
                let ebuild = format!("{package}-{version}.ebuild");
                attrs.extend([
                    ("path".to_string(), format!("{category}/{package}/{ebuild}")),
                    ("ebuild".to_string(), ebuild),
                    ("category".to_string(), category),
                    ("package".to_string(), package),
                    ("version".to_string(), version),
                    ("cpv".to_string(), cpv.to_string()),
                    ("cpn".to_string(), cpv.cpn().to_string()),
                ]);
            }
            ReportScope::Package(cpn) => {
                attrs.extend([
                    ("category".to_string(), cpn.category().to_string()),
                    ("package".to_string(), cpn.package().to_string()),
                    ("cpn".to_string(), cpn.to_string()),
                ]);
            }
            ReportScope::Category(cat) => {
                attrs.extend([("category".to_string(), cat.to_string())]);
            }
            ReportScope::Repo(repo) => {
                attrs.extend([("repo".to_string(), repo.to_string())]);
            }
        }

        let s = strfmt(&self.format, &attrs).map_err(|e| {
            let supported = attrs.keys().sorted().join(", ");
            Error::InvalidValue(format!(
                "{}: invalid output format: {e}\n  [possible attributes: {supported}]",
                report.kind
            ))
        })?;
        if !s.is_empty() {
            writeln!(output, "{s}")?;
        }

        Ok(())
    }
}

#[cfg(test)]
mod tests {
    use pretty_assertions::assert_eq;

    use super::*;

    static REPORTS: &str = indoc::indoc! {r#"
        {"scope":{"Version":["cat/pkg-1-r2",null]},"kind":"DependencyDeprecated","message":"BDEPEND: cat/deprecated"}
        {"scope":{"Version":["cat/pkg-1-r2",{"line":3,"column":0}]},"kind":"WhitespaceUnneeded","message":"empty line"}
        {"scope":{"Version":["cat/pkg-1-r2",{"line":3,"column":28}]},"kind":"WhitespaceInvalid","message":"character '\\u{2001}'"}
        {"scope":{"Package":"cat/pkg"},"kind":"UnstableOnly","message":"arch"}
        {"scope":{"Category":"cat1"},"kind":"RepoCategoryEmpty","message":null}
        {"scope":{"Category":"cat2"},"kind":"RepoCategoryEmpty","message":null}
        {"scope":{"Repo":"repo1"},"kind":"LicensesUnused","message":"unused"}
    "#};

    fn report<R: Into<Reporter>>(reporter: R) -> String {
        let mut reporter = reporter.into();
        let reports = REPORTS.lines().map(|x| Report::from_json(x).unwrap());
        let mut output = anstream::AutoStream::never(Vec::new());

        for report in reports {
            reporter.report(&report, &mut output).unwrap();
        }
        reporter.finish(&mut output).unwrap();

        String::from_utf8(output.as_inner().to_vec()).unwrap()
    }

    #[test]
    fn count() {
        let output = report(CountReporter::default());
        assert_eq!("7", output.trim());
    }

    #[test]
    fn simple() {
        let expected = indoc::indoc! {r#"
            cat/pkg-1-r2: DependencyDeprecated: BDEPEND: cat/deprecated
            cat/pkg-1-r2, line 3: WhitespaceUnneeded: empty line
            cat/pkg-1-r2, line 3, column 28: WhitespaceInvalid: character '\u{2001}'
            cat/pkg: UnstableOnly: arch
            cat1/*: RepoCategoryEmpty
            cat2/*: RepoCategoryEmpty
            repo1: LicensesUnused: unused
        "#};

        let output = report(SimpleReporter);
        assert_eq!(expected, &output);
    }

    #[test]
    fn stats() {
        // sort by name
        let expected = indoc::indoc! {r#"
            DependencyDeprecated: 1
            LicensesUnused: 1
            RepoCategoryEmpty: 2
            UnstableOnly: 1
            WhitespaceInvalid: 1
            WhitespaceUnneeded: 1
        "#};
        let mut reporter = StatsReporter::default();
        let output = report(reporter.clone());
        assert_eq!(expected, &output);

        // sort by count
        let expected = indoc::indoc! {r#"
            DependencyDeprecated: 1
            LicensesUnused: 1
            UnstableOnly: 1
            WhitespaceInvalid: 1
            WhitespaceUnneeded: 1
            RepoCategoryEmpty: 2
        "#};
        reporter.sort_by = "count".to_string();
        let output = report(reporter.clone());
        assert_eq!(expected, &output);

        // sort by level
        let expected = indoc::indoc! {r#"
            DependencyDeprecated: 1
            LicensesUnused: 1
            RepoCategoryEmpty: 2
            WhitespaceInvalid: 1
            WhitespaceUnneeded: 1
            UnstableOnly: 1
        "#};
        reporter.sort_by = "level".to_string();
        let output = report(reporter.clone());
        assert_eq!(expected, &output);
    }

    #[test]
    fn fancy() {
        let expected = indoc::indoc! {r#"
            cat/pkg
              DependencyDeprecated: version 1-r2: BDEPEND: cat/deprecated
              WhitespaceUnneeded: version 1-r2, line 3: empty line
              WhitespaceInvalid: version 1-r2, line 3, column 28: character '\u{2001}'
              UnstableOnly: arch

            cat1/*
              RepoCategoryEmpty

            cat2/*
              RepoCategoryEmpty

            repo1
              LicensesUnused: unused
        "#};

        let output = report(FancyReporter::default());
        assert_eq!(expected, &output);
    }

    #[test]
    fn null() {
        let output = report(Reporter::Null);
        assert!(output.is_empty());
    }

    #[test]
    fn json() {
        let output = report(JsonReporter);
        assert_eq!(REPORTS, &output);
    }

    #[test]
    fn format() {
        let mut format_reporter = FormatReporter::default();

        // empty format string
        let output = report(format_reporter.clone());
        assert_eq!("", &output);

        // existing format strings
        let expected = indoc::indoc! {"
            DependencyDeprecated
            WhitespaceUnneeded
            WhitespaceInvalid
            UnstableOnly
            RepoCategoryEmpty
            RepoCategoryEmpty
            LicensesUnused
        "};
        format_reporter.format = "{name}".to_string();
        let output = report(format_reporter.clone());
        assert_eq!(expected, &output);
    }
}