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

fix(tests): improve test coverage #2221

Merged
merged 1 commit into from Sep 26, 2020
Merged

fix(tests): improve test coverage #2221

merged 1 commit into from Sep 26, 2020

Conversation

prymitive
Copy link
Owner

No description provided.

@prymitive
Copy link
Owner Author

Go benchmark diff

name                               old time/op        new time/op        delta
pkg:github.com/prymitive/karma/cmd/karma goos:linux goarch:amd64
Compress/Run-2                           4.91ms ± 1%        4.91ms ± 1%    ~     (p=0.579 n=10+10)
Decompress/Run-2                         3.29ms ± 2%        3.32ms ± 2%    ~     (p=0.105 n=10+10)
CompressionAndDecompression/Run-2        8.40ms ± 1%        8.78ms ± 1%  +4.59%  (p=0.000 n=10+10)
PullAlerts/0.19.0-2                      5.62ms ± 3%        5.62ms ± 2%    ~     (p=1.000 n=10+10)
AlertsAPIMisses/0.19.0-2                 1.30ms ± 1%        1.33ms ± 2%  +2.84%  (p=0.000 n=10+10)
AlertsAPIHits/0.19.0-2                    877µs ± 2%         892µs ± 6%    ~     (p=0.113 n=10+9)
pkg:github.com/prymitive/karma/internal/alertmanager goos:linux goarch:amd64
DedupAlerts/Run-2                         119µs ± 2%         118µs ± 1%    ~     (p=0.356 n=10+9)
DedupAutocomplete/Run-2                  54.9µs ± 2%        55.3µs ± 1%    ~     (p=0.052 n=10+10)
DedupColors/Run-2                        15.3µs ± 1%        15.4µs ± 1%    ~     (p=0.255 n=10+10)

name                               old %/compression  new %/compression  delta
pkg:github.com/prymitive/karma/cmd/karma goos:linux goarch:amd64
Compress/Run-2                             0.04 ± 0%          0.04 ± 0%    ~     (all equal)

name                               old B/alloc        new B/alloc        delta
pkg:github.com/prymitive/karma/cmd/karma goos:linux goarch:amd64
Compress/Run-2                            4.98M ± 0%         4.99M ± 0%  +0.05%  (p=0.000 n=9+9)
Decompress/Run-2                          3.09M ± 0%         3.10M ± 0%  +0.13%  (p=0.002 n=9+10)
CompressionAndDecompression/Run-2         4.99M ± 0%         4.99M ± 0%  +0.13%  (p=0.000 n=9+9)
PullAlerts/0.19.0-2                       3.05M ± 0%         3.05M ± 0%  +0.19%  (p=0.000 n=9+9)
AlertsAPIMisses/0.19.0-2                  3.45M ± 0%         3.45M ± 0%  +0.01%  (p=0.000 n=9+9)
AlertsAPIHits/0.19.0-2                    3.41M ± 0%         3.41M ± 0%  -0.04%  (p=0.000 n=9+9)

name                               old alloc/op       new alloc/op       delta
pkg:github.com/prymitive/karma/cmd/karma goos:linux goarch:amd64
Compress/Run-2                           1.13MB ± 0%        1.13MB ± 0%    ~     (all equal)
Decompress/Run-2                         4.24MB ± 0%        4.24MB ± 0%    ~     (p=0.370 n=10+10)
CompressionAndDecompression/Run-2        5.38MB ± 0%        5.38MB ± 0%    ~     (all equal)
PullAlerts/0.19.0-2                      1.27MB ± 0%        1.27MB ± 0%  +0.01%  (p=0.015 n=10+10)
AlertsAPIMisses/0.19.0-2                 1.29MB ± 0%        1.29MB ± 0%    ~     (p=0.393 n=10+10)
AlertsAPIHits/0.19.0-2                    317kB ± 1%         318kB ± 1%    ~     (p=0.063 n=10+10)
pkg:github.com/prymitive/karma/internal/alertmanager goos:linux goarch:amd64
DedupAlerts/Run-2                        73.7kB ± 0%        73.7kB ± 0%    ~     (p=0.396 n=10+10)
DedupAutocomplete/Run-2                  27.2kB ± 0%        27.2kB ± 0%    ~     (p=0.209 n=9+10)
DedupColors/Run-2                        7.36kB ± 0%        7.36kB ± 0%    ~     (p=0.173 n=9+10)

name                               old allocs/op      new allocs/op      delta
pkg:github.com/prymitive/karma/cmd/karma goos:linux goarch:amd64
Compress/Run-2                             31.0 ± 0%          31.0 ± 0%    ~     (all equal)
Decompress/Run-2                           80.0 ± 0%          80.0 ± 0%    ~     (all equal)
CompressionAndDecompression/Run-2           111 ± 0%           111 ± 0%    ~     (all equal)
PullAlerts/0.19.0-2                       22.5k ± 0%         22.5k ± 0%    ~     (all equal)
AlertsAPIMisses/0.19.0-2                  6.08k ± 0%         6.08k ± 0%    ~     (p=1.000 n=10+10)
AlertsAPIHits/0.19.0-2                    2.36k ± 0%         2.36k ± 0%    ~     (p=0.370 n=10+10)
pkg:github.com/prymitive/karma/internal/alertmanager goos:linux goarch:amd64
DedupAlerts/Run-2                           415 ± 0%           415 ± 0%    ~     (all equal)
DedupAutocomplete/Run-2                     114 ± 0%           114 ± 0%    ~     (all equal)
DedupColors/Run-2                          35.0 ± 0%          35.0 ± 0%    ~     (all equal)

@prymitive prymitive merged commit bb5a5a4 into master Sep 26, 2020
@prymitive prymitive deleted the tests branch September 26, 2020 18:19
@github-actions github-actions bot locked as resolved and limited conversation to collaborators Dec 4, 2020
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

1 participant