-
Notifications
You must be signed in to change notification settings - Fork 11
Full report on the stryker-dashboard #27
Comments
Current work on this in Stryker is tracked by stryker-mutator/stryker-js#1783 |
The implementation suggestion seems very hard coupled on git(hub) and ci/cd using travis. Things like reading environment variables don't really align with how I would build an azure devops pipeline. I'm not a fan of such implicit configuration and would prefer to implement the options explicitly in stryker-net. |
How about adding the I agree that it is some work to support all the CI providers, but it is also nice for users if it 'just works' out of the box. For example, setting the EDIT: you can also have a mechanism in place for pluggable CI providers and wait for PR's to implement them. That way you know to only support the one's you want. That's basically what we're doing with https://github.com/stryker-mutator/stryker/tree/master/packages/core/src/reporters/ci |
What I mean is that the proposal heavily expects that the dashboard reporter is only used from a buildserver, when I expect that currently most of our users do not use stryker-net on a buildserver. Another thing is that REPO_SLUG is very heavily tied to the way github repo's work and I for example have never used this term. If I came across this in stryker config I would have no idea what to actually do with it. The name seems to be used because currently we use github as the authentication provider so it makes sense. But if we support other types of customers in the future (eg, private projects from enterprise customers in azure devops) then this coupling does not make sense anymore. I would propose something more generic like project name and company name. I also don't really understand why the provider is neccesary. Something like this makes more sense to me: Eq: By binding on the github project structure and by binding on repositories so heavily the user loses a lot of flexibility in how they can organize their reporting. |
I a 'slug' is actually a thing that is used outside as well:
It wasn't my idea to tight it to anything. I just want a string to identify a repo that is url-safe. That's why I choose 'slug'. It is also more accurate than the "repository name", since the name can have non-url characters in it, but the slug cannot. For example: "Justice League" vs "justice-league". I've thought about it a lot. I just want one string that is unique for the repository. "Slug" was the name I came up with. It is used heavily in the dashboard. I don't want to name it differently everywhere. So: I'm open to suggestions, but not too open ;)
I think that is less generic. For example, gitlab already supports structuring your repo's, for example:
Why doesn't it make sense? The |
The point is that as a customer I don't necessarily want to couple my repo 'slug' and my project name together. As a user I do not care that you need url safe names, take care of it for me. I don't want to have my repository name in my url. I'm working on project x for company y. That's what the report is for, that's how I want my report to be available. I'm not talking about what it's called in the dashboard source code or in the API, that's fine no user cares about that it's an implementation detail. But from the user perspective it does not make sense to think in terms of what the place my code is hosted in calls parts of the url. A user might not know what a slug is and then won't understand what to put as the STRYKER_DASHBOARD_REPO_SLUG.
Let's say theoretically we have a tfs.rhea.infosupport.net or gitlab.rhea.infosupport.net, how do we support those customers? And, why do we care about the provider in the first place? As a customer, the provider has no relevance to my project, it is simply the place where I host my code. I understand that it is way simpler to be able to offload all organizational structure to github and this works perfectly fine for open source projects. But most closed-source projects will probably (imo) want to organize under some kind of organization structure similar to their company structure and not their scm tool structure. |
This is what Stryker and Stryker4s already do for the dashboard report. The repo slug is gathered without user input (as seen in Nico's linked code for Stryker above). That's how it's done for all variables except the api key. The suggested environment variable is purely if the user wants to override it.
I am not sure what your suggestion here is. In most cases the project you are working on will correspond to the repo name. There needs to be some sort of identifier, and the way to get it without user input is by using any identifiers of the project we can automatically get.
The provider is simply there so we can have a unique identifier for a project. There's a I feel like in general the dashboard reporter is indeed set up to be used from a build server, but if the user wants they can always add the environment variables themselves before running stryker, and it'll 'think' it is running on a build server (though there could be documentation for this). |
I never said without user input, I said if the name needs to be url safe fix that for me, but let me choose my own project name unrelated to what my repo is called
My suggestion is that the project name is not forced to be the repo name (and thus the config variable not be called REPO_SLUG)
But why is it called a provider and why is it linked to the tool that contains my source code? I don't organize my work around github or gitlab or azure devops, I organize my work around the people I work with, the team I work in or the company I work for. That is usually also unique.
Yes but why though? The api design does not need to make this assumption for the CI provider to be able to pick up the correct values. If the user doesn't choose anything and stryker can figure out that it's running on circleci and can request all the information from circleci sure. But as soon as I don't want that, it no longer makes sense to talk about providers and repo_slugs and the like. |
To mingle myself into this as well, I think @Mobrockers 's point is that a lot of these variables seem unnecessary. When we look at the dashboard in an abstract way, it can know from the API key what project the json belongs to. When producing the API key a project name and all other info that is needed for a unique identifier is already present. Since the API key itself is unique as well we would expect that this data is still available. At stryker-net we would like to push our json using an API key and possibly a version number (build number). This also opens the path to private repos as we don't have to know anything about the project itself. Users can just generate an API key and choose a slug themselves. Why do we need to provide the other variables as well from the client side? Does it have any benefits over getting them from the API key? |
TL;DR;I suggest the following changes:
If @richardwerkman, @hugo-vrijswijk and @Mobrockers agree I'll update the original issue with this new design. Long versionAh ok. I think I understand better where you're coming from. However, I don't like to only use an API key as an identifier. It's a security feature. It's also the way the dashboard already worked, I didn't want breaking changes. We're also thinking of allowing report uploads without an API key, so we definitely need an identifier that is not your API key. As for the name of the identifier, I agree that slug sounds strange. Also the fact that it needs to be configured via an env variable, while other settings do not. Maybe project is better? The value would have to include "github.com", so it would be "github.com/stryker-mutator/stryker" for example. I would suggest to configure it in stryker settings (or via build server env variables when it's missing). I was thinking of adding a As for the version, I think it does not make sense to configure that via settings, as different branches would need different versions, however it would make sence to be configured via a console argument (or buildserver env variable if the console argument is missing). Does this sound better? Is for tfs.rhea.infosupport.net or gitlab.rhea.infosupport.net, I was thinking of using the same naming strategy. For example: "gitlab.rhea.infosupport.net/kenniscentrum/kc-cli".
In organizations I worked at, the SCM structure always corresponded to the organization structure. For example "gitlab.internal-domain-name.wds/department/group/project/folder1/repo1.git" |
Yes, that addresses my concerns. I also agree that it doesn't make sense for the version to be set in config, I more meant that it would be nice to give the user the freedom to decide their versioning scheme instead of always using branch /commit. |
I've updated the design. Let me know if anything else needs fixing. |
Seems fine by me! |
Lgtm! Awesome :) |
I lllllike it! |
Ok. I'm implementing this in Stryker 👍 Thanks for the help. I think the design improved a lot from my 'straw man's syntax proposal' |
Added "'mutation score'-only reports.", see design in the first post |
Support having the full HTML report send to the stryker dashboard (https://dashboard.stryker-mutator.io). * Add `dashboard` options: * baseUrl * project * version * module * fullReport (true/false) * Updated ci providers (travis and circle ci are supported) See design: stryker-mutator/stryker-handbook#27
Guys, I'm thinking of making what you report configurable. Right now, the dashboard supports either a mutation score or a full report (see my update from yesterday). This is there for compatibility reasons, but I also think it is a nice feature to support. For example users that have really big projects (which might give problems when we're publishing the report), or users that are anxious about sending their source code might choose to not send a full report. I was first thinking of adding a boolean flag: What do you think? |
I've documented the user guide here: https://github.com/stryker-mutator/stryker-handbook/blob/master/dashboard.md It is still rough, needs to be improved. The idea is that you can refer to that page from your readme, instead of explaining the settings in each implementation. |
This is a setting on the implementation side not on the dashboard side right? |
Yes, It would add a |
I just had a nice talk with @Mobrockers. Right now, a mutation testing report has 2 options:
Would it be better to integrate the mutation-score-only report into mutation testing elements itself? So That way the dashboard can handle them both uniformly. It would also clean up the API, not enforcing users to add a wrapper object. It would also mean that the This would mean a new minor version of the schema, as well as some rework in the dashboard. Both are small changes IMO. It would be breaking for the dashboard API, so I would like to do that before we officially released it. @simondel @hugo-vrijswijk @richardwerkman thoughts? |
The json looks good to me! What if someone passes both "mutationscore" and "files"? What would the elements take as the source? |
Files will always have precedence. It would actually also help out with the coloring of the mutation score badge, since the thresholds could still be filled even if only a mutation score is known. If others also agree I'll update the design. EDIT: I've updated the design |
If mutation score only is supported in the schema, it would have to be changed everywhere. I'm not sure it really makes sense to have a html report with only a mutation score, for example. Same with the metrics. That means all of a sudden all the metrics are either nullable, or aren't fully compliant with the full json schema report |
Yeah, I see what you mean. It is essentially invalid to call I think it's better to implement it as an exception in the dashboard. However, I am happy to remove the top-level I'll update the design again, happy to hear additional remarks. |
I've implemented this in the dashboard stryker-mutator/stryker-dashboard#131 Will merge later today / this evening EDIT: You can view / test it out on acceptance: https://stryker-dashboard-acceptance.azurewebsites.net/ |
Comply to design: stryker-mutator/stryker-handbook#27 Report entity is either a full report or a mutation score only report. A full report is a merge between the identifying fields as well as the mutation test result. The mutation score only report is a merge between the identifying fields as well as '{ mutationScore: 42 }`
Support having the full HTML report send to the stryker dashboard (https://dashboard.stryker-mutator.io). See design: stryker-mutator/stryker-handbook#27 and https://github.com/stryker-mutator/stryker-handbook/blob/master/dashboard.md Changes: * Add `dashboard` options: `baseUrl`, `project`, `version`, `module` `reportType` (`'mutationScore'`/`'full'`). * Updated CI providers (travis and circle ci are supported) * Update `StrykerCli`: made it testable and written tests for it.
I changed one bit of the design. Apparently this URL: Is being routed (by Azure) to: Allowing Instead of assuming that the last part of the slug is the version, we now assume the first 3 parts of a slug is the project name, rest is the version. This might have to be reworked a bit once we allow non-github projects, but I think its worth the work. This is implemented in stryker-mutator/stryker-dashboard#132. This issue is updated. |
I believe this issue can now be closed? |
The stryker dashboard (https://dashboard.stryker-mutator.io) supports now hosts your full html report (although it is not fully advertised yet). We should implement this in Stryker, Stryker.NET and Stryker4s.
We can use this issue to discuss and align design choices across Stryker, Stryker.NET, and Stryker4s.
I'll keep this original post up to date with current design decisions.
Changelog
18-11
/
instead of%2F
.13-11
13-11
25-10
21-10
Request
You can send a report with an HTTP PUT request, like so:
Multiple results per
VERSION
are also supported using this url:$BASE_URL$/api/reports/$PROJECT$/$VERSION$?module=$MODULE_NAME$
A report can also contain only a "mutation score" (without the files and mutants). This way, you will have a mutation score badge, but no other information is stored. In that case, the
$REPORT_JSON$
should be in the format{ "mutationScore": 42 }
The variables here are:
BASE_URL
:https://dashboard.stryker-mutator.io
for production,https://stryker-dashboard-acceptance.azurewebsites.net/
for acceptancePROJECT
: The name registered with the dashboard. It is in the form ofgitProvider/organization/repository
. At the moment the dashboard backend only supportsgithub.com
as a git provider, but we will also supportgitlab.com
/bitbucket.org
, etc in the future. It can have an indefinite number of levels. Slashes (/
) in this name are not escaped. For examplegithub.com/stryker-mutator/stryker-net
.VERSION
: the version of the report. This should be filled with the branch name, git tag or git sha (although no validation is done). You can override a report of a specific version, like docker tags. Slashes in the version should not be encoded. For example, it's valid to use "feat/logging".API_KEY
: The API key that you retrieved by enabling the report on the dashboard.stryker-mutator.io website.REPORT_JSON
: A valid report according to the mutation testing report schema, or a mutation score only report in the form of{ "mutationScore": 42 }
MODULE
: Optional. If you want to store multiple reports for a version, you can use this value to separate them logically. For example, in a mono-repo setup where each package (or project or module) delivers a report.Reponse
The href you can communicate to the end-user.
Implementation suggestion
I think we should try to align on the implementation a bit. That way enabling stryker dashboard reports in your builds is the same across all implementations of Stryker. Current suggestion:
"dashboard"
to the"reporters"
configuration.dashboard.project
configuration key.dashboard.module
configuration key.dashboard.version
command-line variable. Configuration file might also be useful for consistency, but not encouraged as you will not be able to support different branches.dashboard.baseUrl
configuration key. It defaults to "https://dashboard.stryker-mutator.io".Open questions:
STRYKER_DASHBOARD_API_KEY
: Do we also want to provide it using a command-line variable?The text was updated successfully, but these errors were encountered: