Sha256: 8e3cdf13c4bc2550bef6a5f340b97d9af35ad638fcdfdfd969fa629de964db10
Contents?: true
Size: 1.13 KB
Versions: 8
Compression:
Stored size: 1.13 KB
Contents
require 'test_helper' class NodeUnitTest < Test::Unit::TestCase context "A Node" do setup do @node = Node.new(:port => 11011, :tag => "nodule").instance_variable_get(:@instance) end should "set the identity of the Ruby instance" do assert CloudCrowd.node? end should "instantiate correctly" do assert @node.central.to_s == "http://localhost:9173" assert @node.port == 11011 assert @node.host == Socket.gethostname assert @node.enabled_actions.length > 2 assert @node.asset_store.is_a? AssetStore::FilesystemStore assert @node.tag == "nodule" end should "trap signals and launch a server at start" do Thin::Server.any_instance.expects(:start) @node.expects(:check_in) @node.start end should "be able to determine if the node is overloaded" do assert !@node.overloaded? @node.instance_variable_set :@max_load, 0.01 assert @node.overloaded? @node.instance_variable_set :@max_load, nil assert !@node.overloaded? @node.instance_variable_set :@min_memory, 8000 assert @node.overloaded? end end end
Version data entries
8 entries across 8 versions & 1 rubygems