Coder Social home page Coder Social logo

Comments (3)

brendankenny avatar brendankenny commented on May 2, 2024 1

I've been looking over some of the equivalents of our architecture within catapult and I'm increasingly not sure here. At this point I don't know if we can plan a declarative tag structure that's sufficient to express all we'll need for our audits, as #61 (comment) anticipates. There's some evidence of this happening within catapult, with tacked on meta information where it looks (at first impression) like there were a few cases of "oh, we actually need to pipe one more thing through to evaluate this" happening :)

At this point I'd say I want us to avoid ending up writing an audits of audits layer here (and an audits of audits of audits layer...) until (and if) we really really need them, which means it's going to be hard to express categories with tags beyond ones that are scored with a simple combination of boolean states or subscores.

Sooo...barring a magical perf taxonomy handed to us on some stone tablets, maybe it's best to just avoid any architecture astronautism and continue with the more straightforward path we're on now. I could be very wrong on the above and tags will work just fine :) I think this will become increasingly clear one way or the other, and we just need to settle on something simple for now so we can continue with some auditing momentum:

Promise.resolve({
  rawValue: {}, // could be a primitive value or object, as long as it can easily be stringified and displayed, e.g. 'your score is bad because you wrote ${rawValue}'
  score: 0 // boolean or number
  tags: ['what have you'],
  description: 'whatnot',
  warning: 'some *specific* error value worth display, e.g. the location and nature of the syntax error you made' // the reporter can handle *general* feedback on how to fix, e.g. links to the docs,
  fault: 'some reason the audit has failed you, Anakin' // Optional argument when the audit doesn't cover whatever it is you're doing, e.g. we can't parse your particular corner case out of a trace yet. Whatever is in `rawValue` and `score` would be N/A in that case
});

After walking through some of catapult this afternoon, I feel like I have less insight here than I had before, so I'm interested in others' thoughts :)

from lighthouse.

paullewis avatar paullewis commented on May 2, 2024

Cool, we need to make sure that we know how to bubble up to the top-level category / tag. For example, if you fail a manifest audit, what does that say for its tags? What if the category has 10 audits, and you fail 1?

from lighthouse.

brendankenny avatar brendankenny commented on May 2, 2024

Where we currently are:

Promise.resolve({
  value: 0, // "score", in our current use. boolean or number
  rawValue: {}, // could be anything, as long as it can easily be stringified and displayed, e.g. 'your score is bad because you wrote ${rawValue}'
  debugString: 'some *specific* error string for helping the user figure out why they failed here' // e.g. 'your manifest 404ed'. The reporter can handle *general* feedback on how to fix, e.g. links to the docs
  name: 'audit-name',
  tags: ['what have you'],
  description: 'whatnot',
  fault: 'some reason the audit has failed you, Anakin' // Optional argument when the audit doesn't cover whatever it is you're doing, e.g. we can't parse your particular corner case out of a trace yet. Whatever is in `rawValue` and `score` would be N/A in that case
});

We don't handle fault yet.

type definition for Closure here: https://github.com/GoogleChrome/lighthouse/blob/b921dd975394198cedd013e32e7483c2d2542ee4/closure/typedefs/AuditResult.js

from lighthouse.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.