-
-
Notifications
You must be signed in to change notification settings - Fork 376
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
Unserialize a SebastianBergmann\CodeCoverage\CodeCoverage object from a different format #874
Comments
I've been pondering this tonight while source diving. I've been trying to understand what role the driver and filter have once the data has been collected and is just being serialized. Forgive my ignorance if I'm asking questions that don't make sense or have obvious answers. Is the intention here to have a new JSON format, specific to this package which contains the data needed to instantiate a Can we define the JSON schema such that it has the data we need? Or is there a pre-existing standard JSON schema for the JSON serialized Suppose we're just defining our own schema that is internal for this package, would the desired API look something like:
$json = $codeCoverage->toJson();
$rehydratedCodeCoverage = CodeCoverage::fromJson($json);
such that |
No worries, your questions make sense.
Yes, but by now I would prefer to serialize from / unserialize to
I would prefer to have this in a separate object like so: final class ProcessedCodeCoverageDataMapper
{
public function toJson(ProcessedCodeCoverageData $data): string
{
}
public function fromJson(string $json): ProcessedCodeCoverageData
{
}
}
Yes, that would be the idea. |
Context: I would like to move the The |
Thanks for your clarifications! Yes, that all makes sense and I agree with the suggested approach. |
I spent 30 minutes just breaking some ground here trying to find a purchase on it, to drive out the behavior from some tests. I don't expect you to look but I thought I'd share in case you were interested or you think I'm not moving in a good direction. AndrewFeeney/php-code-coverage@main...implement_processed_code_coverage_data_mapper |
I've put in a PR as a first step towards resolving this issue here: #1028 |
From: #872 (comment)
It should be possible to unserialize a
SebastianBergmann\CodeCoverage\CodeCoverage
object from a different format (like JSON). This could be useful when you want to analyze code coverage aquired by a different way than usingSebastianBergmann\CodeCoverage\CodeCoverage
.At this moment it's only possible create a
SebastianBergmann\CodeCoverage\CodeCoverage
object by using aSebastianBergmann\CodeCoverage\Driver\Driver
or byunserialize()
-ing.I'm not sure if it's possible to change the signature of the
SebastianBergmann\CodeCoverage\CodeCoverage
constructor (by removing or making the driver argument optional). It seems that it's part of the API contract.Another solutions would be to create a Driverless
SebastianBergmann\CodeCoverage\CodeCoverage
class which is used by CodeCoverage (by using inheritance or composition).It might also be possible to inject data in the serialized string and
unserialize()
aSebastianBergmann\CodeCoverage\CodeCoverage
object from that (ieck!).The text was updated successfully, but these errors were encountered: