eyes_core 3.17.6 → 3.17.12
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/applitools/core/abstract_configuration.rb +6 -2
- data/lib/applitools/core/eyes_base.rb +0 -2
- data/lib/applitools/core/eyes_base_configuration.rb +14 -1
- data/lib/applitools/core/image_match_settings.rb +13 -1
- data/lib/applitools/core/match_window_data.rb +1 -1
- data/lib/applitools/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 49e2fc2ad1689f2affe7804c5d863027a2459d1bdc4f2a64394f9d0a5215f3b2
|
4
|
+
data.tar.gz: 209aea197b10dabd0c461622dbe548fc185572a8359eb59dc14acfa607edeb11
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 21a8fe311c21258adc0d75a18d7272609ab466a16ee55d1d3db7020d6d93b554c55a56ef72a5951a20f7b19ca2d6c3cafc892304c5ccaabb05c39aaf8873eb01
|
7
|
+
data.tar.gz: cbf5ebb40d5cc26442e6e289aac57f679d5966a6e9f8e778f6d53b13bdbcbf77b59a42fd9db7c63fbb4d68cf9b0bc3eaaf93e863630210cb87a6ad89c8c6c463
|
@@ -14,7 +14,11 @@ module Applitools
|
|
14
14
|
if self.class.respond_to? :default_config
|
15
15
|
default_config = self.class.default_config
|
16
16
|
default_config.keys.each do |k|
|
17
|
-
|
17
|
+
unless default_config[k].nil?
|
18
|
+
send "#{k}=", default_config[k].deep_clone if default_config[k].respond_to?(:deep_clone)
|
19
|
+
send "#{k}=", default_config[k].clone if default_config[k].respond_to?(:clone)
|
20
|
+
send "#{k}=", default_config[k].clone unless default_config[k].respond_to?(:clone) || default_config[k].respond_to?(:deep_clone)
|
21
|
+
end
|
18
22
|
end
|
19
23
|
end
|
20
24
|
end
|
@@ -24,7 +28,7 @@ module Applitools
|
|
24
28
|
config_keys.each do |k|
|
25
29
|
new_config.send(
|
26
30
|
"#{k}=", case value = send(k)
|
27
|
-
when Symbol, FalseClass, TrueClass, Integer, Float
|
31
|
+
when Symbol, FalseClass, TrueClass, Integer, Float, NilClass
|
28
32
|
value
|
29
33
|
else
|
30
34
|
value.clone
|
@@ -23,7 +23,6 @@ module Applitools
|
|
23
23
|
extend Forwardable
|
24
24
|
extend Applitools::Helpers
|
25
25
|
|
26
|
-
DEFAULT_MATCH_TIMEOUT = 2 # seconds
|
27
26
|
USE_DEFAULT_TIMEOUT = -1
|
28
27
|
|
29
28
|
SCREENSHOT_AS_IS = Applitools::EyesScreenshot::COORDINATE_TYPES[:screenshot_as_is].freeze
|
@@ -73,7 +72,6 @@ module Applitools
|
|
73
72
|
self.server_url = server_url if server_url
|
74
73
|
self.disabled = false
|
75
74
|
@viewport_size = nil
|
76
|
-
self.match_timeout = DEFAULT_MATCH_TIMEOUT
|
77
75
|
self.running_session = nil
|
78
76
|
self.save_new_tests = true
|
79
77
|
self.save_failed_tests = false
|
@@ -11,6 +11,8 @@ require 'applitools/core/image_match_settings'
|
|
11
11
|
|
12
12
|
module Applitools
|
13
13
|
class EyesBaseConfiguration < AbstractConfiguration
|
14
|
+
DEFAULT_MATCH_TIMEOUT = 2 # seconds
|
15
|
+
|
14
16
|
DEFAULT_CONFIG = {
|
15
17
|
branch_name: ENV['APPLITOOLS_BRANCH'],
|
16
18
|
parent_branch_name: ENV['APPLITOOLS_PARENT_BRANCH'],
|
@@ -22,7 +24,8 @@ module Applitools
|
|
22
24
|
save_new_tests: true,
|
23
25
|
default_match_settings: Applitools::ImageMatchSettings.new,
|
24
26
|
accessibility_validation: nil,
|
25
|
-
properties: []
|
27
|
+
properties: [],
|
28
|
+
match_timeout: DEFAULT_MATCH_TIMEOUT
|
26
29
|
}.freeze
|
27
30
|
|
28
31
|
class << self
|
@@ -111,8 +114,10 @@ module Applitools
|
|
111
114
|
int_field :scale
|
112
115
|
int_field :remainder
|
113
116
|
boolean_field :ignore_caret
|
117
|
+
boolean_field :ignore_displacements
|
114
118
|
object_field :accessibility_validation, Applitools::AccessibilitySettings, true
|
115
119
|
object_field :properties, Array
|
120
|
+
int_field :match_timeout
|
116
121
|
|
117
122
|
methods_to_delegate.delete(:batch_info)
|
118
123
|
methods_to_delegate.delete(:batch_info=)
|
@@ -141,6 +146,14 @@ module Applitools
|
|
141
146
|
default_match_settings.remainder = value
|
142
147
|
end
|
143
148
|
|
149
|
+
def custom_setter_for_ignore_displacements(value)
|
150
|
+
default_match_settings.ignore_displacements = value
|
151
|
+
end
|
152
|
+
|
153
|
+
def custom_getter_for_ignore_displacements(_value)
|
154
|
+
default_match_settings.ignore_displacements
|
155
|
+
end
|
156
|
+
|
144
157
|
def custom_getter_for_exact(_value)
|
145
158
|
default_match_settings.exact
|
146
159
|
end
|
@@ -39,7 +39,7 @@ module Applitools
|
|
39
39
|
cloned_value = self.class.new
|
40
40
|
self.class.json_methods.keys.each do |f|
|
41
41
|
new_value = case (v = send(f))
|
42
|
-
when Symbol, FalseClass, TrueClass, Integer, Float
|
42
|
+
when Symbol, FalseClass, TrueClass, Integer, Float, NilClass
|
43
43
|
v
|
44
44
|
else
|
45
45
|
v.clone
|
@@ -58,6 +58,18 @@ module Applitools
|
|
58
58
|
self.accessibility_settings = value
|
59
59
|
end
|
60
60
|
|
61
|
+
def ==(other)
|
62
|
+
return true if other.object_id == object_id
|
63
|
+
result = true
|
64
|
+
self.class.json_methods.keys.each do |f|
|
65
|
+
result = send(f) == other.send(f)
|
66
|
+
break unless result
|
67
|
+
end
|
68
|
+
result
|
69
|
+
end
|
70
|
+
|
71
|
+
alias deep_clone deep_dup
|
72
|
+
|
61
73
|
class Exact
|
62
74
|
include Applitools::Jsonable
|
63
75
|
json_fields :MinDiffIntensity, :MinDiffWidth, :MinDiffHeight, :MatchThreshold
|
@@ -68,7 +68,7 @@ module Applitools
|
|
68
68
|
@need_convert_content_regions_coordinates = false
|
69
69
|
@need_convert_layout_regions_coordinates = false
|
70
70
|
@need_convert_accessibility_regions_coordinates = false
|
71
|
-
self.default_image_match_settings = default_image_match_settings.
|
71
|
+
self.default_image_match_settings = default_image_match_settings.nil? ? Applitools::ImageMatchSettings.new : default_image_match_settings.deep_dup
|
72
72
|
end
|
73
73
|
|
74
74
|
def screenshot
|
data/lib/applitools/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: eyes_core
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.17.
|
4
|
+
version: 3.17.12
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Applitools Team
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2020-
|
11
|
+
date: 2020-07-02 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: oily_png
|