Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add option to skip statements that does not match any source root #165

Closed
pbatko opened this issue May 11, 2016 · 16 comments · Fixed by #180
Closed

Add option to skip statements that does not match any source root #165

pbatko opened this issue May 11, 2016 · 16 comments · Fixed by #180

Comments

@pbatko
Copy link
Contributor

pbatko commented May 11, 2016

Add configuration option not to fail on

throw new RuntimeException(s"No source root found for '$src' (source roots: $fmtSourcePaths)");

in https://github.com/scoverage/scalac-scoverage-plugin/blob/master/scalac-scoverage-plugin/src/main/scala/scoverage/report/BaseReportWriter.scala#L26
but skip these paths instead.

@pbatko
Copy link
Contributor Author

pbatko commented Jun 8, 2016

@sksamuel Any chance on this getting merged as well?

@pbatko
Copy link
Contributor Author

pbatko commented Jun 8, 2016

Thanks!

@pbatko
Copy link
Contributor Author

pbatko commented Jun 8, 2016

@sksamuel What is the expected time of the new release?

@gslowikowski
Copy link
Member

This is a workaround for #159 , right? Why are you applying it instead of fixing (merging that PR) the real issue?

@pbatko
Copy link
Contributor Author

pbatko commented Jun 8, 2016

Not sure, probably not. I had some problems with separate test project setup and this was the workaround for me.

@gslowikowski
Copy link
Member

Can you write more about it?

@pbatko
Copy link
Contributor Author

pbatko commented Jun 10, 2016

IIRC the $srcRoot was set to test project, but in the $src there were paths from both test and tested project.

@gslowikowski
Copy link
Member

Can you share sample project?

@gslowikowski
Copy link
Member

So? Who knows, what case is fixed by this?

@pbatko
Copy link
Contributor Author

pbatko commented Jun 21, 2016

I have configuration similar to this. (The approach from scoverage gradle examples didn't work)

    def testProject = ...
    def mainProject = ...

    testProject.scoverage {
      sources = mainProject.extensions.scoverage.sources
      dataDir = mainProject.extensions.scoverage.dataDir
      reportDir = mainProject.extensions.scoverage.reportDir
    }

    //based on org/scoverage/ScoverageExtension.groovy:69 from gradle-scoverage
    def mainSourceSet = testProject.sourceSets.scoverage {
      def original = mainProject.sourceSets.getByName(SourceSet.MAIN_SOURCE_SET_NAME)

      resources.source(original.resources)
      scala.source(original.java)
      scala.source(original.scala)

      compileClasspath += original.compileClasspath + testProject.configurations.scoverage
      runtimeClasspath = it.output + testProject.configurations.scoverage + mainProject.configurations.runtime
    }

    compileScoverageScala {
      onlyIf { false }
    }

    mainProject.testScoverage {
      onlyIf { false }
    }

    mainProject.reportScoverage {
      onlyIf { false }
    }

    mainProject.checkScoverage {
      onlyIf { false }
    }

@gslowikowski
Copy link
Member

I don't know Gradle.
Is this all to set mainProject's instrumented sources as sources in testProject? I suspect testProject depends on mainProject and contains tests for that project, right?

@pbatko
Copy link
Contributor Author

pbatko commented Jun 22, 2016

It's as you say. It's not the prettiest, but I wouldn't work without it.

@gslowikowski
Copy link
Member

@pbatko, I'm trying to merge your project snippet with Gradle sample and I have problems, since I don't know Gradle. Can you attach, or send me directly complete sample project?

At first sight, Gradle does not set source roots properly, but sets project's base directory as source root (SBT did the same before scoverage/sbt-scoverage@5575925). Do you know, how to fix it in the project?
Additionally, is this line OK, or should there be java.source(original.java)?

@pbatko
Copy link
Contributor Author

pbatko commented Jul 4, 2016

Sorry for late response.

In the snippet above, whole configuration should be wrapped with project('test-project'){...}

I guess setting source root to project's root was working, because later this path is used only to match source file prefix.. Gradle's equivalent to what's sbt plugins is doing would probably be something along these lines:
project.sourceSets.findAll{ true }.collectMany { it.scala.getSrcDirs() }

That line looks definitely suspicious.

@gslowikowski
Copy link
Member

@sksamuel, @pbatko

I tried to create a test project from the informations from @pbatko above and this test project, but I cannot merge these into one project, I don't know Gradle.

I asked @maiflai (the Gradle plugin author) for help. He suggests to open an issue in Gradle Scoverage plugin.

@gslowikowski
Copy link
Member

A side note. Gradle plugin does not support multiple source roots per project. This was introduced sometime ago (issue #104), but only in Maven and SBT plugins.

gslowikowski added a commit to gslowikowski/scalac-scoverage-plugin that referenced this issue Sep 17, 2016
These PRs fix scoverage#165.

It's unclear what the problem really is. Issue author has "No source root found for ${sourcepath}" exception in Gradle
project. We cannot reproduce the problem. This must be something with user's project configuration or a bug in Gradle plugin.

The two PRs were merged hastily all will be reverted.

@pbatko please provide test project and report problem in [Gradle Scoverage plugin](https://github.com/scoverage/gradle-scoverage/issues) first.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging a pull request may close this issue.

2 participants