tahoe-lafs/integration/test_servers_of_happiness.py

50 lines
1.2 KiB
Python
Raw Normal View History

2021-05-07 17:21:23 +00:00
"""
Ported to Python 3.
"""
import sys
2017-07-26 15:29:47 +00:00
from os.path import join
from os import environ
from . import util
2019-02-05 16:03:35 +00:00
import pytest_twisted
2019-02-05 16:03:35 +00:00
@pytest_twisted.inlineCallbacks
def test_upload_immutable(reactor, temp_dir, introducer_furl, flog_gatherer, storage_nodes, request):
2019-08-09 03:39:53 +00:00
edna = yield util._create_node(
reactor, request, temp_dir, introducer_furl, flog_gatherer, "edna",
web_port="tcp:9983:interface=localhost",
storage=False,
needed=3,
happy=7,
total=10,
)
yield util.await_client_ready(edna)
node_dir = join(temp_dir, 'edna')
# upload a file, which should fail because we have don't have 7
# storage servers (but happiness is set to 7)
proto = util._CollectOutputProtocol()
2017-07-26 15:29:47 +00:00
reactor.spawnProcess(
proto,
sys.executable,
[
sys.executable, '-b', '-m', 'allmydata.scripts.runner',
'-d', node_dir,
'put', __file__,
],
env=environ,
)
try:
yield proto.done
assert False, "should raise exception"
except util.ProcessFailed as e:
2022-07-27 16:23:34 +00:00
assert b"UploadUnhappinessError" in e.output
output = proto.output.getvalue()
2021-05-07 14:48:50 +00:00
assert b"shares could be placed on only" in output