eyes_core 3.17.9 → 3.17.14
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 +5 -1
- data/lib/applitools/core/eyes_base.rb +0 -2
- data/lib/applitools/core/eyes_base_configuration.rb +5 -1
- data/lib/applitools/core/image_match_settings.rb +12 -0
- data/lib/applitools/core/match_window_data.rb +4 -4
- 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: c5cca24264fb58a6b1a1fe700837232e9e6e65ad28d82e5de6b6cad10559dadf
         | 
| 4 | 
            +
              data.tar.gz: 4b2367546d65ebede44dce7b4c196097fdde673f6111f80ff35232346a3be85b
         | 
| 5 5 | 
             
            SHA512:
         | 
| 6 | 
            -
              metadata.gz:  | 
| 7 | 
            -
              data.tar.gz:  | 
| 6 | 
            +
              metadata.gz: 7b248b3d968dd6088bc01d3d0e271092443b855a5eeea9163e6de76c7d6810fa958948973217a23245f360df5dbab47df9f42c93aaba18cdbb9f633b7ae75ff2
         | 
| 7 | 
            +
              data.tar.gz: 75a92979658b98a8e4a88cc49311622ae3b9506f023ada15b34b127b77af624e804328de1f9012daac8dde465a59fc44d582dfd8692a99fa9d7e3a9fb4b041f0
         | 
| @@ -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
         | 
| @@ -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
         | 
| @@ -114,6 +117,7 @@ module Applitools | |
| 114 117 | 
             
                boolean_field :ignore_displacements
         | 
| 115 118 | 
             
                object_field :accessibility_validation, Applitools::AccessibilitySettings, true
         | 
| 116 119 | 
             
                object_field :properties, Array
         | 
| 120 | 
            +
                int_field :match_timeout
         | 
| 117 121 |  | 
| 118 122 | 
             
                methods_to_delegate.delete(:batch_info)
         | 
| 119 123 | 
             
                methods_to_delegate.delete(:batch_info=)
         | 
| @@ -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
         | 
| @@ -376,12 +376,12 @@ module Applitools | |
| 376 376 | 
             
                        Applitools::EyesScreenshot::COORDINATE_TYPES[:context_relative],
         | 
| 377 377 | 
             
                        Applitools::EyesScreenshot::COORDINATE_TYPES[:screenshot_as_is]
         | 
| 378 378 | 
             
                      )
         | 
| 379 | 
            -
             | 
| 379 | 
            +
             | 
| 380 380 | 
             
                      Applitools::FloatingRegion.new(
         | 
| 381 381 | 
             
                        updated_region.left,
         | 
| 382 382 | 
             
                        updated_region.top,
         | 
| 383 | 
            -
                         | 
| 384 | 
            -
                         | 
| 383 | 
            +
                        updated_region.width,
         | 
| 384 | 
            +
                        updated_region.height,
         | 
| 385 385 | 
             
                        r.max_left_offset,
         | 
| 386 386 | 
             
                        r.max_top_offset,
         | 
| 387 387 | 
             
                        r.max_right_offset,
         | 
    
        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.14
         | 
| 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-09 00:00:00.000000000 Z
         | 
| 12 12 | 
             
            dependencies:
         | 
| 13 13 | 
             
            - !ruby/object:Gem::Dependency
         | 
| 14 14 | 
             
              name: oily_png
         |