# Copyright (c) 2018 Yegor Bugayenko # # 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 NONINFINGEMENT. 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 'minitest/autorun' require 'tmpdir' require 'webmock/minitest' require_relative '../test__helper' require_relative '../../lib/zold/version' require_relative '../../lib/zold/wallets' require_relative '../../lib/zold/remotes' require_relative '../../lib/zold/key' require_relative '../../lib/zold/log' require_relative '../../lib/zold/score' require_relative '../../lib/zold/commands/remote' # REMOTE test. # Author:: Yegor Bugayenko (yegor256@gmail.com) # Copyright:: Copyright (c) 2018 Yegor Bugayenko # License:: MIT class TestRemote < Minitest::Test def test_updates_remote Dir.mktmpdir 'test' do |dir| remotes = Zold::Remotes.new(File.join(dir, 'a/b/c/remotes')) zero = Zold::Score::ZERO stub_request(:get, "http://#{zero.host}:#{zero.port}/remotes").to_return( status: 200, body: { version: Zold::VERSION, score: zero.to_h, all: [ { host: 'localhost', port: 888 }, { host: 'localhost', port: 999 } ] }.to_json ) stub_request(:get, 'http://localhost:2/remotes').to_return( status: 404 ) stub_request(:get, 'http://localhost:888/remotes').to_return( status: 404 ) stub_request(:get, 'http://localhost:999/remotes').to_return( status: 404 ) cmd = Zold::Remote.new(remotes: remotes, log: test_log) cmd.run(%w[remote clean]) assert(remotes.all.empty?) cmd.run(['remote', 'add', zero.host, zero.port.to_s, '--skip-ping']) cmd.run(%w[remote add localhost 2 --skip-ping]) assert_equal(2, remotes.all.count) cmd.run(['remote', 'update', '--ignore-score-weakness', '--skip-ping']) assert_equal(4, remotes.all.count) end end def test_elects_a_remote Dir.mktmpdir 'test' do |dir| zero = Zold::Score::ZERO remotes = Zold::Remotes.new(File.join(dir, 'remotes.txt')) remotes.clean remotes.add(zero.host, zero.port) stub_request(:get, "http://#{zero.host}:#{zero.port}/").to_return( status: 200, body: { version: Zold::VERSION, score: zero.to_h }.to_json ) cmd = Zold::Remote.new(remotes: remotes, log: test_log) winners = cmd.run(%w[remote elect --ignore-score-value]) assert_equal(1, winners.count) end end def test_remote_trim_with_tolerate Dir.mktmpdir 'test' do |dir| remotes = Zold::Remotes.new(File.join(dir, 'remotes.txt')) zero = Zold::Score::ZERO stub_request(:get, "http://#{zero.host}:#{zero.port}/remotes").to_return( status: 200, body: { version: Zold::VERSION, score: zero.to_h, all: [ { host: 'localhost', port: 888 } ] }.to_json ) stub_request(:get, 'http://localhost:888/remotes').to_return( status: 404 ) cmd = Zold::Remote.new(remotes: remotes, log: test_log) cmd.run(%w[remote clean]) assert(remotes.all.empty?) cmd.run(['remote', 'add', zero.host, zero.port.to_s, '--skip-ping']) cmd.run(%w[remote add localhost 888 --skip-ping]) cmd.run(['remote', 'update', '--ignore-score-weakness']) cmd.run(['remote', 'trim', '--tolerate=0']) assert_equal(1, remotes.all.count) end end end