Skip to content

Commit

Permalink
#220: ensure that jira ticket has a video record with reproducing res…
Browse files Browse the repository at this point in the history
…ults, LL accuracy.rb rule extension

Fixed #220
  • Loading branch information
dgroup committed Sep 20, 2020
1 parent ff0d253 commit e4cbdb5
Show file tree
Hide file tree
Showing 2 changed files with 105 additions and 0 deletions.
45 changes: 45 additions & 0 deletions lib/lazylead/task/accuracy/records.rb
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
60 changes: 60 additions & 0 deletions test/lazylead/task/accuracy/records_test.rb
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

0 comments on commit e4cbdb5

Please sign in to comment.