Giter VIP home page Giter VIP logo

Comments (7)

maks-rafalko avatar maks-rafalko commented on June 16, 2024

That's true. For this, we specifically has a feature to ignore mutants, see updated playground: https://infection-php.dev/r/p3xk

{
    "mutators": {
        "@default": true,
        "global-ignoreSourceCodeByRegex": [
            "assert\\(.*\\);"
        ]
    }
}

from infection.

mabar avatar mabar commented on June 16, 2024

@maks-rafalko Wouldn't it be better to ignore assert(true) by default? It just does not make sense at all to have it reported.
I don't know if it is possible to do that internally for specific rules (instanceof) or for assert(true) in general. So ignore it if it's not simple to do.
I am just looking for a way, to disable specific rules for specific statements, so I don't turn off rules that are unrelated to problem. Asserts generally should pass and I still want to know if there is something wrong with them.

from infection.

maks-rafalko avatar maks-rafalko commented on June 16, 2024

I don't know if it is possible to do that internally for specific rules (instanceof) or for assert(true) in general. So ignore it if it's not simple to do.

It's absolutely doable, and I agree we can ignore such mutation on Mutator level. If you want to help, please start here:

return $node instanceof Node\Expr\Instanceof_;

For now, just use ignoreSourceCodeByRegex - this will solve your issue

from infection.

sanmai avatar sanmai commented on June 16, 2024

I doubt it will be easy though. Infection doesn't come with a static analyzer so it can't tell if your assert() is a global method or a method imported from somewhere else.

from infection.

mabar avatar mabar commented on June 16, 2024

An alternative solution could be @infection-ignore instanceof. While not the perfect solution for this problem, it is much more versatile. I don't know much yet about infection internals, but it could be similar to @infection-ignore-all

from infection.

maks-rafalko avatar maks-rafalko commented on June 16, 2024

An alternative solution could be @infection-ignore instanceof.

while not the same, but we already have a feature on config level for ignoring globally or per-mutator: https://infection.github.io/guide/how-to.html#Do-not-mutate-the-source-code-matched-by-regular-expression

{
    "mutators": {
        "InstanceOf_": {
            "ignoreSourceCodeByRegex": [
                "assert\\(.*\\);"
            ]
        }
    }
}

I doubt it will be easy though. Infection doesn't come with a static analyzer so it can't tell if your assert() is a global method or a method imported from somewhere else.

don't think it's a problem to be honest. We don't check all the internal functions (array_map, etc.) whether they are native or from other package, but still mutate them. IMO it's ok to not mutate instanceof in any assert() function, be it native or not.

from infection.

maks-rafalko avatar maks-rafalko commented on June 16, 2024

Thank you for reporting, fixed

from infection.

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.