-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
#220: ensure that jira ticket has a video record with reproducing res…
…ults, LL accuracy.rb rule extension Fixed #220
- Loading branch information
Showing
2 changed files
with
105 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
# frozen_string_literal: true | ||
|
||
# The MIT License | ||
# | ||
# Copyright (c) 2019-2020 Yurii Dubinka | ||
# | ||
# Permission is hereby granted, free of charge, to any person obtaining a copy | ||
# of this software and associated documentation files (the "Software"), | ||
# to deal in the Software without restriction, including without limitation | ||
# the rights to use, copy, modify, merge, publish, distribute, sublicense, | ||
# and/or sell copies of the Software, and to permit persons to whom | ||
# the Software is furnished to do so, subject to the following conditions: | ||
# | ||
# The above copyright notice and this permission notice shall be included | ||
# in all copies or substantial portions of the Software. | ||
# | ||
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
# FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE | ||
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, | ||
# ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE | ||
# OR OTHER DEALINGS IN THE SOFTWARE. | ||
|
||
require_relative "attachment" | ||
|
||
module Lazylead | ||
# Check that ticket has video record(s) with reproducing results. | ||
class Records < Lazylead::Attachment | ||
def initialize(ext = []) | ||
super("Recorded internal reproducing results", 5, "Attachments") | ||
@ext = ext | ||
return unless @ext.empty? | ||
@ext = %w[.webm .mkv .flv .flv .vob .ogv .ogg .drc .gif .gifv .mng .avi | ||
.mts .m2ts .ts .mov .qt .wmv .yuv .rm .rmvb .viv .asf .amv .mp4 | ||
.m4p .m4v .mpg .mp2 .mpeg .mpe .mpv .mpg .mpeg .m2v .m4v .svi | ||
.3gp .3g2 .mxf .roq .nsv .flv .f4v .f4p .f4a .f4b] | ||
end | ||
|
||
# Ensure that ticket has an attachment with video-file extension | ||
def matching(attach) | ||
@ext.any? { |e| e.eql? File.extname(attach.attrs["filename"]).downcase } | ||
end | ||
end | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,60 @@ | ||
# frozen_string_literal: true | ||
|
||
# The MIT License | ||
# | ||
# Copyright (c) 2019-2020 Yurii Dubinka | ||
# | ||
# Permission is hereby granted, free of charge, to any person obtaining a copy | ||
# of this software and associated documentation files (the "Software"), | ||
# to deal in the Software without restriction, including without limitation | ||
# the rights to use, copy, modify, merge, publish, distribute, sublicense, | ||
# and/or sell copies of the Software, and to permit persons to whom | ||
# the Software is furnished to do so, subject to the following conditions: | ||
# | ||
# The above copyright notice and this permission notice shall be included | ||
# in all copies or substantial portions of the Software. | ||
# | ||
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
# FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE | ||
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, | ||
# ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE | ||
# OR OTHER DEALINGS IN THE SOFTWARE. | ||
|
||
require_relative "../../../test" | ||
require_relative "../../../../lib/lazylead/task/accuracy/records" | ||
|
||
module Lazylead | ||
class RecordsTest < Lazylead::Test | ||
test "file has .mp4 extension" do | ||
assert Records.new.passed( | ||
OpenStruct.new( | ||
attachments: [ | ||
OpenStruct.new(attrs: { "filename" => "failed case 1.mp4" }) | ||
] | ||
) | ||
) | ||
end | ||
|
||
test "file has .avi extension" do | ||
assert Records.new.passed( | ||
OpenStruct.new( | ||
attachments: [ | ||
OpenStruct.new(attrs: { "filename" => "failed case 2.avi" }) | ||
] | ||
) | ||
) | ||
end | ||
|
||
test "file has .txt extension" do | ||
refute Records.new.passed( | ||
OpenStruct.new( | ||
attachments: [ | ||
OpenStruct.new(attrs: { "filename" => "failed case 2.txt" }) | ||
] | ||
) | ||
) | ||
end | ||
end | ||
end |