mirror of
https://github.com/tahoe-lafs/tahoe-lafs.git
synced 2024-12-20 05:28:04 +00:00
798bf57e28
This opens a wormhole and sends appropriate JSON down it to a tahoe-gui using a wormhole server running on tahoe-lafs.org The other end uses the 'tahoe create-node' command (with new --join option) to read the configuration JSON from a 'tahoe invite' command
50 lines
1.3 KiB
Python
50 lines
1.3 KiB
Python
import sys
|
|
from os.path import join
|
|
|
|
from twisted.internet import task
|
|
from twisted.internet.error import ProcessTerminated
|
|
|
|
import util
|
|
|
|
import pytest
|
|
|
|
|
|
@pytest.inlineCallbacks
|
|
def test_upload_immutable(reactor, temp_dir, introducer_furl, flog_gatherer, storage_nodes, request):
|
|
|
|
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,
|
|
)
|
|
|
|
|
|
node_dir = join(temp_dir, 'edna')
|
|
|
|
print("waiting 10 seconds unil we're maybe ready")
|
|
yield task.deferLater(reactor, 10, lambda: None)
|
|
|
|
# upload a file, which should fail because we have don't have 7
|
|
# storage servers (but happiness is set to 7)
|
|
proto = util._CollectOutputProtocol()
|
|
reactor.spawnProcess(
|
|
proto,
|
|
sys.executable,
|
|
[
|
|
sys.executable, '-m', 'allmydata.scripts.runner',
|
|
'-d', node_dir,
|
|
'put', __file__,
|
|
]
|
|
)
|
|
try:
|
|
yield proto.done
|
|
assert False, "should raise exception"
|
|
except Exception as e:
|
|
assert isinstance(e, ProcessTerminated)
|
|
|
|
output = proto.output.getvalue()
|
|
assert "shares could be placed on only" in output
|