Module: Selenium::WebDriver::Zipper Private

Defined in:
rb/lib/selenium/webdriver/common/zipper.rb

This module is part of a private API. You should avoid using this module if possible, as it may be removed or be changed in the future.

Constant Summary collapse

EXTENSIONS =

This constant is part of a private API. You should avoid using this constant if possible, as it may be removed or be changed in the future.

%w[.zip .xpi].freeze
RUBYZIP_V3 =

This constant is part of a private API. You should avoid using this constant if possible, as it may be removed or be changed in the future.

Zip::VERSION >= '3.0.0'

Class Method Summary collapse

Class Method Details

.unzip(path) ⇒ Object

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.



37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
# File 'rb/lib/selenium/webdriver/common/zipper.rb', line 37

def unzip(path)
  destination = Dir.mktmpdir('webdriver-unzip')
  FileReaper << destination

  Zip::File.open(path) do |zip|
    zip.each do |entry|
      to      = File.join(destination, entry.name)
      dirname = File.dirname(to)

      FileUtils.mkdir_p dirname
      if RUBYZIP_V3
        zip.extract(entry, entry.name, destination_directory: destination)
      else
        zip.extract(entry, to)
      end
    end
  end

  destination
end

.zip(path) ⇒ Object

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.



58
59
60
61
62
63
64
65
66
67
# File 'rb/lib/selenium/webdriver/common/zipper.rb', line 58

def zip(path)
  with_tmp_zip do |zip|
    ::Find.find(path) do |file|
      add_zip_entry zip, file, file.sub("#{path}/", '') unless File.directory?(file)
    end

    zip.commit
    File.open(zip.name, 'rb') { |io| Base64.strict_encode64 io.read }
  end
end

.zip_file(path) ⇒ Object

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.



69
70
71
72
73
74
75
76
# File 'rb/lib/selenium/webdriver/common/zipper.rb', line 69

def zip_file(path)
  with_tmp_zip do |zip|
    add_zip_entry zip, path, File.basename(path)

    zip.commit
    File.open(zip.name, 'rb') { |io| Base64.strict_encode64 io.read }
  end
end