forcedotcom / salesforcedx-apex

Salesforce Apex Node Library
BSD 3-Clause "New" or "Revised" License
18 stars 25 forks source link

"Always provide a classes, suites, tests, or testLevel property." when running `sfdx force:apex:test:run -l RunLocalTests` on a project with no tests #282

Open fransf-wtax opened 2 years ago

fransf-wtax commented 2 years ago

Summary

SFDX exits with the following error when running sfdx force:apex:test:run -l RunLocalTests on a project with no tests:

ERROR running force:apex:test:run: Always provide a classes, suites, tests, or testLevel property.

Since -l sets the testLevel property, the error message is wrong (testLevel was provided). In the case where there are no local tests and RunLocalTests is set as test level, the call should just complete without doing anything.

Steps To Reproduce:

  1. Run sfdx force:apex:test:run -l RunLocalTests in a DX project that has no tests, with the scratch org already created and set as the default username.

Expected result

All local tests are run (which is no tests in an org with no local tests).

Actual result

ERROR running force:apex:test:run:  Always provide a classes, suites, tests, or testLevel property.

error is returned.

System Information

{
    "cliVersion": "sfdx-cli/7.123.0",
    "architecture": "darwin-x64",
    "nodeVersion": "node-v14.18.1",
    "pluginVersions": [
        "@assisisolutions/sfdx-ci-plugin 1.0.1",
        "@oclif/plugin-autocomplete 0.3.0 (core)",
        "@oclif/plugin-commands 1.3.0 (core)",
        "@oclif/plugin-help 3.2.3 (core)",
        "@oclif/plugin-not-found 1.2.4 (core)",
        "@oclif/plugin-plugins 1.10.1 (core)",
        "@oclif/plugin-update 1.5.0 (core)",
        "@oclif/plugin-warn-if-update-available 1.7.0 (core)",
        "@oclif/plugin-which 1.0.3 (core)",
        "alias 1.1.22 (core)",
        "auth 1.7.3 (core)",
        "config 1.2.41 (core)",
        "generator 1.2.0 (core)",
        "salesforcedx 52.0.0",
        "├─ data 0.4.11",
        "├─ apex 0.2.2",
        "├─ schema 1.0.7",
        "├─ custom-metadata 1.0.12",
        "├─ templates 51.5.0",
        "├─ org 1.6.6",
        "├─ limits 1.2.1",
        "├─ user 1.3.0",
        "├─ salesforce-alm 52.0.0",
        "└─ @salesforce/sfdx-plugin-lwc-test 0.1.7",
        "sfdx-cli 7.123.0 (core)",
        "source 1.2.4 (core)",
        "telemetry 1.2.8 (core)",
        "texei-sfdx-plugin 1.11.1",
        "trust 1.0.8 (core)"
    ],
    "osVersion": "Darwin 19.6.0"
}

Additional information

N/A

github-actions[bot] commented 2 years ago

Thank you for filing this issue. We appreciate your feedback and will review the issue as soon as possible. Remember, however, that GitHub isn't a mechanism for receiving support under any agreement or SLA. If you require immediate assistance, contact Salesforce Customer Support.

mshanemc commented 2 years ago

please uninstall the salesforcedx plugin and try again. That makes a bunch of your CLI commands, including apex, out of date by months.

sfdx plugins:uninstall salesforcedx

fransf-wtax commented 2 years ago

OK, tried that but the result is the same.

However, I think the problem might be that the org I'm testing against has no local tests. So it might be a case of needing a clearer error message -- or just accepting the fact that in an org with no tests, running all local tests means running no tests, which is absolutely fine: if I ask you to give me all your Ferraris and you give me zero, that's probably because you don't have any Ferraris ;-)

I'll update the issue title and description.

WillieRuemmele commented 2 years ago

I'm transferring to the repo that tracks issues for all apex:* commands

randi274 commented 2 years ago

@fransf-wtax I was able to reproduce the error message, but can you provide us a little more detail as to why you would be running this command in an org without tests? (If I omit the -l parameter, I still encounter the issue!). That will help us figure out prioritizing this issue. I also am not finding this error in any of our extension or libraries, so I think this might be something that we're getting back upstream from Salesforce proper.

fransf-wtax commented 2 years ago

@randi274 Well in this case I thought the org had tests but it didn't. But the error message tells me I did something wrong on the command line (I didn't specify a test level, test suite, or list of tests) when in fact the "error", if you want to call it that, was that there were no (local) tests on the org. A good error message not only tells the user what's wrong, but also gives some indication as to how to fix it.

So I think it just avoids confusion when you tell the user what the actual problem is instead of confusing them by saying they need to specify a test level when they did specify a test level.

If I say rm bla on the command line, I get an error that says rm: bla: No such file or directory. It doesn't say rm: You have to specify a file to unlink. So I think it's reasonable to expect the same from the Salesforce CLI.

Hope this helps!

randi274 commented 2 years ago

Thanks for the additional information @fransf-wtax! @smaddox-sf this would be a product question on how we should handle it - this is an error message that we get back from core, so we could provide a check for orgs without tests, handle the error message more politely, or leave it as-is as a somewhat confusing message.