示例#1
0
 def test_long_hostname_matches(self):
     socket = FakeSocket('foo.example.org')
     assert backends.needs_ssh('foo.example.org', socket) is False
示例#2
0
 def test_fqdn_hostname_matches_short_hostname(self):
     socket = FakeSocket('foo', getfqdn='foo.example.org')
     assert backends.needs_ssh('foo.example.org', socket) is False
示例#3
0
 def test_local_hostname(self, hostname):
     assert backends.needs_ssh(hostname) is False
示例#4
0
 def test_hostname_does_not_match(self):
     socket = FakeSocket('foo')
     assert backends.needs_ssh('meh', socket) is True
示例#5
0
 def test_local_hostname(self, hostname):
     assert backends.needs_ssh(hostname) is False
示例#6
0
 def test_fqdn_hostname_matches_short_hostname(self):
     socket = FakeSocket('foo', getfqdn='foo.example.org')
     assert backends.needs_ssh('foo.example.org', socket) is False
示例#7
0
 def test_hostname_does_not_match(self):
     socket = FakeSocket('foo')
     assert backends.needs_ssh('meh', socket) is True
示例#8
0
 def test_long_hostname_matches(self):
     socket = FakeSocket('foo.example.org')
     assert backends.needs_ssh('foo.example.org', socket) is False