diff --git a/.coveragerc b/.coveragerc new file mode 100644 index 00000000..06291ee3 --- /dev/null +++ b/.coveragerc @@ -0,0 +1,10 @@ +[run] +omit = stor/stor/tests/test_posix_path_compat.py,stor/stor/tests/test_integration.py,stor/stor/third_party/backoff.py,stor_dx/stor_dx/tests/test_integration_dx.py,stor_s3/stor_s3/tests/test_integration_s3.py,stor_swift/stor_swift/tests/test_integration_swift.py + +[report] +exclude_lines = + # Have to re-enable the standard pragma + pragma: no cover + raise NotImplementedError +show_missing=1 +fail_under=100 diff --git a/.gitignore b/.gitignore index 5cb9b068..1b978a61 100644 --- a/.gitignore +++ b/.gitignore @@ -6,12 +6,17 @@ *.orig *.DS_Store .tox +stor*/*.egg-info/* +stor*/.eggs/ +.*cache/ +stor*/.*cache/ *.egg/* .eggs/ *.egg-info/* +stor*/build/* build/* docs/_build/* -dist/* +stor*/dist/* *.log nosetests*.xml diff --git a/Makefile b/Makefile index f773055e..97808c91 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,6 @@ # Makefile utilities for running tests and publishing the package -PACKAGE_NAME=stor +PACKAGE_NAMES:=stor/ stor_dx/ stor_swift/ stor_s3/ TEST_OUTPUT?=nosetests.xml PIP_INDEX_URL=https://pypi.python.org/simple/ PYTHON?=$(shell which python) @@ -13,7 +13,7 @@ endif .PHONY: default default: - python setup.py check build + cd stor; python setup.py check build; cd .. VENV_DIR?=.venv VENV_ACTIVATE=$(VENV_DIR)/bin/activate @@ -23,42 +23,44 @@ WITH_PBR=$(WITH_VENV) PBR_REQUIREMENTS_FILES=requirements-pbr.txt .PHONY: venv venv: $(VENV_ACTIVATE) -$(VENV_ACTIVATE): requirements*.txt +$(VENV_ACTIVATE): stor*/requirements*.txt test -f $@ || virtualenv --python=$(PYTHON) $(VENV_DIR) $(WITH_VENV) echo "Within venv, running $$(python --version)" - $(WITH_VENV) pip install -r requirements-setup.txt --index-url=${PIP_INDEX_URL} - $(WITH_VENV) pip install -e . --index-url=${PIP_INDEX_URL} - $(WITH_VENV) pip install -r requirements-dev.txt --index-url=${PIP_INDEX_URL} - $(WITH_VENV) pip install -r requirements-docs.txt --index-url=${PIP_INDEX_URL} + $(WITH_VENV) pip install -r stor/requirements-setup.txt --index-url=${PIP_INDEX_URL} + $(WITH_VENV) ./run_all.sh 'pip install -e . --index-url=${PIP_INDEX_URL}' $(PACKAGE_NAMES) + $(WITH_VENV) pip install -r stor/requirements-dev.txt --index-url=${PIP_INDEX_URL} + $(WITH_VENV) pip install -r stor/requirements-docs.txt --index-url=${PIP_INDEX_URL} touch $@ develop: venv - $(WITH_VENV) python setup.py develop + $(WITH_VENV) ./run_all.sh 'python setup.py develop' $(PACKAGE_NAMES) .PHONY: docs docs: venv clean-docs $(WITH_VENV) cd docs && make html - .PHONY: setup setup: ##[setup] Run an arbitrary setup.py command setup: venv ifdef ARGS - $(WITH_PBR) python setup.py ${ARGS} + $(WITH_PBR) ./run_all.sh 'python setup.py ${ARGS}' $(PACKAGE_NAMES) else @echo "Won't run 'python setup.py ${ARGS}' without ARGS set." endif .PHONY: clean clean: - $(PYTHON) setup.py clean - rm -rf build/ - rm -rf dist/ - rm -rf *.egg*/ + ./run_all.sh '$(PYTHON) setup.py clean' $(PACKAGE_NAMES) rm -rf __pycache__/ + rm -rf .*cache/ + rm -rf *.egg*/ + ./run_all.sh 'rm -rf dist/' $(PACKAGE_NAMES) + ./run_all.sh 'rm -rf build/' $(PACKAGE_NAMES) + ./run_all.sh 'rm -rf __pycache__/' $(PACKAGE_NAMES) + ./run_all.sh 'rm -rf .*cache/' $(PACKAGE_NAMES) rm -f MANIFEST rm -f $(TEST_OUTPUT) - find $(PACKAGE_NAME) -type f -name '*.pyc' -delete + ./run_all.sh 'find . -type f -name '*.pyc' -delete' $(PACKAGE_NAMES) rm -rf nosetests* "${TEST_OUTPUT}" coverage .coverage @@ -73,7 +75,7 @@ teardown: .PHONY: lint lint: venv - $(WITH_VENV) flake8 $(PACKAGE_NAME)/ + $(WITH_VENV) flake8 $(PACKAGE_NAMES) .PHONY: unit-test unit-test: venv @@ -100,13 +102,13 @@ endif travis-test: venv $(WITH_VENV) \ coverage erase; \ - coverage run setup.py test; \ + ./run_all.sh 'coverage run setup.py test' $(PACKAGE_NAMES); \ status=$$?; \ coverage report && exit $$status; # Distribution -VERSION=$(shell $(WITH_PBR) python setup.py --version | sed 's/\([0-9]*\.[0-9]*\.[0-9]*\).*$$/\1/') +VERSION=$(cd stor; shell $(WITH_PBR) python setup.py --version | sed 's/\([0-9]*\.[0-9]*\.[0-9]*\).*$$/\1/'; cd ..) .PHONY: tag tag: ##[distribution] Tag the release. diff --git a/docs/dx.rst b/docs/dx.rst index 06ff223b..1de06d4c 100644 --- a/docs/dx.rst +++ b/docs/dx.rst @@ -164,7 +164,7 @@ a folder or a file (i.e., `DXPath.listdir` will assume folder, `DXPath.stat` wil DXPath ------- -.. automodule:: stor.dx +.. automodule:: stor_dx.dx :members: Copy and copytree by example diff --git a/docs/s3.rst b/docs/s3.rst index dca826ba..2aeef381 100644 --- a/docs/s3.rst +++ b/docs/s3.rst @@ -3,5 +3,5 @@ S3 == -.. automodule:: stor.s3 +.. automodule:: stor_s3.s3 :members: \ No newline at end of file diff --git a/docs/settings.rst b/docs/settings.rst index 793a4e34..f9554cb7 100644 --- a/docs/settings.rst +++ b/docs/settings.rst @@ -47,7 +47,7 @@ Settings can be configured in the following ways in order of precedence: Default Settings ---------------- -.. literalinclude:: ../stor/default.cfg +.. literalinclude:: ../stor/stor/default.cfg Settings API ------------ diff --git a/docs/swift.rst b/docs/swift.rst index 56d68be0..7a5282ed 100644 --- a/docs/swift.rst +++ b/docs/swift.rst @@ -1,4 +1,4 @@ -.. module:: stor.swift +.. module:: stor_swift.swift .. _swift: diff --git a/docs/testing.rst b/docs/testing.rst index 593e1c60..be1f4797 100644 --- a/docs/testing.rst +++ b/docs/testing.rst @@ -2,12 +2,23 @@ Testing ======= -Stor provides a test case to use when testing against Swift storage. It also +Stor provides a test case to use when testing against OBS storage. It also provides a mixin class that can be used when creating other base test classes -.. automodule:: stor.test -.. autoclass:: stor.test.SwiftTestMixin +.. autoclass:: stor_swift.test.SwiftTestMixin :members: -.. autoclass:: stor.test.SwiftTestCase +.. autoclass:: stor_swift.test.SwiftTestCase + :members: + +.. autoclass:: stor_s3.test.S3TestMixin + :members: + +.. autoclass:: stor_s3.test.S3TestCase + :members: + +.. autoclass:: stor_dx.test.DXTestMixin + :members: + +.. autoclass:: stor_dx.test.DXTestCase :members: diff --git a/requirements.txt b/requirements.txt deleted file mode 100644 index 4f88e4f6..00000000 --- a/requirements.txt +++ /dev/null @@ -1,10 +0,0 @@ -# have to explicitly ban certain requests versions to match keystoneauth1 package -requests!=2.12.2,!=2.13.0,>=2.10.0 -boto3>=1.4.0 -cached-property -contextlib2 -dxpy>=0.265.0; python_version <= '2.7' -dxpy3; python_version > '3.0' -python-keystoneclient>=1.8.1 -python-swiftclient -six diff --git a/run_all.sh b/run_all.sh new file mode 100755 index 00000000..72154362 --- /dev/null +++ b/run_all.sh @@ -0,0 +1,8 @@ +#!/usr/bin/env bash + +CMD=$1 +shift +DIRS=$* +for directory in $DIRS; do + cd $directory; ${CMD}; cd .. +done \ No newline at end of file diff --git a/setup.py b/setup.py index e74f898b..e69de29b 100644 --- a/setup.py +++ b/setup.py @@ -1,6 +0,0 @@ -from setuptools import setup - -setup( - pbr=True, - setup_requires=['pbr'], -) diff --git a/README.rst b/stor/README.rst similarity index 100% rename from README.rst rename to stor/README.rst diff --git a/requirements-dev.txt b/stor/requirements-dev.txt similarity index 100% rename from requirements-dev.txt rename to stor/requirements-dev.txt diff --git a/requirements-docs.txt b/stor/requirements-docs.txt similarity index 100% rename from requirements-docs.txt rename to stor/requirements-docs.txt diff --git a/requirements-setup.txt b/stor/requirements-setup.txt similarity index 100% rename from requirements-setup.txt rename to stor/requirements-setup.txt diff --git a/stor/requirements.txt b/stor/requirements.txt new file mode 100644 index 00000000..77d9f404 --- /dev/null +++ b/stor/requirements.txt @@ -0,0 +1,4 @@ +# have to explicitly ban certain requests versions to match keystoneauth1 package for swift +requests!=2.12.2,!=2.13.0,>=2.10.0 +six +python-swiftclient \ No newline at end of file diff --git a/setup.cfg b/stor/setup.cfg similarity index 70% rename from setup.cfg rename to stor/setup.cfg index 1c5f986b..45f344d4 100644 --- a/setup.cfg +++ b/stor/setup.cfg @@ -20,19 +20,6 @@ classifier = Development Status :: 5 - Production/Stable Operating System :: OS Independent -[coverage:run] -branch = True -source = stor -omit = stor/tests/test_posix_path_compat.py,stor/tests/test_integration_swift.py,stor/tests/test_integration_s3.py,stor/tests/test_integration.py,stor/third_party/backoff.py,stor/tests/test_integration_dx.py - -[coverage:report] -exclude_lines = - # Have to re-enable the standard pragma - pragma: no cover - raise NotImplementedError -fail_under = 100 -show_missing = 1 - [files] packages = stor scripts = stor/stor-completion.bash diff --git a/stor/setup.py b/stor/setup.py new file mode 100644 index 00000000..e74f898b --- /dev/null +++ b/stor/setup.py @@ -0,0 +1,6 @@ +from setuptools import setup + +setup( + pbr=True, + setup_requires=['pbr'], +) diff --git a/stor/__init__.py b/stor/stor/__init__.py similarity index 96% rename from stor/__init__.py rename to stor/stor/__init__.py index 589885d5..7219ca1c 100644 --- a/stor/__init__.py +++ b/stor/stor/__init__.py @@ -18,14 +18,13 @@ modified to avoid the need to know whether you have a Path or a string for most functions. -See `stor.swift` for more information on Swift-specific functionality. +See `stor_swift.swift` for more information on Swift-specific functionality. """ import pkg_resources from stor.utils import copy from stor.utils import copytree from stor.utils import is_filesystem_path -from stor.utils import is_swift_path from stor.utils import is_obs_path from stor.utils import NamedTemporaryDirectory from stor.base import Path @@ -51,6 +50,7 @@ def wrapper(path, *args, **kwargs): wrapper.__name__ = name return wrapper + # extra compat! open = _delegate_to_path('open') abspath = _delegate_to_path('abspath') @@ -118,7 +118,6 @@ def glob(pth, pattern): # pragma: no cover 'rmtree', 'walkfiles', 'is_filesystem_path', - 'is_swift_path', 'is_obs_path', 'NamedTemporaryDirectory', ] diff --git a/stor/base.py b/stor/stor/base.py similarity index 93% rename from stor/base.py rename to stor/stor/base.py index 813afa76..a7150467 100644 --- a/stor/base.py +++ b/stor/stor/base.py @@ -1,8 +1,10 @@ import errno import fnmatch import glob -import os +import logging import ntpath +import os +import pkg_resources import posixpath import shutil import sys @@ -14,7 +16,32 @@ from six import PY3 from stor import utils -import six + + +logger = logging.getLogger(__name__) + + +def get_modules(): + modules = {} + for entry_point in pkg_resources.iter_entry_points('stor.providers'): + try: + modules.update({entry_point.name: entry_point.load()}) + except pkg_resources.DistributionNotFound as e: # pragma: no cover + from stor import exceptions + print('Ignoring {entry_point} module as the requirement(s) ' + 'for the module are not installed'.format(entry_point=entry_point.name)) + pass + return modules + + +def find_cls_for_path(path): + module_map = get_modules() + for k, v in module_map.items(): + if path.startswith(k + '://'): + cls, pth = v(k, path) + if cls: + return cls, pth + return None, None class TreeWalkWarning(Warning): @@ -45,26 +72,23 @@ def __new__(cls, path): if cls is Path: if not hasattr(path, 'startswith'): raise TypeError('must be a string like') - if utils.is_dx_path(path): - cls = utils.find_dx_class(path) - elif utils.is_swift_path(path): - from stor.swift import SwiftPath - - cls = SwiftPath - elif utils.is_s3_path(path): - from stor.s3 import S3Path - - cls = S3Path - elif os.path == ntpath: - from stor.windows import WindowsPath - - cls = WindowsPath - elif os.path == posixpath: - from stor.posix import PosixPath - - cls = PosixPath - else: # pragma: no cover - assert False, 'path is not compatible with stor' + cls, new_p = find_cls_for_path(path) + if cls is None: + if os.path == ntpath: + from stor.windows import WindowsPath + + cls = WindowsPath + elif os.path == posixpath: + from stor.posix import PosixPath + + cls = PosixPath + else: # pragma: no cover + assert False, 'path is not compatible with stor' + else: + if path != new_p: # pragma: no cover + path = new_p + cls.path_converted = True + cls.new_path = new_p return text_type.__new__(cls, path) def __init__(self, path): diff --git a/stor/cli.py b/stor/stor/cli.py similarity index 98% rename from stor/cli.py rename to stor/stor/cli.py index 8f36200a..3848c3ce 100644 --- a/stor/cli.py +++ b/stor/stor/cli.py @@ -277,7 +277,7 @@ def get_path(pth, mode=None): def _wrapped_list(path, **kwargs): """Use iterative walkfiles for DX paths, rather than trying to generate full list first""" - if utils.is_dx_path(path): + if path.startswith('dx://'): func = stor.walkfiles else: func = stor.list @@ -292,12 +292,12 @@ def _to_url(path): def _convert_swiftstack(path, bucket=None): path = stor.Path(path) - if utils.is_swift_path(path): + if path.startswith('swift://'): if not bucket: # TODO (jtratner): print help here raise ValueError('--bucket is required for swift paths') return swiftstack.swift_to_s3(path, bucket=bucket) - elif utils.is_s3_path(path): + elif path.startswith('s3://'): return swiftstack.s3_to_swift(path) else: raise ValueError("invalid path for conversion: '%s'" % path) @@ -465,13 +465,13 @@ def print_results(results): def main(): handler = logging.StreamHandler(sys.stdout) handler.setLevel(logging.INFO) - s3_logger = logging.getLogger('stor.s3.progress') + s3_logger = logging.getLogger('stor_s3.s3.progress') s3_logger.setLevel(logging.INFO) s3_logger.addHandler(handler) - swift_logger = logging.getLogger('stor.swift.progress') + swift_logger = logging.getLogger('stor_swift.swift.progress') swift_logger.setLevel(logging.INFO) swift_logger.addHandler(handler) - dx_logger = logging.getLogger('stor.dx.progress') + dx_logger = logging.getLogger('stor_dx.dx.progress') dx_logger.setLevel(logging.INFO) dx_logger.addHandler(handler) diff --git a/stor/default.cfg b/stor/stor/default.cfg similarity index 100% rename from stor/default.cfg rename to stor/stor/default.cfg diff --git a/stor/default.env b/stor/stor/default.env similarity index 100% rename from stor/default.env rename to stor/stor/default.env diff --git a/stor/exceptions.py b/stor/stor/exceptions.py similarity index 100% rename from stor/exceptions.py rename to stor/stor/exceptions.py diff --git a/stor/extensions/__init__.py b/stor/stor/extensions/__init__.py similarity index 100% rename from stor/extensions/__init__.py rename to stor/stor/extensions/__init__.py diff --git a/stor/extensions/swiftstack.py b/stor/stor/extensions/swiftstack.py similarity index 100% rename from stor/extensions/swiftstack.py rename to stor/stor/extensions/swiftstack.py diff --git a/stor/obs.py b/stor/stor/obs.py similarity index 92% rename from stor/obs.py rename to stor/stor/obs.py index 977833f6..c3e49aa1 100644 --- a/stor/obs.py +++ b/stor/stor/obs.py @@ -2,15 +2,12 @@ import posixpath import sys -import dxpy import six from swiftclient.service import SwiftError from swiftclient.service import SwiftUploadObject from stor.base import Path from stor.posix import PosixPath -from stor import utils -import stor def _delegate_to_buffer(attr_name, valid_modes=None): @@ -69,13 +66,13 @@ def __init__(self, pth): can be any of s3 or swift. The ``(drive)://`` prefix is required in the path. """ + if hasattr(self, 'path_converted') and self.path_converted \ + and hasattr(self, 'new_path'): # pragma: no cover + pth = self.new_path if not hasattr(pth, 'startswith') or not pth.startswith(self.drive): raise ValueError('path must have %s (got %r)' % (self.drive, pth)) return super(OBSPath, self).__init__(pth) - copy = utils.copy - copytree = utils.copytree - def dirname(self): """ Return the directory name of self. @@ -166,10 +163,6 @@ def open(self, mode='r', encoding=None): DNAnexusError: A dxpy client error occured. RemoteError: A s3 client error occurred. """ - if six.PY3 and encoding and encoding not in ('utf-8', 'utf8') and \ - isinstance(self, stor.dx.DXPath): # pragma: no cover - raise ValueError('For DNAnexus paths in Python 3, encoding is always assumed to be ' - 'utf-8. Please switch your encoding or Python version') return OBSFile(self, mode=mode, encoding=encoding) def list(self): @@ -452,23 +445,6 @@ def close(self): self.flush() self._buffer.close() self.closed = True - # we want to wait_on_close on DXPath only if no error was thrown while writing the file - if not any(sys.exc_info()): # pragma: no cover - self._wait_on_close() - - def _wait_on_close(self): - if isinstance(self._path, stor.dx.DXPath): - wait_on_close = stor.settings.get()['dx']['wait_on_close'] - if wait_on_close: - with stor.dx._wrap_dx_calls(): - f = dxpy.DXFile(dxid=self._path.canonical_resource, - project=self._path.canonical_project) - try: - f.wait_on_close(wait_on_close) - # ignore timeout because we want client code to deal with it - except dxpy.DXError as e: # pragma: no cover - if 'timeout' not in str(e): - raise def flush(self): """Flushes the write buffer to the OBS path (if it exists)""" diff --git a/stor/posix.py b/stor/stor/posix.py similarity index 100% rename from stor/posix.py rename to stor/stor/posix.py diff --git a/stor/settings.py b/stor/stor/settings.py similarity index 100% rename from stor/settings.py rename to stor/stor/settings.py diff --git a/stor/stor-completion.bash b/stor/stor/stor-completion.bash similarity index 100% rename from stor/stor-completion.bash rename to stor/stor/stor-completion.bash diff --git a/stor/tests/__init__.py b/stor/stor/tests/__init__.py similarity index 100% rename from stor/tests/__init__.py rename to stor/stor/tests/__init__.py diff --git a/stor/tests/file_data/s_3_2126.bcl.gz b/stor/stor/tests/file_data/s_3_2126.bcl.gz similarity index 100% rename from stor/tests/file_data/s_3_2126.bcl.gz rename to stor/stor/tests/file_data/s_3_2126.bcl.gz diff --git a/stor/tests/file_data/test.cfg b/stor/stor/tests/file_data/test.cfg similarity index 100% rename from stor/tests/file_data/test.cfg rename to stor/stor/tests/file_data/test.cfg diff --git a/stor/tests/shared.py b/stor/stor/tests/shared.py similarity index 100% rename from stor/tests/shared.py rename to stor/stor/tests/shared.py diff --git a/stor/tests/shared_obs.py b/stor/stor/tests/shared_obs.py similarity index 100% rename from stor/tests/shared_obs.py rename to stor/stor/tests/shared_obs.py diff --git a/stor/tests/swift_upload/data_dir/file2 b/stor/stor/tests/swift_upload/data_dir/file2 similarity index 100% rename from stor/tests/swift_upload/data_dir/file2 rename to stor/stor/tests/swift_upload/data_dir/file2 diff --git a/stor/tests/swift_upload/file1 b/stor/stor/tests/swift_upload/file1 similarity index 100% rename from stor/tests/swift_upload/file1 rename to stor/stor/tests/swift_upload/file1 diff --git a/stor/stor/tests/test_cli.py b/stor/stor/tests/test_cli.py new file mode 100644 index 00000000..4691c02d --- /dev/null +++ b/stor/stor/tests/test_cli.py @@ -0,0 +1,285 @@ +from __future__ import print_function + +import contextlib +import os +import mock +import sys +import unittest +from tempfile import NamedTemporaryFile + +import six + +from stor.posix import PosixPath +from stor import cli +from stor import settings + + +class BaseCliTest(unittest.TestCase): + def setUp(self): + patcher = mock.patch.object(sys, 'stdout', six.StringIO()) + self.addCleanup(patcher.stop) + patcher.start() + + @contextlib.contextmanager + def assertOutputMatches(self, exit_status=None, stdout='', stderr=''): + patch = mock.patch('sys.stderr', new=six.StringIO()) + self.addCleanup(patch.stop) + patch.start() + if exit_status is not None: + try: + yield + except SystemExit as e: + self.assertEquals(e.code, int(exit_status)) + else: + assert False, 'SystemExit not raised' + else: + yield + if not stdout: + self.assertEquals(sys.stdout.getvalue(), '', 'stdout') + else: + self.assertRegexpMatches(sys.stdout.getvalue(), stdout, 'stdout') + if not stderr: + self.assertEquals(sys.stderr.getvalue(), '', 'stderr') + else: + self.assertRegexpMatches(sys.stderr.getvalue(), stderr, 'stderr') + + def parse_args(self, args): + with mock.patch.object(sys, 'argv', args.split()): + cli.main() + + +class TestCliTestUtils(BaseCliTest): + def test_no_exit_status(self): + with six.assertRaisesRegex(self, AssertionError, 'SystemExit'): + with self.assertOutputMatches(exit_status='1'): + pass + + def test_stdout_matching(self): + with six.assertRaisesRegex(self, AssertionError, 'stdout'): + with self.assertOutputMatches(stdout=None): + print('blah') + + def test_stderr_matching(self): + with six.assertRaisesRegex(self, AssertionError, 'stderr'): + with self.assertOutputMatches(stderr=None): + print('blah', file=sys.stderr) + + def test_stderr_and_stdout_matching(self): + with six.assertRaisesRegex(self, AssertionError, 'stderr'): + with self.assertOutputMatches(stdout='apple', stderr=None): + print('apple') + print('blah', file=sys.stderr) + + +class TestCliBasics(BaseCliTest): + @mock.patch.dict('stor.settings._global_settings', {}, clear=True) + @mock.patch.dict(os.environ, {}, clear=True) + @mock.patch('stor.copytree', autospec=True) + @mock.patch('stor.settings.USER_CONFIG_FILE', '') + def test_cli_config(self, mock_copytree): + expected_settings = { + 'stor': {}, + 's3': { + 'aws_access_key_id': '', + 'aws_secret_access_key': '', + 'aws_session_token': '', + 'profile_name': '', + 'region_name': '' + }, + 's3:upload': { + 'segment_size': 8388608, + 'object_threads': 10, + 'segment_threads': 10 + }, + 's3:download': { + 'segment_size': 8388608, + 'object_threads': 10, + 'segment_threads': 10 + }, + 'swift': { + 'username': 'fake_user', + 'password': 'fake_password', + 'auth_url': '', + 'temp_url_key': '', + 'num_retries': 0 + }, + 'swift:delete': { + 'object_threads': 10 + }, + 'swift:download': { + 'container_threads': 10, + 'object_threads': 10, + 'shuffle': True, + 'skip_identical': True + }, + 'swift:upload': { + 'changed': False, + 'checksum': True, + 'leave_segments': True, + 'object_threads': 10, + 'segment_size': 1073741824, + 'segment_threads': 10, + 'skip_identical': False, + 'use_slo': True + }, + 'dx': { + 'auth_token': 'fake_token', + 'wait_on_close': 0 + } + } + filename = os.path.join(os.path.dirname(__file__), 'file_data', 'test.cfg') + self.parse_args('stor --config %s cp -r source dest' % filename) + self.assertEquals(settings._global_settings, expected_settings) + + @mock.patch('stor.copy', autospec=True) + def test_not_implemented_error(self, mock_copy): + mock_copy.side_effect = NotImplementedError + with self.assertOutputMatches(exit_status='1', stderr='not a valid command'): + self.parse_args('stor cp some/path some/where') + + @mock.patch('stor.cli._clear_env', autospec=True) + def test_not_implemented_error_no_args(self, mock_clear): + mock_clear.side_effect = NotImplementedError + with self.assertOutputMatches(exit_status='1', stderr='not a valid command'): + self.parse_args('stor clear') + + @mock.patch.object(PosixPath, 'list', autospec=True) + def test_not_implemented_error_path(self, mock_list): + mock_list.side_effect = NotImplementedError + with self.assertOutputMatches(exit_status='1', stderr='not a valid command'): + self.parse_args('stor list some_path') + + def test_no_cmd_provided(self): + with self.assertOutputMatches(exit_status='2', stderr='stor: error:.*arguments'): + with mock.patch.object(sys, 'argv', ['stor']): + cli.main() + + +@mock.patch('stor.copy', autospec=True) +class TestCopy(BaseCliTest): + def mock_copy_source(self, source, dest, *args, **kwargs): + with open(dest, 'w') as outfile, open(source) as infile: + outfile.write(infile.read()) + + @mock.patch('sys.stdin', new=six.StringIO('some stdin input\n')) + def test_copy_stdin(self, mock_copy): + mock_copy.side_effect = self.mock_copy_source + with NamedTemporaryFile(delete=False) as ntf: + test_file = ntf.name + self.parse_args('stor cp - %s' % test_file) + self.assertEquals(open(test_file).read(), 'some stdin input\n') + temp_file = mock_copy.call_args_list[0][1]['source'] + self.assertFalse(os.path.exists(temp_file)) + os.remove(test_file) + self.assertFalse(os.path.exists(test_file)) + + +class TestWalkfiles(BaseCliTest): + @mock.patch.object(PosixPath, 'walkfiles', autospec=True) + def test_walkfiles_posix(self, mock_walkfiles): + mock_walkfiles.return_value = [ + './a/b.txt', + './c.txt', + './d.txt' + ] + self.parse_args('stor walkfiles -p=*.txt .') + self.assertEquals(sys.stdout.getvalue(), + './a/b.txt\n' + './c.txt\n' + './d.txt\n') + mock_walkfiles.assert_called_once_with(PosixPath('.'), pattern='*.txt') + + @mock.patch.object(PosixPath, 'walkfiles', autospec=True) + def test_walkfiles_no_pattern(self, mock_walkfiles): + mock_walkfiles.return_value = [ + './a/b.txt', + './c.txt', + './d.txt', + './file' + ] + self.parse_args('stor walkfiles .') + self.assertEquals(sys.stdout.getvalue(), + './a/b.txt\n' + './c.txt\n' + './d.txt\n' + './file\n') + mock_walkfiles.assert_called_once_with(PosixPath('.')) + + +class TestToUri(BaseCliTest): + def test_file_uri_error(self): + with self.assertOutputMatches(exit_status='1', stderr='must be swift or s3 path'): + self.parse_args('stor url /test/file') + + +class TestCd(BaseCliTest): + def setUp(self): + # set up a temp file to use as env file so we don't mess up real defaults + self.test_env_file = NamedTemporaryFile(delete=False).name + mock_env_file_patcher = mock.patch('stor.cli.ENV_FILE', self.test_env_file) + self.mock_env_file = mock_env_file_patcher.start() + self.addCleanup(mock_env_file_patcher.stop) + + with mock.patch('os.path.exists', return_value=False, autospec=True): + cli._clear_env() + super(TestCd, self).setUp() + + def tearDown(self): + cli._clear_env() + os.remove(self.test_env_file) + super(TestCd, self).tearDown() + + def generate_env_text(self, s3_path='s3://', swift_path='swift://'): + return '[env]\ns3 = %s\nswift = %s\n' % (s3_path, swift_path) + + def test_cd_bad_path_error(self): + with self.assertOutputMatches(exit_status=1, stderr='invalid path'): + self.parse_args('stor cd drive://not/correct') + + def test_clear_all(self): + with open(self.test_env_file, 'w') as outfile: + outfile.write(self.generate_env_text(s3_path='s3://test', + swift_path='swift://test/container')) + self.parse_args('stor clear') + self.assertIn(self.generate_env_text(), open(self.test_env_file).read()) + + def test_clear_s3(self): + with open(self.test_env_file, 'w') as outfile: + outfile.write(self.generate_env_text(s3_path='s3://test', + swift_path='swift://test/container')) + self.parse_args('stor clear s3') + self.assertIn(self.generate_env_text(swift_path='swift://test/container'), + open(self.test_env_file).read()) + + def test_clear_swift(self): + with open(self.test_env_file, 'w') as outfile: + outfile.write(self.generate_env_text(s3_path='s3://test', + swift_path='swift://test/container')) + self.parse_args('stor clear swift') + self.assertIn(self.generate_env_text(s3_path='s3://test'), + open(self.test_env_file).read()) + + def test_pwd_all(self): + with open(self.test_env_file, 'w') as outfile: + outfile.write(self.generate_env_text(s3_path='s3://test', + swift_path='swift://test/container')) + self.parse_args('stor pwd') + self.assertEquals(sys.stdout.getvalue(), 's3://test/\nswift://test/container/\n') + + def test_pwd_s3(self): + with open(self.test_env_file, 'w') as outfile: + outfile.write(self.generate_env_text(s3_path='s3://test', + swift_path='swift://test/container')) + self.parse_args('stor pwd s3') + self.assertEquals(sys.stdout.getvalue(), 's3://test/\n') + + def test_pwd_swift(self): + with open(self.test_env_file, 'w') as outfile: + outfile.write(self.generate_env_text(s3_path='s3://test', + swift_path='swift://test/container')) + self.parse_args('stor pwd swift') + self.assertEquals(sys.stdout.getvalue(), 'swift://test/container/\n') + + def test_pwd_error(self): + with self.assertOutputMatches(exit_status=1, stderr='invalid service'): + self.parse_args('stor pwd service') diff --git a/stor/tests/test_extensions_swiftstack.py b/stor/stor/tests/test_extensions_swiftstack.py similarity index 100% rename from stor/tests/test_extensions_swiftstack.py rename to stor/stor/tests/test_extensions_swiftstack.py diff --git a/stor/tests/test_integration.py b/stor/stor/tests/test_integration.py similarity index 100% rename from stor/tests/test_integration.py rename to stor/stor/tests/test_integration.py diff --git a/stor/tests/test_integration_posix.py b/stor/stor/tests/test_integration_posix.py similarity index 100% rename from stor/tests/test_integration_posix.py rename to stor/stor/tests/test_integration_posix.py diff --git a/stor/tests/test_posix.py b/stor/stor/tests/test_posix.py similarity index 63% rename from stor/tests/test_posix.py rename to stor/stor/tests/test_posix.py index cd5b4e94..d62c6cb8 100644 --- a/stor/tests/test_posix.py +++ b/stor/stor/tests/test_posix.py @@ -1,4 +1,3 @@ -import mock import os import tempfile import unittest @@ -7,10 +6,6 @@ from stor import NamedTemporaryDirectory from stor import Path from stor import posix -from stor import s3 -from stor import settings -from stor import swift -from stor import utils from stor import windows @@ -28,20 +23,6 @@ def test_w_windows_path(self): with self.assertRaisesRegexp(TypeError, 'unsupported operand'): posix.PosixPath('my/path') / windows.WindowsPath(r'other\path') - def test_w_swift_component(self): - p = posix.PosixPath('my/path') / swift.SwiftPath('swift://t/c/name').name - self.assertEquals(p, posix.PosixPath('my/path/name')) - self.assertEquals(stor.join('my/path', - swift.SwiftPath('swift://t/c/name').name), - p) - - def test_w_s3_component(self): - p = posix.PosixPath('my/path') / s3.S3Path('s3://b/name').name - self.assertEquals(p, posix.PosixPath('my/path/name')) - self.assertEquals(stor.join('my/path', - s3.S3Path('s3://b/name').name), - p) - class TestAdd(unittest.TestCase): def test_success(self): @@ -52,14 +33,6 @@ def test_w_windows_path(self): with self.assertRaisesRegexp(TypeError, 'unsupported operand'): posix.PosixPath('my/path') + windows.WindowsPath(r'other\path') - def test_w_swift_component(self): - p = posix.PosixPath('my/path') + swift.SwiftPath('swift://t/c/name').name - self.assertEquals(p, posix.PosixPath('my/pathname')) - - def test_w_s3_component(self): - p = posix.PosixPath('my/path') + s3.S3Path('s3://b/name').name - self.assertEquals(p, posix.PosixPath('my/pathname')) - def test_invalid_radd(self): with self.assertRaisesRegexp(TypeError, 'unsupported operand'): 1 + posix.PosixPath('my/path') @@ -75,7 +48,7 @@ def test_posix_dir_destination(self): dest = tmp_d / 'my' / 'dest' dest.makedirs_p() - utils.copy(source / '1', dest) + stor.copy(source / '1', dest) self.assertTrue((dest / '1').exists()) self.assertEquals((dest / '1').open().read(), '1') @@ -88,61 +61,10 @@ def test_posix_file_destination(self): dest = tmp_d / 'my' / 'dest' / '1' dest.parent.makedirs_p() - utils.copy(source / '1', dest) + stor.copy(source / '1', dest) self.assertTrue(dest.exists()) self.assertEquals(dest.open().read(), '1') - def test_ambigious_swift_resource_destination(self): - with stor.NamedTemporaryDirectory() as tmp_d: - source = tmp_d / '1' - with open(source, 'w') as tmp_file: - tmp_file.write('1') - - dest = 'swift://tenant/container/ambiguous-resource' - with self.assertRaisesRegexp(ValueError, 'OBS destination'): - utils.copy(source, dest) - - def test_ambigious_swift_container_destination(self): - with stor.NamedTemporaryDirectory() as tmp_d: - source = tmp_d / '1' - with open(source, 'w') as tmp_file: - tmp_file.write('1') - - dest = 'swift://tenant/ambiguous-container' - with self.assertRaisesRegexp(ValueError, 'OBS destination'): - utils.copy(source, dest) - - def test_tenant_swift_destination(self): - with stor.NamedTemporaryDirectory() as tmp_d: - source = tmp_d / 'source' - os.mkdir(source) - with open(source / '1', 'w') as tmp_file: - tmp_file.write('1') - - dest = 'swift://tenant/' - with self.assertRaisesRegexp(ValueError, 'copy to tenant'): - utils.copy(source / '1', dest) - - @mock.patch.object(swift.SwiftPath, 'upload', autospec=True) - def test_swift_destination(self, mock_upload): - dest = Path('swift://tenant/container/file.txt') - with tempfile.NamedTemporaryFile() as tmp_f: - Path(tmp_f.name).copy(dest) - upload_args = mock_upload.call_args_list[0][0] - self.assertEquals(upload_args[0], dest.parent) - self.assertEquals(upload_args[1][0].source, tmp_f.name) - self.assertEquals(upload_args[1][0].object_name, 'file.txt') - - @mock.patch.object(s3.S3Path, 'upload', autospec=True) - def test_s3_destination(self, mock_upload): - dest = Path('s3://bucket/key/file.txt') - with tempfile.NamedTemporaryFile() as tmp_f: - Path(tmp_f.name).copy(dest) - upload_args = mock_upload.call_args_list[0][0] - self.assertEquals(upload_args[0], dest.parent) - self.assertEquals(upload_args[1][0].source, tmp_f.name) - self.assertEquals(upload_args[1][0].object_name, 'key/file.txt') - class TestCopytree(unittest.TestCase): def test_posix_destination(self): @@ -153,7 +75,7 @@ def test_posix_destination(self): tmp_file.write('1') dest = tmp_d / 'my' / 'dest' - utils.copytree(source, dest) + stor.copytree(source, dest) self.assertTrue((dest / '1').exists()) def test_posix_destination_w_cmd(self): @@ -164,7 +86,7 @@ def test_posix_destination_w_cmd(self): tmp_file.write('1') dest = tmp_d / 'my' / 'dest' - utils.copytree(source, dest, copy_cmd='cp -r') + stor.copytree(source, dest, copy_cmd='cp -r') self.assertTrue((dest / '1').exists()) def test_posix_destination_already_exists(self): @@ -173,7 +95,7 @@ def test_posix_destination_already_exists(self): source.makedirs_p() with self.assertRaisesRegexp(OSError, 'exists'): - utils.copytree(source, tmp_d) + stor.copytree(source, tmp_d) def test_posix_destination_w_error(self): with stor.NamedTemporaryDirectory() as tmp_d: @@ -181,27 +103,7 @@ def test_posix_destination_w_error(self): dest = tmp_d / 'my' / 'dest' with self.assertRaises(OSError): - utils.copytree(invalid_source, dest) - - @mock.patch.object(swift.SwiftPath, 'upload', autospec=True) - def test_swift_destination(self, mock_upload): - source = '.' - dest = Path('swift://tenant/container') - options = { - 'swift:upload': { - 'object_threads': 30, - 'segment_threads': 40 - } - } - - with settings.use(options): - utils.copytree(source, dest) - mock_upload.assert_called_once_with( - dest, - ['.'], - condition=None, - use_manifest=False, - headers=None) + stor.copytree(invalid_source, dest) class TestOpen(unittest.TestCase): diff --git a/stor/tests/test_posix_path_compat.py b/stor/stor/tests/test_posix_path_compat.py similarity index 100% rename from stor/tests/test_posix_path_compat.py rename to stor/stor/tests/test_posix_path_compat.py diff --git a/stor/tests/test_settings.py b/stor/stor/tests/test_settings.py similarity index 100% rename from stor/tests/test_settings.py rename to stor/stor/tests/test_settings.py diff --git a/stor/tests/test_utils.py b/stor/stor/tests/test_utils.py similarity index 67% rename from stor/tests/test_utils.py rename to stor/stor/tests/test_utils.py index 1d1b7766..1c6e8b0c 100644 --- a/stor/tests/test_utils.py +++ b/stor/stor/tests/test_utils.py @@ -11,8 +11,6 @@ import stor from stor import Path from stor.posix import PosixPath -from stor.s3 import S3Path -from stor.swift import SwiftPath from stor.windows import WindowsPath from stor import utils @@ -30,10 +28,6 @@ def get_progress_message(self): class TestPath(unittest.TestCase): - def test_swift_returned(self): - p = Path('swift://my/swift/path') - self.assertTrue(isinstance(p, SwiftPath)) - def test_posix_path_returned(self): p = Path('my/posix/path') self.assertTrue(isinstance(p, PosixPath)) @@ -43,37 +37,11 @@ def test_abs_windows_path_returned(self): p = Path('C:\\my\\windows\\path') self.assertTrue(isinstance(p, WindowsPath)) - def test_s3_returned(self): - p = stor.Path('s3://my/s3/path') - self.assertTrue(isinstance(p, S3Path)) - - -class TestIsSwiftPath(unittest.TestCase): - def test_true(self): - self.assertTrue(stor.is_swift_path('swift://my/swift/path')) - - def test_false(self): - self.assertFalse(stor.is_swift_path('my/posix/path')) - self.assertFalse(stor.is_swift_path('s3://my/s3/path')) - class TestIsFilesystemPath(unittest.TestCase): def test_true(self): self.assertTrue(stor.is_filesystem_path('my/posix/path')) - def test_false(self): - self.assertFalse(stor.is_filesystem_path('swift://my/swift/path')) - self.assertFalse(stor.is_filesystem_path('s3://my/s3/path')) - - -class TestIsS3Path(unittest.TestCase): - def test_true(self): - self.assertTrue(stor.utils.is_s3_path('s3://my/s3/path')) - - def test_false(self): - self.assertFalse(stor.utils.is_s3_path('swift://my/swift/path')) - self.assertFalse(stor.utils.is_s3_path('my/posix/path')) - class TestWalkFilesAndDirs(unittest.TestCase): swift_dir = ( @@ -351,112 +319,3 @@ def test_path_no_perms(self): with utils.NamedTemporaryDirectory() as tmp_d: os.chmod(tmp_d, stat.S_IREAD | stat.S_IRGRP | stat.S_IROTH) self.assertFalse(utils.is_writeable(tmp_d)) - - -class TestIsWriteableSwift(unittest.TestCase): - def setUp(self): - super(TestIsWriteableSwift, self).setUp() - - mock_exists_patcher = mock.patch('stor.swift.SwiftPath.exists', autospec=True) - self.mock_exists = mock_exists_patcher.start() - self.addCleanup(mock_exists_patcher.stop) - - mock_copy_patcher = mock.patch('stor.utils.copy', autospec=True) - self.mock_copy = mock_copy_patcher.start() - self.addCleanup(mock_copy_patcher.stop) - - mock_remove_container_patcher = mock.patch( - 'stor.swift.SwiftPath.remove_container', autospec=True) - self.mock_remove_container = mock_remove_container_patcher.start() - self.addCleanup(mock_remove_container_patcher.stop) - - mock_remove_patcher = mock.patch('stor.remove', autospec=True) - self.mock_remove = mock_remove_patcher.start() - self.addCleanup(mock_remove_patcher.stop) - - mock_tmpfile_patcher = mock.patch( - 'stor.utils.tempfile.NamedTemporaryFile', autospec=True) - self.filename = 'test_file' - self.mock_tmpfile = mock_tmpfile_patcher.start() - self.mock_tmpfile.return_value.__enter__.return_value.name = self.filename - self.addCleanup(mock_tmpfile_patcher.stop) - - def test_existing_path(self): - self.mock_exists.return_value = True - path = SwiftPath('swift://AUTH_stor_test/container/test/') - self.assertTrue(utils.is_writeable(path)) - self.mock_remove.assert_called_with(path / self.filename) - - def test_non_existing_path(self): - self.mock_exists.return_value = False - self.assertTrue(utils.is_writeable('swift://AUTH_stor_test/container/test/')) - - def test_path_unchanged(self): - # Make the first call to exists() return False and the second return True. - self.mock_exists.side_effect = [False, True] - utils.is_writeable('swift://AUTH_stor_test/container/test/') - self.mock_remove_container.assert_called_once_with( - SwiftPath('swift://AUTH_stor_test/container/')) - - def test_existing_path_not_removed(self): - self.mock_exists.return_value = True - utils.is_writeable('swift://AUTH_stor_test/container/test/') - self.assertFalse(self.mock_remove_container.called) - - def test_path_no_perms(self): - self.mock_copy.side_effect = stor.swift.UnauthorizedError('foo') - self.assertFalse(utils.is_writeable('swift://AUTH_stor_test/container/test/')) - - def test_disable_backoff(self): - path = Path('swift://AUTH_stor_test/container/test/') - swift_opts = {'num_retries': 0} - utils.is_writeable(path, swift_opts) - self.mock_copy.assert_called_with( - self.filename, path, swift_retry_options=swift_opts) - - def test_no_trailing_slash(self): - path = SwiftPath('swift://AUTH_stor_test/container') - utils.is_writeable(path) # no trailing slash - self.mock_copy.assert_called_with( - self.filename, - utils.with_trailing_slash(path), - swift_retry_options=None - ) - - def test_container_created_in_another_client(self): - # Simulate that container doesn't exist at the beginning, but is created after the - # is_writeable is called. - self.mock_exists.side_effect = [False, True] - self.mock_remove_container.side_effect = stor.swift.ConflictError('foo') - self.assertTrue(utils.is_writeable('swift://AUTH_stor_test/container/')) - - -class TestIsWriteableS3(unittest.TestCase): - def setUp(self): - super(TestIsWriteableS3, self).setUp() - - mock_copy_patcher = mock.patch('stor.utils.copy') - self.mock_copy = mock_copy_patcher.start() - self.addCleanup(mock_copy_patcher.stop) - - mock_remove_patcher = mock.patch('stor.remove', autospec=True) - self.mock_remove = mock_remove_patcher.start() - self.addCleanup(mock_remove_patcher.stop) - - mock_tmpfile_patcher = mock.patch( - 'stor.utils.tempfile.NamedTemporaryFile', autospec=True) - self.filename = 'test_file' - self.mock_tmpfile = mock_tmpfile_patcher.start() - self.mock_tmpfile.return_value.__enter__.return_value.name = self.filename - self.addCleanup(mock_tmpfile_patcher.stop) - - def test_success(self): - path = 's3://stor-test/foo/bar' - self.assertTrue(utils.is_writeable(path)) - self.mock_remove.assert_called_with( - S3Path('{}/{}'.format(path, self.filename))) - - def test_path_no_perms(self): - self.mock_copy.side_effect = stor.exceptions.FailedUploadError('foo') - self.assertFalse(utils.is_writeable('s3://stor-test/foo/bar')) - self.assertFalse(self.mock_remove.called) diff --git a/stor/tests/test_windows.py b/stor/stor/tests/test_windows.py similarity index 50% rename from stor/tests/test_windows.py rename to stor/stor/tests/test_windows.py index 5f5eee6e..b58e8368 100644 --- a/stor/tests/test_windows.py +++ b/stor/stor/tests/test_windows.py @@ -1,6 +1,4 @@ from stor import posix -from stor import s3 -from stor import swift from stor import windows import unittest @@ -14,14 +12,6 @@ def test_w_posix_path(self): with self.assertRaisesRegexp(TypeError, 'unsupported operand'): windows.WindowsPath(r'my\path') / posix.PosixPath('other/path') - def test_w_swift_component(self): - with self.assertRaisesRegexp(TypeError, 'unsupported operand'): - windows.WindowsPath(r'my\path') / swift.SwiftPath('swift://t/c/name').name - - def test_w_s3_component(self): - with self.assertRaisesRegexp(TypeError, 'unsupported operand'): - windows.WindowsPath(r'my\path') / s3.S3Path('s3://b/name').name - class TestAdd(unittest.TestCase): def test_success(self): @@ -31,11 +21,3 @@ def test_success(self): def test_w_posix_path(self): with self.assertRaisesRegexp(TypeError, 'unsupported operand'): windows.WindowsPath(r'my\path') + posix.PosixPath('other/path') - - def test_w_swift_component(self): - with self.assertRaisesRegexp(TypeError, 'unsupported operand'): - windows.WindowsPath(r'my\path') + swift.SwiftPath('swift://t/c/name').name - - def test_w_s3_component(self): - with self.assertRaisesRegexp(TypeError, 'unsupported operand'): - windows.WindowsPath(r'my\path') + s3.S3Path('s3://b/name').name diff --git a/stor/third_party/__init__.py b/stor/stor/third_party/__init__.py similarity index 100% rename from stor/third_party/__init__.py rename to stor/stor/third_party/__init__.py diff --git a/stor/third_party/backoff.py b/stor/stor/third_party/backoff.py similarity index 100% rename from stor/third_party/backoff.py rename to stor/stor/third_party/backoff.py diff --git a/stor/utils.py b/stor/stor/utils.py similarity index 74% rename from stor/utils.py rename to stor/stor/utils.py index bc2a20a9..b1d5abb9 100644 --- a/stor/utils.py +++ b/stor/stor/utils.py @@ -8,10 +8,8 @@ from subprocess import check_call import tempfile -from dxpy.bindings import verify_string_dxid -from dxpy.exceptions import DXError - from stor import exceptions +import stor logger = logging.getLogger(__name__) @@ -179,21 +177,6 @@ def validate_manifest_list(expected_objs, list_results): return set(expected_objs).issubset(listed_objs) -def is_swift_path(p): - """Determines if the path is a Swift path. - - All Swift paths start with swift:// - - Args: - p (str): The path string - - Returns: - bool: True if p is a Swift path, False otherwise. - """ - from stor.swift import SwiftPath - return p.startswith(SwiftPath.drive) - - def is_filesystem_path(p): """Determines if the path is posix or windows filesystem. @@ -203,22 +186,11 @@ def is_filesystem_path(p): Returns: bool: True if p is a Windows path, False otherwise. """ - return not (is_swift_path(p) or is_s3_path(p) or is_dx_path(p)) - - -def is_s3_path(p): - """Determines if the path is a S3 path. - - All S3 paths start with ``s3://`` - - Args: - p (str): The path string - - Returns - bool: True if p is a S3 path, False otherwise. - """ - from stor.s3 import S3Path - return p.startswith(S3Path.drive) + module_map = stor.base.get_modules() + for k, v in module_map.items(): + if p.startswith(k + '://'): + return False + return True def is_obs_path(p): @@ -230,65 +202,7 @@ def is_obs_path(p): Returns bool: True if p is an OBS path, False otherwise. """ - return is_s3_path(p) or is_swift_path(p) or is_dx_path(p) - - -def is_dx_path(p): - """Determines if the path is a DX path. - - All DX paths start with ``dx://`` - - Args: - p (str): The path string - - Returns - bool: True if p is a DX path, False otherwise. - """ - from stor.dx import DXPath - return p.startswith(DXPath.drive) - - -def is_valid_dxid(dxid, expected_classes): - """wrapper class for verify_string_dxid, because - verify_string_dxid returns None if success, raises error if failed - - Args: Accepts same args as verify_string_dxid - - Returns - bool: Whether given dxid is a valid path of one of expected_classes - """ - try: - return verify_string_dxid(dxid, expected_classes) is None - except DXError: - return False - - -def find_dx_class(p): - """Finds the class of the DX path : DXVirtualPath or DXCanonicalPath - - Args: - p (str): The path string - - Returns - cls: DXVirtualPath or DXCanonicalPath - """ - from stor.dx import DXPath, DXCanonicalPath, DXVirtualPath - colon_pieces = p[len(DXPath.drive):].split(':', 1) - if not colon_pieces or not colon_pieces[0] or '/' in colon_pieces[0]: - raise ValueError('Project is required to construct a DXPath') - project = colon_pieces[0] - resource = (colon_pieces[1] if len(colon_pieces) == 2 else '').lstrip('/') - resource_parts = resource.split('/') - root_name, rest = resource_parts[0], resource_parts[1:] - canonical_resource = is_valid_dxid(root_name, 'file') or not resource - if canonical_resource and rest: - raise ValueError('DX folder paths that start with a valid file dxid are ambiguous') - canonical_project = is_valid_dxid(project, 'project') - - if canonical_project and canonical_resource: - return DXCanonicalPath - else: - return DXVirtualPath + return not is_filesystem_path(p) def is_writeable(path, swift_retry_options=None): @@ -322,55 +236,10 @@ def is_writeable(path, swift_retry_options=None): Returns: bool: Whether ``path`` is writeable or not. """ - from stor import basename - from stor import join from stor import Path - from stor import remove - from stor.swift import ConflictError - from stor.swift import SwiftPath - from stor.swift import UnauthorizedError - from stor.swift import UnavailableError - path = with_trailing_slash(Path(path)) - if is_filesystem_path(path): - return os.access(path, os.W_OK) - - container_path = None - container_existed = None - if is_swift_path(path): - # We want this function to behave as a no-op with regards to the underlying - # container structure. Therefore we need to remove any containers created by this - # function that were not present when it was called. The `container_existed` - # defined below will store whether the container that we're checking existed when - # calling this function, so that we know if it should be removed at the end. - container_path = Path('{}{}/{}/'.format( - SwiftPath.drive, - path.tenant, - path.container - )) - container_existed = container_path.exists() - - with tempfile.NamedTemporaryFile() as tmpfile: - try: - # Attempt to create a file in the `path`. - copy(tmpfile.name, path, swift_retry_options=swift_retry_options) - # Remove the file that was created. - remove(join(path, basename(tmpfile.name))) - answer = True - except (UnauthorizedError, UnavailableError, IOError, OSError, exceptions.FailedUploadError): # nopep8 - answer = False - - # Remove the Swift container if it didn't exist when calling this function, but exists - # now. This way this function remains a no-op with regards to container structure. - if container_existed is False and container_path.exists(): - try: - container_path.remove_container() - except ConflictError: - # Ignore if some other thread/user created the container in the meantime. - pass - - return answer + return os.access(path, os.W_OK) def copy(source, dest, **kwargs): @@ -410,19 +279,13 @@ def copy(source, dest, **kwargs): ... ValueError: OBS destination must be file with extension or directory with slash """ - from stor import Path from stor.obs import OBSUploadObject - - source = Path(source) - dest = Path(dest) + source = stor.Path(source) + dest = stor.Path(dest) swift_retry_options = kwargs.pop('swift_retry_options', {}) kwargs.update(**swift_retry_options) - if is_dx_path(source) and is_dx_path(dest): - return source.copy(dest, **kwargs) if is_obs_path(source) and is_obs_path(dest): - raise ValueError('cannot copy one OBS path to another OBS path') - if (is_s3_path(dest) or is_swift_path(dest)) and dest.is_ambiguous(): - raise ValueError('OBS destination must be file with extension or directory with slash') + return source._obs_copy(dest, **kwargs) if is_filesystem_path(dest): dest.parent.makedirs_p() @@ -432,18 +295,11 @@ def copy(source, dest, **kwargs): else: shutil.copy(source, dest) else: - dest_file = dest if not dest.endswith('/') and not ( - is_dx_path(dest) and dest.isdir() - ) else dest / source.name - if is_swift_path(dest) and not dest_file.parent.container: - raise ValueError(( - 'cannot copy to tenant "%s" and file ' - '"%s"' % (dest_file.parent, dest_file.name) - )) - dest_obj_name = Path(dest_file.parent.resource or '') / dest_file.name + dest_file = dest if not dest.endswith('/') else dest / source.name + dest_obj_name = stor.Path(dest_file.parent.resource or '') / dest_file.name upload_obj = OBSUploadObject(source, dest_obj_name) - dest_file.parent.upload([upload_obj], - **swift_retry_options) + dest_file._copy_upload([upload_obj], + **swift_retry_options) def copytree(source, dest, copy_cmd=None, use_manifest=False, headers=None, @@ -511,14 +367,10 @@ def copytree(source, dest, copy_cmd=None, use_manifest=False, headers=None, ValueError: if two OBS paths are specified OSError: if destination is a posix path and it already exists """ - from stor import Path - - source = Path(source) - dest = Path(dest) - if is_dx_path(source) and is_dx_path(dest): - return source.copytree(dest, **kwargs) + source = stor.Path(source) + dest = stor.Path(dest) if is_obs_path(source) and is_obs_path(dest): - raise ValueError('cannot copy one OBS path to another OBS path') + return source._obs_copytree(dest, **kwargs) from stor.windows import WindowsPath if is_obs_path(source) and isinstance(dest, WindowsPath): raise ValueError('OBS copytree to windows is not supported') @@ -538,17 +390,8 @@ def copytree(source, dest, copy_cmd=None, use_manifest=False, headers=None, else: shutil.copytree(source, dest) else: - if is_dx_path(dest) and (dest.isdir() or dest.endswith('/')): - dest = dest / remove_trailing_slash(source).name - if dest.isdir(): - raise exceptions.TargetExistsError( - 'Destination path ({}) already exists, will not cause ' - 'duplicate folders to exist. Remove the original first' - .format(dest) - ) - with source: - dest.upload(['.'], use_manifest=use_manifest, headers=headers, - condition=condition, **kwargs) + dest._copytree_upload(source, use_manifest=use_manifest, headers=headers, + condition=condition, **kwargs) def _safe_get_size(name): diff --git a/stor/windows.py b/stor/stor/windows.py similarity index 100% rename from stor/windows.py rename to stor/stor/windows.py diff --git a/stor/test.py b/stor/test.py deleted file mode 100644 index 4a140b97..00000000 --- a/stor/test.py +++ /dev/null @@ -1,347 +0,0 @@ -import inspect -import mock -import unittest -import os -import sys -import uuid - -import dxpy -import vcr - -from stor import Path -from stor import s3 -from stor.s3 import S3Path -from stor.swift import SwiftPath -from stor import settings - - -class SwiftTestMixin(object): - """A mixin with helpers for mocking out swift. - - SwiftTestMixin should be used to create base test classes for anything - that accesses swift. - """ - def disable_get_swift_service_mock(self): - """Disables the mock for getting the swift service. - """ - try: - self._get_swift_patcher.stop() - except RuntimeError: - # If the user disables the mock, the mock will try - # to be stopped on test cleanup. Disable errors from that - pass - - def setup_swift_mocks(self): - """Sets all of the relevant mocks for Swift communication. - - If you are testing outside of this library, you should either mock - swift object methods or you should focus on manipulating return value - of mock_swift. - - The following variables are set up when calling this: - - - mock_swift_service: A mock of the SwiftService class defined in - swiftclient.service. - - - mock_swift_get_conn: A mock of the get_conn function in the - swiftclient.service module - - - mock_swift_conn: A mock of the SwiftConnection returned by - get_conn - - - mock_swift_get_auth_keystone: mock of the get_keystone_auth function - that caches identity credentials - - - mock_get_swift_service: A mock of the _get_swift_service method of - SwiftPath - - - mock_swift: A mock of the SwiftService instance returned by - _get_swift_service in SwiftPath - """ - # Ensure that SwiftService will never be instantiated in tests - swift_service_patcher = mock.patch('swiftclient.service.SwiftService', - autospec=True) - self.addCleanup(swift_service_patcher.stop) - self.mock_swift_service = swift_service_patcher.start() - - # Ensure that SwiftConnections will never be instantiated in tests - swift_get_conn_patcher = mock.patch('swiftclient.service.get_conn', - autospec=True) - self.addCleanup(swift_get_conn_patcher.stop) - self.mock_swift_get_conn = swift_get_conn_patcher.start() - self.mock_swift_conn = mock.Mock() - self.mock_swift_get_conn.return_value = self.mock_swift_conn - - # Ensure that no keystone auth calls will go out - swift_keystone_mock_patcher = mock.patch('swiftclient.client.get_auth_keystone', - autospec=True) - self.addCleanup(swift_keystone_mock_patcher.stop) - self.mock_swift_get_auth_keystone = swift_keystone_mock_patcher.start() - self.mock_swift_get_auth_keystone.return_value = ('dummy_storage_url', 'dummy_auth_token') - - # This is the mock that will always be returned by _get_swift_service. - # The user can mock out any swift methods on this mock - self.mock_swift = mock.Mock() - self._get_swift_patcher = mock.patch.object(SwiftPath, - '_get_swift_service', - autospec=True) - self.addCleanup(self.disable_get_swift_service_mock) - self.mock_get_swift_service = self._get_swift_patcher.start() - self.mock_get_swift_service.return_value = self.mock_swift - - # ensures we never cache data between tests - _cache_patcher = mock.patch.dict('stor.swift._cached_auth_token_map', clear=True) - self.addCleanup(_cache_patcher.stop) - _cache_patcher.start() - - def assertSwiftListResultsEqual(self, r1, r2): - """ - Swift list resolves duplicates, so the ordering of the results are not - always the same as what the swift client returns. Compare results as - sorted lists - """ - self.assertEquals(sorted(r1), sorted(r2)) - - -class S3TestMixin(object): - """A mixin with helpers for mocking out S3. - - S3TestMixin should be used to create base test classes for anything - that accesses S3. - """ - def disable_get_s3_client_mock(self): - """Disables the mock for getting the S3 client.""" - try: - self._get_s3_client_patcher.stop() - except RuntimeError: - # If the user disables the mock, the mock will try - # to be stopped on test cleanup. Disable errors from that - pass - - def disable_get_s3_iterator_mock(self): - """Disables the mock for getting the S3 iterator.""" - try: - self._get_s3_iterator_patcher.stop() - except RuntimeError: - pass - - def setup_s3_mocks(self): - """Sets all of the relevant mocks for S3 communication. - - If you are testing outside of this library, you should either mock - S3 client methods or you should focus on manipulating return value - of mock_s3. - - Tests of methods that directly make API calls via _s3_client_call should - mock the return values of the API calls on mock_s3. Tests of methods that - do not directly make the API calls should mock any S3Path methods being called. - - The following variables are set up when calling this: - - - mock_s3_client: A mock of the Client instance returned by boto3.client - - - mock_s3: A mock of the Client instance returned by _get_s3_client in S3Path. - - - mock_get_s3_client: A mock of the _get_s3_client method in S3Path. - - - mock_get_s3_iterator: A mock of the _get_s3_iterator method in S3Path. - - - mock_s3_iterator: A mock of the iterable object returned by _get_s3_iterator in S3Path. - - - mock_s3_transfer: A mock of the Transfer instance returned by S3Transfer - - - mock_get_s3_transfer: A mock of the boto3.s3.transfer.S3Transfer object - """ - # Ensure that the S3 session will never be instantiated in tests - s3_session_patcher = mock.patch('boto3.session.Session', autospec=True) - self.addCleanup(s3_session_patcher.stop) - self.mock_s3_session = s3_session_patcher.start() - - # This is the mock returned by _get_s3_client. - # User can mock s3 methods on this mock. - self.mock_s3 = mock.Mock() - self._get_s3_client_patcher = mock.patch('stor.s3._get_s3_client', - autospec=True) - self.addCleanup(self.disable_get_s3_client_mock) - self.mock_get_s3_client = self._get_s3_client_patcher.start() - self.mock_get_s3_client.return_value = self.mock_s3 - - # This is the mock returned by _get_s3_iterator. - # User should modify the __iter__.return_value property to specify return values. - self.mock_s3_iterator = mock.MagicMock() - self._get_s3_iterator_patcher = mock.patch.object(S3Path, '_get_s3_iterator', - autospec=True) - self.addCleanup(self.disable_get_s3_iterator_mock) - self.mock_get_s3_iterator = self._get_s3_iterator_patcher.start() - self.mock_get_s3_iterator.return_value = self.mock_s3_iterator - - # Ensure that an S3Transfer object will never be instantiated in tests. - # User can mock methods associated with S3Transfer on this mock. - self.mock_s3_transfer = mock.Mock() - s3_transfer_patcher = mock.patch('stor.s3.S3Transfer', autospec=True) - self.addCleanup(s3_transfer_patcher.stop) - self.mock_get_s3_transfer = s3_transfer_patcher.start() - self.mock_get_s3_transfer.return_value = self.mock_s3_transfer - - # Mock the TransferConfig object - s3_transfer_config_patcher = mock.patch('stor.s3.TransferConfig', - autospec=True) - self.addCleanup(s3_transfer_config_patcher.stop) - self.mock_get_s3_transfer_config = s3_transfer_config_patcher.start() - - -class DXTestMixin(object): - """A mixin with helpers for testing dxpy. - - DXTestMixin should be used to create base test classes for anything - that accesses DNAnexus. This Mixin introduces vcrpy into the test case - which records all http interactions for playback. - """ - vcr_enabled = True # switch this to False to deactivate vcr recording - - def setUp(self): # pragma: no cover - """Sets us vcr cassettes if enabled, and starts patcher for time.sleep. - To update the cassettes, the easiest error-free way is to delete - the cassettes and rerecord them. - - Note that changing the record_mode to 'all' temporarily updates the cassettes, - but playback from two same set of requests errors in certain scenarios. - """ - super(DXTestMixin, self).setUp() - self.cassette = None - if self.vcr_enabled: - myvcr = vcr.VCR(cassette_library_dir=self._get_cassette_library_dir(), - filter_headers=['authorization']) - cm = myvcr.use_cassette(self._get_cassette_name()) - self.cassette = cm.__enter__() - self.addCleanup(cm.__exit__, None, None, None) - if self.cassette and self.cassette.rewound: - patcher = mock.patch('time.sleep') - self.addCleanup(patcher.stop) - patcher.start() - - def _get_cassette_library_dir(self): - """Sets up different directories for Python 2 and 3, as well as by TestClass - subdir, because cassette recording and playback are in different formats - (unicode/binary) in Python 2 vs 3, making them incompatible with each other. - """ - testdir = os.path.dirname(inspect.getfile(self.__class__)) - cassette_dir = os.path.join(testdir, 'cassettes_py{}'.format(sys.version_info[0])) - return os.path.join(cassette_dir, self.__class__.__name__) - - def _get_cassette_name(self): - return '{}.yaml'.format(self._testMethodName) - - def assert_dx_lists_equal(self, r1, r2): - self.assertEqual(sorted(r1), sorted(r2)) - - -class SwiftTestCase(unittest.TestCase, SwiftTestMixin): - """A TestCase class that sets up swift mocks and provides additional assertions""" - def setUp(self): - super(SwiftTestCase, self).setUp() - self.setup_swift_mocks() - - # make sure swift credentials aren't included - settings.update({ - 'swift': { - 'username': '__dummy__', - 'password': '__dummy__', - 'auth_url': '__dummy__' - } - }) - - -class S3TestCase(unittest.TestCase, S3TestMixin): - """A TestCase class that sets up S3 mocks""" - def setUp(self): - super(S3TestCase, self).setUp() - self.setup_s3_mocks() - try: - del s3._thread_local.s3_transfer - del s3._thread_local.s3_transfer_config - except AttributeError: - pass - - -class DXTestCase(DXTestMixin, unittest.TestCase): - """A TestCase class that sets up DNAnexus vars and provides additional assertions. - - Since DXTestCase inherits from DXTestMixin, all the tests under DXTestCase are - auto-wrapped with VCRpy, and hence use cassettes for playback. - Look into `DXTestMixin` to turn off VCRpy and additional details. - """ - - def new_proj_name(self): - """Output a unique project name for each test case. - Should only be called once within a test case, and the result reused - everywhere within a test case. - """ - return '{0}.{1}.{2}'.format(self.__class__.__name__, - self._testMethodName, - str(uuid.uuid4())[:8]) - - def setup_temporary_project(self): - self.project_handler = self.setup_project() - self.project = self.project_handler.name - self.proj_id = self.project_handler.get_id() - self.addCleanup(self.teardown_project) - - def setup_project(self): - test_proj = dxpy.DXProject() - test_proj.new(self.new_proj_name()) - return test_proj - - def setup_files(self, files): - """Sets up files for testing. - This does not assume the files will be closed by the end of this function. - - Args: - files (List[str]): list of files relative to project root to be created on DX - Only virtual paths are allowed. Path must start with '/' - """ - for i, curr_file in enumerate(files): - dx_p = Path(curr_file) - self.project_handler.new_folder(dx_p.parent, parents=True) - with dxpy.new_dxfile(name=dx_p.name, - folder='/'+dx_p.parent.lstrip('/'), - project=self.proj_id) as f: - f.write('data{}'.format(i).encode()) - - def setup_file(self, obj): - """Set up a closed file for testing. - - Args: - obj (str): file relative to project root to be created on DX - Only virtual paths are allowed. Path must start with '/' - """ - dx_p = Path(obj) - self.project_handler.new_folder(dx_p.parent, parents=True) - with dxpy.new_dxfile(name=dx_p.name, - folder='/'+dx_p.parent.lstrip('/'), - project=self.proj_id) as f: - f.write('data'.encode()) - # to allow for max of 20s for file state to go to closed - f.wait_on_close(20) - return f - - def setup_posix_files(self, files): - """Sets up posix files for testing - - Args: - files (List[Str]): list of relative posix files to be created. - """ - for i, curr_file in enumerate(files): - posix_p = Path('./{test_folder}/{path}'.format( - test_folder=self.project, path=curr_file)) - posix_p.open(mode='w').write('data'+str(i)) - self.addCleanup(self.teardown_posix_files) - - def teardown_posix_files(self): - posix_p = Path('./{test_folder}'.format( - test_folder=self.project)) - posix_p.rmtree() - - def teardown_project(self): - self.project_handler.destroy() - self.project_handler = None diff --git a/stor_dx/requirements.txt b/stor_dx/requirements.txt new file mode 100644 index 00000000..6f228e4e --- /dev/null +++ b/stor_dx/requirements.txt @@ -0,0 +1,4 @@ +cached-property +contextlib2 +dxpy>=0.265.0; python_version <= '2.7' +dxpy3; python_version > '3.0' diff --git a/stor_dx/setup.cfg b/stor_dx/setup.cfg new file mode 100644 index 00000000..66bcc6c7 --- /dev/null +++ b/stor_dx/setup.cfg @@ -0,0 +1,38 @@ +[metadata] +name = stor_dx +author = Counsyl Inc. +author-email = opensource@counsyl.com +summary = Add-on package to stor for accessing DX storage systems +home-page = https://github.com/counsyl/stor +requires-python = >=2.7 +license = MIT +classifier = + Topic :: Internet :: WWW/HTTP :: Dynamic Content + Intended Audience :: Developers + Programming Language :: Python + Programming Language :: Python :: 2 + Programming Language :: Python :: 2.7 + Programming Language :: Python :: 3 + Programming Language :: Python :: 3.4 + Programming Language :: Python :: 3.5 + Programming Language :: Python :: 3.6 + Development Status :: 5 - Production/Stable + Operating System :: OS Independent + +[files] +packages = stor_dx + +[entry_points] +stor.providers = + dx = stor_dx:find_cls_for_path + +[flake8] +max-complexity=10 +max-line-length=99 + +[pbr] +skip_authors = true +skip_changelog = true + +[bdist_wheel] +universal = 1 diff --git a/stor_dx/setup.py b/stor_dx/setup.py new file mode 100644 index 00000000..e74f898b --- /dev/null +++ b/stor_dx/setup.py @@ -0,0 +1,6 @@ +from setuptools import setup + +setup( + pbr=True, + setup_requires=['pbr'], +) diff --git a/stor_dx/stor_dx/__init__.py b/stor_dx/stor_dx/__init__.py new file mode 100644 index 00000000..4b58d2cd --- /dev/null +++ b/stor_dx/stor_dx/__init__.py @@ -0,0 +1,12 @@ +from stor_dx import dx +from stor_dx import utils + + +drive = dx.DXPath.drive + + +def find_cls_for_path(prefix, path): + if prefix+'://' != drive: + raise ValueError('Invalid prefix to initialize DXPaths: {}'.format(prefix)) + cls = utils.find_dx_class(path) + return cls, path diff --git a/stor/dx.py b/stor_dx/stor_dx/dx.py similarity index 90% rename from stor/dx.py rename to stor_dx/stor_dx/dx.py index ae515c2f..632e007f 100644 --- a/stor/dx.py +++ b/stor_dx/stor_dx/dx.py @@ -10,13 +10,16 @@ from dxpy.exceptions import DXSearchError import six +import stor from stor import exceptions as stor_exceptions from stor import Path from stor import settings -from stor import utils +from stor import utils as stor_utils +from stor.obs import OBSFile from stor.obs import OBSPath from stor.obs import OBSUploadObject from stor.posix import PosixPath +from stor_dx import utils logger = logging.getLogger(__name__) @@ -315,7 +318,7 @@ def isfile(self): Returns: bool: True if path points to an existing file """ - if not self.resource or utils.has_trailing_slash(self): + if not self.resource or stor_utils.has_trailing_slash(self): return False try: self.stat() @@ -348,13 +351,13 @@ def _prep_for_copy(self, dest): and deleting existing target, common to _clone and _move""" dest_is_dir = dest.isdir() target_dest = dest - if dest_is_dir or utils.has_trailing_slash(dest): + if dest_is_dir or stor_utils.has_trailing_slash(dest): target_dest = dest / self.name if not dest_is_dir and target_dest.parent.resource: target_dest.parent.makedirs_p() if target_dest.isfile(): target_dest.remove() - should_rename = not dest_is_dir and not utils.has_trailing_slash(dest) + should_rename = not dest_is_dir and not stor_utils.has_trailing_slash(dest) return target_dest, should_rename def _clone(self, dest): @@ -490,7 +493,8 @@ def copy(self, dest, raise_if_same_project=False, **kwargs): raise stor_exceptions.NotFoundError( 'No data object was found for the given path on DNAnexus') else: - super(DXPath, self).copy(dest) # for other filesystems, delegate to utils.copy + # for other filesystems, delegate to stor.base.Path.copy + super(DXPath, self).copy(dest, **kwargs) def copytree(self, dest, raise_if_same_project=False, **kwargs): """Copies a source directory to a destination directory. @@ -560,17 +564,18 @@ def copytree(self, dest, raise_if_same_project=False, **kwargs): raise stor_exceptions.NotFoundError( 'No project or directory was found at path ({})'.format(self)) else: - super(DXPath, self).copytree(dest) # for other filesystems, delegate to utils.copytree + # for other filesystems, delegate to stor.base.Path.copytree + super(DXPath, self).copytree(dest, **kwargs) def _prep_for_copytree(self, dest): """Handles logic, for finalizing target destination, making parent folders and checking for clashes, common to _clonetree and _movetree""" - source = utils.remove_trailing_slash(self) + source = stor_utils.remove_trailing_slash(self) dest_is_dir = dest.isdir() should_rename = True target_dest = dest - if dest_is_dir or utils.has_trailing_slash(dest): + if dest_is_dir or stor_utils.has_trailing_slash(dest): target_dest = dest / (source.name if source.resource else source.virtual_project) if target_dest.isdir(): raise stor_exceptions.TargetExistsError( @@ -695,7 +700,7 @@ def is_parent_dir(possible_parent, possible_child): if not possible_parent.resource: return possible_child.resource and \ possible_child.project == possible_parent.project - return possible_child.startswith(utils.with_trailing_slash(possible_parent)) + return possible_child.startswith(stor_utils.with_trailing_slash(possible_parent)) source = self if source == (self.drive + self.project): # need to convert dx://proj to dx://proj: @@ -734,6 +739,48 @@ def download(self, dest, **kwargs): folder='/' + (self.resource or '') ) + def _obs_copy(self, dest, **kwargs): + """Wrapper function for copy to OBSPaths""" + if stor_utils.is_obs_path(dest) and not utils.is_dx_path(dest): + raise ValueError('cannot copy one OBS path to another OBS path') + self.copy(dest, **kwargs) + + def _obs_copytree(self, dest, **kwargs): + """Wrapper function for copytree to OBSPaths""" + if stor_utils.is_obs_path(dest) and not utils.is_dx_path(dest): + raise ValueError('cannot copy one OBS path to another OBS path') + self.copytree(dest, **kwargs) + + def _copy_upload(self, src, **kwargs): + """Wrapper function on upload for transformations when copying. + + Due to the legacy nature of upload being used in write_object/copy/copytree, + we cannot call upload directly from stor.copy, we need to perform checks here. + This is only called for copy from posix/windows to dx paths + """ + src_name = src[0].source.name + if self.isdir(): + src[0].object_name = src[0].object_name / src_name + self.upload(src, **kwargs) + + def _copytree_upload(self, source, **kwargs): + """Wrapper function on upload for transformations when copying. + + Due to the legacy nature of upload being used in write_object/copy/copytree, + we cannot call upload directly from stor.copytree, we need to perform checks here. + """ + dest = self + if self.isdir() or self.endswith('/'): + dest = self / stor_utils.remove_trailing_slash(source).name + if dest.isdir(): + raise stor_exceptions.TargetExistsError( + 'Destination path ({}) already exists, will not cause ' + 'duplicate folders to exist. Remove the original first' + .format(dest) + ) + with source: + dest.upload(['.'], **kwargs) + def upload(self, to_upload, **kwargs): """Upload a list of files and directories to a directory. @@ -752,7 +799,7 @@ def upload(self, to_upload, **kwargs): name for name in to_upload if isinstance(name, OBSUploadObject) ] - all_files_to_upload = utils.walk_files_and_dirs([ + all_files_to_upload = stor_utils.walk_files_and_dirs([ name for name in to_upload if not isinstance(name, OBSUploadObject) ]) @@ -760,7 +807,7 @@ def upload(self, to_upload, **kwargs): OBSUploadObject(f, object_name=('/' + self.resource if self.resource else Path('')) / - utils.file_name_to_object_name(f)) + stor_utils.file_name_to_object_name(f)) for f in all_files_to_upload ]) @@ -795,6 +842,31 @@ def upload(self, to_upload, **kwargs): 'Source path ({}) does not exist. Please provide a valid source' .format(upload_obj.source)) + def open(self, mode='r', encoding=None): + """ + Opens a DXFile that can be read or written to and is uploaded to + the remote service. + + For examples of reading and writing opened objects, view + OBSFile. + + Args: + mode (str): The mode of object IO. Currently supports reading + ("r" or "rb") and writing ("w", "wb") + encoding (str): text encoding to use. + Is currently not functional for DXPaths`` (Python 3 only) + + Returns: + DXFile: The file object for DX. + + Raises: + DNAnexusError: A dxpy client error occured. + """ + if six.PY3 and encoding and encoding not in ('utf-8', 'utf8'): # pragma: no cover + raise ValueError('For DNAnexus paths in Python 3, encoding is always assumed to be ' + 'utf-8. Please switch your encoding or Python version') + return DXFile(self, mode=mode, encoding=encoding) + def read_object(self): """Reads an individual object from DX. @@ -884,8 +956,8 @@ def list(self, )) if not results or not results[0]: # when results == [[]] results = [] - utils.validate_condition(condition) - utils.check_condition(condition, results) + stor_utils.validate_condition(condition) + stor_utils.check_condition(condition, results) return results def list_iter(self, @@ -1037,8 +1109,8 @@ def glob(self, pattern, condition=None, canonicalize=False): )) if not results or not results[0]: # when results == [[]] results = [] - utils.validate_condition(condition) - utils.check_condition(condition, results) + stor_utils.validate_condition(condition) + stor_utils.check_condition(condition, results) return results def exists(self): @@ -1142,7 +1214,7 @@ def canonical_resource(self): """ if not self.resource: return None - if utils.has_trailing_slash(self): + if stor_utils.has_trailing_slash(self): raise ValueError('Invalid operation ({method}) on folder path ({path})' .format(path=self, method=sys._getframe(2).f_code.co_name)) objects = [{ @@ -1222,3 +1294,24 @@ def canonical_path(self): def normpath(self): return self.path_class(self.drive + self.project + ':' + self.resource) + + +class DXFile(OBSFile): + """Class handler for handling open functionality over DX paths""" + def close(self): + """Custom close method to wait for file to go to closed state on DNAnexus platform""" + super(DXFile, self).close() + self._wait_on_close() + + def _wait_on_close(self): + wait_on_close = stor.settings.get()['dx']['wait_on_close'] + if wait_on_close: + with _wrap_dx_calls(): # this will raise an error too + f = dxpy.DXFile(dxid=self._path.canonical_resource, + project=self._path.canonical_project) + try: + f.wait_on_close(wait_on_close) + # ignore timeout because we want client code to deal with it + except dxpy.DXError as e: # pragma: no cover + if 'timeout' not in str(e): + raise diff --git a/stor_dx/stor_dx/test.py b/stor_dx/stor_dx/test.py new file mode 100644 index 00000000..95fe4ade --- /dev/null +++ b/stor_dx/stor_dx/test.py @@ -0,0 +1,140 @@ +import inspect +import mock +import unittest +import os +import sys +import uuid + +import dxpy +import vcr + +from stor import Path + + +class DXTestMixin(object): + """A mixin with helpers for testing dxpy. + + DXTestMixin should be used to create base test classes for anything + that accesses DNAnexus. This Mixin introduces vcrpy into the test case + which records all http interactions for playback. + """ + vcr_enabled = True # switch this to False to deactivate vcr recording + + def setUp(self): # pragma: no cover + """Sets us vcr cassettes if enabled, and starts patcher for time.sleep. + To update the cassettes, the easiest error-free way is to delete + the cassettes and rerecord them. + + Note that changing the record_mode to 'all' temporarily updates the cassettes, + but playback from two same set of requests errors in certain scenarios. + """ + super(DXTestMixin, self).setUp() + self.cassette = None + if self.vcr_enabled: + myvcr = vcr.VCR(cassette_library_dir=self._get_cassette_library_dir(), + filter_headers=['authorization']) + cm = myvcr.use_cassette(self._get_cassette_name()) + self.cassette = cm.__enter__() + self.addCleanup(cm.__exit__, None, None, None) + if self.cassette and self.cassette.rewound: + patcher = mock.patch('time.sleep') + self.addCleanup(patcher.stop) + patcher.start() + + def _get_cassette_library_dir(self): + """Sets up different directories for Python 2 and 3, as well as by TestClass + subdir, because cassette recording and playback are in different formats + (unicode/binary) in Python 2 vs 3, making them incompatible with each other. + """ + testdir = os.path.dirname(inspect.getfile(self.__class__)) + cassette_dir = os.path.join(testdir, 'cassettes_py{}'.format(sys.version_info[0])) + return os.path.join(cassette_dir, self.__class__.__name__) + + def _get_cassette_name(self): + return '{}.yaml'.format(self._testMethodName) + + def assert_dx_lists_equal(self, r1, r2): + self.assertEqual(sorted(r1), sorted(r2)) + + +class DXTestCase(DXTestMixin, unittest.TestCase): + """A TestCase class that sets up DNAnexus vars and provides additional assertions. + + Since DXTestCase inherits from DXTestMixin, all the tests under DXTestCase are + auto-wrapped with VCRpy, and hence use cassettes for playback. + Look into `DXTestMixin` to turn off VCRpy and additional details. + """ + + def new_proj_name(self): + """Output a unique project name for each test case. + Should only be called once within a test case, and the result reused + everywhere within a test case. + """ + return '{0}.{1}.{2}'.format(self.__class__.__name__, + self._testMethodName, + str(uuid.uuid4())[:8]) + + def setup_temporary_project(self): + self.project_handler = self.setup_project() + self.project = self.project_handler.name + self.proj_id = self.project_handler.get_id() + self.addCleanup(self.teardown_project) + + def setup_project(self): + test_proj = dxpy.DXProject() + test_proj.new(self.new_proj_name()) + return test_proj + + def setup_files(self, files): + """Sets up files for testing. + This does not assume the files will be closed by the end of this function. + + Args: + files (List[str]): list of files relative to project root to be created on DX + Only virtual paths are allowed. Path must start with '/' + """ + for i, curr_file in enumerate(files): + dx_p = Path(curr_file) + self.project_handler.new_folder(dx_p.parent, parents=True) + with dxpy.new_dxfile(name=dx_p.name, + folder='/'+dx_p.parent.lstrip('/'), + project=self.proj_id) as f: + f.write('data{}'.format(i).encode()) + + def setup_file(self, obj): + """Set up a closed file for testing. + + Args: + obj (str): file relative to project root to be created on DX + Only virtual paths are allowed. Path must start with '/' + """ + dx_p = Path(obj) + self.project_handler.new_folder(dx_p.parent, parents=True) + with dxpy.new_dxfile(name=dx_p.name, + folder='/'+dx_p.parent.lstrip('/'), + project=self.proj_id) as f: + f.write('data'.encode()) + # to allow for max of 20s for file state to go to closed + f.wait_on_close(20) + return f + + def setup_posix_files(self, files): + """Sets up posix files for testing + + Args: + files (List[Str]): list of relative posix files to be created. + """ + for i, curr_file in enumerate(files): + posix_p = Path('./{test_folder}/{path}'.format( + test_folder=self.project, path=curr_file)) + posix_p.open(mode='w').write('data'+str(i)) + self.addCleanup(self.teardown_posix_files) + + def teardown_posix_files(self): + posix_p = Path('./{test_folder}'.format( + test_folder=self.project)) + posix_p.rmtree() + + def teardown_project(self): + self.project_handler.destroy() + self.project_handler = None diff --git a/stor_dx/stor_dx/tests/__init__.py b/stor_dx/stor_dx/tests/__init__.py new file mode 100644 index 00000000..e69de29b diff --git a/stor/tests/cassettes_py2/TestCanonicalProject/test_canonical_path.yaml b/stor_dx/stor_dx/tests/cassettes_py2/TestCanonicalProject/test_canonical_path.yaml similarity index 100% rename from stor/tests/cassettes_py2/TestCanonicalProject/test_canonical_path.yaml rename to stor_dx/stor_dx/tests/cassettes_py2/TestCanonicalProject/test_canonical_path.yaml diff --git a/stor/tests/cassettes_py2/TestCanonicalProject/test_canonical_path_on_dir.yaml b/stor_dx/stor_dx/tests/cassettes_py2/TestCanonicalProject/test_canonical_path_on_dir.yaml similarity index 100% rename from stor/tests/cassettes_py2/TestCanonicalProject/test_canonical_path_on_dir.yaml rename to stor_dx/stor_dx/tests/cassettes_py2/TestCanonicalProject/test_canonical_path_on_dir.yaml diff --git a/stor/tests/cassettes_py2/TestCanonicalProject/test_duplicate_projects.yaml b/stor_dx/stor_dx/tests/cassettes_py2/TestCanonicalProject/test_duplicate_projects.yaml similarity index 100% rename from stor/tests/cassettes_py2/TestCanonicalProject/test_duplicate_projects.yaml rename to stor_dx/stor_dx/tests/cassettes_py2/TestCanonicalProject/test_duplicate_projects.yaml diff --git a/stor/tests/cassettes_py2/TestCanonicalProject/test_no_project.yaml b/stor_dx/stor_dx/tests/cassettes_py2/TestCanonicalProject/test_no_project.yaml similarity index 100% rename from stor/tests/cassettes_py2/TestCanonicalProject/test_no_project.yaml rename to stor_dx/stor_dx/tests/cassettes_py2/TestCanonicalProject/test_no_project.yaml diff --git a/stor/tests/cassettes_py2/TestCanonicalProject/test_unique_project.yaml b/stor_dx/stor_dx/tests/cassettes_py2/TestCanonicalProject/test_unique_project.yaml similarity index 100% rename from stor/tests/cassettes_py2/TestCanonicalProject/test_unique_project.yaml rename to stor_dx/stor_dx/tests/cassettes_py2/TestCanonicalProject/test_unique_project.yaml diff --git a/stor/tests/cassettes_py2/TestCanonicalResource/test_duplicate_resource.yaml b/stor_dx/stor_dx/tests/cassettes_py2/TestCanonicalResource/test_duplicate_resource.yaml similarity index 100% rename from stor/tests/cassettes_py2/TestCanonicalResource/test_duplicate_resource.yaml rename to stor_dx/stor_dx/tests/cassettes_py2/TestCanonicalResource/test_duplicate_resource.yaml diff --git a/stor/tests/cassettes_py2/TestCanonicalResource/test_no_resource.yaml b/stor_dx/stor_dx/tests/cassettes_py2/TestCanonicalResource/test_no_resource.yaml similarity index 100% rename from stor/tests/cassettes_py2/TestCanonicalResource/test_no_resource.yaml rename to stor_dx/stor_dx/tests/cassettes_py2/TestCanonicalResource/test_no_resource.yaml diff --git a/stor/tests/cassettes_py2/TestCanonicalResource/test_project.yaml b/stor_dx/stor_dx/tests/cassettes_py2/TestCanonicalResource/test_project.yaml similarity index 100% rename from stor/tests/cassettes_py2/TestCanonicalResource/test_project.yaml rename to stor_dx/stor_dx/tests/cassettes_py2/TestCanonicalResource/test_project.yaml diff --git a/stor/tests/cassettes_py2/TestCanonicalResource/test_unique_resource.yaml b/stor_dx/stor_dx/tests/cassettes_py2/TestCanonicalResource/test_unique_resource.yaml similarity index 100% rename from stor/tests/cassettes_py2/TestCanonicalResource/test_unique_resource.yaml rename to stor_dx/stor_dx/tests/cassettes_py2/TestCanonicalResource/test_unique_resource.yaml diff --git a/stor/tests/cassettes_py2/TestCanonicalResource/test_virtual_on_virtual.yaml b/stor_dx/stor_dx/tests/cassettes_py2/TestCanonicalResource/test_virtual_on_virtual.yaml similarity index 100% rename from stor/tests/cassettes_py2/TestCanonicalResource/test_virtual_on_virtual.yaml rename to stor_dx/stor_dx/tests/cassettes_py2/TestCanonicalResource/test_virtual_on_virtual.yaml diff --git a/stor/tests/cassettes_py2/TestCopy/test_clone_move_project_fail.yaml b/stor_dx/stor_dx/tests/cassettes_py2/TestCopy/test_clone_move_project_fail.yaml similarity index 56% rename from stor/tests/cassettes_py2/TestCopy/test_clone_move_project_fail.yaml rename to stor_dx/stor_dx/tests/cassettes_py2/TestCopy/test_clone_move_project_fail.yaml index 2a0cb779..058a7b60 100644 --- a/stor/tests/cassettes_py2/TestCopy/test_clone_move_project_fail.yaml +++ b/stor_dx/stor_dx/tests/cassettes_py2/TestCopy/test_clone_move_project_fail.yaml @@ -1,291 +1,291 @@ interactions: - request: - body: !!python/unicode '{"name": "TestCopy.test_clone_move_project_fail.2da022f1"}' + body: !!python/unicode '{"name": "TestCopy.test_clone_move_project_fail.c65ac64a"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/project/new response: - body: {string: !!python/unicode '{"id":"project-FP9k5V00fF2GPGFV44511f1g"}'} + body: {string: !!python/unicode '{"id":"project-FPbY75j0kGY3YFg006F1yx79"}'} headers: connection: [keep-alive] content-length: ['41'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:18:44 GMT'] + date: ['Tue, 13 Nov 2018 20:27:03 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592324460-764791] + x-request-id: [1542140823912-742170] status: {code: 200, message: OK} - request: body: !!python/unicode '{}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k5V00fF2GPGFV44511f1g/describe + uri: https://api.dnanexus.com/project-FPbY75j0kGY3YFg006F1yx79/describe response: - body: {string: !!python/unicode '{"id":"project-FP9k5V00fF2GPGFV44511f1g","name":"TestCopy.test_clone_move_project_fail.2da022f1","class":"project","created":1540592324000,"modified":1540592324000,"billTo":"org-counsyl","level":"ADMINISTER","dataUsage":0,"sponsoredDataUsage":0,"region":"aws:us-east-1","summary":"","description":"","protected":false,"restricted":false,"downloadRestricted":false,"containsPHI":false,"createdBy":{"user":"user-akumar_counsyl"},"version":0,"storageCost":0,"pendingTransfer":null,"tags":[],"defaultInstanceType":"mem2_hdd2_x2","archivalState":"live","archivalProgress":null,"totalSponsoredEgressBytes":0,"consumedSponsoredEgressBytes":0,"atSpendingLimit":false}'} + body: {string: !!python/unicode '{"id":"project-FPbY75j0kGY3YFg006F1yx79","name":"TestCopy.test_clone_move_project_fail.c65ac64a","class":"project","created":1542140823000,"modified":1542140823000,"billTo":"org-counsyl","level":"ADMINISTER","dataUsage":0,"sponsoredDataUsage":0,"region":"aws:us-east-1","summary":"","description":"","protected":false,"restricted":false,"downloadRestricted":false,"containsPHI":false,"createdBy":{"user":"user-akumar_counsyl"},"version":0,"storageCost":0,"pendingTransfer":null,"tags":[],"defaultInstanceType":"mem2_hdd2_x2","archivalState":"live","archivalProgress":null,"totalSponsoredEgressBytes":0,"consumedSponsoredEgressBytes":0,"atSpendingLimit":false}'} headers: connection: [keep-alive] content-length: ['659'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:18:44 GMT'] + date: ['Tue, 13 Nov 2018 20:27:04 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592324593-218909] + x-request-id: [1542140824021-437198] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"parents": true, "folder": "/"}' + body: !!python/unicode '{"folder": "/", "parents": true}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k5V00fF2GPGFV44511f1g/newFolder + uri: https://api.dnanexus.com/project-FPbY75j0kGY3YFg006F1yx79/newFolder response: - body: {string: !!python/unicode '{"id":"project-FP9k5V00fF2GPGFV44511f1g"}'} + body: {string: !!python/unicode '{"id":"project-FPbY75j0kGY3YFg006F1yx79"}'} headers: connection: [keep-alive] content-length: ['41'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:18:44 GMT'] + date: ['Tue, 13 Nov 2018 20:27:04 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592324704-305383] + x-request-id: [1542140824121-108938] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"name": "folder_file.txt", "project": "project-FP9k5V00fF2GPGFV44511f1g", - "folder": "/", "nonce": "72ba70af7d121d1fcf16ff6009e3a2dcf1cba0be9c244b9856387da8934b02c21540592324.763011"}' + body: !!python/unicode '{"project": "project-FPbY75j0kGY3YFg006F1yx79", "nonce": + "f1390fd4e56ec4dc658e884f9e98ea775bb4ae8d3affcc3d2cef20e1fe0ac17b1542140824.167494", + "folder": "/", "name": "folder_file.txt"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/file/new response: - body: {string: !!python/unicode '{"id":"file-FP9k5V00fF2588FB44yY4ZZb"}'} + body: {string: !!python/unicode '{"id":"file-FPbY7600kGY3YFg006F1yx7B"}'} headers: connection: [keep-alive] content-length: ['38'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:18:44 GMT'] + date: ['Tue, 13 Nov 2018 20:27:04 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592324807-45961] + x-request-id: [1542140824211-174599] status: {code: 200, message: OK} - request: body: !!python/unicode '{"fields": {"fileUploadParameters": true}}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k5V00fF2GPGFV44511f1g/describe + uri: https://api.dnanexus.com/project-FPbY75j0kGY3YFg006F1yx79/describe response: - body: {string: !!python/unicode '{"id":"project-FP9k5V00fF2GPGFV44511f1g","fileUploadParameters":{"maximumPartSize":5368709120,"minimumPartSize":5242880,"maximumFileSize":5497558138880,"maximumNumParts":10000,"emptyLastPartAllowed":true}}'} + body: {string: !!python/unicode '{"id":"project-FPbY75j0kGY3YFg006F1yx79","fileUploadParameters":{"maximumPartSize":5368709120,"minimumPartSize":5242880,"maximumFileSize":5497558138880,"maximumNumParts":10000,"emptyLastPartAllowed":true}}'} headers: connection: [keep-alive] content-length: ['205'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:18:44 GMT'] + date: ['Tue, 13 Nov 2018 20:27:04 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592324942-332168] + x-request-id: [1542140824365-939426] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"size": 4, "md5": "8d777f385d3dfec8815d20f7496026dc", - "index": 1}' + body: !!python/unicode '{"index": 1, "size": 4, "md5": "8d777f385d3dfec8815d20f7496026dc"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k5V00fF2588FB44yY4ZZb/upload + uri: https://api.dnanexus.com/file-FPbY7600kGY3YFg006F1yx7B/upload response: - body: {string: !!python/unicode '{"url":"https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/12c5/file/open/file-FP9k5V00fF2588FB44yY4ZZb/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181026%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181026T221845Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=a947eb503601c759c6ad7e5b2b79d09e607ea9106d28ee671aaf93118a68035c","headers":{"host":"dnanexus-platform-upload-prod.s3.amazonaws.com","content-type":"binary/octet-stream","x-amz-server-side-encryption":"AES256","content-md5":"jXd/OF09/siBXSD3SWAm3A==","content-length":"4"},"expires":1540592445058}'} + body: {string: !!python/unicode '{"url":"https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/4254/file/open/file-FPbY7600kGY3YFg006F1yx7B/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181113%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181113T202704Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=c221241c83074d1ebae4eb966efbe1f0cfcbe1cadf8d4f885fd08c127c9f5144","headers":{"host":"dnanexus-platform-upload-prod.s3.amazonaws.com","content-type":"binary/octet-stream","x-amz-server-side-encryption":"AES256","content-md5":"jXd/OF09/siBXSD3SWAm3A==","content-length":"4"},"expires":1542140944476}'} headers: connection: [keep-alive] content-length: ['692'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:18:45 GMT'] + date: ['Tue, 13 Nov 2018 20:27:04 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592325047-50829] + x-request-id: [1542140824464-59749] status: {code: 200, message: OK} - request: body: !!python/unicode data headers: DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] content-length: ['4'] content-md5: [jXd/OF09/siBXSD3SWAm3A==] content-type: [binary/octet-stream] host: [dnanexus-platform-upload-prod.s3.amazonaws.com] x-amz-server-side-encryption: [AES256] method: PUT - uri: https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/12c5/file/open/file-FP9k5V00fF2588FB44yY4ZZb/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181026%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181026T221845Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=a947eb503601c759c6ad7e5b2b79d09e607ea9106d28ee671aaf93118a68035c + uri: https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/4254/file/open/file-FPbY7600kGY3YFg006F1yx7B/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181113%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181113T202704Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=c221241c83074d1ebae4eb966efbe1f0cfcbe1cadf8d4f885fd08c127c9f5144 response: body: {string: !!python/unicode ''} headers: content-length: ['0'] - date: ['Fri, 26 Oct 2018 22:18:46 GMT'] + date: ['Tue, 13 Nov 2018 20:27:05 GMT'] etag: ['"8d777f385d3dfec8815d20f7496026dc"'] server: [AmazonS3] - x-amz-expiration: ['expiry-date="Sat, 17 Nov 2018 00:00:00 GMT", rule-id="3weekpurge"'] - x-amz-id-2: [HSwLsnh8zg+Zk3YL++m08a8g0BEaPa8VWMjRLrZBho251cmmID3BBx02QgfBnyVGZaB1pW6NlJw=] - x-amz-request-id: [1A7FB91AFDB9350D] + x-amz-expiration: ['expiry-date="Wed, 05 Dec 2018 00:00:00 GMT", rule-id="3weekpurge"'] + x-amz-id-2: [hFELOdwuafWyELmODtXUr3f+qh9vc2MdJ/vBxm3ys1PTDp9xcZ1H4PxhH4giC2QAMPHKBcARTmc=] + x-amz-request-id: [B3572EDC01AF2E22] x-amz-server-side-encryption: [AES256] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"project": "project-FP9k5V00fF2GPGFV44511f1g", "fields": + body: !!python/unicode '{"project": "project-FPbY75j0kGY3YFg006F1yx79", "fields": {"state": true}}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k5V00fF2588FB44yY4ZZb/describe + uri: https://api.dnanexus.com/file-FPbY7600kGY3YFg006F1yx7B/describe response: - body: {string: !!python/unicode '{"id":"file-FP9k5V00fF2588FB44yY4ZZb","state":"open"}'} + body: {string: !!python/unicode '{"id":"file-FPbY7600kGY3YFg006F1yx7B","state":"open"}'} headers: connection: [keep-alive] content-length: ['53'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:18:45 GMT'] + date: ['Tue, 13 Nov 2018 20:27:04 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592325589-236100] + x-request-id: [1542140824952-191135] status: {code: 200, message: OK} - request: body: !!python/unicode '{}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k5V00fF2588FB44yY4ZZb/close + uri: https://api.dnanexus.com/file-FPbY7600kGY3YFg006F1yx7B/close response: - body: {string: !!python/unicode '{"id":"file-FP9k5V00fF2588FB44yY4ZZb"}'} + body: {string: !!python/unicode '{"id":"file-FPbY7600kGY3YFg006F1yx7B"}'} headers: connection: [keep-alive] content-length: ['38'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:18:45 GMT'] + date: ['Tue, 13 Nov 2018 20:27:05 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592325704-127866] + x-request-id: [1542140825061-531741] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"project": "project-FP9k5V00fF2GPGFV44511f1g", "fields": + body: !!python/unicode '{"project": "project-FPbY75j0kGY3YFg006F1yx79", "fields": {"state": true}}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k5V00fF2588FB44yY4ZZb/describe + uri: https://api.dnanexus.com/file-FPbY7600kGY3YFg006F1yx7B/describe response: - body: {string: !!python/unicode '{"id":"file-FP9k5V00fF2588FB44yY4ZZb","state":"closing"}'} + body: {string: !!python/unicode '{"id":"file-FPbY7600kGY3YFg006F1yx7B","state":"closing"}'} headers: connection: [keep-alive] content-length: ['56'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:18:45 GMT'] + date: ['Tue, 13 Nov 2018 20:27:05 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592325866-828789] + x-request-id: [1542140825170-740786] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"project": "project-FP9k5V00fF2GPGFV44511f1g", "fields": + body: !!python/unicode '{"project": "project-FPbY75j0kGY3YFg006F1yx79", "fields": {"state": true}}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k5V00fF2588FB44yY4ZZb/describe + uri: https://api.dnanexus.com/file-FPbY7600kGY3YFg006F1yx7B/describe response: - body: {string: !!python/unicode '{"id":"file-FP9k5V00fF2588FB44yY4ZZb","state":"closed"}'} + body: {string: !!python/unicode '{"id":"file-FPbY7600kGY3YFg006F1yx7B","state":"closed"}'} headers: connection: [keep-alive] content-length: ['55'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:18:48 GMT'] + date: ['Tue, 13 Nov 2018 20:27:07 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592327986-960001] + x-request-id: [1542140827278-716115] status: {code: 200, message: OK} - request: body: !!python/unicode '{"name": "test_copy_project_fail.TempProj"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/project/new response: - body: {string: !!python/unicode '{"id":"project-FP9k5X00P3VP10qyFXkfFBXQ"}'} + body: {string: !!python/unicode '{"id":"project-FPbY76j09Gq6KjvF1pF3yv2G"}'} headers: connection: [keep-alive] content-length: ['41'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:18:48 GMT'] + date: ['Tue, 13 Nov 2018 20:27:07 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592328097-521827] + x-request-id: [1542140827371-35148] status: {code: 200, message: OK} - request: body: !!python/unicode '{}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k5X00P3VP10qyFXkfFBXQ/destroy + uri: https://api.dnanexus.com/project-FPbY76j09Gq6KjvF1pF3yv2G/destroy response: - body: {string: !!python/unicode '{"id":"project-FP9k5X00P3VP10qyFXkfFBXQ"}'} + body: {string: !!python/unicode '{"id":"project-FPbY76j09Gq6KjvF1pF3yv2G"}'} headers: connection: [keep-alive] content-length: ['41'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:18:50 GMT'] + date: ['Tue, 13 Nov 2018 20:27:10 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592328225-192796] + x-request-id: [1542140827484-105420] status: {code: 200, message: OK} - request: body: !!python/unicode '{}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k5V00fF2GPGFV44511f1g/destroy + uri: https://api.dnanexus.com/project-FPbY75j0kGY3YFg006F1yx79/destroy response: - body: {string: !!python/unicode '{"id":"project-FP9k5V00fF2GPGFV44511f1g"}'} + body: {string: !!python/unicode '{"id":"project-FPbY75j0kGY3YFg006F1yx79"}'} headers: connection: [keep-alive] content-length: ['41'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:18:53 GMT'] + date: ['Tue, 13 Nov 2018 20:27:13 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592331147-776330] + x-request-id: [1542140831032-731876] status: {code: 200, message: OK} version: 1 diff --git a/stor/tests/cassettes_py2/TestCopy/test_clone_within_project_fail.yaml b/stor_dx/stor_dx/tests/cassettes_py2/TestCopy/test_clone_within_project_fail.yaml similarity index 56% rename from stor/tests/cassettes_py2/TestCopy/test_clone_within_project_fail.yaml rename to stor_dx/stor_dx/tests/cassettes_py2/TestCopy/test_clone_within_project_fail.yaml index 934c8fca..e25b3dc1 100644 --- a/stor/tests/cassettes_py2/TestCopy/test_clone_within_project_fail.yaml +++ b/stor_dx/stor_dx/tests/cassettes_py2/TestCopy/test_clone_within_project_fail.yaml @@ -1,482 +1,482 @@ interactions: - request: - body: !!python/unicode '{"name": "TestCopy.test_clone_within_project_fail.b893f6c0"}' + body: !!python/unicode '{"name": "TestCopy.test_clone_within_project_fail.54af3b94"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/project/new response: - body: {string: !!python/unicode '{"id":"project-FP9k5YQ0k3JgKZggK9KvpK7k"}'} + body: {string: !!python/unicode '{"id":"project-FPbY78805zf7Y2Kq50fVv30p"}'} headers: connection: [keep-alive] content-length: ['41'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:18:54 GMT'] + date: ['Tue, 13 Nov 2018 20:27:13 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592334012-588097] + x-request-id: [1542140833911-190600] status: {code: 200, message: OK} - request: body: !!python/unicode '{}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k5YQ0k3JgKZggK9KvpK7k/describe + uri: https://api.dnanexus.com/project-FPbY78805zf7Y2Kq50fVv30p/describe response: - body: {string: !!python/unicode '{"id":"project-FP9k5YQ0k3JgKZggK9KvpK7k","name":"TestCopy.test_clone_within_project_fail.b893f6c0","class":"project","created":1540592334000,"modified":1540592334000,"billTo":"org-counsyl","level":"ADMINISTER","dataUsage":0,"sponsoredDataUsage":0,"region":"aws:us-east-1","summary":"","description":"","protected":false,"restricted":false,"downloadRestricted":false,"containsPHI":false,"createdBy":{"user":"user-akumar_counsyl"},"version":0,"storageCost":0,"pendingTransfer":null,"tags":[],"defaultInstanceType":"mem2_hdd2_x2","archivalState":"live","archivalProgress":null,"totalSponsoredEgressBytes":0,"consumedSponsoredEgressBytes":0,"atSpendingLimit":false}'} + body: {string: !!python/unicode '{"id":"project-FPbY78805zf7Y2Kq50fVv30p","name":"TestCopy.test_clone_within_project_fail.54af3b94","class":"project","created":1542140833000,"modified":1542140833000,"billTo":"org-counsyl","level":"ADMINISTER","dataUsage":0,"sponsoredDataUsage":0,"region":"aws:us-east-1","summary":"","description":"","protected":false,"restricted":false,"downloadRestricted":false,"containsPHI":false,"createdBy":{"user":"user-akumar_counsyl"},"version":0,"storageCost":0,"pendingTransfer":null,"tags":[],"defaultInstanceType":"mem2_hdd2_x2","archivalState":"live","archivalProgress":null,"totalSponsoredEgressBytes":0,"consumedSponsoredEgressBytes":0,"atSpendingLimit":false}'} headers: connection: [keep-alive] content-length: ['661'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:18:54 GMT'] + date: ['Tue, 13 Nov 2018 20:27:14 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592334144-935963] + x-request-id: [1542140834005-148552] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"parents": true, "folder": "/"}' + body: !!python/unicode '{"folder": "/", "parents": true}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k5YQ0k3JgKZggK9KvpK7k/newFolder + uri: https://api.dnanexus.com/project-FPbY78805zf7Y2Kq50fVv30p/newFolder response: - body: {string: !!python/unicode '{"id":"project-FP9k5YQ0k3JgKZggK9KvpK7k"}'} + body: {string: !!python/unicode '{"id":"project-FPbY78805zf7Y2Kq50fVv30p"}'} headers: connection: [keep-alive] content-length: ['41'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:18:54 GMT'] + date: ['Tue, 13 Nov 2018 20:27:14 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592334261-95781] + x-request-id: [1542140834110-225739] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"name": "folder_file.txt", "project": "project-FP9k5YQ0k3JgKZggK9KvpK7k", - "folder": "/", "nonce": "83808daaa4e36278528b5ca1842699d95475aeb3f5e50772794db8509d532c441540592334.323139"}' + body: !!python/unicode '{"project": "project-FPbY78805zf7Y2Kq50fVv30p", "nonce": + "ef9fc807afb31f1eb7547e641781c99f44bde6c68f7c8acee13e3dccb52205611542140834.163588", + "folder": "/", "name": "folder_file.txt"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/file/new response: - body: {string: !!python/unicode '{"id":"file-FP9k5YQ0k3JQq5P81088Yy3b"}'} + body: {string: !!python/unicode '{"id":"file-FPbY78Q05zfBqpgZ9Vx48pX6"}'} headers: connection: [keep-alive] content-length: ['38'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:18:54 GMT'] + date: ['Tue, 13 Nov 2018 20:27:14 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592334370-568769] + x-request-id: [1542140834206-649975] status: {code: 200, message: OK} - request: body: !!python/unicode '{"fields": {"fileUploadParameters": true}}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k5YQ0k3JgKZggK9KvpK7k/describe + uri: https://api.dnanexus.com/project-FPbY78805zf7Y2Kq50fVv30p/describe response: - body: {string: !!python/unicode '{"id":"project-FP9k5YQ0k3JgKZggK9KvpK7k","fileUploadParameters":{"maximumPartSize":5368709120,"minimumPartSize":5242880,"maximumFileSize":5497558138880,"maximumNumParts":10000,"emptyLastPartAllowed":true}}'} + body: {string: !!python/unicode '{"id":"project-FPbY78805zf7Y2Kq50fVv30p","fileUploadParameters":{"maximumPartSize":5368709120,"minimumPartSize":5242880,"maximumFileSize":5497558138880,"maximumNumParts":10000,"emptyLastPartAllowed":true}}'} headers: connection: [keep-alive] content-length: ['205'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:18:54 GMT'] + date: ['Tue, 13 Nov 2018 20:27:14 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592334524-40283] + x-request-id: [1542140834349-148265] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"size": 4, "md5": "8d777f385d3dfec8815d20f7496026dc", - "index": 1}' + body: !!python/unicode '{"index": 1, "size": 4, "md5": "8d777f385d3dfec8815d20f7496026dc"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k5YQ0k3JQq5P81088Yy3b/upload + uri: https://api.dnanexus.com/file-FPbY78Q05zfBqpgZ9Vx48pX6/upload response: - body: {string: !!python/unicode '{"url":"https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/43fc/file/open/file-FP9k5YQ0k3JQq5P81088Yy3b/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181026%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181026T221854Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=5e0e5ef589b2a5edc5a4ec1c1283faab6cecb6df8621e3c85045e1e2f3284197","headers":{"host":"dnanexus-platform-upload-prod.s3.amazonaws.com","content-type":"binary/octet-stream","x-amz-server-side-encryption":"AES256","content-md5":"jXd/OF09/siBXSD3SWAm3A==","content-length":"4"},"expires":1540592454642}'} + body: {string: !!python/unicode '{"url":"https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/7aa6/file/open/file-FPbY78Q05zfBqpgZ9Vx48pX6/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181113%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181113T202714Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=2f52d5d0a8316e3f09f29659627997db87bd0947ea2c3a289e23beedaaca9bc9","headers":{"host":"dnanexus-platform-upload-prod.s3.amazonaws.com","content-type":"binary/octet-stream","x-amz-server-side-encryption":"AES256","content-md5":"jXd/OF09/siBXSD3SWAm3A==","content-length":"4"},"expires":1542140954457}'} headers: connection: [keep-alive] content-length: ['692'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:18:54 GMT'] + date: ['Tue, 13 Nov 2018 20:27:14 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592334630-229487] + x-request-id: [1542140834442-244259] status: {code: 200, message: OK} - request: body: !!python/unicode data headers: DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] content-length: ['4'] content-md5: [jXd/OF09/siBXSD3SWAm3A==] content-type: [binary/octet-stream] host: [dnanexus-platform-upload-prod.s3.amazonaws.com] x-amz-server-side-encryption: [AES256] method: PUT - uri: https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/43fc/file/open/file-FP9k5YQ0k3JQq5P81088Yy3b/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181026%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181026T221854Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=5e0e5ef589b2a5edc5a4ec1c1283faab6cecb6df8621e3c85045e1e2f3284197 + uri: https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/7aa6/file/open/file-FPbY78Q05zfBqpgZ9Vx48pX6/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181113%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181113T202714Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=2f52d5d0a8316e3f09f29659627997db87bd0947ea2c3a289e23beedaaca9bc9 response: body: {string: !!python/unicode ''} headers: content-length: ['0'] - date: ['Fri, 26 Oct 2018 22:18:56 GMT'] + date: ['Tue, 13 Nov 2018 20:27:15 GMT'] etag: ['"8d777f385d3dfec8815d20f7496026dc"'] server: [AmazonS3] - x-amz-expiration: ['expiry-date="Sat, 17 Nov 2018 00:00:00 GMT", rule-id="3weekpurge"'] - x-amz-id-2: [ejYoM/vnamDXudZtZW6FKBnDfBHq6VmKRi4rKxPTijoQmBJBXy8nz2S+IZPRn/94x8KMkXWYL+w=] - x-amz-request-id: [4EF361A5BC4E0320] + x-amz-expiration: ['expiry-date="Wed, 05 Dec 2018 00:00:00 GMT", rule-id="3weekpurge"'] + x-amz-id-2: [b86bgldbVGPT8YOjkMETureELbDpk6s/FIsK/dwEiO9a8pd5Vj2sq0ih6G44clScHSDXxQ4EpSU=] + x-amz-request-id: [2A3AAB34244EA9C8] x-amz-server-side-encryption: [AES256] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"project": "project-FP9k5YQ0k3JgKZggK9KvpK7k", "fields": + body: !!python/unicode '{"project": "project-FPbY78805zf7Y2Kq50fVv30p", "fields": {"state": true}}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k5YQ0k3JQq5P81088Yy3b/describe + uri: https://api.dnanexus.com/file-FPbY78Q05zfBqpgZ9Vx48pX6/describe response: - body: {string: !!python/unicode '{"id":"file-FP9k5YQ0k3JQq5P81088Yy3b","state":"open"}'} + body: {string: !!python/unicode '{"id":"file-FPbY78Q05zfBqpgZ9Vx48pX6","state":"open"}'} headers: connection: [keep-alive] content-length: ['53'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:18:55 GMT'] + date: ['Tue, 13 Nov 2018 20:27:14 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592335183-12527] + x-request-id: [1542140834931-533606] status: {code: 200, message: OK} - request: body: !!python/unicode '{}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k5YQ0k3JQq5P81088Yy3b/close + uri: https://api.dnanexus.com/file-FPbY78Q05zfBqpgZ9Vx48pX6/close response: - body: {string: !!python/unicode '{"id":"file-FP9k5YQ0k3JQq5P81088Yy3b"}'} + body: {string: !!python/unicode '{"id":"file-FPbY78Q05zfBqpgZ9Vx48pX6"}'} headers: connection: [keep-alive] content-length: ['38'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:18:55 GMT'] + date: ['Tue, 13 Nov 2018 20:27:15 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592335293-632802] + x-request-id: [1542140835021-289918] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"project": "project-FP9k5YQ0k3JgKZggK9KvpK7k", "fields": + body: !!python/unicode '{"project": "project-FPbY78805zf7Y2Kq50fVv30p", "fields": {"state": true}}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k5YQ0k3JQq5P81088Yy3b/describe + uri: https://api.dnanexus.com/file-FPbY78Q05zfBqpgZ9Vx48pX6/describe response: - body: {string: !!python/unicode '{"id":"file-FP9k5YQ0k3JQq5P81088Yy3b","state":"closing"}'} + body: {string: !!python/unicode '{"id":"file-FPbY78Q05zfBqpgZ9Vx48pX6","state":"closing"}'} headers: connection: [keep-alive] content-length: ['56'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:18:55 GMT'] + date: ['Tue, 13 Nov 2018 20:27:15 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592335417-995440] + x-request-id: [1542140835142-294254] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"project": "project-FP9k5YQ0k3JgKZggK9KvpK7k", "fields": + body: !!python/unicode '{"project": "project-FPbY78805zf7Y2Kq50fVv30p", "fields": {"state": true}}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k5YQ0k3JQq5P81088Yy3b/describe + uri: https://api.dnanexus.com/file-FPbY78Q05zfBqpgZ9Vx48pX6/describe response: - body: {string: !!python/unicode '{"id":"file-FP9k5YQ0k3JQq5P81088Yy3b","state":"closed"}'} + body: {string: !!python/unicode '{"id":"file-FPbY78Q05zfBqpgZ9Vx48pX6","state":"closed"}'} headers: connection: [keep-alive] content-length: ['55'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:18:57 GMT'] + date: ['Tue, 13 Nov 2018 20:27:17 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592337532-314358] + x-request-id: [1542140837242-791022] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"parents": true, "folder": "/"}' + body: !!python/unicode '{"folder": "/", "parents": true}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k5YQ0k3JgKZggK9KvpK7k/newFolder + uri: https://api.dnanexus.com/project-FPbY78805zf7Y2Kq50fVv30p/newFolder response: - body: {string: !!python/unicode '{"id":"project-FP9k5YQ0k3JgKZggK9KvpK7k"}'} + body: {string: !!python/unicode '{"id":"project-FPbY78805zf7Y2Kq50fVv30p"}'} headers: connection: [keep-alive] content-length: ['41'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:18:57 GMT'] + date: ['Tue, 13 Nov 2018 20:27:17 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592337648-23247] + x-request-id: [1542140837362-212827] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"name": "folder_file2.txt", "project": "project-FP9k5YQ0k3JgKZggK9KvpK7k", - "folder": "/", "nonce": "8f018dc080ce185d2811be4f1249fd9843b38efb6b7217e7c5e0ed1ce360953c1540592337.706784"}' + body: !!python/unicode '{"project": "project-FPbY78805zf7Y2Kq50fVv30p", "nonce": + "f15405d6c263a8f8091adbea7edefaa6082447cb6c7396e68c57891c4c96af6a1542140837.412302", + "folder": "/", "name": "folder_file2.txt"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/file/new response: - body: {string: !!python/unicode '{"id":"file-FP9k5Z80k3JgKZggK9KvpK7p"}'} + body: {string: !!python/unicode '{"id":"file-FPbY79805zf7B5V79xBKBzzF"}'} headers: connection: [keep-alive] content-length: ['38'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:18:57 GMT'] + date: ['Tue, 13 Nov 2018 20:27:17 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592337753-566130] + x-request-id: [1542140837460-841384] status: {code: 200, message: OK} - request: body: !!python/unicode '{"fields": {"fileUploadParameters": true}}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k5YQ0k3JgKZggK9KvpK7k/describe + uri: https://api.dnanexus.com/project-FPbY78805zf7Y2Kq50fVv30p/describe response: - body: {string: !!python/unicode '{"id":"project-FP9k5YQ0k3JgKZggK9KvpK7k","fileUploadParameters":{"maximumPartSize":5368709120,"minimumPartSize":5242880,"maximumFileSize":5497558138880,"maximumNumParts":10000,"emptyLastPartAllowed":true}}'} + body: {string: !!python/unicode '{"id":"project-FPbY78805zf7Y2Kq50fVv30p","fileUploadParameters":{"maximumPartSize":5368709120,"minimumPartSize":5242880,"maximumFileSize":5497558138880,"maximumNumParts":10000,"emptyLastPartAllowed":true}}'} headers: connection: [keep-alive] content-length: ['205'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:18:57 GMT'] + date: ['Tue, 13 Nov 2018 20:27:17 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592337902-794216] + x-request-id: [1542140837574-924548] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"size": 4, "md5": "8d777f385d3dfec8815d20f7496026dc", - "index": 1}' + body: !!python/unicode '{"index": 1, "size": 4, "md5": "8d777f385d3dfec8815d20f7496026dc"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k5Z80k3JgKZggK9KvpK7p/upload + uri: https://api.dnanexus.com/file-FPbY79805zf7B5V79xBKBzzF/upload response: - body: {string: !!python/unicode '{"url":"https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/2f80/file/open/file-FP9k5Z80k3JgKZggK9KvpK7p/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181026%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181026T221858Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=382f2462c4d6bff44a890c37cea28368e22d63a728a6873681346d8fd2049e51","headers":{"host":"dnanexus-platform-upload-prod.s3.amazonaws.com","content-type":"binary/octet-stream","x-amz-server-side-encryption":"AES256","content-md5":"jXd/OF09/siBXSD3SWAm3A==","content-length":"4"},"expires":1540592458028}'} + body: {string: !!python/unicode '{"url":"https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/cbd0/file/open/file-FPbY79805zf7B5V79xBKBzzF/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181113%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181113T202717Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=4a9434fa8e6737ba10bc992e70b2d3a6af89a6f293e0a485721170d405521c9d","headers":{"host":"dnanexus-platform-upload-prod.s3.amazonaws.com","content-type":"binary/octet-stream","x-amz-server-side-encryption":"AES256","content-md5":"jXd/OF09/siBXSD3SWAm3A==","content-length":"4"},"expires":1542140957699}'} headers: connection: [keep-alive] content-length: ['692'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:18:58 GMT'] + date: ['Tue, 13 Nov 2018 20:27:17 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592338015-266058] + x-request-id: [1542140837678-599997] status: {code: 200, message: OK} - request: body: !!python/unicode data headers: DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] content-length: ['4'] content-md5: [jXd/OF09/siBXSD3SWAm3A==] content-type: [binary/octet-stream] host: [dnanexus-platform-upload-prod.s3.amazonaws.com] x-amz-server-side-encryption: [AES256] method: PUT - uri: https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/2f80/file/open/file-FP9k5Z80k3JgKZggK9KvpK7p/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181026%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181026T221858Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=382f2462c4d6bff44a890c37cea28368e22d63a728a6873681346d8fd2049e51 + uri: https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/cbd0/file/open/file-FPbY79805zf7B5V79xBKBzzF/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181113%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181113T202717Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=4a9434fa8e6737ba10bc992e70b2d3a6af89a6f293e0a485721170d405521c9d response: body: {string: !!python/unicode ''} headers: content-length: ['0'] - date: ['Fri, 26 Oct 2018 22:18:59 GMT'] + date: ['Tue, 13 Nov 2018 20:27:18 GMT'] etag: ['"8d777f385d3dfec8815d20f7496026dc"'] server: [AmazonS3] - x-amz-expiration: ['expiry-date="Sat, 17 Nov 2018 00:00:00 GMT", rule-id="3weekpurge"'] - x-amz-id-2: [clA+dJDFEtsv+WlCbEt6oPcjTtC2PaTs4CL02csfEH14l7SCWot2L9akkNc/XLd90l/00xKGj2g=] - x-amz-request-id: [484332D63A7053F9] + x-amz-expiration: ['expiry-date="Wed, 05 Dec 2018 00:00:00 GMT", rule-id="3weekpurge"'] + x-amz-id-2: [B4YjE1QfKmmyOyE/qYw6y0kz3zrWJWDkmOs/vtTP35a7fvbYiJcbg5RQxwcXND1pLKs8oS5vq4A=] + x-amz-request-id: [5688C5E2D8ECD0F8] x-amz-server-side-encryption: [AES256] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"project": "project-FP9k5YQ0k3JgKZggK9KvpK7k", "fields": + body: !!python/unicode '{"project": "project-FPbY78805zf7Y2Kq50fVv30p", "fields": {"state": true}}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k5Z80k3JgKZggK9KvpK7p/describe + uri: https://api.dnanexus.com/file-FPbY79805zf7B5V79xBKBzzF/describe response: - body: {string: !!python/unicode '{"id":"file-FP9k5Z80k3JgKZggK9KvpK7p","state":"open"}'} + body: {string: !!python/unicode '{"id":"file-FPbY79805zf7B5V79xBKBzzF","state":"open"}'} headers: connection: [keep-alive] content-length: ['53'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:18:58 GMT'] + date: ['Tue, 13 Nov 2018 20:27:17 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592338290-42911] + x-request-id: [1542140837959-201439] status: {code: 200, message: OK} - request: body: !!python/unicode '{}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k5Z80k3JgKZggK9KvpK7p/close + uri: https://api.dnanexus.com/file-FPbY79805zf7B5V79xBKBzzF/close response: - body: {string: !!python/unicode '{"id":"file-FP9k5Z80k3JgKZggK9KvpK7p"}'} + body: {string: !!python/unicode '{"id":"file-FPbY79805zf7B5V79xBKBzzF"}'} headers: connection: [keep-alive] content-length: ['38'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:18:58 GMT'] + date: ['Tue, 13 Nov 2018 20:27:18 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592338403-125263] + x-request-id: [1542140838067-956488] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"project": "project-FP9k5YQ0k3JgKZggK9KvpK7k", "fields": + body: !!python/unicode '{"project": "project-FPbY78805zf7Y2Kq50fVv30p", "fields": {"state": true}}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k5Z80k3JgKZggK9KvpK7p/describe + uri: https://api.dnanexus.com/file-FPbY79805zf7B5V79xBKBzzF/describe response: - body: {string: !!python/unicode '{"id":"file-FP9k5Z80k3JgKZggK9KvpK7p","state":"closing"}'} + body: {string: !!python/unicode '{"id":"file-FPbY79805zf7B5V79xBKBzzF","state":"closing"}'} headers: connection: [keep-alive] content-length: ['56'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:18:58 GMT'] + date: ['Tue, 13 Nov 2018 20:27:18 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592338546-677545] + x-request-id: [1542140838174-465779] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"project": "project-FP9k5YQ0k3JgKZggK9KvpK7k", "fields": + body: !!python/unicode '{"project": "project-FPbY78805zf7Y2Kq50fVv30p", "fields": {"state": true}}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k5Z80k3JgKZggK9KvpK7p/describe + uri: https://api.dnanexus.com/file-FPbY79805zf7B5V79xBKBzzF/describe response: - body: {string: !!python/unicode '{"id":"file-FP9k5Z80k3JgKZggK9KvpK7p","state":"closed"}'} + body: {string: !!python/unicode '{"id":"file-FPbY79805zf7B5V79xBKBzzF","state":"closed"}'} headers: connection: [keep-alive] content-length: ['55'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:19:00 GMT'] + date: ['Tue, 13 Nov 2018 20:27:20 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592340656-798081] + x-request-id: [1542140840374-587380] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"limit": 2, "name": "TestCopy.test_clone_within_project_fail.b893f6c0", + body: !!python/unicode '{"limit": 2, "name": "TestCopy.test_clone_within_project_fail.54af3b94", "level": "VIEW"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/system/findProjects response: - body: {string: !!python/unicode '{"results":[{"id":"project-FP9k5YQ0k3JgKZggK9KvpK7k","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} + body: {string: !!python/unicode '{"results":[{"id":"project-FPbY78805zf7Y2Kq50fVv30p","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} headers: connection: [keep-alive] content-length: ['147'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:19:00 GMT'] + date: ['Tue, 13 Nov 2018 20:27:20 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592340766-226029] + x-request-id: [1542140840479-275256] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"limit": 2, "name": "TestCopy.test_clone_within_project_fail.b893f6c0", + body: !!python/unicode '{"limit": 2, "name": "TestCopy.test_clone_within_project_fail.54af3b94", "level": "VIEW"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/system/findProjects response: - body: {string: !!python/unicode '{"results":[{"id":"project-FP9k5YQ0k3JgKZggK9KvpK7k","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} + body: {string: !!python/unicode '{"results":[{"id":"project-FPbY78805zf7Y2Kq50fVv30p","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} headers: connection: [keep-alive] content-length: ['147'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:19:00 GMT'] + date: ['Tue, 13 Nov 2018 20:27:20 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592340898-819890] + x-request-id: [1542140840591-610786] status: {code: 200, message: OK} - request: body: !!python/unicode '{}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k5YQ0k3JgKZggK9KvpK7k/destroy + uri: https://api.dnanexus.com/project-FPbY78805zf7Y2Kq50fVv30p/destroy response: - body: {string: !!python/unicode '{"id":"project-FP9k5YQ0k3JgKZggK9KvpK7k"}'} + body: {string: !!python/unicode '{"id":"project-FPbY78805zf7Y2Kq50fVv30p"}'} headers: connection: [keep-alive] content-length: ['41'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:19:05 GMT'] + date: ['Tue, 13 Nov 2018 20:27:23 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592341039-621003] + x-request-id: [1542140840705-370362] status: {code: 200, message: OK} version: 1 diff --git a/stor/tests/cassettes_py2/TestCopy/test_dx_canonical_to_dx_file.yaml b/stor_dx/stor_dx/tests/cassettes_py2/TestCopy/test_dx_canonical_to_dx_file.yaml similarity index 57% rename from stor/tests/cassettes_py2/TestCopy/test_dx_canonical_to_dx_file.yaml rename to stor_dx/stor_dx/tests/cassettes_py2/TestCopy/test_dx_canonical_to_dx_file.yaml index ce5190aa..4fcf488d 100644 --- a/stor/tests/cassettes_py2/TestCopy/test_dx_canonical_to_dx_file.yaml +++ b/stor_dx/stor_dx/tests/cassettes_py2/TestCopy/test_dx_canonical_to_dx_file.yaml @@ -1,314 +1,314 @@ interactions: - request: - body: !!python/unicode '{"name": "TestCopy.test_dx_canonical_to_dx_file.14d0838f"}' + body: !!python/unicode '{"name": "TestCopy.test_dx_canonical_to_dx_file.f51f6274"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/project/new response: - body: {string: !!python/unicode '{"id":"project-FP9k5f800P5gKZggK9KvpK7v"}'} + body: {string: !!python/unicode '{"id":"project-FPbY7Bj0q3V6KjvF1pF3yv2J"}'} headers: connection: [keep-alive] content-length: ['41'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:19:05 GMT'] + date: ['Tue, 13 Nov 2018 20:27:23 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592345833-406764] + x-request-id: [1542140843411-10360] status: {code: 200, message: OK} - request: body: !!python/unicode '{}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k5f800P5gKZggK9KvpK7v/describe + uri: https://api.dnanexus.com/project-FPbY7Bj0q3V6KjvF1pF3yv2J/describe response: - body: {string: !!python/unicode '{"id":"project-FP9k5f800P5gKZggK9KvpK7v","name":"TestCopy.test_dx_canonical_to_dx_file.14d0838f","class":"project","created":1540592345000,"modified":1540592345000,"billTo":"org-counsyl","level":"ADMINISTER","dataUsage":0,"sponsoredDataUsage":0,"region":"aws:us-east-1","summary":"","description":"","protected":false,"restricted":false,"downloadRestricted":false,"containsPHI":false,"createdBy":{"user":"user-akumar_counsyl"},"version":0,"storageCost":0,"pendingTransfer":null,"tags":[],"defaultInstanceType":"mem2_hdd2_x2","archivalState":"live","archivalProgress":null,"totalSponsoredEgressBytes":0,"consumedSponsoredEgressBytes":0,"atSpendingLimit":false}'} + body: {string: !!python/unicode '{"id":"project-FPbY7Bj0q3V6KjvF1pF3yv2J","name":"TestCopy.test_dx_canonical_to_dx_file.f51f6274","class":"project","created":1542140843000,"modified":1542140843000,"billTo":"org-counsyl","level":"ADMINISTER","dataUsage":0,"sponsoredDataUsage":0,"region":"aws:us-east-1","summary":"","description":"","protected":false,"restricted":false,"downloadRestricted":false,"containsPHI":false,"createdBy":{"user":"user-akumar_counsyl"},"version":0,"storageCost":0,"pendingTransfer":null,"tags":[],"defaultInstanceType":"mem2_hdd2_x2","archivalState":"live","archivalProgress":null,"totalSponsoredEgressBytes":0,"consumedSponsoredEgressBytes":0,"atSpendingLimit":false}'} headers: connection: [keep-alive] content-length: ['659'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:19:05 GMT'] + date: ['Tue, 13 Nov 2018 20:27:23 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592345948-923030] + x-request-id: [1542140843508-152853] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"parents": true, "folder": "/temp_folder"}' + body: !!python/unicode '{"folder": "/temp_folder", "parents": true}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k5f800P5gKZggK9KvpK7v/newFolder + uri: https://api.dnanexus.com/project-FPbY7Bj0q3V6KjvF1pF3yv2J/newFolder response: - body: {string: !!python/unicode '{"id":"project-FP9k5f800P5gKZggK9KvpK7v"}'} + body: {string: !!python/unicode '{"id":"project-FPbY7Bj0q3V6KjvF1pF3yv2J"}'} headers: connection: [keep-alive] content-length: ['41'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:19:06 GMT'] + date: ['Tue, 13 Nov 2018 20:27:23 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592346079-275608] + x-request-id: [1542140843638-920909] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"name": "temp_file.txt", "project": "project-FP9k5f800P5gKZggK9KvpK7v", - "folder": "/temp_folder", "nonce": "4c63a388774dd2e7203c079e68737db35aa93c1cc8033436769ae365837967bd1540592346.146064"}' + body: !!python/unicode '{"project": "project-FPbY7Bj0q3V6KjvF1pF3yv2J", "nonce": + "a8399c9b263b7e589f9d27cd3a0ffa1cfd890532ee8d33260c5fab12eba522de1542140843.701100", + "folder": "/temp_folder", "name": "temp_file.txt"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/file/new response: - body: {string: !!python/unicode '{"id":"file-FP9k5fQ00P5kfjJK43xBxp97"}'} + body: {string: !!python/unicode '{"id":"file-FPbY7Bj0q3V7Y2Kq50fVv30q"}'} headers: connection: [keep-alive] content-length: ['38'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:19:06 GMT'] + date: ['Tue, 13 Nov 2018 20:27:23 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592346195-623655] + x-request-id: [1542140843744-101730] status: {code: 200, message: OK} - request: body: !!python/unicode '{"fields": {"fileUploadParameters": true}}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k5f800P5gKZggK9KvpK7v/describe + uri: https://api.dnanexus.com/project-FPbY7Bj0q3V6KjvF1pF3yv2J/describe response: - body: {string: !!python/unicode '{"id":"project-FP9k5f800P5gKZggK9KvpK7v","fileUploadParameters":{"maximumPartSize":5368709120,"minimumPartSize":5242880,"maximumFileSize":5497558138880,"maximumNumParts":10000,"emptyLastPartAllowed":true}}'} + body: {string: !!python/unicode '{"id":"project-FPbY7Bj0q3V6KjvF1pF3yv2J","fileUploadParameters":{"maximumPartSize":5368709120,"minimumPartSize":5242880,"maximumFileSize":5497558138880,"maximumNumParts":10000,"emptyLastPartAllowed":true}}'} headers: connection: [keep-alive] content-length: ['205'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:19:06 GMT'] + date: ['Tue, 13 Nov 2018 20:27:23 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592346352-122821] + x-request-id: [1542140843866-781409] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"size": 4, "md5": "8d777f385d3dfec8815d20f7496026dc", - "index": 1}' + body: !!python/unicode '{"index": 1, "size": 4, "md5": "8d777f385d3dfec8815d20f7496026dc"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k5fQ00P5kfjJK43xBxp97/upload + uri: https://api.dnanexus.com/file-FPbY7Bj0q3V7Y2Kq50fVv30q/upload response: - body: {string: !!python/unicode '{"url":"https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/97e3/file/open/file-FP9k5fQ00P5kfjJK43xBxp97/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181026%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181026T221906Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=a4b082a8634ca207a0cc5cef006d78ce6d5818719b5dcff77387c5967d0c220e","headers":{"host":"dnanexus-platform-upload-prod.s3.amazonaws.com","content-type":"binary/octet-stream","x-amz-server-side-encryption":"AES256","content-md5":"jXd/OF09/siBXSD3SWAm3A==","content-length":"4"},"expires":1540592466480}'} + body: {string: !!python/unicode '{"url":"https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/069c/file/open/file-FPbY7Bj0q3V7Y2Kq50fVv30q/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181113%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181113T202723Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=7561dacdd17eab355951c6e642ddf29db075e9e896187c3e7a9260563c09d53d","headers":{"host":"dnanexus-platform-upload-prod.s3.amazonaws.com","content-type":"binary/octet-stream","x-amz-server-side-encryption":"AES256","content-md5":"jXd/OF09/siBXSD3SWAm3A==","content-length":"4"},"expires":1542140963967}'} headers: connection: [keep-alive] content-length: ['692'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:19:06 GMT'] + date: ['Tue, 13 Nov 2018 20:27:23 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592346467-161357] + x-request-id: [1542140843955-259833] status: {code: 200, message: OK} - request: body: !!python/unicode data headers: DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] content-length: ['4'] content-md5: [jXd/OF09/siBXSD3SWAm3A==] content-type: [binary/octet-stream] host: [dnanexus-platform-upload-prod.s3.amazonaws.com] x-amz-server-side-encryption: [AES256] method: PUT - uri: https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/97e3/file/open/file-FP9k5fQ00P5kfjJK43xBxp97/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181026%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181026T221906Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=a4b082a8634ca207a0cc5cef006d78ce6d5818719b5dcff77387c5967d0c220e + uri: https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/069c/file/open/file-FPbY7Bj0q3V7Y2Kq50fVv30q/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181113%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181113T202723Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=7561dacdd17eab355951c6e642ddf29db075e9e896187c3e7a9260563c09d53d response: body: {string: !!python/unicode ''} headers: content-length: ['0'] - date: ['Fri, 26 Oct 2018 22:19:07 GMT'] + date: ['Tue, 13 Nov 2018 20:27:25 GMT'] etag: ['"8d777f385d3dfec8815d20f7496026dc"'] server: [AmazonS3] - x-amz-expiration: ['expiry-date="Sat, 17 Nov 2018 00:00:00 GMT", rule-id="3weekpurge"'] - x-amz-id-2: [LHBkWsplr0q9Pxp/nINCqQdbCkRxLp0Ukoa6BANxVtgYdOmu1wMyVhsHbxI9wKckebRy1fQ+NYI=] - x-amz-request-id: [B9D1BAE363C04BEA] + x-amz-expiration: ['expiry-date="Wed, 05 Dec 2018 00:00:00 GMT", rule-id="3weekpurge"'] + x-amz-id-2: [XZOYgl4q7ikHchlxRUbm56AwHJHtq5hFXSYCMNw9G88JdpPNU3ZPIlELB+84g6MTWDu2ZgsXgXo=] + x-amz-request-id: [EE462676CADBFAEE] x-amz-server-side-encryption: [AES256] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"project": "project-FP9k5f800P5gKZggK9KvpK7v", "fields": + body: !!python/unicode '{"project": "project-FPbY7Bj0q3V6KjvF1pF3yv2J", "fields": {"state": true}}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k5fQ00P5kfjJK43xBxp97/describe + uri: https://api.dnanexus.com/file-FPbY7Bj0q3V7Y2Kq50fVv30q/describe response: - body: {string: !!python/unicode '{"id":"file-FP9k5fQ00P5kfjJK43xBxp97","state":"open"}'} + body: {string: !!python/unicode '{"id":"file-FPbY7Bj0q3V7Y2Kq50fVv30q","state":"open"}'} headers: connection: [keep-alive] content-length: ['53'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:19:07 GMT'] + date: ['Tue, 13 Nov 2018 20:27:24 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592347084-631383] + x-request-id: [1542140844556-145566] status: {code: 200, message: OK} - request: body: !!python/unicode '{}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k5fQ00P5kfjJK43xBxp97/close + uri: https://api.dnanexus.com/file-FPbY7Bj0q3V7Y2Kq50fVv30q/close response: - body: {string: !!python/unicode '{"id":"file-FP9k5fQ00P5kfjJK43xBxp97"}'} + body: {string: !!python/unicode '{"id":"file-FPbY7Bj0q3V7Y2Kq50fVv30q"}'} headers: connection: [keep-alive] content-length: ['38'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:19:07 GMT'] + date: ['Tue, 13 Nov 2018 20:27:24 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592347205-179969] + x-request-id: [1542140844649-494091] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"project": "project-FP9k5f800P5gKZggK9KvpK7v", "fields": + body: !!python/unicode '{"project": "project-FPbY7Bj0q3V6KjvF1pF3yv2J", "fields": {"state": true}}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k5fQ00P5kfjJK43xBxp97/describe + uri: https://api.dnanexus.com/file-FPbY7Bj0q3V7Y2Kq50fVv30q/describe response: - body: {string: !!python/unicode '{"id":"file-FP9k5fQ00P5kfjJK43xBxp97","state":"closing"}'} + body: {string: !!python/unicode '{"id":"file-FPbY7Bj0q3V7Y2Kq50fVv30q","state":"closing"}'} headers: connection: [keep-alive] content-length: ['56'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:19:07 GMT'] + date: ['Tue, 13 Nov 2018 20:27:24 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592347342-457915] + x-request-id: [1542140844762-393283] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"project": "project-FP9k5f800P5gKZggK9KvpK7v", "fields": + body: !!python/unicode '{"project": "project-FPbY7Bj0q3V6KjvF1pF3yv2J", "fields": {"state": true}}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k5fQ00P5kfjJK43xBxp97/describe + uri: https://api.dnanexus.com/file-FPbY7Bj0q3V7Y2Kq50fVv30q/describe response: - body: {string: !!python/unicode '{"id":"file-FP9k5fQ00P5kfjJK43xBxp97","state":"closed"}'} + body: {string: !!python/unicode '{"id":"file-FPbY7Bj0q3V7Y2Kq50fVv30q","state":"closed"}'} headers: connection: [keep-alive] content-length: ['55'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:19:09 GMT'] + date: ['Tue, 13 Nov 2018 20:27:26 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592349457-320482] + x-request-id: [1542140846862-795135] status: {code: 200, message: OK} - request: body: !!python/unicode '{"name": "test_dx_canonical_to_dx_file.TempProj"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/project/new response: - body: {string: !!python/unicode '{"id":"project-FP9k5g80xKkGPGFV44511f1p"}'} + body: {string: !!python/unicode '{"id":"project-FPbY7FQ0qXzVf1vx1VF3x71q"}'} headers: connection: [keep-alive] content-length: ['41'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:19:09 GMT'] + date: ['Tue, 13 Nov 2018 20:27:27 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592349571-77136] + x-request-id: [1542140846976-239532] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"limit": 2, "name": "TestCopy.test_dx_canonical_to_dx_file.14d0838f", + body: !!python/unicode '{"limit": 2, "name": "TestCopy.test_dx_canonical_to_dx_file.f51f6274", "level": "VIEW"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/system/findProjects response: - body: {string: !!python/unicode '{"results":[{"id":"project-FP9k5f800P5gKZggK9KvpK7v","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} + body: {string: !!python/unicode '{"results":[{"id":"project-FPbY7Bj0q3V6KjvF1pF3yv2J","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} headers: connection: [keep-alive] content-length: ['147'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:19:09 GMT'] + date: ['Tue, 13 Nov 2018 20:27:27 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592349697-359792] + x-request-id: [1542140847096-225083] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"objects": [{"name": "temp_file.txt", "project": "project-FP9k5f800P5gKZggK9KvpK7v", - "batchsize": 2, "folder": "/temp_folder"}]}' + body: !!python/unicode '{"objects": [{"project": "project-FPbY7Bj0q3V6KjvF1pF3yv2J", + "folder": "/temp_folder", "name": "temp_file.txt", "batchsize": 2}]}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/system/resolveDataObjects response: - body: {string: !!python/unicode '{"results":[[{"project":"project-FP9k5f800P5gKZggK9KvpK7v","id":"file-FP9k5fQ00P5kfjJK43xBxp97"}]]}'} + body: {string: !!python/unicode '{"results":[[{"project":"project-FPbY7Bj0q3V6KjvF1pF3yv2J","id":"file-FPbY7Bj0q3V7Y2Kq50fVv30q"}]]}'} headers: connection: [keep-alive] content-length: ['99'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:19:09 GMT'] + date: ['Tue, 13 Nov 2018 20:27:27 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592349849-686703] + x-request-id: [1542140847238-555875] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"project": "project-FP9k5f800P5gKZggK9KvpK7v"}' + body: !!python/unicode '{"project": "project-FPbY7Bj0q3V6KjvF1pF3yv2J"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k5fQ00P5kfjJK43xBxp97/describe + uri: https://api.dnanexus.com/file-FPbY7Bj0q3V7Y2Kq50fVv30q/describe response: - body: {string: !!python/unicode '{"id":"file-FP9k5fQ00P5kfjJK43xBxp97","project":"project-FP9k5f800P5gKZggK9KvpK7v","class":"file","sponsored":false,"name":"temp_file.txt","types":[],"state":"closed","hidden":false,"links":[],"folder":"/temp_folder","tags":[],"created":1540592346000,"modified":1540592347775,"createdBy":{"user":"user-akumar_counsyl"},"media":"text/plain","archivalState":"live","size":4}'} + body: {string: !!python/unicode '{"id":"file-FPbY7Bj0q3V7Y2Kq50fVv30q","project":"project-FPbY7Bj0q3V6KjvF1pF3yv2J","class":"file","sponsored":false,"name":"temp_file.txt","types":[],"state":"closed","hidden":false,"links":[],"folder":"/temp_folder","tags":[],"created":1542140843000,"modified":1542140845343,"createdBy":{"user":"user-akumar_counsyl"},"media":"text/plain","archivalState":"live","size":4}'} headers: connection: [keep-alive] content-length: ['372'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:19:09 GMT'] + date: ['Tue, 13 Nov 2018 20:27:27 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592349957-264820] + x-request-id: [1542140847356-276025] status: {code: 200, message: OK} - request: body: !!python/unicode '{"limit": 2, "name": "test_dx_canonical_to_dx_file.TempProj", @@ -316,51 +316,51 @@ interactions: headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/system/findProjects response: - body: {string: !!python/unicode '{"results":[{"id":"project-FP9k5g80xKkGPGFV44511f1p","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} + body: {string: !!python/unicode '{"results":[{"id":"project-FPbY7FQ0qXzVf1vx1VF3x71q","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} headers: connection: [keep-alive] content-length: ['147'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:19:10 GMT'] + date: ['Tue, 13 Nov 2018 20:27:27 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592350068-632777] + x-request-id: [1542140847465-232242] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"includeHidden": false, "only": "folders", "folder": - "/random.txt", "describe": {"fields": {"name": true, "folder": true}}}' + body: !!python/unicode '{"folder": "/random.txt", "describe": {"fields": {"folder": + true, "name": true}}, "only": "folders", "includeHidden": false}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k5g80xKkGPGFV44511f1p/listFolder + uri: https://api.dnanexus.com/project-FPbY7FQ0qXzVf1vx1VF3x71q/listFolder response: body: {string: !!python/unicode '{"error":{"type":"ResourceNotFound","message":"The - specified folder could not be found in project-FP9k5g80xKkGPGFV44511f1p"}}'} + specified folder could not be found in project-FPbY7FQ0qXzVf1vx1VF3x71q"}}'} headers: connection: [keep-alive] content-type: [application/json] - date: ['Fri, 26 Oct 2018 22:19:10 GMT'] + date: ['Tue, 13 Nov 2018 20:27:27 GMT'] server: [nginx] transfer-encoding: [chunked] vary: [Accept-Encoding] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592350213-861771] + x-request-id: [1542140847590-20024] status: {code: 404, message: Not Found} - request: - body: !!python/unicode '{"objects": [{"name": "random.txt", "project": "project-FP9k5g80xKkGPGFV44511f1p", - "batchsize": 2, "folder": "/"}]}' + body: !!python/unicode '{"objects": [{"project": "project-FPbY7FQ0qXzVf1vx1VF3x71q", + "folder": "/", "name": "random.txt", "batchsize": 2}]}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/system/resolveDataObjects response: @@ -369,72 +369,73 @@ interactions: connection: [keep-alive] content-length: ['16'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:19:10 GMT'] + date: ['Tue, 13 Nov 2018 20:27:27 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592350618-766993] + x-request-id: [1542140847944-13166] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"destination": "/", "project": "project-FP9k5g80xKkGPGFV44511f1p", - "objects": ["file-FP9k5fQ00P5kfjJK43xBxp97"]}' + body: !!python/unicode '{"project": "project-FPbY7FQ0qXzVf1vx1VF3x71q", "destination": + "/", "objects": ["file-FPbY7Bj0q3V7Y2Kq50fVv30q"]}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k5f800P5gKZggK9KvpK7v/clone + uri: https://api.dnanexus.com/project-FPbY7Bj0q3V6KjvF1pF3yv2J/clone response: - body: {string: !!python/unicode '{"id":"project-FP9k5f800P5gKZggK9KvpK7v","project":"project-FP9k5g80xKkGPGFV44511f1p","exists":[]}'} + body: {string: !!python/unicode '{"id":"project-FPbY7Bj0q3V6KjvF1pF3yv2J","project":"project-FPbY7FQ0qXzVf1vx1VF3x71q","exists":[]}'} headers: connection: [keep-alive] content-length: ['98'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:19:10 GMT'] + date: ['Tue, 13 Nov 2018 20:27:28 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592350723-437665] + x-request-id: [1542140848047-643622] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"project": "project-FP9k5f800P5gKZggK9KvpK7v"}' + body: !!python/unicode '{"project": "project-FPbY7Bj0q3V6KjvF1pF3yv2J"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k5fQ00P5kfjJK43xBxp97/describe + uri: https://api.dnanexus.com/file-FPbY7Bj0q3V7Y2Kq50fVv30q/describe response: - body: {string: !!python/unicode '{"id":"file-FP9k5fQ00P5kfjJK43xBxp97","project":"project-FP9k5f800P5gKZggK9KvpK7v","class":"file","sponsored":false,"name":"temp_file.txt","types":[],"state":"closed","hidden":false,"links":[],"folder":"/temp_folder","tags":[],"created":1540592346000,"modified":1540592347775,"createdBy":{"user":"user-akumar_counsyl"},"media":"text/plain","archivalState":"live","size":4}'} + body: {string: !!python/unicode '{"id":"file-FPbY7Bj0q3V7Y2Kq50fVv30q","project":"project-FPbY7Bj0q3V6KjvF1pF3yv2J","class":"file","sponsored":false,"name":"temp_file.txt","types":[],"state":"closed","hidden":false,"links":[],"folder":"/temp_folder","tags":[],"created":1542140843000,"modified":1542140845343,"createdBy":{"user":"user-akumar_counsyl"},"media":"text/plain","archivalState":"live","size":4}'} headers: connection: [keep-alive] content-length: ['372'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:19:10 GMT'] + date: ['Tue, 13 Nov 2018 20:27:28 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592350934-702742] + x-request-id: [1542140848365-288183] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"name": "random.txt", "project": "project-FP9k5g80xKkGPGFV44511f1p"}' + body: !!python/unicode '{"project": "project-FPbY7FQ0qXzVf1vx1VF3x71q", "name": + "random.txt"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k5fQ00P5kfjJK43xBxp97/rename + uri: https://api.dnanexus.com/file-FPbY7Bj0q3V7Y2Kq50fVv30q/rename response: - body: {string: !!python/unicode '{"id":"file-FP9k5fQ00P5kfjJK43xBxp97"}'} + body: {string: !!python/unicode '{"id":"file-FPbY7Bj0q3V7Y2Kq50fVv30q"}'} headers: connection: [keep-alive] content-length: ['38'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:19:11 GMT'] + date: ['Tue, 13 Nov 2018 20:27:28 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592351051-199517] + x-request-id: [1542140848467-625026] status: {code: 200, message: OK} - request: body: !!python/unicode '{"limit": 2, "name": "test_dx_canonical_to_dx_file.TempProj", @@ -442,100 +443,100 @@ interactions: headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/system/findProjects response: - body: {string: !!python/unicode '{"results":[{"id":"project-FP9k5g80xKkGPGFV44511f1p","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} + body: {string: !!python/unicode '{"results":[{"id":"project-FPbY7FQ0qXzVf1vx1VF3x71q","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} headers: connection: [keep-alive] content-length: ['147'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:19:11 GMT'] + date: ['Tue, 13 Nov 2018 20:27:28 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592351161-26821] + x-request-id: [1542140848559-329132] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"objects": [{"name": "random.txt", "project": "project-FP9k5g80xKkGPGFV44511f1p", - "batchsize": 2, "folder": "/"}]}' + body: !!python/unicode '{"objects": [{"project": "project-FPbY7FQ0qXzVf1vx1VF3x71q", + "folder": "/", "name": "random.txt", "batchsize": 2}]}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/system/resolveDataObjects response: - body: {string: !!python/unicode '{"results":[[{"project":"project-FP9k5g80xKkGPGFV44511f1p","id":"file-FP9k5fQ00P5kfjJK43xBxp97"}]]}'} + body: {string: !!python/unicode '{"results":[[{"project":"project-FPbY7FQ0qXzVf1vx1VF3x71q","id":"file-FPbY7Bj0q3V7Y2Kq50fVv30q"}]]}'} headers: connection: [keep-alive] content-length: ['99'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:19:11 GMT'] + date: ['Tue, 13 Nov 2018 20:27:28 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592351298-119685] + x-request-id: [1542140848689-301411] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"project": "project-FP9k5g80xKkGPGFV44511f1p"}' + body: !!python/unicode '{"project": "project-FPbY7FQ0qXzVf1vx1VF3x71q"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k5fQ00P5kfjJK43xBxp97/describe + uri: https://api.dnanexus.com/file-FPbY7Bj0q3V7Y2Kq50fVv30q/describe response: - body: {string: !!python/unicode '{"id":"file-FP9k5fQ00P5kfjJK43xBxp97","project":"project-FP9k5g80xKkGPGFV44511f1p","class":"file","sponsored":false,"name":"random.txt","types":[],"state":"closed","hidden":false,"links":[],"folder":"/","tags":[],"created":1540592346000,"modified":1540592351063,"createdBy":{"user":"user-akumar_counsyl"},"media":"text/plain","archivalState":"live","size":4}'} + body: {string: !!python/unicode '{"id":"file-FPbY7Bj0q3V7Y2Kq50fVv30q","project":"project-FPbY7FQ0qXzVf1vx1VF3x71q","class":"file","sponsored":false,"name":"random.txt","types":[],"state":"closed","hidden":false,"links":[],"folder":"/","tags":[],"created":1542140843000,"modified":1542140848477,"createdBy":{"user":"user-akumar_counsyl"},"media":"text/plain","archivalState":"live","size":4}'} headers: connection: [keep-alive] content-length: ['358'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:19:11 GMT'] + date: ['Tue, 13 Nov 2018 20:27:28 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592351409-876503] + x-request-id: [1542140848786-793727] status: {code: 200, message: OK} - request: body: !!python/unicode '{}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k5g80xKkGPGFV44511f1p/destroy + uri: https://api.dnanexus.com/project-FPbY7FQ0qXzVf1vx1VF3x71q/destroy response: - body: {string: !!python/unicode '{"id":"project-FP9k5g80xKkGPGFV44511f1p"}'} + body: {string: !!python/unicode '{"id":"project-FPbY7FQ0qXzVf1vx1VF3x71q"}'} headers: connection: [keep-alive] content-length: ['41'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:19:14 GMT'] + date: ['Tue, 13 Nov 2018 20:27:31 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592351525-478398] + x-request-id: [1542140848886-513542] status: {code: 200, message: OK} - request: body: !!python/unicode '{}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k5f800P5gKZggK9KvpK7v/destroy + uri: https://api.dnanexus.com/project-FPbY7Bj0q3V6KjvF1pF3yv2J/destroy response: - body: {string: !!python/unicode '{"id":"project-FP9k5f800P5gKZggK9KvpK7v"}'} + body: {string: !!python/unicode '{"id":"project-FPbY7Bj0q3V6KjvF1pF3yv2J"}'} headers: connection: [keep-alive] content-length: ['41'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:19:18 GMT'] + date: ['Tue, 13 Nov 2018 20:27:34 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592354879-906890] + x-request-id: [1542140851488-76564] status: {code: 200, message: OK} version: 1 diff --git a/stor/tests/cassettes_py2/TestCopy/test_dx_dir_to_posix_error.yaml b/stor_dx/stor_dx/tests/cassettes_py2/TestCopy/test_dx_dir_to_posix_error.yaml similarity index 57% rename from stor/tests/cassettes_py2/TestCopy/test_dx_dir_to_posix_error.yaml rename to stor_dx/stor_dx/tests/cassettes_py2/TestCopy/test_dx_dir_to_posix_error.yaml index 4140ea76..afd10ce7 100644 --- a/stor/tests/cassettes_py2/TestCopy/test_dx_dir_to_posix_error.yaml +++ b/stor_dx/stor_dx/tests/cassettes_py2/TestCopy/test_dx_dir_to_posix_error.yaml @@ -1,261 +1,261 @@ interactions: - request: - body: !!python/unicode '{"name": "TestCopy.test_dx_dir_to_posix_error.d21eaab7"}' + body: !!python/unicode '{"name": "TestCopy.test_dx_dir_to_posix_error.2a1a407c"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/project/new response: - body: {string: !!python/unicode '{"id":"project-FP9k5kQ0JgZZQ3zV44ZYQ318"}'} + body: {string: !!python/unicode '{"id":"project-FPbY7JQ0qpX7Y2Kq50fVv30z"}'} headers: connection: [keep-alive] content-length: ['41'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:19:18 GMT'] + date: ['Tue, 13 Nov 2018 20:27:34 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592358717-52679] + x-request-id: [1542140854872-948822] status: {code: 200, message: OK} - request: body: !!python/unicode '{}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k5kQ0JgZZQ3zV44ZYQ318/describe + uri: https://api.dnanexus.com/project-FPbY7JQ0qpX7Y2Kq50fVv30z/describe response: - body: {string: !!python/unicode '{"id":"project-FP9k5kQ0JgZZQ3zV44ZYQ318","name":"TestCopy.test_dx_dir_to_posix_error.d21eaab7","class":"project","created":1540592358000,"modified":1540592358000,"billTo":"org-counsyl","level":"ADMINISTER","dataUsage":0,"sponsoredDataUsage":0,"region":"aws:us-east-1","summary":"","description":"","protected":false,"restricted":false,"downloadRestricted":false,"containsPHI":false,"createdBy":{"user":"user-akumar_counsyl"},"version":0,"storageCost":0,"pendingTransfer":null,"tags":[],"defaultInstanceType":"mem2_hdd2_x2","archivalState":"live","archivalProgress":null,"totalSponsoredEgressBytes":0,"consumedSponsoredEgressBytes":0,"atSpendingLimit":false}'} + body: {string: !!python/unicode '{"id":"project-FPbY7JQ0qpX7Y2Kq50fVv30z","name":"TestCopy.test_dx_dir_to_posix_error.2a1a407c","class":"project","created":1542140854000,"modified":1542140854000,"billTo":"org-counsyl","level":"ADMINISTER","dataUsage":0,"sponsoredDataUsage":0,"region":"aws:us-east-1","summary":"","description":"","protected":false,"restricted":false,"downloadRestricted":false,"containsPHI":false,"createdBy":{"user":"user-akumar_counsyl"},"version":0,"storageCost":0,"pendingTransfer":null,"tags":[],"defaultInstanceType":"mem2_hdd2_x2","archivalState":"live","archivalProgress":null,"totalSponsoredEgressBytes":0,"consumedSponsoredEgressBytes":0,"atSpendingLimit":false}'} headers: connection: [keep-alive] content-length: ['657'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:19:18 GMT'] + date: ['Tue, 13 Nov 2018 20:27:35 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592358839-359088] + x-request-id: [1542140855049-825482] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"parents": true, "folder": "/temp_folder"}' + body: !!python/unicode '{"folder": "/temp_folder", "parents": true}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k5kQ0JgZZQ3zV44ZYQ318/newFolder + uri: https://api.dnanexus.com/project-FPbY7JQ0qpX7Y2Kq50fVv30z/newFolder response: - body: {string: !!python/unicode '{"id":"project-FP9k5kQ0JgZZQ3zV44ZYQ318"}'} + body: {string: !!python/unicode '{"id":"project-FPbY7JQ0qpX7Y2Kq50fVv30z"}'} headers: connection: [keep-alive] content-length: ['41'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:19:18 GMT'] + date: ['Tue, 13 Nov 2018 20:27:35 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592358974-315234] + x-request-id: [1542140855239-89365] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"name": "folder_file.txt", "project": "project-FP9k5kQ0JgZZQ3zV44ZYQ318", - "folder": "/temp_folder", "nonce": "6910f2ba4a19e79141c372ea45d6dde07fa59ebc9efb675c47c03142a92355271540592359.043688"}' + body: !!python/unicode '{"project": "project-FPbY7JQ0qpX7Y2Kq50fVv30z", "nonce": + "89491d03344000f0644d6959992d21d8b0e22ed483b178dae79907680da7bfdb1542140855.362306", + "folder": "/temp_folder", "name": "folder_file.txt"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/file/new response: - body: {string: !!python/unicode '{"id":"file-FP9k5kj0JgZQq5P81088Yy3g"}'} + body: {string: !!python/unicode '{"id":"file-FPbY7Jj0qpX1f1vx1VF3x71v"}'} headers: connection: [keep-alive] content-length: ['38'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:19:19 GMT'] + date: ['Tue, 13 Nov 2018 20:27:35 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592359095-784519] + x-request-id: [1542140855413-357709] status: {code: 200, message: OK} - request: body: !!python/unicode '{"fields": {"fileUploadParameters": true}}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k5kQ0JgZZQ3zV44ZYQ318/describe + uri: https://api.dnanexus.com/project-FPbY7JQ0qpX7Y2Kq50fVv30z/describe response: - body: {string: !!python/unicode '{"id":"project-FP9k5kQ0JgZZQ3zV44ZYQ318","fileUploadParameters":{"maximumPartSize":5368709120,"minimumPartSize":5242880,"maximumFileSize":5497558138880,"maximumNumParts":10000,"emptyLastPartAllowed":true}}'} + body: {string: !!python/unicode '{"id":"project-FPbY7JQ0qpX7Y2Kq50fVv30z","fileUploadParameters":{"maximumPartSize":5368709120,"minimumPartSize":5242880,"maximumFileSize":5497558138880,"maximumNumParts":10000,"emptyLastPartAllowed":true}}'} headers: connection: [keep-alive] content-length: ['205'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:19:19 GMT'] + date: ['Tue, 13 Nov 2018 20:27:35 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592359247-758456] + x-request-id: [1542140855830-76289] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"size": 4, "md5": "8d777f385d3dfec8815d20f7496026dc", - "index": 1}' + body: !!python/unicode '{"index": 1, "size": 4, "md5": "8d777f385d3dfec8815d20f7496026dc"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k5kj0JgZQq5P81088Yy3g/upload + uri: https://api.dnanexus.com/file-FPbY7Jj0qpX1f1vx1VF3x71v/upload response: - body: {string: !!python/unicode '{"url":"https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/f545/file/open/file-FP9k5kj0JgZQq5P81088Yy3g/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181026%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181026T221919Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=b57fcae0e4803859c5da097a87e0c480811cd32d54d103447cf038ab23a2a4e5","headers":{"host":"dnanexus-platform-upload-prod.s3.amazonaws.com","content-type":"binary/octet-stream","x-amz-server-side-encryption":"AES256","content-md5":"jXd/OF09/siBXSD3SWAm3A==","content-length":"4"},"expires":1540592479377}'} + body: {string: !!python/unicode '{"url":"https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/6ad4/file/open/file-FPbY7Jj0qpX1f1vx1VF3x71v/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181113%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181113T202736Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=ae72a930a86c7a3d7d4ba237c6a9316c2af48b55a988229f373c7f4e8b78850c","headers":{"host":"dnanexus-platform-upload-prod.s3.amazonaws.com","content-type":"binary/octet-stream","x-amz-server-side-encryption":"AES256","content-md5":"jXd/OF09/siBXSD3SWAm3A==","content-length":"4"},"expires":1542140976059}'} headers: connection: [keep-alive] content-length: ['692'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:19:19 GMT'] + date: ['Tue, 13 Nov 2018 20:27:36 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592359360-268192] + x-request-id: [1542140856018-685659] status: {code: 200, message: OK} - request: body: !!python/unicode data headers: DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] content-length: ['4'] content-md5: [jXd/OF09/siBXSD3SWAm3A==] content-type: [binary/octet-stream] host: [dnanexus-platform-upload-prod.s3.amazonaws.com] x-amz-server-side-encryption: [AES256] method: PUT - uri: https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/f545/file/open/file-FP9k5kj0JgZQq5P81088Yy3g/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181026%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181026T221919Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=b57fcae0e4803859c5da097a87e0c480811cd32d54d103447cf038ab23a2a4e5 + uri: https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/6ad4/file/open/file-FPbY7Jj0qpX1f1vx1VF3x71v/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181113%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181113T202736Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=ae72a930a86c7a3d7d4ba237c6a9316c2af48b55a988229f373c7f4e8b78850c response: body: {string: !!python/unicode ''} headers: content-length: ['0'] - date: ['Fri, 26 Oct 2018 22:19:20 GMT'] + date: ['Tue, 13 Nov 2018 20:27:37 GMT'] etag: ['"8d777f385d3dfec8815d20f7496026dc"'] server: [AmazonS3] - x-amz-expiration: ['expiry-date="Sat, 17 Nov 2018 00:00:00 GMT", rule-id="3weekpurge"'] - x-amz-id-2: [wcvdKBGOaS3ylSCNPa4qmZRvcVqgmolQsJc8x4vcwfVQIX4YXXUx5lmktNqsTJa0Gvkis/jEdWo=] - x-amz-request-id: [D702833D387DB964] + x-amz-expiration: ['expiry-date="Wed, 05 Dec 2018 00:00:00 GMT", rule-id="3weekpurge"'] + x-amz-id-2: [G8JX7hGsp8CPsv0wraJv23NC5IzGEgT9aBM4UdOzAgWUxL2z47004wWX0Ajobzlf9MN3KzmrF+c=] + x-amz-request-id: [D0C9199D949E68DF] x-amz-server-side-encryption: [AES256] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"project": "project-FP9k5kQ0JgZZQ3zV44ZYQ318", "fields": + body: !!python/unicode '{"project": "project-FPbY7JQ0qpX7Y2Kq50fVv30z", "fields": {"state": true}}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k5kj0JgZQq5P81088Yy3g/describe + uri: https://api.dnanexus.com/file-FPbY7Jj0qpX1f1vx1VF3x71v/describe response: - body: {string: !!python/unicode '{"id":"file-FP9k5kj0JgZQq5P81088Yy3g","state":"open"}'} + body: {string: !!python/unicode '{"id":"file-FPbY7Jj0qpX1f1vx1VF3x71v","state":"open"}'} headers: connection: [keep-alive] content-length: ['53'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:19:20 GMT'] + date: ['Tue, 13 Nov 2018 20:27:36 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592360083-667659] + x-request-id: [1542140856608-729036] status: {code: 200, message: OK} - request: body: !!python/unicode '{}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k5kj0JgZQq5P81088Yy3g/close + uri: https://api.dnanexus.com/file-FPbY7Jj0qpX1f1vx1VF3x71v/close response: - body: {string: !!python/unicode '{"id":"file-FP9k5kj0JgZQq5P81088Yy3g"}'} + body: {string: !!python/unicode '{"id":"file-FPbY7Jj0qpX1f1vx1VF3x71v"}'} headers: connection: [keep-alive] content-length: ['38'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:19:20 GMT'] + date: ['Tue, 13 Nov 2018 20:27:36 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592360201-69359] + x-request-id: [1542140856727-535287] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"project": "project-FP9k5kQ0JgZZQ3zV44ZYQ318", "fields": + body: !!python/unicode '{"project": "project-FPbY7JQ0qpX7Y2Kq50fVv30z", "fields": {"state": true}}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k5kj0JgZQq5P81088Yy3g/describe + uri: https://api.dnanexus.com/file-FPbY7Jj0qpX1f1vx1VF3x71v/describe response: - body: {string: !!python/unicode '{"id":"file-FP9k5kj0JgZQq5P81088Yy3g","state":"closing"}'} + body: {string: !!python/unicode '{"id":"file-FPbY7Jj0qpX1f1vx1VF3x71v","state":"closing"}'} headers: connection: [keep-alive] content-length: ['56'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:19:20 GMT'] + date: ['Tue, 13 Nov 2018 20:27:36 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592360333-570232] + x-request-id: [1542140856889-313987] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"project": "project-FP9k5kQ0JgZZQ3zV44ZYQ318", "fields": + body: !!python/unicode '{"project": "project-FPbY7JQ0qpX7Y2Kq50fVv30z", "fields": {"state": true}}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k5kj0JgZQq5P81088Yy3g/describe + uri: https://api.dnanexus.com/file-FPbY7Jj0qpX1f1vx1VF3x71v/describe response: - body: {string: !!python/unicode '{"id":"file-FP9k5kj0JgZQq5P81088Yy3g","state":"closed"}'} + body: {string: !!python/unicode '{"id":"file-FPbY7Jj0qpX1f1vx1VF3x71v","state":"closed"}'} headers: connection: [keep-alive] content-length: ['55'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:19:22 GMT'] + date: ['Tue, 13 Nov 2018 20:27:39 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592362453-680544] + x-request-id: [1542140859166-154483] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"limit": 2, "name": "TestCopy.test_dx_dir_to_posix_error.d21eaab7", + body: !!python/unicode '{"limit": 2, "name": "TestCopy.test_dx_dir_to_posix_error.2a1a407c", "level": "VIEW"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/system/findProjects response: - body: {string: !!python/unicode '{"results":[{"id":"project-FP9k5kQ0JgZZQ3zV44ZYQ318","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} + body: {string: !!python/unicode '{"results":[{"id":"project-FPbY7JQ0qpX7Y2Kq50fVv30z","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} headers: connection: [keep-alive] content-length: ['147'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:19:22 GMT'] + date: ['Tue, 13 Nov 2018 20:27:39 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592362571-215858] + x-request-id: [1542140859418-728497] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"objects": [{"name": "temp_folder", "project": "project-FP9k5kQ0JgZZQ3zV44ZYQ318", - "batchsize": 2, "folder": "/"}]}' + body: !!python/unicode '{"objects": [{"project": "project-FPbY7JQ0qpX7Y2Kq50fVv30z", + "folder": "/", "name": "temp_folder", "batchsize": 2}]}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/system/resolveDataObjects response: @@ -264,30 +264,30 @@ interactions: connection: [keep-alive] content-length: ['16'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:19:22 GMT'] + date: ['Tue, 13 Nov 2018 20:27:39 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592362703-315240] + x-request-id: [1542140859776-305500] status: {code: 200, message: OK} - request: body: !!python/unicode '{}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k5kQ0JgZZQ3zV44ZYQ318/destroy + uri: https://api.dnanexus.com/project-FPbY7JQ0qpX7Y2Kq50fVv30z/destroy response: - body: {string: !!python/unicode '{"id":"project-FP9k5kQ0JgZZQ3zV44ZYQ318"}'} + body: {string: !!python/unicode '{"id":"project-FPbY7JQ0qpX7Y2Kq50fVv30z"}'} headers: connection: [keep-alive] content-length: ['41'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:19:25 GMT'] + date: ['Tue, 13 Nov 2018 20:27:43 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592362815-954264] + x-request-id: [1542140860035-429559] status: {code: 200, message: OK} version: 1 diff --git a/stor/tests/cassettes_py2/TestCopy/test_dx_to_dx_diff_project_exist_file.yaml b/stor_dx/stor_dx/tests/cassettes_py2/TestCopy/test_dx_to_dx_diff_project_exist_file.yaml similarity index 56% rename from stor/tests/cassettes_py2/TestCopy/test_dx_to_dx_diff_project_exist_file.yaml rename to stor_dx/stor_dx/tests/cassettes_py2/TestCopy/test_dx_to_dx_diff_project_exist_file.yaml index 82a479ab..9c215663 100644 --- a/stor/tests/cassettes_py2/TestCopy/test_dx_to_dx_diff_project_exist_file.yaml +++ b/stor_dx/stor_dx/tests/cassettes_py2/TestCopy/test_dx_to_dx_diff_project_exist_file.yaml @@ -1,630 +1,630 @@ interactions: - request: - body: !!python/unicode '{"name": "TestCopy.test_dx_to_dx_diff_project_exist_file.33a662ad"}' + body: !!python/unicode '{"name": "TestCopy.test_dx_to_dx_diff_project_exist_file.890626f6"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/project/new response: - body: {string: !!python/unicode '{"id":"project-FP9k5q80j2VkfjJK43xBxp99"}'} + body: {string: !!python/unicode '{"id":"project-FPbY7Pj0bz3ggpxV1j3fqjBg"}'} headers: connection: [keep-alive] content-length: ['41'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:19:25 GMT'] + date: ['Tue, 13 Nov 2018 20:27:43 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592365882-49633] + x-request-id: [1542140863495-279990] status: {code: 200, message: OK} - request: body: !!python/unicode '{}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k5q80j2VkfjJK43xBxp99/describe + uri: https://api.dnanexus.com/project-FPbY7Pj0bz3ggpxV1j3fqjBg/describe response: - body: {string: !!python/unicode '{"id":"project-FP9k5q80j2VkfjJK43xBxp99","name":"TestCopy.test_dx_to_dx_diff_project_exist_file.33a662ad","class":"project","created":1540592365000,"modified":1540592365000,"billTo":"org-counsyl","level":"ADMINISTER","dataUsage":0,"sponsoredDataUsage":0,"region":"aws:us-east-1","summary":"","description":"","protected":false,"restricted":false,"downloadRestricted":false,"containsPHI":false,"createdBy":{"user":"user-akumar_counsyl"},"version":0,"storageCost":0,"pendingTransfer":null,"tags":[],"defaultInstanceType":"mem2_hdd2_x2","archivalState":"live","archivalProgress":null,"totalSponsoredEgressBytes":0,"consumedSponsoredEgressBytes":0,"atSpendingLimit":false}'} + body: {string: !!python/unicode '{"id":"project-FPbY7Pj0bz3ggpxV1j3fqjBg","name":"TestCopy.test_dx_to_dx_diff_project_exist_file.890626f6","class":"project","created":1542140863000,"modified":1542140863000,"billTo":"org-counsyl","level":"ADMINISTER","dataUsage":0,"sponsoredDataUsage":0,"region":"aws:us-east-1","summary":"","description":"","protected":false,"restricted":false,"downloadRestricted":false,"containsPHI":false,"createdBy":{"user":"user-akumar_counsyl"},"version":0,"storageCost":0,"pendingTransfer":null,"tags":[],"defaultInstanceType":"mem2_hdd2_x2","archivalState":"live","archivalProgress":null,"totalSponsoredEgressBytes":0,"consumedSponsoredEgressBytes":0,"atSpendingLimit":false}'} headers: connection: [keep-alive] content-length: ['668'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:19:26 GMT'] + date: ['Tue, 13 Nov 2018 20:27:43 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592366029-656581] + x-request-id: [1542140863683-253142] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"parents": true, "folder": "/temp_folder"}' + body: !!python/unicode '{"folder": "/temp_folder", "parents": true}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k5q80j2VkfjJK43xBxp99/newFolder + uri: https://api.dnanexus.com/project-FPbY7Pj0bz3ggpxV1j3fqjBg/newFolder response: - body: {string: !!python/unicode '{"id":"project-FP9k5q80j2VkfjJK43xBxp99"}'} + body: {string: !!python/unicode '{"id":"project-FPbY7Pj0bz3ggpxV1j3fqjBg"}'} headers: connection: [keep-alive] content-length: ['41'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:19:26 GMT'] + date: ['Tue, 13 Nov 2018 20:27:43 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592366169-266175] + x-request-id: [1542140863927-276012] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"name": "folder_file.txt", "project": "project-FP9k5q80j2VkfjJK43xBxp99", - "folder": "/temp_folder", "nonce": "4931c14682ace68f17d7f21b0c68d0b9e4d94ab2c99f52b92e3627a9f6d8d3dc1540592366.276386"}' + body: !!python/unicode '{"project": "project-FPbY7Pj0bz3ggpxV1j3fqjBg", "nonce": + "f7f835f440ded085fbace2312276ba7d5c7d9362279bc90c34472d07a1b4347a1542140864.032340", + "folder": "/temp_folder", "name": "folder_file.txt"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/file/new response: - body: {string: !!python/unicode '{"id":"file-FP9k5qQ0j2VvPGFV44511f1y"}'} + body: {string: !!python/unicode '{"id":"file-FPbY7Q00bz3YYFg006F1yx7K"}'} headers: connection: [keep-alive] content-length: ['38'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:19:26 GMT'] + date: ['Tue, 13 Nov 2018 20:27:44 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592366327-453077] + x-request-id: [1542140864078-785797] status: {code: 200, message: OK} - request: body: !!python/unicode '{"fields": {"fileUploadParameters": true}}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k5q80j2VkfjJK43xBxp99/describe + uri: https://api.dnanexus.com/project-FPbY7Pj0bz3ggpxV1j3fqjBg/describe response: - body: {string: !!python/unicode '{"id":"project-FP9k5q80j2VkfjJK43xBxp99","fileUploadParameters":{"maximumPartSize":5368709120,"minimumPartSize":5242880,"maximumFileSize":5497558138880,"maximumNumParts":10000,"emptyLastPartAllowed":true}}'} + body: {string: !!python/unicode '{"id":"project-FPbY7Pj0bz3ggpxV1j3fqjBg","fileUploadParameters":{"maximumPartSize":5368709120,"minimumPartSize":5242880,"maximumFileSize":5497558138880,"maximumNumParts":10000,"emptyLastPartAllowed":true}}'} headers: connection: [keep-alive] content-length: ['205'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:19:26 GMT'] + date: ['Tue, 13 Nov 2018 20:27:44 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592366472-633304] + x-request-id: [1542140864301-251494] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"size": 5, "md5": "73dfff57fe24e807bd4fb1bc4e07cd73", - "index": 1}' + body: !!python/unicode '{"index": 1, "size": 5, "md5": "73dfff57fe24e807bd4fb1bc4e07cd73"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k5qQ0j2VvPGFV44511f1y/upload + uri: https://api.dnanexus.com/file-FPbY7Q00bz3YYFg006F1yx7K/upload response: - body: {string: !!python/unicode '{"url":"https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/ae3d/file/open/file-FP9k5qQ0j2VvPGFV44511f1y/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181026%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181026T221926Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=0c9ff8d7009ee8aa720fa5cd79b3941da13d6dc51b2fe067d89325b5668aa676","headers":{"host":"dnanexus-platform-upload-prod.s3.amazonaws.com","content-type":"binary/octet-stream","x-amz-server-side-encryption":"AES256","content-md5":"c9//V/4k6Ae9T7G8TgfNcw==","content-length":"5"},"expires":1540592486596}'} + body: {string: !!python/unicode '{"url":"https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/7ced/file/open/file-FPbY7Q00bz3YYFg006F1yx7K/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181113%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181113T202744Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=d33a21fbd4e8f1ae83ed4b627f4a9d77978deb4838e5575e8c0012e4fb06b028","headers":{"host":"dnanexus-platform-upload-prod.s3.amazonaws.com","content-type":"binary/octet-stream","x-amz-server-side-encryption":"AES256","content-md5":"c9//V/4k6Ae9T7G8TgfNcw==","content-length":"5"},"expires":1542140984604}'} headers: connection: [keep-alive] content-length: ['692'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:19:26 GMT'] + date: ['Tue, 13 Nov 2018 20:27:44 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592366585-763827] + x-request-id: [1542140864479-52745] status: {code: 200, message: OK} - request: body: !!python/unicode data0 headers: DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] content-length: ['5'] content-md5: [c9//V/4k6Ae9T7G8TgfNcw==] content-type: [binary/octet-stream] host: [dnanexus-platform-upload-prod.s3.amazonaws.com] x-amz-server-side-encryption: [AES256] method: PUT - uri: https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/ae3d/file/open/file-FP9k5qQ0j2VvPGFV44511f1y/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181026%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181026T221926Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=0c9ff8d7009ee8aa720fa5cd79b3941da13d6dc51b2fe067d89325b5668aa676 + uri: https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/7ced/file/open/file-FPbY7Q00bz3YYFg006F1yx7K/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181113%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181113T202744Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=d33a21fbd4e8f1ae83ed4b627f4a9d77978deb4838e5575e8c0012e4fb06b028 response: body: {string: !!python/unicode ''} headers: content-length: ['0'] - date: ['Fri, 26 Oct 2018 22:19:28 GMT'] + date: ['Tue, 13 Nov 2018 20:27:45 GMT'] etag: ['"73dfff57fe24e807bd4fb1bc4e07cd73"'] server: [AmazonS3] - x-amz-expiration: ['expiry-date="Sat, 17 Nov 2018 00:00:00 GMT", rule-id="3weekpurge"'] - x-amz-id-2: [4bY9jnrrLP4DnVxKfJn/2FBKBXzrGvYeUU9yMFmGx+dNy9WfFpSRMcEqrJZGP4GC5QtsHrU5xjo=] - x-amz-request-id: [B43CB5C1FA5ED3EC] + x-amz-expiration: ['expiry-date="Wed, 05 Dec 2018 00:00:00 GMT", rule-id="3weekpurge"'] + x-amz-id-2: [LjHVXvEz4PG52gemMBX8w5mZnJCoj9kmmXVlUV5cm21+RhRMJ4DAxErFDixekaJlpzrnv4MK7wQ=] + x-amz-request-id: [6EB002CE8D577753] x-amz-server-side-encryption: [AES256] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"project": "project-FP9k5q80j2VkfjJK43xBxp99", "fields": + body: !!python/unicode '{"project": "project-FPbY7Pj0bz3ggpxV1j3fqjBg", "fields": {"state": true}}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k5qQ0j2VvPGFV44511f1y/describe + uri: https://api.dnanexus.com/file-FPbY7Q00bz3YYFg006F1yx7K/describe response: - body: {string: !!python/unicode '{"id":"file-FP9k5qQ0j2VvPGFV44511f1y","state":"open"}'} + body: {string: !!python/unicode '{"id":"file-FPbY7Q00bz3YYFg006F1yx7K","state":"open"}'} headers: connection: [keep-alive] content-length: ['53'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:19:27 GMT'] + date: ['Tue, 13 Nov 2018 20:27:45 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592367245-382638] + x-request-id: [1542140865156-130755] status: {code: 200, message: OK} - request: body: !!python/unicode '{}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k5qQ0j2VvPGFV44511f1y/close + uri: https://api.dnanexus.com/file-FPbY7Q00bz3YYFg006F1yx7K/close response: - body: {string: !!python/unicode '{"id":"file-FP9k5qQ0j2VvPGFV44511f1y"}'} + body: {string: !!python/unicode '{"id":"file-FPbY7Q00bz3YYFg006F1yx7K"}'} headers: connection: [keep-alive] content-length: ['38'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:19:27 GMT'] + date: ['Tue, 13 Nov 2018 20:27:45 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592367357-613484] + x-request-id: [1542140865305-877096] status: {code: 200, message: OK} - request: body: !!python/unicode '{"name": "test_dx_to_dx_diff_project_fail.TempProj"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/project/new response: - body: {string: !!python/unicode '{"id":"project-FP9k5qj0Vz9Qq5P81088Yy3q"}'} + body: {string: !!python/unicode '{"id":"project-FPbY7Q805fjfKjvF1pF3yv2Z"}'} headers: connection: [keep-alive] content-length: ['41'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:19:27 GMT'] + date: ['Tue, 13 Nov 2018 20:27:45 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592367485-28324] + x-request-id: [1542140865728-165712] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"parents": false, "folder": "/folder2"}' + body: !!python/unicode '{"folder": "/folder2", "parents": false}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k5qj0Vz9Qq5P81088Yy3q/newFolder + uri: https://api.dnanexus.com/project-FPbY7Q805fjfKjvF1pF3yv2Z/newFolder response: - body: {string: !!python/unicode '{"id":"project-FP9k5qj0Vz9Qq5P81088Yy3q"}'} + body: {string: !!python/unicode '{"id":"project-FPbY7Q805fjfKjvF1pF3yv2Z"}'} headers: connection: [keep-alive] content-length: ['41'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:19:27 GMT'] + date: ['Tue, 13 Nov 2018 20:27:46 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592367620-483648] + x-request-id: [1542140865927-222608] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"name": "folder_file.txt", "project": "project-FP9k5qj0Vz9Qq5P81088Yy3q", - "folder": "/folder2", "nonce": "dd8b1acea123eea4f1abc72f21d4c2db465c9adc8a427ac035e9cf678f7427301540592367.696137"}' + body: !!python/unicode '{"project": "project-FPbY7Q805fjfKjvF1pF3yv2Z", "nonce": + "e1e33c0f26313caed32b2827c2b0812c68ab9a78ea54c40b741b79546ec8a7ad1542140866.057121", + "folder": "/folder2", "name": "folder_file.txt"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/file/new response: - body: {string: !!python/unicode '{"id":"file-FP9k5qj0Vz9Qq5P81088Yy3v"}'} + body: {string: !!python/unicode '{"id":"file-FPbY7QQ05fjgB5V79xBKBzzJ"}'} headers: connection: [keep-alive] content-length: ['38'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:19:27 GMT'] + date: ['Tue, 13 Nov 2018 20:27:46 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592367746-765668] + x-request-id: [1542140866105-927978] status: {code: 200, message: OK} - request: body: !!python/unicode '{"fields": {"fileUploadParameters": true}}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k5qj0Vz9Qq5P81088Yy3q/describe + uri: https://api.dnanexus.com/project-FPbY7Q805fjfKjvF1pF3yv2Z/describe response: - body: {string: !!python/unicode '{"id":"project-FP9k5qj0Vz9Qq5P81088Yy3q","fileUploadParameters":{"maximumPartSize":5368709120,"minimumPartSize":5242880,"maximumFileSize":5497558138880,"maximumNumParts":10000,"emptyLastPartAllowed":true}}'} + body: {string: !!python/unicode '{"id":"project-FPbY7Q805fjfKjvF1pF3yv2Z","fileUploadParameters":{"maximumPartSize":5368709120,"minimumPartSize":5242880,"maximumFileSize":5497558138880,"maximumNumParts":10000,"emptyLastPartAllowed":true}}'} headers: connection: [keep-alive] content-length: ['205'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:19:27 GMT'] + date: ['Tue, 13 Nov 2018 20:27:46 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592367915-613641] + x-request-id: [1542140866345-798536] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"size": 4, "md5": "8d777f385d3dfec8815d20f7496026dc", - "index": 1}' + body: !!python/unicode '{"index": 1, "size": 4, "md5": "8d777f385d3dfec8815d20f7496026dc"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k5qj0Vz9Qq5P81088Yy3v/upload + uri: https://api.dnanexus.com/file-FPbY7QQ05fjgB5V79xBKBzzJ/upload response: - body: {string: !!python/unicode '{"url":"https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/eda2/file/open/file-FP9k5qj0Vz9Qq5P81088Yy3v/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181026%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181026T221928Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=c7b81ca004b1f99bcd892523788354f8c0d22c6a22bb96eadc1dcf8ed0577dd0","headers":{"host":"dnanexus-platform-upload-prod.s3.amazonaws.com","content-type":"binary/octet-stream","x-amz-server-side-encryption":"AES256","content-md5":"jXd/OF09/siBXSD3SWAm3A==","content-length":"4"},"expires":1540592488043}'} + body: {string: !!python/unicode '{"url":"https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/96b8/file/open/file-FPbY7QQ05fjgB5V79xBKBzzJ/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181113%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181113T202746Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=0f66f58853c5a1c3851bb4c5d9669a3814a360ce2c8ccc44d33a644eebbc7d7f","headers":{"host":"dnanexus-platform-upload-prod.s3.amazonaws.com","content-type":"binary/octet-stream","x-amz-server-side-encryption":"AES256","content-md5":"jXd/OF09/siBXSD3SWAm3A==","content-length":"4"},"expires":1542140986510}'} headers: connection: [keep-alive] content-length: ['692'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:19:28 GMT'] + date: ['Tue, 13 Nov 2018 20:27:46 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592368027-53400] + x-request-id: [1542140866490-683384] status: {code: 200, message: OK} - request: body: !!python/unicode data headers: DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] content-length: ['4'] content-md5: [jXd/OF09/siBXSD3SWAm3A==] content-type: [binary/octet-stream] host: [dnanexus-platform-upload-prod.s3.amazonaws.com] x-amz-server-side-encryption: [AES256] method: PUT - uri: https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/eda2/file/open/file-FP9k5qj0Vz9Qq5P81088Yy3v/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181026%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181026T221928Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=c7b81ca004b1f99bcd892523788354f8c0d22c6a22bb96eadc1dcf8ed0577dd0 + uri: https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/96b8/file/open/file-FPbY7QQ05fjgB5V79xBKBzzJ/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181113%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181113T202746Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=0f66f58853c5a1c3851bb4c5d9669a3814a360ce2c8ccc44d33a644eebbc7d7f response: body: {string: !!python/unicode ''} headers: content-length: ['0'] - date: ['Fri, 26 Oct 2018 22:19:29 GMT'] + date: ['Tue, 13 Nov 2018 20:27:47 GMT'] etag: ['"8d777f385d3dfec8815d20f7496026dc"'] server: [AmazonS3] - x-amz-expiration: ['expiry-date="Sat, 17 Nov 2018 00:00:00 GMT", rule-id="3weekpurge"'] - x-amz-id-2: [DzCWR3qG5EhxTKcHAR8AyhCpK0yeDuRMwUNWxKc0hOgksLGdzKdD2UMibMAYEWKttizPGawUrA8=] - x-amz-request-id: [1AE486822ADBC887] + x-amz-expiration: ['expiry-date="Wed, 05 Dec 2018 00:00:00 GMT", rule-id="3weekpurge"'] + x-amz-id-2: [CLvQ96LqCHm5UFwb+3HF2BI/MdkXGDdKE4emU7Uagm9YefTxw1WIQAQ22UuFE5FdRc0G5L57u1I=] + x-amz-request-id: [8471FA5BE02AA072] x-amz-server-side-encryption: [AES256] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"project": "project-FP9k5qj0Vz9Qq5P81088Yy3q", "fields": + body: !!python/unicode '{"project": "project-FPbY7Q805fjfKjvF1pF3yv2Z", "fields": {"state": true}}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k5qj0Vz9Qq5P81088Yy3v/describe + uri: https://api.dnanexus.com/file-FPbY7QQ05fjgB5V79xBKBzzJ/describe response: - body: {string: !!python/unicode '{"id":"file-FP9k5qj0Vz9Qq5P81088Yy3v","state":"open"}'} + body: {string: !!python/unicode '{"id":"file-FPbY7QQ05fjgB5V79xBKBzzJ","state":"open"}'} headers: connection: [keep-alive] content-length: ['53'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:19:28 GMT'] + date: ['Tue, 13 Nov 2018 20:27:46 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592368329-811803] + x-request-id: [1542140866712-388455] status: {code: 200, message: OK} - request: body: !!python/unicode '{}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k5qj0Vz9Qq5P81088Yy3v/close + uri: https://api.dnanexus.com/file-FPbY7QQ05fjgB5V79xBKBzzJ/close response: - body: {string: !!python/unicode '{"id":"file-FP9k5qj0Vz9Qq5P81088Yy3v"}'} + body: {string: !!python/unicode '{"id":"file-FPbY7QQ05fjgB5V79xBKBzzJ"}'} headers: connection: [keep-alive] content-length: ['38'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:19:28 GMT'] + date: ['Tue, 13 Nov 2018 20:27:46 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592368443-146128] + x-request-id: [1542140866854-173031] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"project": "project-FP9k5qj0Vz9Qq5P81088Yy3q", "fields": + body: !!python/unicode '{"project": "project-FPbY7Q805fjfKjvF1pF3yv2Z", "fields": {"state": true}}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k5qj0Vz9Qq5P81088Yy3v/describe + uri: https://api.dnanexus.com/file-FPbY7QQ05fjgB5V79xBKBzzJ/describe response: - body: {string: !!python/unicode '{"id":"file-FP9k5qj0Vz9Qq5P81088Yy3v","state":"closing"}'} + body: {string: !!python/unicode '{"id":"file-FPbY7QQ05fjgB5V79xBKBzzJ","state":"closing"}'} headers: connection: [keep-alive] content-length: ['56'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:19:28 GMT'] + date: ['Tue, 13 Nov 2018 20:27:47 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592368573-551687] + x-request-id: [1542140867075-621438] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"project": "project-FP9k5qj0Vz9Qq5P81088Yy3q", "fields": + body: !!python/unicode '{"project": "project-FPbY7Q805fjfKjvF1pF3yv2Z", "fields": {"state": true}}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k5qj0Vz9Qq5P81088Yy3v/describe + uri: https://api.dnanexus.com/file-FPbY7QQ05fjgB5V79xBKBzzJ/describe response: - body: {string: !!python/unicode '{"id":"file-FP9k5qj0Vz9Qq5P81088Yy3v","state":"closed"}'} + body: {string: !!python/unicode '{"id":"file-FPbY7QQ05fjgB5V79xBKBzzJ","state":"closed"}'} headers: connection: [keep-alive] content-length: ['55'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:19:30 GMT'] + date: ['Tue, 13 Nov 2018 20:27:49 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592370754-40579] + x-request-id: [1542140869265-18041] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"name": "dest_file.txt", "project": "project-FP9k5qj0Vz9Qq5P81088Yy3q", - "nonce": "3eb42db9f22e724928c56d00d8a5e42b769c50c14f5530c6cab351939219cc091540592370.819388"}' + body: !!python/unicode '{"project": "project-FPbY7Q805fjfKjvF1pF3yv2Z", "nonce": + "3f1d384dc12abcef877962eb38f97e0de41601927b72ff5fe6de8234624cfd901542140869.458880", + "name": "dest_file.txt"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/file/new response: - body: {string: !!python/unicode '{"id":"file-FP9k5vQ0Vz9ZQ3zV44ZYQ319"}'} + body: {string: !!python/unicode '{"id":"file-FPbY7V805fjvVV2X1Z5bX2jF"}'} headers: connection: [keep-alive] content-length: ['38'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:19:30 GMT'] + date: ['Tue, 13 Nov 2018 20:27:49 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592370872-931050] + x-request-id: [1542140869506-612347] status: {code: 200, message: OK} - request: body: !!python/unicode '{"fields": {"fileUploadParameters": true}}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k5qj0Vz9Qq5P81088Yy3q/describe + uri: https://api.dnanexus.com/project-FPbY7Q805fjfKjvF1pF3yv2Z/describe response: - body: {string: !!python/unicode '{"id":"project-FP9k5qj0Vz9Qq5P81088Yy3q","fileUploadParameters":{"maximumPartSize":5368709120,"minimumPartSize":5242880,"maximumFileSize":5497558138880,"maximumNumParts":10000,"emptyLastPartAllowed":true}}'} + body: {string: !!python/unicode '{"id":"project-FPbY7Q805fjfKjvF1pF3yv2Z","fileUploadParameters":{"maximumPartSize":5368709120,"minimumPartSize":5242880,"maximumFileSize":5497558138880,"maximumNumParts":10000,"emptyLastPartAllowed":true}}'} headers: connection: [keep-alive] content-length: ['205'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:19:31 GMT'] + date: ['Tue, 13 Nov 2018 20:27:50 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592371033-861074] + x-request-id: [1542140870081-130622] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"size": 4, "md5": "8d777f385d3dfec8815d20f7496026dc", - "index": 1}' + body: !!python/unicode '{"index": 1, "size": 4, "md5": "8d777f385d3dfec8815d20f7496026dc"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k5vQ0Vz9ZQ3zV44ZYQ319/upload + uri: https://api.dnanexus.com/file-FPbY7V805fjvVV2X1Z5bX2jF/upload response: - body: {string: !!python/unicode '{"url":"https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/8880/file/open/file-FP9k5vQ0Vz9ZQ3zV44ZYQ319/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181026%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181026T221931Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=3d6b4e0b6a4988ee369beafd84ddaf03d31946f7c53e4766ad505d3092f74636","headers":{"host":"dnanexus-platform-upload-prod.s3.amazonaws.com","content-type":"binary/octet-stream","x-amz-server-side-encryption":"AES256","content-md5":"jXd/OF09/siBXSD3SWAm3A==","content-length":"4"},"expires":1540592491179}'} + body: {string: !!python/unicode '{"url":"https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/0834/file/open/file-FPbY7V805fjvVV2X1Z5bX2jF/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181113%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181113T202750Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=33f74a51c072e18d659d1a86877dd4ce73297cb19c55898c56a700880ef521dc","headers":{"host":"dnanexus-platform-upload-prod.s3.amazonaws.com","content-type":"binary/octet-stream","x-amz-server-side-encryption":"AES256","content-md5":"jXd/OF09/siBXSD3SWAm3A==","content-length":"4"},"expires":1542140990337}'} headers: connection: [keep-alive] content-length: ['692'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:19:31 GMT'] + date: ['Tue, 13 Nov 2018 20:27:50 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592371158-714182] + x-request-id: [1542140870282-718060] status: {code: 200, message: OK} - request: body: !!python/unicode data headers: DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] content-length: ['4'] content-md5: [jXd/OF09/siBXSD3SWAm3A==] content-type: [binary/octet-stream] host: [dnanexus-platform-upload-prod.s3.amazonaws.com] x-amz-server-side-encryption: [AES256] method: PUT - uri: https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/8880/file/open/file-FP9k5vQ0Vz9ZQ3zV44ZYQ319/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181026%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181026T221931Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=3d6b4e0b6a4988ee369beafd84ddaf03d31946f7c53e4766ad505d3092f74636 + uri: https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/0834/file/open/file-FPbY7V805fjvVV2X1Z5bX2jF/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181113%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181113T202750Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=33f74a51c072e18d659d1a86877dd4ce73297cb19c55898c56a700880ef521dc response: body: {string: !!python/unicode ''} headers: content-length: ['0'] - date: ['Fri, 26 Oct 2018 22:19:32 GMT'] + date: ['Tue, 13 Nov 2018 20:27:51 GMT'] etag: ['"8d777f385d3dfec8815d20f7496026dc"'] server: [AmazonS3] - x-amz-expiration: ['expiry-date="Sat, 17 Nov 2018 00:00:00 GMT", rule-id="3weekpurge"'] - x-amz-id-2: [B4B1aEULz0IMSAETcEo8BEdG3Wutu4h05c8RBMsn348+TU7dqb+T/bV5fY9JLVds6alvRzwPD6w=] - x-amz-request-id: [3C00F9AB97EC102A] + x-amz-expiration: ['expiry-date="Wed, 05 Dec 2018 00:00:00 GMT", rule-id="3weekpurge"'] + x-amz-id-2: [NWOjsfMstflUZ4mF94i+XR2J6by8pRRRW7R8RaHXF482lTXKtFlZdIdoBzG0AfYpZ9IjWiia0p8=] + x-amz-request-id: [F4BE42601D3FAC31] x-amz-server-side-encryption: [AES256] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"project": "project-FP9k5qj0Vz9Qq5P81088Yy3q", "fields": + body: !!python/unicode '{"project": "project-FPbY7Q805fjfKjvF1pF3yv2Z", "fields": {"state": true}}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k5vQ0Vz9ZQ3zV44ZYQ319/describe + uri: https://api.dnanexus.com/file-FPbY7V805fjvVV2X1Z5bX2jF/describe response: - body: {string: !!python/unicode '{"id":"file-FP9k5vQ0Vz9ZQ3zV44ZYQ319","state":"open"}'} + body: {string: !!python/unicode '{"id":"file-FPbY7V805fjvVV2X1Z5bX2jF","state":"open"}'} headers: connection: [keep-alive] content-length: ['53'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:19:31 GMT'] + date: ['Tue, 13 Nov 2018 20:27:50 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592371446-63567] + x-request-id: [1542140870609-801304] status: {code: 200, message: OK} - request: body: !!python/unicode '{}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k5vQ0Vz9ZQ3zV44ZYQ319/close + uri: https://api.dnanexus.com/file-FPbY7V805fjvVV2X1Z5bX2jF/close response: - body: {string: !!python/unicode '{"id":"file-FP9k5vQ0Vz9ZQ3zV44ZYQ319"}'} + body: {string: !!python/unicode '{"id":"file-FPbY7V805fjvVV2X1Z5bX2jF"}'} headers: connection: [keep-alive] content-length: ['38'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:19:31 GMT'] + date: ['Tue, 13 Nov 2018 20:27:50 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592371595-408063] + x-request-id: [1542140870807-102518] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"project": "project-FP9k5qj0Vz9Qq5P81088Yy3q", "fields": + body: !!python/unicode '{"project": "project-FPbY7Q805fjfKjvF1pF3yv2Z", "fields": {"state": true}}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k5vQ0Vz9ZQ3zV44ZYQ319/describe + uri: https://api.dnanexus.com/file-FPbY7V805fjvVV2X1Z5bX2jF/describe response: - body: {string: !!python/unicode '{"id":"file-FP9k5vQ0Vz9ZQ3zV44ZYQ319","state":"closing"}'} + body: {string: !!python/unicode '{"id":"file-FPbY7V805fjvVV2X1Z5bX2jF","state":"closing"}'} headers: connection: [keep-alive] content-length: ['56'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:19:31 GMT'] + date: ['Tue, 13 Nov 2018 20:27:51 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592371728-185271] + x-request-id: [1542140871019-890913] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"project": "project-FP9k5qj0Vz9Qq5P81088Yy3q", "fields": + body: !!python/unicode '{"project": "project-FPbY7Q805fjfKjvF1pF3yv2Z", "fields": {"state": true}}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k5vQ0Vz9ZQ3zV44ZYQ319/describe + uri: https://api.dnanexus.com/file-FPbY7V805fjvVV2X1Z5bX2jF/describe response: - body: {string: !!python/unicode '{"id":"file-FP9k5vQ0Vz9ZQ3zV44ZYQ319","state":"closed"}'} + body: {string: !!python/unicode '{"id":"file-FPbY7V805fjvVV2X1Z5bX2jF","state":"closed"}'} headers: connection: [keep-alive] content-length: ['55'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:19:33 GMT'] + date: ['Tue, 13 Nov 2018 20:27:53 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592373948-794224] + x-request-id: [1542140873155-874054] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"limit": 2, "name": "TestCopy.test_dx_to_dx_diff_project_exist_file.33a662ad", + body: !!python/unicode '{"limit": 2, "name": "TestCopy.test_dx_to_dx_diff_project_exist_file.890626f6", "level": "VIEW"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/system/findProjects response: - body: {string: !!python/unicode '{"results":[{"id":"project-FP9k5q80j2VkfjJK43xBxp99","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} + body: {string: !!python/unicode '{"results":[{"id":"project-FPbY7Pj0bz3ggpxV1j3fqjBg","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} headers: connection: [keep-alive] content-length: ['147'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:19:34 GMT'] + date: ['Tue, 13 Nov 2018 20:27:53 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592374067-588287] + x-request-id: [1542140873296-499353] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"objects": [{"name": "folder_file.txt", "project": "project-FP9k5q80j2VkfjJK43xBxp99", - "batchsize": 2, "folder": "/temp_folder"}]}' + body: !!python/unicode '{"objects": [{"project": "project-FPbY7Pj0bz3ggpxV1j3fqjBg", + "folder": "/temp_folder", "name": "folder_file.txt", "batchsize": 2}]}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/system/resolveDataObjects response: - body: {string: !!python/unicode '{"results":[[{"project":"project-FP9k5q80j2VkfjJK43xBxp99","id":"file-FP9k5qQ0j2VvPGFV44511f1y"}]]}'} + body: {string: !!python/unicode '{"results":[[{"project":"project-FPbY7Pj0bz3ggpxV1j3fqjBg","id":"file-FPbY7Q00bz3YYFg006F1yx7K"}]]}'} headers: connection: [keep-alive] content-length: ['99'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:19:34 GMT'] + date: ['Tue, 13 Nov 2018 20:27:53 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592374267-910807] + x-request-id: [1542140873456-600900] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"project": "project-FP9k5q80j2VkfjJK43xBxp99"}' + body: !!python/unicode '{"project": "project-FPbY7Pj0bz3ggpxV1j3fqjBg"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k5qQ0j2VvPGFV44511f1y/describe + uri: https://api.dnanexus.com/file-FPbY7Q00bz3YYFg006F1yx7K/describe response: - body: {string: !!python/unicode '{"id":"file-FP9k5qQ0j2VvPGFV44511f1y","project":"project-FP9k5q80j2VkfjJK43xBxp99","class":"file","sponsored":false,"name":"folder_file.txt","types":[],"state":"closed","hidden":false,"links":[],"folder":"/temp_folder","tags":[],"created":1540592366000,"modified":1540592368516,"createdBy":{"user":"user-akumar_counsyl"},"media":"text/plain","archivalState":"live","size":5}'} + body: {string: !!python/unicode '{"id":"file-FPbY7Q00bz3YYFg006F1yx7K","project":"project-FPbY7Pj0bz3ggpxV1j3fqjBg","class":"file","sponsored":false,"name":"folder_file.txt","types":[],"state":"closed","hidden":false,"links":[],"folder":"/temp_folder","tags":[],"created":1542140864000,"modified":1542140866865,"createdBy":{"user":"user-akumar_counsyl"},"media":"text/plain","archivalState":"live","size":5}'} headers: connection: [keep-alive] content-length: ['374'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:19:34 GMT'] + date: ['Tue, 13 Nov 2018 20:27:53 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592374385-975527] + x-request-id: [1542140873572-387343] status: {code: 200, message: OK} - request: body: !!python/unicode '{"limit": 2, "name": "test_dx_to_dx_diff_project_fail.TempProj", @@ -632,104 +632,104 @@ interactions: headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/system/findProjects response: - body: {string: !!python/unicode '{"results":[{"id":"project-FP9k5qj0Vz9Qq5P81088Yy3q","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} + body: {string: !!python/unicode '{"results":[{"id":"project-FPbY7Q805fjfKjvF1pF3yv2Z","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} headers: connection: [keep-alive] content-length: ['147'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:19:34 GMT'] + date: ['Tue, 13 Nov 2018 20:27:53 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592374607-136213] + x-request-id: [1542140873687-888815] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"includeHidden": false, "only": "folders", "folder": - "/dest_file.txt", "describe": {"fields": {"name": true, "folder": true}}}' + body: !!python/unicode '{"folder": "/dest_file.txt", "describe": {"fields": {"folder": + true, "name": true}}, "only": "folders", "includeHidden": false}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k5qj0Vz9Qq5P81088Yy3q/listFolder + uri: https://api.dnanexus.com/project-FPbY7Q805fjfKjvF1pF3yv2Z/listFolder response: body: {string: !!python/unicode '{"error":{"type":"ResourceNotFound","message":"The - specified folder could not be found in project-FP9k5qj0Vz9Qq5P81088Yy3q"}}'} + specified folder could not be found in project-FPbY7Q805fjfKjvF1pF3yv2Z"}}'} headers: connection: [keep-alive] content-type: [application/json] - date: ['Fri, 26 Oct 2018 22:19:34 GMT'] + date: ['Tue, 13 Nov 2018 20:27:53 GMT'] server: [nginx] transfer-encoding: [chunked] vary: [Accept-Encoding] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592374916-480204] + x-request-id: [1542140873858-599185] status: {code: 404, message: Not Found} - request: - body: !!python/unicode '{"objects": [{"name": "dest_file.txt", "project": "project-FP9k5qj0Vz9Qq5P81088Yy3q", - "batchsize": 2, "folder": "/"}]}' + body: !!python/unicode '{"objects": [{"project": "project-FPbY7Q805fjfKjvF1pF3yv2Z", + "folder": "/", "name": "dest_file.txt", "batchsize": 2}]}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/system/resolveDataObjects response: - body: {string: !!python/unicode '{"results":[[{"project":"project-FP9k5qj0Vz9Qq5P81088Yy3q","id":"file-FP9k5vQ0Vz9ZQ3zV44ZYQ319"}]]}'} + body: {string: !!python/unicode '{"results":[[{"project":"project-FPbY7Q805fjfKjvF1pF3yv2Z","id":"file-FPbY7V805fjvVV2X1Z5bX2jF"}]]}'} headers: connection: [keep-alive] content-length: ['99'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:19:35 GMT'] + date: ['Tue, 13 Nov 2018 20:27:54 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592375387-272384] + x-request-id: [1542140874211-183957] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"project": "project-FP9k5qj0Vz9Qq5P81088Yy3q"}' + body: !!python/unicode '{"project": "project-FPbY7Q805fjfKjvF1pF3yv2Z"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k5vQ0Vz9ZQ3zV44ZYQ319/describe + uri: https://api.dnanexus.com/file-FPbY7V805fjvVV2X1Z5bX2jF/describe response: - body: {string: !!python/unicode '{"id":"file-FP9k5vQ0Vz9ZQ3zV44ZYQ319","project":"project-FP9k5qj0Vz9Qq5P81088Yy3q","class":"file","sponsored":false,"name":"dest_file.txt","types":[],"state":"closed","hidden":false,"links":[],"folder":"/","tags":[],"created":1540592370000,"modified":1540592372297,"createdBy":{"user":"user-akumar_counsyl"},"media":"text/plain","archivalState":"live","size":4}'} + body: {string: !!python/unicode '{"id":"file-FPbY7V805fjvVV2X1Z5bX2jF","project":"project-FPbY7Q805fjfKjvF1pF3yv2Z","class":"file","sponsored":false,"name":"dest_file.txt","types":[],"state":"closed","hidden":false,"links":[],"folder":"/","tags":[],"created":1542140869000,"modified":1542140871499,"createdBy":{"user":"user-akumar_counsyl"},"media":"text/plain","archivalState":"live","size":4}'} headers: connection: [keep-alive] content-length: ['361'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:19:35 GMT'] + date: ['Tue, 13 Nov 2018 20:27:54 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592375658-928319] + x-request-id: [1542140874308-344204] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"objects": ["file-FP9k5vQ0Vz9ZQ3zV44ZYQ319"]}' + body: !!python/unicode '{"objects": ["file-FPbY7V805fjvVV2X1Z5bX2jF"]}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k5qj0Vz9Qq5P81088Yy3q/removeObjects + uri: https://api.dnanexus.com/project-FPbY7Q805fjfKjvF1pF3yv2Z/removeObjects response: - body: {string: !!python/unicode '{"id":"project-FP9k5qj0Vz9Qq5P81088Yy3q"}'} + body: {string: !!python/unicode '{"id":"project-FPbY7Q805fjfKjvF1pF3yv2Z"}'} headers: connection: [keep-alive] content-length: ['41'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:19:37 GMT'] + date: ['Tue, 13 Nov 2018 20:27:54 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592376109-649398] + x-request-id: [1542140874425-174648] status: {code: 200, message: OK} - request: body: !!python/unicode '{"limit": 2, "name": "test_dx_to_dx_diff_project_fail.TempProj", @@ -737,81 +737,82 @@ interactions: headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/system/findProjects response: - body: {string: !!python/unicode '{"results":[{"id":"project-FP9k5qj0Vz9Qq5P81088Yy3q","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} + body: {string: !!python/unicode '{"results":[{"id":"project-FPbY7Q805fjfKjvF1pF3yv2Z","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} headers: connection: [keep-alive] content-length: ['147'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:19:37 GMT'] + date: ['Tue, 13 Nov 2018 20:27:54 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592377239-356646] + x-request-id: [1542140874716-828679] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"destination": "/", "project": "project-FP9k5qj0Vz9Qq5P81088Yy3q", - "objects": ["file-FP9k5qQ0j2VvPGFV44511f1y"]}' + body: !!python/unicode '{"project": "project-FPbY7Q805fjfKjvF1pF3yv2Z", "destination": + "/", "objects": ["file-FPbY7Q00bz3YYFg006F1yx7K"]}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k5q80j2VkfjJK43xBxp99/clone + uri: https://api.dnanexus.com/project-FPbY7Pj0bz3ggpxV1j3fqjBg/clone response: - body: {string: !!python/unicode '{"id":"project-FP9k5q80j2VkfjJK43xBxp99","project":"project-FP9k5qj0Vz9Qq5P81088Yy3q","exists":[]}'} + body: {string: !!python/unicode '{"id":"project-FPbY7Pj0bz3ggpxV1j3fqjBg","project":"project-FPbY7Q805fjfKjvF1pF3yv2Z","exists":[]}'} headers: connection: [keep-alive] content-length: ['98'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:19:37 GMT'] + date: ['Tue, 13 Nov 2018 20:27:55 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592377651-911656] + x-request-id: [1542140874884-571688] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"project": "project-FP9k5q80j2VkfjJK43xBxp99"}' + body: !!python/unicode '{"project": "project-FPbY7Pj0bz3ggpxV1j3fqjBg"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k5qQ0j2VvPGFV44511f1y/describe + uri: https://api.dnanexus.com/file-FPbY7Q00bz3YYFg006F1yx7K/describe response: - body: {string: !!python/unicode '{"id":"file-FP9k5qQ0j2VvPGFV44511f1y","project":"project-FP9k5q80j2VkfjJK43xBxp99","class":"file","sponsored":false,"name":"folder_file.txt","types":[],"state":"closed","hidden":false,"links":[],"folder":"/temp_folder","tags":[],"created":1540592366000,"modified":1540592368516,"createdBy":{"user":"user-akumar_counsyl"},"media":"text/plain","archivalState":"live","size":5}'} + body: {string: !!python/unicode '{"id":"file-FPbY7Q00bz3YYFg006F1yx7K","project":"project-FPbY7Pj0bz3ggpxV1j3fqjBg","class":"file","sponsored":false,"name":"folder_file.txt","types":[],"state":"closed","hidden":false,"links":[],"folder":"/temp_folder","tags":[],"created":1542140864000,"modified":1542140866865,"createdBy":{"user":"user-akumar_counsyl"},"media":"text/plain","archivalState":"live","size":5}'} headers: connection: [keep-alive] content-length: ['374'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:19:38 GMT'] + date: ['Tue, 13 Nov 2018 20:27:55 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592378013-616746] + x-request-id: [1542140875173-575568] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"name": "dest_file.txt", "project": "project-FP9k5qj0Vz9Qq5P81088Yy3q"}' + body: !!python/unicode '{"project": "project-FPbY7Q805fjfKjvF1pF3yv2Z", "name": + "dest_file.txt"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k5qQ0j2VvPGFV44511f1y/rename + uri: https://api.dnanexus.com/file-FPbY7Q00bz3YYFg006F1yx7K/rename response: - body: {string: !!python/unicode '{"id":"file-FP9k5qQ0j2VvPGFV44511f1y"}'} + body: {string: !!python/unicode '{"id":"file-FPbY7Q00bz3YYFg006F1yx7K"}'} headers: connection: [keep-alive] content-length: ['38'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:19:38 GMT'] + date: ['Tue, 13 Nov 2018 20:27:55 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592378467-204421] + x-request-id: [1542140875303-104722] status: {code: 200, message: OK} - request: body: !!python/unicode '{"limit": 2, "name": "test_dx_to_dx_diff_project_fail.TempProj", @@ -819,81 +820,81 @@ interactions: headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/system/findProjects response: - body: {string: !!python/unicode '{"results":[{"id":"project-FP9k5qj0Vz9Qq5P81088Yy3q","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} + body: {string: !!python/unicode '{"results":[{"id":"project-FPbY7Q805fjfKjvF1pF3yv2Z","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} headers: connection: [keep-alive] content-length: ['147'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:19:39 GMT'] + date: ['Tue, 13 Nov 2018 20:27:55 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592378726-7662] + x-request-id: [1542140875414-536734] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"objects": [{"name": "dest_file.txt", "project": "project-FP9k5qj0Vz9Qq5P81088Yy3q", - "batchsize": 2, "folder": "/"}]}' + body: !!python/unicode '{"objects": [{"project": "project-FPbY7Q805fjfKjvF1pF3yv2Z", + "folder": "/", "name": "dest_file.txt", "batchsize": 2}]}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/system/resolveDataObjects response: - body: {string: !!python/unicode '{"results":[[{"project":"project-FP9k5qj0Vz9Qq5P81088Yy3q","id":"file-FP9k5qQ0j2VvPGFV44511f1y"}]]}'} + body: {string: !!python/unicode '{"results":[[{"project":"project-FPbY7Q805fjfKjvF1pF3yv2Z","id":"file-FPbY7Q00bz3YYFg006F1yx7K"}]]}'} headers: connection: [keep-alive] content-length: ['99'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:19:39 GMT'] + date: ['Tue, 13 Nov 2018 20:27:55 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592379191-564802] + x-request-id: [1542140875550-978154] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"project": "project-FP9k5qj0Vz9Qq5P81088Yy3q"}' + body: !!python/unicode '{"project": "project-FPbY7Q805fjfKjvF1pF3yv2Z"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k5qQ0j2VvPGFV44511f1y/describe + uri: https://api.dnanexus.com/file-FPbY7Q00bz3YYFg006F1yx7K/describe response: - body: {string: !!python/unicode '{"id":"file-FP9k5qQ0j2VvPGFV44511f1y","project":"project-FP9k5qj0Vz9Qq5P81088Yy3q","class":"file","sponsored":false,"name":"dest_file.txt","types":[],"state":"closed","hidden":false,"links":[],"folder":"/","tags":[],"created":1540592366000,"modified":1540592378536,"createdBy":{"user":"user-akumar_counsyl"},"media":"text/plain","archivalState":"live","size":5}'} + body: {string: !!python/unicode '{"id":"file-FPbY7Q00bz3YYFg006F1yx7K","project":"project-FPbY7Q805fjfKjvF1pF3yv2Z","class":"file","sponsored":false,"name":"dest_file.txt","types":[],"state":"closed","hidden":false,"links":[],"folder":"/","tags":[],"created":1542140864000,"modified":1542140875329,"createdBy":{"user":"user-akumar_counsyl"},"media":"text/plain","archivalState":"live","size":5}'} headers: connection: [keep-alive] content-length: ['361'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:19:39 GMT'] + date: ['Tue, 13 Nov 2018 20:27:55 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592379395-147303] + x-request-id: [1542140875659-399891] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"project": "project-FP9k5q80j2VkfjJK43xBxp99"}' + body: !!python/unicode '{"project": "project-FPbY7Pj0bz3ggpxV1j3fqjBg"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k5qQ0j2VvPGFV44511f1y/describe + uri: https://api.dnanexus.com/file-FPbY7Q00bz3YYFg006F1yx7K/describe response: - body: {string: !!python/unicode '{"id":"file-FP9k5qQ0j2VvPGFV44511f1y","project":"project-FP9k5q80j2VkfjJK43xBxp99","class":"file","sponsored":false,"name":"folder_file.txt","types":[],"state":"closed","hidden":false,"links":[],"folder":"/temp_folder","tags":[],"created":1540592366000,"modified":1540592368516,"createdBy":{"user":"user-akumar_counsyl"},"media":"text/plain","archivalState":"live","size":5}'} + body: {string: !!python/unicode '{"id":"file-FPbY7Q00bz3YYFg006F1yx7K","project":"project-FPbY7Pj0bz3ggpxV1j3fqjBg","class":"file","sponsored":false,"name":"folder_file.txt","types":[],"state":"closed","hidden":false,"links":[],"folder":"/temp_folder","tags":[],"created":1542140864000,"modified":1542140866865,"createdBy":{"user":"user-akumar_counsyl"},"media":"text/plain","archivalState":"live","size":5}'} headers: connection: [keep-alive] content-length: ['374'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:19:39 GMT'] + date: ['Tue, 13 Nov 2018 20:27:55 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592379713-6139] + x-request-id: [1542140875817-209682] status: {code: 200, message: OK} - request: body: !!python/unicode '{"limit": 2, "name": "test_dx_to_dx_diff_project_fail.TempProj", @@ -901,41 +902,41 @@ interactions: headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/system/findProjects response: - body: {string: !!python/unicode '{"results":[{"id":"project-FP9k5qj0Vz9Qq5P81088Yy3q","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} + body: {string: !!python/unicode '{"results":[{"id":"project-FPbY7Q805fjfKjvF1pF3yv2Z","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} headers: connection: [keep-alive] content-length: ['147'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:19:40 GMT'] + date: ['Tue, 13 Nov 2018 20:27:56 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592380101-289490] + x-request-id: [1542140875937-433225] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"includeHidden": false, "only": "folders", "folder": - "/folder2", "describe": {"fields": {"name": true, "folder": true}}}' + body: !!python/unicode '{"folder": "/folder2", "describe": {"fields": {"folder": + true, "name": true}}, "only": "folders", "includeHidden": false}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k5qj0Vz9Qq5P81088Yy3q/listFolder + uri: https://api.dnanexus.com/project-FPbY7Q805fjfKjvF1pF3yv2Z/listFolder response: body: {string: !!python/unicode '{"folders":[]}'} headers: connection: [keep-alive] content-length: ['14'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:19:40 GMT'] + date: ['Tue, 13 Nov 2018 20:27:56 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592380361-14116] + x-request-id: [1542140876211-698456] status: {code: 200, message: OK} - request: body: !!python/unicode '{"limit": 2, "name": "test_dx_to_dx_diff_project_fail.TempProj", @@ -943,122 +944,122 @@ interactions: headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/system/findProjects response: - body: {string: !!python/unicode '{"results":[{"id":"project-FP9k5qj0Vz9Qq5P81088Yy3q","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} + body: {string: !!python/unicode '{"results":[{"id":"project-FPbY7Q805fjfKjvF1pF3yv2Z","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} headers: connection: [keep-alive] content-length: ['147'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:19:40 GMT'] + date: ['Tue, 13 Nov 2018 20:27:56 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592380482-168716] + x-request-id: [1542140876319-135494] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"objects": [{"name": "folder_file.txt", "project": "project-FP9k5qj0Vz9Qq5P81088Yy3q", - "batchsize": 2, "folder": "/folder2"}]}' + body: !!python/unicode '{"objects": [{"project": "project-FPbY7Q805fjfKjvF1pF3yv2Z", + "folder": "/folder2", "name": "folder_file.txt", "batchsize": 2}]}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/system/resolveDataObjects response: - body: {string: !!python/unicode '{"results":[[{"project":"project-FP9k5qj0Vz9Qq5P81088Yy3q","id":"file-FP9k5qj0Vz9Qq5P81088Yy3v"}]]}'} + body: {string: !!python/unicode '{"results":[[{"project":"project-FPbY7Q805fjfKjvF1pF3yv2Z","id":"file-FPbY7QQ05fjgB5V79xBKBzzJ"}]]}'} headers: connection: [keep-alive] content-length: ['99'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:19:40 GMT'] + date: ['Tue, 13 Nov 2018 20:27:56 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592380647-572051] + x-request-id: [1542140876518-352066] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"project": "project-FP9k5qj0Vz9Qq5P81088Yy3q"}' + body: !!python/unicode '{"project": "project-FPbY7Q805fjfKjvF1pF3yv2Z"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k5qj0Vz9Qq5P81088Yy3v/describe + uri: https://api.dnanexus.com/file-FPbY7QQ05fjgB5V79xBKBzzJ/describe response: - body: {string: !!python/unicode '{"id":"file-FP9k5qj0Vz9Qq5P81088Yy3v","project":"project-FP9k5qj0Vz9Qq5P81088Yy3q","class":"file","sponsored":false,"name":"folder_file.txt","types":[],"state":"closed","hidden":false,"links":[],"folder":"/folder2","tags":[],"created":1540592367000,"modified":1540592369172,"createdBy":{"user":"user-akumar_counsyl"},"media":"text/plain","archivalState":"live","size":4}'} + body: {string: !!python/unicode '{"id":"file-FPbY7QQ05fjgB5V79xBKBzzJ","project":"project-FPbY7Q805fjfKjvF1pF3yv2Z","class":"file","sponsored":false,"name":"folder_file.txt","types":[],"state":"closed","hidden":false,"links":[],"folder":"/folder2","tags":[],"created":1542140866000,"modified":1542140867694,"createdBy":{"user":"user-akumar_counsyl"},"media":"text/plain","archivalState":"live","size":4}'} headers: connection: [keep-alive] content-length: ['370'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:19:40 GMT'] + date: ['Tue, 13 Nov 2018 20:27:56 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592380772-453876] + x-request-id: [1542140876655-588778] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"objects": ["file-FP9k5qj0Vz9Qq5P81088Yy3v"]}' + body: !!python/unicode '{"objects": ["file-FPbY7QQ05fjgB5V79xBKBzzJ"]}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k5qj0Vz9Qq5P81088Yy3q/removeObjects + uri: https://api.dnanexus.com/project-FPbY7Q805fjfKjvF1pF3yv2Z/removeObjects response: - body: {string: !!python/unicode '{"id":"project-FP9k5qj0Vz9Qq5P81088Yy3q"}'} + body: {string: !!python/unicode '{"id":"project-FPbY7Q805fjfKjvF1pF3yv2Z"}'} headers: connection: [keep-alive] content-length: ['41'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:19:41 GMT'] + date: ['Tue, 13 Nov 2018 20:27:57 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592380950-762071] + x-request-id: [1542140876787-391391] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"destination": "/folder2", "project": "project-FP9k5qj0Vz9Qq5P81088Yy3q", - "objects": ["file-FP9k5qQ0j2VvPGFV44511f1y"]}' + body: !!python/unicode '{"project": "project-FPbY7Q805fjfKjvF1pF3yv2Z", "destination": + "/folder2", "objects": ["file-FPbY7Q00bz3YYFg006F1yx7K"]}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k5q80j2VkfjJK43xBxp99/clone + uri: https://api.dnanexus.com/project-FPbY7Pj0bz3ggpxV1j3fqjBg/clone response: - body: {string: !!python/unicode '{"id":"project-FP9k5q80j2VkfjJK43xBxp99","project":"project-FP9k5qj0Vz9Qq5P81088Yy3q","exists":["file-FP9k5qQ0j2VvPGFV44511f1y"]}'} + body: {string: !!python/unicode '{"id":"project-FPbY7Pj0bz3ggpxV1j3fqjBg","project":"project-FPbY7Q805fjfKjvF1pF3yv2Z","exists":["file-FPbY7Q00bz3YYFg006F1yx7K"]}'} headers: connection: [keep-alive] content-length: ['129'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:19:41 GMT'] + date: ['Tue, 13 Nov 2018 20:27:57 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592381319-274817] + x-request-id: [1542140877192-734134] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"project": "project-FP9k5q80j2VkfjJK43xBxp99"}' + body: !!python/unicode '{"project": "project-FPbY7Pj0bz3ggpxV1j3fqjBg"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k5qQ0j2VvPGFV44511f1y/describe + uri: https://api.dnanexus.com/file-FPbY7Q00bz3YYFg006F1yx7K/describe response: - body: {string: !!python/unicode '{"id":"file-FP9k5qQ0j2VvPGFV44511f1y","project":"project-FP9k5q80j2VkfjJK43xBxp99","class":"file","sponsored":false,"name":"folder_file.txt","types":[],"state":"closed","hidden":false,"links":[],"folder":"/temp_folder","tags":[],"created":1540592366000,"modified":1540592368516,"createdBy":{"user":"user-akumar_counsyl"},"media":"text/plain","archivalState":"live","size":5}'} + body: {string: !!python/unicode '{"id":"file-FPbY7Q00bz3YYFg006F1yx7K","project":"project-FPbY7Pj0bz3ggpxV1j3fqjBg","class":"file","sponsored":false,"name":"folder_file.txt","types":[],"state":"closed","hidden":false,"links":[],"folder":"/temp_folder","tags":[],"created":1542140864000,"modified":1542140866865,"createdBy":{"user":"user-akumar_counsyl"},"media":"text/plain","archivalState":"live","size":5}'} headers: connection: [keep-alive] content-length: ['374'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:19:41 GMT'] + date: ['Tue, 13 Nov 2018 20:27:57 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592381671-328909] + x-request-id: [1542140877434-119273] status: {code: 200, message: OK} - request: body: !!python/unicode '{"limit": 2, "name": "test_dx_to_dx_diff_project_fail.TempProj", @@ -1066,28 +1067,28 @@ interactions: headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/system/findProjects response: - body: {string: !!python/unicode '{"results":[{"id":"project-FP9k5qj0Vz9Qq5P81088Yy3q","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} + body: {string: !!python/unicode '{"results":[{"id":"project-FPbY7Q805fjfKjvF1pF3yv2Z","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} headers: connection: [keep-alive] content-length: ['147'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:19:42 GMT'] + date: ['Tue, 13 Nov 2018 20:27:57 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592382083-877614] + x-request-id: [1542140877583-489582] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"objects": [{"name": "folder2", "project": "project-FP9k5qj0Vz9Qq5P81088Yy3q", - "batchsize": 2, "folder": "/"}]}' + body: !!python/unicode '{"objects": [{"project": "project-FPbY7Q805fjfKjvF1pF3yv2Z", + "folder": "/", "name": "folder2", "batchsize": 2}]}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/system/resolveDataObjects response: @@ -1096,71 +1097,71 @@ interactions: connection: [keep-alive] content-length: ['16'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:19:42 GMT'] + date: ['Tue, 13 Nov 2018 20:27:57 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592382565-793723] + x-request-id: [1542140877711-740098] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"includeHidden": false, "only": "folders", "folder": - "/folder2", "describe": {"fields": {"name": true, "folder": true}}}' + body: !!python/unicode '{"folder": "/folder2", "describe": {"fields": {"folder": + true, "name": true}}, "only": "folders", "includeHidden": false}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k5qj0Vz9Qq5P81088Yy3q/listFolder + uri: https://api.dnanexus.com/project-FPbY7Q805fjfKjvF1pF3yv2Z/listFolder response: body: {string: !!python/unicode '{"folders":[]}'} headers: connection: [keep-alive] content-length: ['14'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:19:42 GMT'] + date: ['Tue, 13 Nov 2018 20:27:57 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592382698-644863] + x-request-id: [1542140877809-756032] status: {code: 200, message: OK} - request: body: !!python/unicode '{}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k5qj0Vz9Qq5P81088Yy3q/destroy + uri: https://api.dnanexus.com/project-FPbY7Q805fjfKjvF1pF3yv2Z/destroy response: - body: {string: !!python/unicode '{"id":"project-FP9k5qj0Vz9Qq5P81088Yy3q"}'} + body: {string: !!python/unicode '{"id":"project-FPbY7Q805fjfKjvF1pF3yv2Z"}'} headers: connection: [keep-alive] content-length: ['41'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:19:47 GMT'] + date: ['Tue, 13 Nov 2018 20:28:00 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592382831-340260] + x-request-id: [1542140877918-940405] status: {code: 200, message: OK} - request: body: !!python/unicode '{}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k5q80j2VkfjJK43xBxp99/destroy + uri: https://api.dnanexus.com/project-FPbY7Pj0bz3ggpxV1j3fqjBg/destroy response: - body: {string: !!python/unicode '{"id":"project-FP9k5q80j2VkfjJK43xBxp99"}'} + body: {string: !!python/unicode '{"id":"project-FPbY7Pj0bz3ggpxV1j3fqjBg"}'} headers: connection: [keep-alive] content-length: ['41'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:19:51 GMT'] + date: ['Tue, 13 Nov 2018 20:28:03 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592387989-480686] + x-request-id: [1542140880791-440694] status: {code: 200, message: OK} version: 1 diff --git a/stor/tests/cassettes_py2/TestCopy/test_dx_to_dx_file.yaml b/stor_dx/stor_dx/tests/cassettes_py2/TestCopy/test_dx_to_dx_file.yaml similarity index 57% rename from stor/tests/cassettes_py2/TestCopy/test_dx_to_dx_file.yaml rename to stor_dx/stor_dx/tests/cassettes_py2/TestCopy/test_dx_to_dx_file.yaml index 999acb68..9c348969 100644 --- a/stor/tests/cassettes_py2/TestCopy/test_dx_to_dx_file.yaml +++ b/stor_dx/stor_dx/tests/cassettes_py2/TestCopy/test_dx_to_dx_file.yaml @@ -1,314 +1,314 @@ interactions: - request: - body: !!python/unicode '{"name": "TestCopy.test_dx_to_dx_file.fd47f0ca"}' + body: !!python/unicode '{"name": "TestCopy.test_dx_to_dx_file.ac2e1cb4"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/project/new response: - body: {string: !!python/unicode '{"id":"project-FP9k61j0Xpy4Q3zV44ZYQ31G"}'} + body: {string: !!python/unicode '{"id":"project-FPbY7Zj0ZyQpqpgZ9Vx48pXJ"}'} headers: connection: [keep-alive] content-length: ['41'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:19:51 GMT'] + date: ['Tue, 13 Nov 2018 20:28:03 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592391708-815767] + x-request-id: [1542140883709-798724] status: {code: 200, message: OK} - request: body: !!python/unicode '{}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k61j0Xpy4Q3zV44ZYQ31G/describe + uri: https://api.dnanexus.com/project-FPbY7Zj0ZyQpqpgZ9Vx48pXJ/describe response: - body: {string: !!python/unicode '{"id":"project-FP9k61j0Xpy4Q3zV44ZYQ31G","name":"TestCopy.test_dx_to_dx_file.fd47f0ca","class":"project","created":1540592391000,"modified":1540592391000,"billTo":"org-counsyl","level":"ADMINISTER","dataUsage":0,"sponsoredDataUsage":0,"region":"aws:us-east-1","summary":"","description":"","protected":false,"restricted":false,"downloadRestricted":false,"containsPHI":false,"createdBy":{"user":"user-akumar_counsyl"},"version":0,"storageCost":0,"pendingTransfer":null,"tags":[],"defaultInstanceType":"mem2_hdd2_x2","archivalState":"live","archivalProgress":null,"totalSponsoredEgressBytes":0,"consumedSponsoredEgressBytes":0,"atSpendingLimit":false}'} + body: {string: !!python/unicode '{"id":"project-FPbY7Zj0ZyQpqpgZ9Vx48pXJ","name":"TestCopy.test_dx_to_dx_file.ac2e1cb4","class":"project","created":1542140883000,"modified":1542140883000,"billTo":"org-counsyl","level":"ADMINISTER","dataUsage":0,"sponsoredDataUsage":0,"region":"aws:us-east-1","summary":"","description":"","protected":false,"restricted":false,"downloadRestricted":false,"containsPHI":false,"createdBy":{"user":"user-akumar_counsyl"},"version":0,"storageCost":0,"pendingTransfer":null,"tags":[],"defaultInstanceType":"mem2_hdd2_x2","archivalState":"live","archivalProgress":null,"totalSponsoredEgressBytes":0,"consumedSponsoredEgressBytes":0,"atSpendingLimit":false}'} headers: connection: [keep-alive] content-length: ['649'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:19:51 GMT'] + date: ['Tue, 13 Nov 2018 20:28:03 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592391834-284432] + x-request-id: [1542140883834-761095] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"parents": true, "folder": "/temp_folder"}' + body: !!python/unicode '{"folder": "/temp_folder", "parents": true}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k61j0Xpy4Q3zV44ZYQ31G/newFolder + uri: https://api.dnanexus.com/project-FPbY7Zj0ZyQpqpgZ9Vx48pXJ/newFolder response: - body: {string: !!python/unicode '{"id":"project-FP9k61j0Xpy4Q3zV44ZYQ31G"}'} + body: {string: !!python/unicode '{"id":"project-FPbY7Zj0ZyQpqpgZ9Vx48pXJ"}'} headers: connection: [keep-alive] content-length: ['41'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:19:52 GMT'] + date: ['Tue, 13 Nov 2018 20:28:04 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592391954-104674] + x-request-id: [1542140883980-767622] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"name": "folder_file.txt", "project": "project-FP9k61j0Xpy4Q3zV44ZYQ31G", - "folder": "/temp_folder", "nonce": "f1fc7b621a41275c6e286f8ff2a9b11adee8231a793f5aa9e4807e7489b62f811540592392.065400"}' + body: !!python/unicode '{"project": "project-FPbY7Zj0ZyQpqpgZ9Vx48pXJ", "nonce": + "1556e5b2aee1e21cb264a9878c1437ab1b15d92ce62a2240f323a1957c9e9b141542140884.036642", + "folder": "/temp_folder", "name": "folder_file.txt"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/file/new response: - body: {string: !!python/unicode '{"id":"file-FP9k6200Xpy4Q3zV44ZYQ31J"}'} + body: {string: !!python/unicode '{"id":"file-FPbY7b00ZyQYYFg006F1yx7Q"}'} headers: connection: [keep-alive] content-length: ['38'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:19:52 GMT'] + date: ['Tue, 13 Nov 2018 20:28:04 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592392116-840172] + x-request-id: [1542140884080-750393] status: {code: 200, message: OK} - request: body: !!python/unicode '{"fields": {"fileUploadParameters": true}}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k61j0Xpy4Q3zV44ZYQ31G/describe + uri: https://api.dnanexus.com/project-FPbY7Zj0ZyQpqpgZ9Vx48pXJ/describe response: - body: {string: !!python/unicode '{"id":"project-FP9k61j0Xpy4Q3zV44ZYQ31G","fileUploadParameters":{"maximumPartSize":5368709120,"minimumPartSize":5242880,"maximumFileSize":5497558138880,"maximumNumParts":10000,"emptyLastPartAllowed":true}}'} + body: {string: !!python/unicode '{"id":"project-FPbY7Zj0ZyQpqpgZ9Vx48pXJ","fileUploadParameters":{"maximumPartSize":5368709120,"minimumPartSize":5242880,"maximumFileSize":5497558138880,"maximumNumParts":10000,"emptyLastPartAllowed":true}}'} headers: connection: [keep-alive] content-length: ['205'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:19:52 GMT'] + date: ['Tue, 13 Nov 2018 20:28:04 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592392320-57271] + x-request-id: [1542140884224-418181] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"size": 4, "md5": "8d777f385d3dfec8815d20f7496026dc", - "index": 1}' + body: !!python/unicode '{"index": 1, "size": 4, "md5": "8d777f385d3dfec8815d20f7496026dc"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k6200Xpy4Q3zV44ZYQ31J/upload + uri: https://api.dnanexus.com/file-FPbY7b00ZyQYYFg006F1yx7Q/upload response: - body: {string: !!python/unicode '{"url":"https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/c017/file/open/file-FP9k6200Xpy4Q3zV44ZYQ31J/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181026%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181026T221952Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=be4e0afa2927e023ccd6a56d10e51aee3eb63b00187144aa64adcbff1e719274","headers":{"host":"dnanexus-platform-upload-prod.s3.amazonaws.com","content-type":"binary/octet-stream","x-amz-server-side-encryption":"AES256","content-md5":"jXd/OF09/siBXSD3SWAm3A==","content-length":"4"},"expires":1540592512446}'} + body: {string: !!python/unicode '{"url":"https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/b7cd/file/open/file-FPbY7b00ZyQYYFg006F1yx7Q/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181113%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181113T202804Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=c4fea54a906ba2baabc14bbea07dc5d085210f713da110c1064d8456a79d03d4","headers":{"host":"dnanexus-platform-upload-prod.s3.amazonaws.com","content-type":"binary/octet-stream","x-amz-server-side-encryption":"AES256","content-md5":"jXd/OF09/siBXSD3SWAm3A==","content-length":"4"},"expires":1542141004335}'} headers: connection: [keep-alive] content-length: ['692'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:19:52 GMT'] + date: ['Tue, 13 Nov 2018 20:28:04 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592392431-592205] + x-request-id: [1542140884318-657686] status: {code: 200, message: OK} - request: body: !!python/unicode data headers: DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] content-length: ['4'] content-md5: [jXd/OF09/siBXSD3SWAm3A==] content-type: [binary/octet-stream] host: [dnanexus-platform-upload-prod.s3.amazonaws.com] x-amz-server-side-encryption: [AES256] method: PUT - uri: https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/c017/file/open/file-FP9k6200Xpy4Q3zV44ZYQ31J/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181026%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181026T221952Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=be4e0afa2927e023ccd6a56d10e51aee3eb63b00187144aa64adcbff1e719274 + uri: https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/b7cd/file/open/file-FPbY7b00ZyQYYFg006F1yx7Q/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181113%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181113T202804Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=c4fea54a906ba2baabc14bbea07dc5d085210f713da110c1064d8456a79d03d4 response: body: {string: !!python/unicode ''} headers: content-length: ['0'] - date: ['Fri, 26 Oct 2018 22:19:53 GMT'] + date: ['Tue, 13 Nov 2018 20:28:05 GMT'] etag: ['"8d777f385d3dfec8815d20f7496026dc"'] server: [AmazonS3] - x-amz-expiration: ['expiry-date="Sat, 17 Nov 2018 00:00:00 GMT", rule-id="3weekpurge"'] - x-amz-id-2: [cIP8uFpQiBPyz6GDRj5B3l36VQnLOF/IvCP0/vfgBrAMULKTbuq/LlLX8YVoGouTOcm1RQ/gwuM=] - x-amz-request-id: [27C9BFE77BB12CF0] + x-amz-expiration: ['expiry-date="Wed, 05 Dec 2018 00:00:00 GMT", rule-id="3weekpurge"'] + x-amz-id-2: [OiJfI1Ue9bNjuT8MfV8BnndYXpBPf1MdQwN08DYCs7+OFh1xUt9tZ7b0sGFmYJ3PwUwqHBxzhYo=] + x-amz-request-id: [042D88594DFAC416] x-amz-server-side-encryption: [AES256] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"project": "project-FP9k61j0Xpy4Q3zV44ZYQ31G", "fields": + body: !!python/unicode '{"project": "project-FPbY7Zj0ZyQpqpgZ9Vx48pXJ", "fields": {"state": true}}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k6200Xpy4Q3zV44ZYQ31J/describe + uri: https://api.dnanexus.com/file-FPbY7b00ZyQYYFg006F1yx7Q/describe response: - body: {string: !!python/unicode '{"id":"file-FP9k6200Xpy4Q3zV44ZYQ31J","state":"open"}'} + body: {string: !!python/unicode '{"id":"file-FPbY7b00ZyQYYFg006F1yx7Q","state":"open"}'} headers: connection: [keep-alive] content-length: ['53'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:19:53 GMT'] + date: ['Tue, 13 Nov 2018 20:28:04 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592392985-793052] + x-request-id: [1542140884814-248553] status: {code: 200, message: OK} - request: body: !!python/unicode '{}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k6200Xpy4Q3zV44ZYQ31J/close + uri: https://api.dnanexus.com/file-FPbY7b00ZyQYYFg006F1yx7Q/close response: - body: {string: !!python/unicode '{"id":"file-FP9k6200Xpy4Q3zV44ZYQ31J"}'} + body: {string: !!python/unicode '{"id":"file-FPbY7b00ZyQYYFg006F1yx7Q"}'} headers: connection: [keep-alive] content-length: ['38'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:19:53 GMT'] + date: ['Tue, 13 Nov 2018 20:28:04 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592393099-963652] + x-request-id: [1542140884924-494281] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"project": "project-FP9k61j0Xpy4Q3zV44ZYQ31G", "fields": + body: !!python/unicode '{"project": "project-FPbY7Zj0ZyQpqpgZ9Vx48pXJ", "fields": {"state": true}}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k6200Xpy4Q3zV44ZYQ31J/describe + uri: https://api.dnanexus.com/file-FPbY7b00ZyQYYFg006F1yx7Q/describe response: - body: {string: !!python/unicode '{"id":"file-FP9k6200Xpy4Q3zV44ZYQ31J","state":"closing"}'} + body: {string: !!python/unicode '{"id":"file-FPbY7b00ZyQYYFg006F1yx7Q","state":"closing"}'} headers: connection: [keep-alive] content-length: ['56'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:19:53 GMT'] + date: ['Tue, 13 Nov 2018 20:28:05 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592393256-752316] + x-request-id: [1542140885055-193572] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"project": "project-FP9k61j0Xpy4Q3zV44ZYQ31G", "fields": + body: !!python/unicode '{"project": "project-FPbY7Zj0ZyQpqpgZ9Vx48pXJ", "fields": {"state": true}}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k6200Xpy4Q3zV44ZYQ31J/describe + uri: https://api.dnanexus.com/file-FPbY7b00ZyQYYFg006F1yx7Q/describe response: - body: {string: !!python/unicode '{"id":"file-FP9k6200Xpy4Q3zV44ZYQ31J","state":"closed"}'} + body: {string: !!python/unicode '{"id":"file-FPbY7b00ZyQYYFg006F1yx7Q","state":"closed"}'} headers: connection: [keep-alive] content-length: ['55'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:19:55 GMT'] + date: ['Tue, 13 Nov 2018 20:28:07 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592395387-333947] + x-request-id: [1542140887166-535705] status: {code: 200, message: OK} - request: body: !!python/unicode '{"name": "test_dx_to_dx_file.TempProj"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/project/new response: - body: {string: !!python/unicode '{"id":"project-FP9k62j03Yyx16QXPVKq170P"}'} + body: {string: !!python/unicode '{"id":"project-FPbY7bj0z4PfKjvF1pF3yv2q"}'} headers: connection: [keep-alive] content-length: ['41'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:19:55 GMT'] + date: ['Tue, 13 Nov 2018 20:28:07 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592395644-573281] + x-request-id: [1542140887269-466575] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"limit": 2, "name": "TestCopy.test_dx_to_dx_file.fd47f0ca", + body: !!python/unicode '{"limit": 2, "name": "TestCopy.test_dx_to_dx_file.ac2e1cb4", "level": "VIEW"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/system/findProjects response: - body: {string: !!python/unicode '{"results":[{"id":"project-FP9k61j0Xpy4Q3zV44ZYQ31G","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} + body: {string: !!python/unicode '{"results":[{"id":"project-FPbY7Zj0ZyQpqpgZ9Vx48pXJ","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} headers: connection: [keep-alive] content-length: ['147'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:19:55 GMT'] + date: ['Tue, 13 Nov 2018 20:28:07 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592395781-524344] + x-request-id: [1542140887390-729116] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"objects": [{"name": "folder_file.txt", "project": "project-FP9k61j0Xpy4Q3zV44ZYQ31G", - "batchsize": 2, "folder": "/temp_folder"}]}' + body: !!python/unicode '{"objects": [{"project": "project-FPbY7Zj0ZyQpqpgZ9Vx48pXJ", + "folder": "/temp_folder", "name": "folder_file.txt", "batchsize": 2}]}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/system/resolveDataObjects response: - body: {string: !!python/unicode '{"results":[[{"project":"project-FP9k61j0Xpy4Q3zV44ZYQ31G","id":"file-FP9k6200Xpy4Q3zV44ZYQ31J"}]]}'} + body: {string: !!python/unicode '{"results":[[{"project":"project-FPbY7Zj0ZyQpqpgZ9Vx48pXJ","id":"file-FPbY7b00ZyQYYFg006F1yx7Q"}]]}'} headers: connection: [keep-alive] content-length: ['99'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:19:55 GMT'] + date: ['Tue, 13 Nov 2018 20:28:07 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592395974-116672] + x-request-id: [1542140887517-546716] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"project": "project-FP9k61j0Xpy4Q3zV44ZYQ31G"}' + body: !!python/unicode '{"project": "project-FPbY7Zj0ZyQpqpgZ9Vx48pXJ"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k6200Xpy4Q3zV44ZYQ31J/describe + uri: https://api.dnanexus.com/file-FPbY7b00ZyQYYFg006F1yx7Q/describe response: - body: {string: !!python/unicode '{"id":"file-FP9k6200Xpy4Q3zV44ZYQ31J","project":"project-FP9k61j0Xpy4Q3zV44ZYQ31G","class":"file","sponsored":false,"name":"folder_file.txt","types":[],"state":"closed","hidden":false,"links":[],"folder":"/temp_folder","tags":[],"created":1540592392000,"modified":1540592393888,"createdBy":{"user":"user-akumar_counsyl"},"media":"text/plain","archivalState":"live","size":4}'} + body: {string: !!python/unicode '{"id":"file-FPbY7b00ZyQYYFg006F1yx7Q","project":"project-FPbY7Zj0ZyQpqpgZ9Vx48pXJ","class":"file","sponsored":false,"name":"folder_file.txt","types":[],"state":"closed","hidden":false,"links":[],"folder":"/temp_folder","tags":[],"created":1542140884000,"modified":1542140885578,"createdBy":{"user":"user-akumar_counsyl"},"media":"text/plain","archivalState":"live","size":4}'} headers: connection: [keep-alive] content-length: ['374'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:19:56 GMT'] + date: ['Tue, 13 Nov 2018 20:28:07 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592396092-23580] + x-request-id: [1542140887620-405620] status: {code: 200, message: OK} - request: body: !!python/unicode '{"limit": 2, "name": "test_dx_to_dx_file.TempProj", "level": @@ -316,51 +316,51 @@ interactions: headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/system/findProjects response: - body: {string: !!python/unicode '{"results":[{"id":"project-FP9k62j03Yyx16QXPVKq170P","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} + body: {string: !!python/unicode '{"results":[{"id":"project-FPbY7bj0z4PfKjvF1pF3yv2q","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} headers: connection: [keep-alive] content-length: ['147'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:19:56 GMT'] + date: ['Tue, 13 Nov 2018 20:28:07 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592396206-7268] + x-request-id: [1542140887718-763957] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"includeHidden": false, "only": "folders", "folder": - "/random.txt", "describe": {"fields": {"name": true, "folder": true}}}' + body: !!python/unicode '{"folder": "/random.txt", "describe": {"fields": {"folder": + true, "name": true}}, "only": "folders", "includeHidden": false}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k62j03Yyx16QXPVKq170P/listFolder + uri: https://api.dnanexus.com/project-FPbY7bj0z4PfKjvF1pF3yv2q/listFolder response: body: {string: !!python/unicode '{"error":{"type":"ResourceNotFound","message":"The - specified folder could not be found in project-FP9k62j03Yyx16QXPVKq170P"}}'} + specified folder could not be found in project-FPbY7bj0z4PfKjvF1pF3yv2q"}}'} headers: connection: [keep-alive] content-type: [application/json] - date: ['Fri, 26 Oct 2018 22:19:56 GMT'] + date: ['Tue, 13 Nov 2018 20:28:07 GMT'] server: [nginx] transfer-encoding: [chunked] vary: [Accept-Encoding] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592396338-127242] + x-request-id: [1542140887838-530979] status: {code: 404, message: Not Found} - request: - body: !!python/unicode '{"objects": [{"name": "random.txt", "project": "project-FP9k62j03Yyx16QXPVKq170P", - "batchsize": 2, "folder": "/"}]}' + body: !!python/unicode '{"objects": [{"project": "project-FPbY7bj0z4PfKjvF1pF3yv2q", + "folder": "/", "name": "random.txt", "batchsize": 2}]}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/system/resolveDataObjects response: @@ -369,72 +369,73 @@ interactions: connection: [keep-alive] content-length: ['16'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:19:56 GMT'] + date: ['Tue, 13 Nov 2018 20:28:08 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592396748-356406] + x-request-id: [1542140888177-196773] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"destination": "/", "project": "project-FP9k62j03Yyx16QXPVKq170P", - "objects": ["file-FP9k6200Xpy4Q3zV44ZYQ31J"]}' + body: !!python/unicode '{"project": "project-FPbY7bj0z4PfKjvF1pF3yv2q", "destination": + "/", "objects": ["file-FPbY7b00ZyQYYFg006F1yx7Q"]}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k61j0Xpy4Q3zV44ZYQ31G/clone + uri: https://api.dnanexus.com/project-FPbY7Zj0ZyQpqpgZ9Vx48pXJ/clone response: - body: {string: !!python/unicode '{"id":"project-FP9k61j0Xpy4Q3zV44ZYQ31G","project":"project-FP9k62j03Yyx16QXPVKq170P","exists":[]}'} + body: {string: !!python/unicode '{"id":"project-FPbY7Zj0ZyQpqpgZ9Vx48pXJ","project":"project-FPbY7bj0z4PfKjvF1pF3yv2q","exists":[]}'} headers: connection: [keep-alive] content-length: ['98'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:19:56 GMT'] + date: ['Tue, 13 Nov 2018 20:28:08 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592396857-339297] + x-request-id: [1542140888282-6373] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"project": "project-FP9k61j0Xpy4Q3zV44ZYQ31G"}' + body: !!python/unicode '{"project": "project-FPbY7Zj0ZyQpqpgZ9Vx48pXJ"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k6200Xpy4Q3zV44ZYQ31J/describe + uri: https://api.dnanexus.com/file-FPbY7b00ZyQYYFg006F1yx7Q/describe response: - body: {string: !!python/unicode '{"id":"file-FP9k6200Xpy4Q3zV44ZYQ31J","project":"project-FP9k61j0Xpy4Q3zV44ZYQ31G","class":"file","sponsored":false,"name":"folder_file.txt","types":[],"state":"closed","hidden":false,"links":[],"folder":"/temp_folder","tags":[],"created":1540592392000,"modified":1540592393888,"createdBy":{"user":"user-akumar_counsyl"},"media":"text/plain","archivalState":"live","size":4}'} + body: {string: !!python/unicode '{"id":"file-FPbY7b00ZyQYYFg006F1yx7Q","project":"project-FPbY7Zj0ZyQpqpgZ9Vx48pXJ","class":"file","sponsored":false,"name":"folder_file.txt","types":[],"state":"closed","hidden":false,"links":[],"folder":"/temp_folder","tags":[],"created":1542140884000,"modified":1542140885578,"createdBy":{"user":"user-akumar_counsyl"},"media":"text/plain","archivalState":"live","size":4}'} headers: connection: [keep-alive] content-length: ['374'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:19:57 GMT'] + date: ['Tue, 13 Nov 2018 20:28:08 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592397053-751791] + x-request-id: [1542140888515-709219] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"name": "random.txt", "project": "project-FP9k62j03Yyx16QXPVKq170P"}' + body: !!python/unicode '{"project": "project-FPbY7bj0z4PfKjvF1pF3yv2q", "name": + "random.txt"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k6200Xpy4Q3zV44ZYQ31J/rename + uri: https://api.dnanexus.com/file-FPbY7b00ZyQYYFg006F1yx7Q/rename response: - body: {string: !!python/unicode '{"id":"file-FP9k6200Xpy4Q3zV44ZYQ31J"}'} + body: {string: !!python/unicode '{"id":"file-FPbY7b00ZyQYYFg006F1yx7Q"}'} headers: connection: [keep-alive] content-length: ['38'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:19:57 GMT'] + date: ['Tue, 13 Nov 2018 20:28:08 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592397167-636757] + x-request-id: [1542140888608-998213] status: {code: 200, message: OK} - request: body: !!python/unicode '{"limit": 2, "name": "test_dx_to_dx_file.TempProj", "level": @@ -442,100 +443,100 @@ interactions: headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/system/findProjects response: - body: {string: !!python/unicode '{"results":[{"id":"project-FP9k62j03Yyx16QXPVKq170P","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} + body: {string: !!python/unicode '{"results":[{"id":"project-FPbY7bj0z4PfKjvF1pF3yv2q","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} headers: connection: [keep-alive] content-length: ['147'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:19:57 GMT'] + date: ['Tue, 13 Nov 2018 20:28:08 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592397274-871225] + x-request-id: [1542140888695-660252] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"objects": [{"name": "random.txt", "project": "project-FP9k62j03Yyx16QXPVKq170P", - "batchsize": 2, "folder": "/"}]}' + body: !!python/unicode '{"objects": [{"project": "project-FPbY7bj0z4PfKjvF1pF3yv2q", + "folder": "/", "name": "random.txt", "batchsize": 2}]}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/system/resolveDataObjects response: - body: {string: !!python/unicode '{"results":[[{"project":"project-FP9k62j03Yyx16QXPVKq170P","id":"file-FP9k6200Xpy4Q3zV44ZYQ31J"}]]}'} + body: {string: !!python/unicode '{"results":[[{"project":"project-FPbY7bj0z4PfKjvF1pF3yv2q","id":"file-FPbY7b00ZyQYYFg006F1yx7Q"}]]}'} headers: connection: [keep-alive] content-length: ['99'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:19:57 GMT'] + date: ['Tue, 13 Nov 2018 20:28:08 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592397407-619420] + x-request-id: [1542140888815-988050] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"project": "project-FP9k62j03Yyx16QXPVKq170P"}' + body: !!python/unicode '{"project": "project-FPbY7bj0z4PfKjvF1pF3yv2q"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k6200Xpy4Q3zV44ZYQ31J/describe + uri: https://api.dnanexus.com/file-FPbY7b00ZyQYYFg006F1yx7Q/describe response: - body: {string: !!python/unicode '{"id":"file-FP9k6200Xpy4Q3zV44ZYQ31J","project":"project-FP9k62j03Yyx16QXPVKq170P","class":"file","sponsored":false,"name":"random.txt","types":[],"state":"closed","hidden":false,"links":[],"folder":"/","tags":[],"created":1540592392000,"modified":1540592397176,"createdBy":{"user":"user-akumar_counsyl"},"media":"text/plain","archivalState":"live","size":4}'} + body: {string: !!python/unicode '{"id":"file-FPbY7b00ZyQYYFg006F1yx7Q","project":"project-FPbY7bj0z4PfKjvF1pF3yv2q","class":"file","sponsored":false,"name":"random.txt","types":[],"state":"closed","hidden":false,"links":[],"folder":"/","tags":[],"created":1542140884000,"modified":1542140888616,"createdBy":{"user":"user-akumar_counsyl"},"media":"text/plain","archivalState":"live","size":4}'} headers: connection: [keep-alive] content-length: ['358'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:19:57 GMT'] + date: ['Tue, 13 Nov 2018 20:28:08 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592397521-715437] + x-request-id: [1542140888907-654824] status: {code: 200, message: OK} - request: body: !!python/unicode '{}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k62j03Yyx16QXPVKq170P/destroy + uri: https://api.dnanexus.com/project-FPbY7bj0z4PfKjvF1pF3yv2q/destroy response: - body: {string: !!python/unicode '{"id":"project-FP9k62j03Yyx16QXPVKq170P"}'} + body: {string: !!python/unicode '{"id":"project-FPbY7bj0z4PfKjvF1pF3yv2q"}'} headers: connection: [keep-alive] content-length: ['41'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:20:01 GMT'] + date: ['Tue, 13 Nov 2018 20:28:11 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592397642-531264] + x-request-id: [1542140888999-259092] status: {code: 200, message: OK} - request: body: !!python/unicode '{}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k61j0Xpy4Q3zV44ZYQ31G/destroy + uri: https://api.dnanexus.com/project-FPbY7Zj0ZyQpqpgZ9Vx48pXJ/destroy response: - body: {string: !!python/unicode '{"id":"project-FP9k61j0Xpy4Q3zV44ZYQ31G"}'} + body: {string: !!python/unicode '{"id":"project-FPbY7Zj0ZyQpqpgZ9Vx48pXJ"}'} headers: connection: [keep-alive] content-length: ['41'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:20:05 GMT'] + date: ['Tue, 13 Nov 2018 20:28:14 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592401597-264870] + x-request-id: [1542140891517-759029] status: {code: 200, message: OK} version: 1 diff --git a/stor/tests/cassettes_py2/TestCopy/test_dx_to_dx_file_folder_no_ext.yaml b/stor_dx/stor_dx/tests/cassettes_py2/TestCopy/test_dx_to_dx_file_folder_no_ext.yaml similarity index 58% rename from stor/tests/cassettes_py2/TestCopy/test_dx_to_dx_file_folder_no_ext.yaml rename to stor_dx/stor_dx/tests/cassettes_py2/TestCopy/test_dx_to_dx_file_folder_no_ext.yaml index 6e04a642..89a64a80 100644 --- a/stor/tests/cassettes_py2/TestCopy/test_dx_to_dx_file_folder_no_ext.yaml +++ b/stor_dx/stor_dx/tests/cassettes_py2/TestCopy/test_dx_to_dx_file_folder_no_ext.yaml @@ -1,314 +1,314 @@ interactions: - request: - body: !!python/unicode '{"name": "TestCopy.test_dx_to_dx_file_folder_no_ext.93d77198"}' + body: !!python/unicode '{"name": "TestCopy.test_dx_to_dx_file_folder_no_ext.6a8e41cf"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/project/new response: - body: {string: !!python/unicode '{"id":"project-FP9k658078zvPGFV44511f20"}'} + body: {string: !!python/unicode '{"id":"project-FPbY7gQ0gf4GVV2X1Z5bX2jP"}'} headers: connection: [keep-alive] content-length: ['41'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:20:05 GMT'] + date: ['Tue, 13 Nov 2018 20:28:14 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592405484-566254] + x-request-id: [1542140894540-953555] status: {code: 200, message: OK} - request: body: !!python/unicode '{}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k658078zvPGFV44511f20/describe + uri: https://api.dnanexus.com/project-FPbY7gQ0gf4GVV2X1Z5bX2jP/describe response: - body: {string: !!python/unicode '{"id":"project-FP9k658078zvPGFV44511f20","name":"TestCopy.test_dx_to_dx_file_folder_no_ext.93d77198","class":"project","created":1540592405000,"modified":1540592405000,"billTo":"org-counsyl","level":"ADMINISTER","dataUsage":0,"sponsoredDataUsage":0,"region":"aws:us-east-1","summary":"","description":"","protected":false,"restricted":false,"downloadRestricted":false,"containsPHI":false,"createdBy":{"user":"user-akumar_counsyl"},"version":0,"storageCost":0,"pendingTransfer":null,"tags":[],"defaultInstanceType":"mem2_hdd2_x2","archivalState":"live","archivalProgress":null,"totalSponsoredEgressBytes":0,"consumedSponsoredEgressBytes":0,"atSpendingLimit":false}'} + body: {string: !!python/unicode '{"id":"project-FPbY7gQ0gf4GVV2X1Z5bX2jP","name":"TestCopy.test_dx_to_dx_file_folder_no_ext.6a8e41cf","class":"project","created":1542140894000,"modified":1542140894000,"billTo":"org-counsyl","level":"ADMINISTER","dataUsage":0,"sponsoredDataUsage":0,"region":"aws:us-east-1","summary":"","description":"","protected":false,"restricted":false,"downloadRestricted":false,"containsPHI":false,"createdBy":{"user":"user-akumar_counsyl"},"version":0,"storageCost":0,"pendingTransfer":null,"tags":[],"defaultInstanceType":"mem2_hdd2_x2","archivalState":"live","archivalProgress":null,"totalSponsoredEgressBytes":0,"consumedSponsoredEgressBytes":0,"atSpendingLimit":false}'} headers: connection: [keep-alive] content-length: ['663'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:20:05 GMT'] + date: ['Tue, 13 Nov 2018 20:28:14 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592405602-98979] + x-request-id: [1542140894641-520460] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"parents": true, "folder": "/temp_folder"}' + body: !!python/unicode '{"folder": "/temp_folder", "parents": true}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k658078zvPGFV44511f20/newFolder + uri: https://api.dnanexus.com/project-FPbY7gQ0gf4GVV2X1Z5bX2jP/newFolder response: - body: {string: !!python/unicode '{"id":"project-FP9k658078zvPGFV44511f20"}'} + body: {string: !!python/unicode '{"id":"project-FPbY7gQ0gf4GVV2X1Z5bX2jP"}'} headers: connection: [keep-alive] content-length: ['41'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:20:05 GMT'] + date: ['Tue, 13 Nov 2018 20:28:14 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592405728-365230] + x-request-id: [1542140894747-558485] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"name": "folder_file.txt", "project": "project-FP9k658078zvPGFV44511f20", - "folder": "/temp_folder", "nonce": "29743505831d6c95c93156b82f103bf2f2d991e8ec8bfde2f41f5b020b5b25801540592405.793446"}' + body: !!python/unicode '{"project": "project-FPbY7gQ0gf4GVV2X1Z5bX2jP", "nonce": + "ec0bf944c03514496e08990dbe4f83c5f1646bff1c5cedc1c6bdf365ac6a46f01542140894.795351", + "folder": "/temp_folder", "name": "folder_file.txt"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/file/new response: - body: {string: !!python/unicode '{"id":"file-FP9k658078zx16QXPVKq170V"}'} + body: {string: !!python/unicode '{"id":"file-FPbY7gQ0gf46KjvF1pF3yv2v"}'} headers: connection: [keep-alive] content-length: ['38'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:20:05 GMT'] + date: ['Tue, 13 Nov 2018 20:28:14 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592405843-949724] + x-request-id: [1542140894839-65260] status: {code: 200, message: OK} - request: body: !!python/unicode '{"fields": {"fileUploadParameters": true}}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k658078zvPGFV44511f20/describe + uri: https://api.dnanexus.com/project-FPbY7gQ0gf4GVV2X1Z5bX2jP/describe response: - body: {string: !!python/unicode '{"id":"project-FP9k658078zvPGFV44511f20","fileUploadParameters":{"maximumPartSize":5368709120,"minimumPartSize":5242880,"maximumFileSize":5497558138880,"maximumNumParts":10000,"emptyLastPartAllowed":true}}'} + body: {string: !!python/unicode '{"id":"project-FPbY7gQ0gf4GVV2X1Z5bX2jP","fileUploadParameters":{"maximumPartSize":5368709120,"minimumPartSize":5242880,"maximumFileSize":5497558138880,"maximumNumParts":10000,"emptyLastPartAllowed":true}}'} headers: connection: [keep-alive] content-length: ['205'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:20:06 GMT'] + date: ['Tue, 13 Nov 2018 20:28:14 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592406015-239158] + x-request-id: [1542140894966-591662] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"size": 4, "md5": "8d777f385d3dfec8815d20f7496026dc", - "index": 1}' + body: !!python/unicode '{"index": 1, "size": 4, "md5": "8d777f385d3dfec8815d20f7496026dc"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k658078zx16QXPVKq170V/upload + uri: https://api.dnanexus.com/file-FPbY7gQ0gf46KjvF1pF3yv2v/upload response: - body: {string: !!python/unicode '{"url":"https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/d7ac/file/open/file-FP9k658078zx16QXPVKq170V/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181026%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181026T222006Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=9da6b0af23fb8fd91ea0d6067e8b9969cb314d5eaaf2e84a2a43ec3f7dd18919","headers":{"host":"dnanexus-platform-upload-prod.s3.amazonaws.com","content-type":"binary/octet-stream","x-amz-server-side-encryption":"AES256","content-md5":"jXd/OF09/siBXSD3SWAm3A==","content-length":"4"},"expires":1540592526146}'} + body: {string: !!python/unicode '{"url":"https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/af90/file/open/file-FPbY7gQ0gf46KjvF1pF3yv2v/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181113%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181113T202815Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=3c96a24dedfa1e2bd029ead55cdea7ad59155e07e0f716528666a984d3c99fa9","headers":{"host":"dnanexus-platform-upload-prod.s3.amazonaws.com","content-type":"binary/octet-stream","x-amz-server-side-encryption":"AES256","content-md5":"jXd/OF09/siBXSD3SWAm3A==","content-length":"4"},"expires":1542141015068}'} headers: connection: [keep-alive] content-length: ['692'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:20:06 GMT'] + date: ['Tue, 13 Nov 2018 20:28:15 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592406132-190178] + x-request-id: [1542140895056-29610] status: {code: 200, message: OK} - request: body: !!python/unicode data headers: DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] content-length: ['4'] content-md5: [jXd/OF09/siBXSD3SWAm3A==] content-type: [binary/octet-stream] host: [dnanexus-platform-upload-prod.s3.amazonaws.com] x-amz-server-side-encryption: [AES256] method: PUT - uri: https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/d7ac/file/open/file-FP9k658078zx16QXPVKq170V/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181026%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181026T222006Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=9da6b0af23fb8fd91ea0d6067e8b9969cb314d5eaaf2e84a2a43ec3f7dd18919 + uri: https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/af90/file/open/file-FPbY7gQ0gf46KjvF1pF3yv2v/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181113%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181113T202815Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=3c96a24dedfa1e2bd029ead55cdea7ad59155e07e0f716528666a984d3c99fa9 response: body: {string: !!python/unicode ''} headers: content-length: ['0'] - date: ['Fri, 26 Oct 2018 22:20:07 GMT'] + date: ['Tue, 13 Nov 2018 20:28:16 GMT'] etag: ['"8d777f385d3dfec8815d20f7496026dc"'] server: [AmazonS3] - x-amz-expiration: ['expiry-date="Sat, 17 Nov 2018 00:00:00 GMT", rule-id="3weekpurge"'] - x-amz-id-2: [zeD+KQLXbEGbCPDNGd4Qa6UjNPJ2H2A2Fmhi2oX6RXVMaHQAy2xsgXGO1SSJGQTH+ZJism6de+Q=] - x-amz-request-id: [A8864E47DF92D0F6] + x-amz-expiration: ['expiry-date="Wed, 05 Dec 2018 00:00:00 GMT", rule-id="3weekpurge"'] + x-amz-id-2: [hT4GjqAT9E54W4r0KT2+aczdBG9cMJci8yGnJ3L37j+bqKP26g6E+DFysgdIStrwizi725ggB50=] + x-amz-request-id: [63ADC36F77599829] x-amz-server-side-encryption: [AES256] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"project": "project-FP9k658078zvPGFV44511f20", "fields": + body: !!python/unicode '{"project": "project-FPbY7gQ0gf4GVV2X1Z5bX2jP", "fields": {"state": true}}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k658078zx16QXPVKq170V/describe + uri: https://api.dnanexus.com/file-FPbY7gQ0gf46KjvF1pF3yv2v/describe response: - body: {string: !!python/unicode '{"id":"file-FP9k658078zx16QXPVKq170V","state":"open"}'} + body: {string: !!python/unicode '{"id":"file-FPbY7gQ0gf46KjvF1pF3yv2v","state":"open"}'} headers: connection: [keep-alive] content-length: ['53'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:20:06 GMT'] + date: ['Tue, 13 Nov 2018 20:28:15 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592406682-363936] + x-request-id: [1542140895550-440759] status: {code: 200, message: OK} - request: body: !!python/unicode '{}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k658078zx16QXPVKq170V/close + uri: https://api.dnanexus.com/file-FPbY7gQ0gf46KjvF1pF3yv2v/close response: - body: {string: !!python/unicode '{"id":"file-FP9k658078zx16QXPVKq170V"}'} + body: {string: !!python/unicode '{"id":"file-FPbY7gQ0gf46KjvF1pF3yv2v"}'} headers: connection: [keep-alive] content-length: ['38'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:20:06 GMT'] + date: ['Tue, 13 Nov 2018 20:28:15 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592406793-706863] + x-request-id: [1542140895647-686736] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"project": "project-FP9k658078zvPGFV44511f20", "fields": + body: !!python/unicode '{"project": "project-FPbY7gQ0gf4GVV2X1Z5bX2jP", "fields": {"state": true}}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k658078zx16QXPVKq170V/describe + uri: https://api.dnanexus.com/file-FPbY7gQ0gf46KjvF1pF3yv2v/describe response: - body: {string: !!python/unicode '{"id":"file-FP9k658078zx16QXPVKq170V","state":"closing"}'} + body: {string: !!python/unicode '{"id":"file-FPbY7gQ0gf46KjvF1pF3yv2v","state":"closing"}'} headers: connection: [keep-alive] content-length: ['56'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:20:06 GMT'] + date: ['Tue, 13 Nov 2018 20:28:15 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592406962-107236] + x-request-id: [1542140895756-498830] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"project": "project-FP9k658078zvPGFV44511f20", "fields": + body: !!python/unicode '{"project": "project-FPbY7gQ0gf4GVV2X1Z5bX2jP", "fields": {"state": true}}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k658078zx16QXPVKq170V/describe + uri: https://api.dnanexus.com/file-FPbY7gQ0gf46KjvF1pF3yv2v/describe response: - body: {string: !!python/unicode '{"id":"file-FP9k658078zx16QXPVKq170V","state":"closed"}'} + body: {string: !!python/unicode '{"id":"file-FPbY7gQ0gf46KjvF1pF3yv2v","state":"closed"}'} headers: connection: [keep-alive] content-length: ['55'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:20:09 GMT'] + date: ['Tue, 13 Nov 2018 20:28:17 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592409078-57577] + x-request-id: [1542140897854-667456] status: {code: 200, message: OK} - request: body: !!python/unicode '{"name": "test_dx_to_dx_file_folder_no_ext.TempProj"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/project/new response: - body: {string: !!python/unicode '{"id":"project-FP9k6680JG5z10qyFXkfFBXV"}'} + body: {string: !!python/unicode '{"id":"project-FPbY7j80PZqGVV2X1Z5bX2jX"}'} headers: connection: [keep-alive] content-length: ['41'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:20:09 GMT'] + date: ['Tue, 13 Nov 2018 20:28:17 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592409192-123562] + x-request-id: [1542140897947-137547] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"limit": 2, "name": "TestCopy.test_dx_to_dx_file_folder_no_ext.93d77198", + body: !!python/unicode '{"limit": 2, "name": "TestCopy.test_dx_to_dx_file_folder_no_ext.6a8e41cf", "level": "VIEW"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/system/findProjects response: - body: {string: !!python/unicode '{"results":[{"id":"project-FP9k658078zvPGFV44511f20","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} + body: {string: !!python/unicode '{"results":[{"id":"project-FPbY7gQ0gf4GVV2X1Z5bX2jP","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} headers: connection: [keep-alive] content-length: ['147'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:20:09 GMT'] + date: ['Tue, 13 Nov 2018 20:28:18 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592409314-857162] + x-request-id: [1542140898059-980222] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"objects": [{"name": "folder_file.txt", "project": "project-FP9k658078zvPGFV44511f20", - "batchsize": 2, "folder": "/temp_folder"}]}' + body: !!python/unicode '{"objects": [{"project": "project-FPbY7gQ0gf4GVV2X1Z5bX2jP", + "folder": "/temp_folder", "name": "folder_file.txt", "batchsize": 2}]}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/system/resolveDataObjects response: - body: {string: !!python/unicode '{"results":[[{"project":"project-FP9k658078zvPGFV44511f20","id":"file-FP9k658078zx16QXPVKq170V"}]]}'} + body: {string: !!python/unicode '{"results":[[{"project":"project-FPbY7gQ0gf4GVV2X1Z5bX2jP","id":"file-FPbY7gQ0gf46KjvF1pF3yv2v"}]]}'} headers: connection: [keep-alive] content-length: ['99'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:20:09 GMT'] + date: ['Tue, 13 Nov 2018 20:28:18 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592409494-147026] + x-request-id: [1542140898169-334391] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"project": "project-FP9k658078zvPGFV44511f20"}' + body: !!python/unicode '{"project": "project-FPbY7gQ0gf4GVV2X1Z5bX2jP"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k658078zx16QXPVKq170V/describe + uri: https://api.dnanexus.com/file-FPbY7gQ0gf46KjvF1pF3yv2v/describe response: - body: {string: !!python/unicode '{"id":"file-FP9k658078zx16QXPVKq170V","project":"project-FP9k658078zvPGFV44511f20","class":"file","sponsored":false,"name":"folder_file.txt","types":[],"state":"closed","hidden":false,"links":[],"folder":"/temp_folder","tags":[],"created":1540592405000,"modified":1540592408008,"createdBy":{"user":"user-akumar_counsyl"},"media":"text/plain","archivalState":"live","size":4}'} + body: {string: !!python/unicode '{"id":"file-FPbY7gQ0gf46KjvF1pF3yv2v","project":"project-FPbY7gQ0gf4GVV2X1Z5bX2jP","class":"file","sponsored":false,"name":"folder_file.txt","types":[],"state":"closed","hidden":false,"links":[],"folder":"/temp_folder","tags":[],"created":1542140894000,"modified":1542140896272,"createdBy":{"user":"user-akumar_counsyl"},"media":"text/plain","archivalState":"live","size":4}'} headers: connection: [keep-alive] content-length: ['374'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:20:09 GMT'] + date: ['Tue, 13 Nov 2018 20:28:18 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592409609-496819] + x-request-id: [1542140898262-421974] status: {code: 200, message: OK} - request: body: !!python/unicode '{"limit": 2, "name": "test_dx_to_dx_file_folder_no_ext.TempProj", @@ -316,43 +316,43 @@ interactions: headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/system/findProjects response: - body: {string: !!python/unicode '{"results":[{"id":"project-FP9k6680JG5z10qyFXkfFBXV","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} + body: {string: !!python/unicode '{"results":[{"id":"project-FPbY7j80PZqGVV2X1Z5bX2jX","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} headers: connection: [keep-alive] content-length: ['147'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:20:09 GMT'] + date: ['Tue, 13 Nov 2018 20:28:18 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592409721-580318] + x-request-id: [1542140898397-625326] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"includeHidden": false, "only": "folders", "folder": - "/random/file", "describe": {"fields": {"name": true, "folder": true}}}' + body: !!python/unicode '{"folder": "/random/file", "describe": {"fields": {"folder": + true, "name": true}}, "only": "folders", "includeHidden": false}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k6680JG5z10qyFXkfFBXV/listFolder + uri: https://api.dnanexus.com/project-FPbY7j80PZqGVV2X1Z5bX2jX/listFolder response: body: {string: !!python/unicode '{"error":{"type":"ResourceNotFound","message":"The - specified folder could not be found in project-FP9k6680JG5z10qyFXkfFBXV"}}'} + specified folder could not be found in project-FPbY7j80PZqGVV2X1Z5bX2jX"}}'} headers: connection: [keep-alive] content-type: [application/json] - date: ['Fri, 26 Oct 2018 22:20:09 GMT'] + date: ['Tue, 13 Nov 2018 20:28:18 GMT'] server: [nginx] transfer-encoding: [chunked] vary: [Accept-Encoding] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592409849-952405] + x-request-id: [1542140898520-817403] status: {code: 404, message: Not Found} - request: body: !!python/unicode '{"limit": 2, "name": "test_dx_to_dx_file_folder_no_ext.TempProj", @@ -360,48 +360,48 @@ interactions: headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/system/findProjects response: - body: {string: !!python/unicode '{"results":[{"id":"project-FP9k6680JG5z10qyFXkfFBXV","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} + body: {string: !!python/unicode '{"results":[{"id":"project-FPbY7j80PZqGVV2X1Z5bX2jX","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} headers: connection: [keep-alive] content-length: ['147'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:20:10 GMT'] + date: ['Tue, 13 Nov 2018 20:28:18 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592410248-358470] + x-request-id: [1542140898858-130503] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"parents": true, "folder": "/random"}' + body: !!python/unicode '{"folder": "/random", "parents": true}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k6680JG5z10qyFXkfFBXV/newFolder + uri: https://api.dnanexus.com/project-FPbY7j80PZqGVV2X1Z5bX2jX/newFolder response: - body: {string: !!python/unicode '{"id":"project-FP9k6680JG5z10qyFXkfFBXV"}'} + body: {string: !!python/unicode '{"id":"project-FPbY7j80PZqGVV2X1Z5bX2jX"}'} headers: connection: [keep-alive] content-length: ['41'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:20:10 GMT'] + date: ['Tue, 13 Nov 2018 20:28:18 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592410406-520416] + x-request-id: [1542140898970-558821] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"objects": [{"name": "file", "project": "project-FP9k6680JG5z10qyFXkfFBXV", - "batchsize": 2, "folder": "/random"}]}' + body: !!python/unicode '{"objects": [{"project": "project-FPbY7j80PZqGVV2X1Z5bX2jX", + "folder": "/random", "name": "file", "batchsize": 2}]}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/system/resolveDataObjects response: @@ -410,72 +410,73 @@ interactions: connection: [keep-alive] content-length: ['16'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:20:10 GMT'] + date: ['Tue, 13 Nov 2018 20:28:19 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592410534-191793] + x-request-id: [1542140899068-108785] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"destination": "/random", "project": "project-FP9k6680JG5z10qyFXkfFBXV", - "objects": ["file-FP9k658078zx16QXPVKq170V"]}' + body: !!python/unicode '{"project": "project-FPbY7j80PZqGVV2X1Z5bX2jX", "destination": + "/random", "objects": ["file-FPbY7gQ0gf46KjvF1pF3yv2v"]}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k658078zvPGFV44511f20/clone + uri: https://api.dnanexus.com/project-FPbY7gQ0gf4GVV2X1Z5bX2jP/clone response: - body: {string: !!python/unicode '{"id":"project-FP9k658078zvPGFV44511f20","project":"project-FP9k6680JG5z10qyFXkfFBXV","exists":[]}'} + body: {string: !!python/unicode '{"id":"project-FPbY7gQ0gf4GVV2X1Z5bX2jP","project":"project-FPbY7j80PZqGVV2X1Z5bX2jX","exists":[]}'} headers: connection: [keep-alive] content-length: ['98'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:20:10 GMT'] + date: ['Tue, 13 Nov 2018 20:28:19 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592410642-162818] + x-request-id: [1542140899171-176219] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"project": "project-FP9k658078zvPGFV44511f20"}' + body: !!python/unicode '{"project": "project-FPbY7gQ0gf4GVV2X1Z5bX2jP"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k658078zx16QXPVKq170V/describe + uri: https://api.dnanexus.com/file-FPbY7gQ0gf46KjvF1pF3yv2v/describe response: - body: {string: !!python/unicode '{"id":"file-FP9k658078zx16QXPVKq170V","project":"project-FP9k658078zvPGFV44511f20","class":"file","sponsored":false,"name":"folder_file.txt","types":[],"state":"closed","hidden":false,"links":[],"folder":"/temp_folder","tags":[],"created":1540592405000,"modified":1540592408008,"createdBy":{"user":"user-akumar_counsyl"},"media":"text/plain","archivalState":"live","size":4}'} + body: {string: !!python/unicode '{"id":"file-FPbY7gQ0gf46KjvF1pF3yv2v","project":"project-FPbY7gQ0gf4GVV2X1Z5bX2jP","class":"file","sponsored":false,"name":"folder_file.txt","types":[],"state":"closed","hidden":false,"links":[],"folder":"/temp_folder","tags":[],"created":1542140894000,"modified":1542140896272,"createdBy":{"user":"user-akumar_counsyl"},"media":"text/plain","archivalState":"live","size":4}'} headers: connection: [keep-alive] content-length: ['374'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:20:10 GMT'] + date: ['Tue, 13 Nov 2018 20:28:19 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592410856-180353] + x-request-id: [1542140899809-210269] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"name": "file", "project": "project-FP9k6680JG5z10qyFXkfFBXV"}' + body: !!python/unicode '{"project": "project-FPbY7j80PZqGVV2X1Z5bX2jX", "name": + "file"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k658078zx16QXPVKq170V/rename + uri: https://api.dnanexus.com/file-FPbY7gQ0gf46KjvF1pF3yv2v/rename response: - body: {string: !!python/unicode '{"id":"file-FP9k658078zx16QXPVKq170V"}'} + body: {string: !!python/unicode '{"id":"file-FPbY7gQ0gf46KjvF1pF3yv2v"}'} headers: connection: [keep-alive] content-length: ['38'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:20:11 GMT'] + date: ['Tue, 13 Nov 2018 20:28:19 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592410982-99225] + x-request-id: [1542140899900-379743] status: {code: 200, message: OK} - request: body: !!python/unicode '{"limit": 2, "name": "test_dx_to_dx_file_folder_no_ext.TempProj", @@ -483,84 +484,84 @@ interactions: headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/system/findProjects response: - body: {string: !!python/unicode '{"results":[{"id":"project-FP9k6680JG5z10qyFXkfFBXV","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} + body: {string: !!python/unicode '{"results":[{"id":"project-FPbY7j80PZqGVV2X1Z5bX2jX","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} headers: connection: [keep-alive] content-length: ['147'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:20:11 GMT'] + date: ['Tue, 13 Nov 2018 20:28:20 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592411104-473862] + x-request-id: [1542140899997-152822] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"objects": [{"name": "file", "project": "project-FP9k6680JG5z10qyFXkfFBXV", - "batchsize": 2, "folder": "/random"}]}' + body: !!python/unicode '{"objects": [{"project": "project-FPbY7j80PZqGVV2X1Z5bX2jX", + "folder": "/random", "name": "file", "batchsize": 2}]}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/system/resolveDataObjects response: - body: {string: !!python/unicode '{"results":[[{"project":"project-FP9k6680JG5z10qyFXkfFBXV","id":"file-FP9k658078zx16QXPVKq170V"}]]}'} + body: {string: !!python/unicode '{"results":[[{"project":"project-FPbY7j80PZqGVV2X1Z5bX2jX","id":"file-FPbY7gQ0gf46KjvF1pF3yv2v"}]]}'} headers: connection: [keep-alive] content-length: ['99'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:20:11 GMT'] + date: ['Tue, 13 Nov 2018 20:28:20 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592411255-786934] + x-request-id: [1542140900125-311235] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"project": "project-FP9k6680JG5z10qyFXkfFBXV"}' + body: !!python/unicode '{"project": "project-FPbY7j80PZqGVV2X1Z5bX2jX"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k658078zx16QXPVKq170V/describe + uri: https://api.dnanexus.com/file-FPbY7gQ0gf46KjvF1pF3yv2v/describe response: - body: {string: !!python/unicode '{"id":"file-FP9k658078zx16QXPVKq170V","project":"project-FP9k6680JG5z10qyFXkfFBXV","class":"file","sponsored":false,"name":"file","types":[],"state":"closed","hidden":false,"links":[],"folder":"/random","tags":[],"created":1540592405000,"modified":1540592411005,"createdBy":{"user":"user-akumar_counsyl"},"media":"text/plain","archivalState":"live","size":4}'} + body: {string: !!python/unicode '{"id":"file-FPbY7gQ0gf46KjvF1pF3yv2v","project":"project-FPbY7j80PZqGVV2X1Z5bX2jX","class":"file","sponsored":false,"name":"file","types":[],"state":"closed","hidden":false,"links":[],"folder":"/random","tags":[],"created":1542140894000,"modified":1542140899910,"createdBy":{"user":"user-akumar_counsyl"},"media":"text/plain","archivalState":"live","size":4}'} headers: connection: [keep-alive] content-length: ['358'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:20:11 GMT'] + date: ['Tue, 13 Nov 2018 20:28:20 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592411364-10400] + x-request-id: [1542140900221-82431] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"includeHidden": false, "only": "folders", "folder": - "/random/file", "describe": {"fields": {"name": true, "folder": true}}}' + body: !!python/unicode '{"folder": "/random/file", "describe": {"fields": {"folder": + true, "name": true}}, "only": "folders", "includeHidden": false}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k6680JG5z10qyFXkfFBXV/listFolder + uri: https://api.dnanexus.com/project-FPbY7j80PZqGVV2X1Z5bX2jX/listFolder response: body: {string: !!python/unicode '{"error":{"type":"ResourceNotFound","message":"The - specified folder could not be found in project-FP9k6680JG5z10qyFXkfFBXV"}}'} + specified folder could not be found in project-FPbY7j80PZqGVV2X1Z5bX2jX"}}'} headers: connection: [keep-alive] content-type: [application/json] - date: ['Fri, 26 Oct 2018 22:20:11 GMT'] + date: ['Tue, 13 Nov 2018 20:28:20 GMT'] server: [nginx] transfer-encoding: [chunked] vary: [Accept-Encoding] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592411476-499164] + x-request-id: [1542140900321-520690] status: {code: 404, message: Not Found} - request: body: !!python/unicode '{"limit": 2, "name": "test_dx_to_dx_file_folder_no_ext.TempProj", @@ -568,28 +569,28 @@ interactions: headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/system/findProjects response: - body: {string: !!python/unicode '{"results":[{"id":"project-FP9k6680JG5z10qyFXkfFBXV","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} + body: {string: !!python/unicode '{"results":[{"id":"project-FPbY7j80PZqGVV2X1Z5bX2jX","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} headers: connection: [keep-alive] content-length: ['147'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:20:11 GMT'] + date: ['Tue, 13 Nov 2018 20:28:20 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592411878-623129] + x-request-id: [1542140900642-375982] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"objects": [{"name": "folder_file.txt", "project": "project-FP9k6680JG5z10qyFXkfFBXV", - "batchsize": 2, "folder": "/random/file"}]}' + body: !!python/unicode '{"objects": [{"project": "project-FPbY7j80PZqGVV2X1Z5bX2jX", + "folder": "/random/file", "name": "folder_file.txt", "batchsize": 2}]}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/system/resolveDataObjects response: @@ -598,35 +599,35 @@ interactions: connection: [keep-alive] content-length: ['16'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:20:12 GMT'] + date: ['Tue, 13 Nov 2018 20:28:20 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592412002-499872] + x-request-id: [1542140900752-801188] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"includeHidden": false, "only": "folders", "folder": - "/random/file/folder_file.txt", "describe": {"fields": {"name": true, "folder": - true}}}' + body: !!python/unicode '{"folder": "/random/file/folder_file.txt", "describe": + {"fields": {"folder": true, "name": true}}, "only": "folders", "includeHidden": + false}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k6680JG5z10qyFXkfFBXV/listFolder + uri: https://api.dnanexus.com/project-FPbY7j80PZqGVV2X1Z5bX2jX/listFolder response: body: {string: !!python/unicode '{"error":{"type":"ResourceNotFound","message":"The - specified folder could not be found in project-FP9k6680JG5z10qyFXkfFBXV"}}'} + specified folder could not be found in project-FPbY7j80PZqGVV2X1Z5bX2jX"}}'} headers: connection: [keep-alive] content-type: [application/json] - date: ['Fri, 26 Oct 2018 22:20:12 GMT'] + date: ['Tue, 13 Nov 2018 20:28:20 GMT'] server: [nginx] transfer-encoding: [chunked] vary: [Accept-Encoding] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592412112-522844] + x-request-id: [1542140900839-271829] status: {code: 404, message: Not Found} - request: body: !!python/unicode '{"limit": 2, "name": "test_dx_to_dx_file_folder_no_ext.TempProj", @@ -634,81 +635,81 @@ interactions: headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/system/findProjects response: - body: {string: !!python/unicode '{"results":[{"id":"project-FP9k6680JG5z10qyFXkfFBXV","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} + body: {string: !!python/unicode '{"results":[{"id":"project-FPbY7j80PZqGVV2X1Z5bX2jX","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} headers: connection: [keep-alive] content-length: ['147'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:20:12 GMT'] + date: ['Tue, 13 Nov 2018 20:28:21 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592412525-280671] + x-request-id: [1542140901163-11900] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"objects": [{"name": "file", "project": "project-FP9k6680JG5z10qyFXkfFBXV", - "batchsize": 2, "folder": "/random"}]}' + body: !!python/unicode '{"objects": [{"project": "project-FPbY7j80PZqGVV2X1Z5bX2jX", + "folder": "/random", "name": "file", "batchsize": 2}]}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/system/resolveDataObjects response: - body: {string: !!python/unicode '{"results":[[{"project":"project-FP9k6680JG5z10qyFXkfFBXV","id":"file-FP9k658078zx16QXPVKq170V"}]]}'} + body: {string: !!python/unicode '{"results":[[{"project":"project-FPbY7j80PZqGVV2X1Z5bX2jX","id":"file-FPbY7gQ0gf46KjvF1pF3yv2v"}]]}'} headers: connection: [keep-alive] content-length: ['99'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:20:12 GMT'] + date: ['Tue, 13 Nov 2018 20:28:21 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592412690-640836] + x-request-id: [1542140901278-913646] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"objects": ["file-FP9k658078zx16QXPVKq170V"]}' + body: !!python/unicode '{"objects": ["file-FPbY7gQ0gf46KjvF1pF3yv2v"]}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k6680JG5z10qyFXkfFBXV/removeObjects + uri: https://api.dnanexus.com/project-FPbY7j80PZqGVV2X1Z5bX2jX/removeObjects response: - body: {string: !!python/unicode '{"id":"project-FP9k6680JG5z10qyFXkfFBXV"}'} + body: {string: !!python/unicode '{"id":"project-FPbY7j80PZqGVV2X1Z5bX2jX"}'} headers: connection: [keep-alive] content-length: ['41'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:20:12 GMT'] + date: ['Tue, 13 Nov 2018 20:28:21 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592412802-598656] + x-request-id: [1542140901369-516141] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"project": "project-FP9k658078zvPGFV44511f20"}' + body: !!python/unicode '{"project": "project-FPbY7gQ0gf4GVV2X1Z5bX2jP"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k658078zx16QXPVKq170V/describe + uri: https://api.dnanexus.com/file-FPbY7gQ0gf46KjvF1pF3yv2v/describe response: - body: {string: !!python/unicode '{"id":"file-FP9k658078zx16QXPVKq170V","project":"project-FP9k658078zvPGFV44511f20","class":"file","sponsored":false,"name":"folder_file.txt","types":[],"state":"closed","hidden":false,"links":[],"folder":"/temp_folder","tags":[],"created":1540592405000,"modified":1540592408008,"createdBy":{"user":"user-akumar_counsyl"},"media":"text/plain","archivalState":"live","size":4}'} + body: {string: !!python/unicode '{"id":"file-FPbY7gQ0gf46KjvF1pF3yv2v","project":"project-FPbY7gQ0gf4GVV2X1Z5bX2jP","class":"file","sponsored":false,"name":"folder_file.txt","types":[],"state":"closed","hidden":false,"links":[],"folder":"/temp_folder","tags":[],"created":1542140894000,"modified":1542140896272,"createdBy":{"user":"user-akumar_counsyl"},"media":"text/plain","archivalState":"live","size":4}'} headers: connection: [keep-alive] content-length: ['374'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:20:13 GMT'] + date: ['Tue, 13 Nov 2018 20:28:21 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592412978-908586] + x-request-id: [1542140901533-475861] status: {code: 200, message: OK} - request: body: !!python/unicode '{"limit": 2, "name": "test_dx_to_dx_file_folder_no_ext.TempProj", @@ -716,41 +717,41 @@ interactions: headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/system/findProjects response: - body: {string: !!python/unicode '{"results":[{"id":"project-FP9k6680JG5z10qyFXkfFBXV","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} + body: {string: !!python/unicode '{"results":[{"id":"project-FPbY7j80PZqGVV2X1Z5bX2jX","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} headers: connection: [keep-alive] content-length: ['147'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:20:13 GMT'] + date: ['Tue, 13 Nov 2018 20:28:21 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592413101-143135] + x-request-id: [1542140901625-653270] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"includeHidden": false, "only": "folders", "folder": - "/random", "describe": {"fields": {"name": true, "folder": true}}}' + body: !!python/unicode '{"folder": "/random", "describe": {"fields": {"folder": + true, "name": true}}, "only": "folders", "includeHidden": false}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k6680JG5z10qyFXkfFBXV/listFolder + uri: https://api.dnanexus.com/project-FPbY7j80PZqGVV2X1Z5bX2jX/listFolder response: body: {string: !!python/unicode '{"folders":[]}'} headers: connection: [keep-alive] content-length: ['14'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:20:13 GMT'] + date: ['Tue, 13 Nov 2018 20:28:21 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592413236-103100] + x-request-id: [1542140901743-465120] status: {code: 200, message: OK} - request: body: !!python/unicode '{"limit": 2, "name": "test_dx_to_dx_file_folder_no_ext.TempProj", @@ -758,28 +759,28 @@ interactions: headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/system/findProjects response: - body: {string: !!python/unicode '{"results":[{"id":"project-FP9k6680JG5z10qyFXkfFBXV","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} + body: {string: !!python/unicode '{"results":[{"id":"project-FPbY7j80PZqGVV2X1Z5bX2jX","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} headers: connection: [keep-alive] content-length: ['147'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:20:13 GMT'] + date: ['Tue, 13 Nov 2018 20:28:21 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592413347-104130] + x-request-id: [1542140901850-351995] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"objects": [{"name": "folder_file.txt", "project": "project-FP9k6680JG5z10qyFXkfFBXV", - "batchsize": 2, "folder": "/random"}]}' + body: !!python/unicode '{"objects": [{"project": "project-FPbY7j80PZqGVV2X1Z5bX2jX", + "folder": "/random", "name": "folder_file.txt", "batchsize": 2}]}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/system/resolveDataObjects response: @@ -788,52 +789,52 @@ interactions: connection: [keep-alive] content-length: ['16'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:20:13 GMT'] + date: ['Tue, 13 Nov 2018 20:28:21 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592413496-679902] + x-request-id: [1542140901969-321329] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"destination": "/random", "project": "project-FP9k6680JG5z10qyFXkfFBXV", - "objects": ["file-FP9k658078zx16QXPVKq170V"]}' + body: !!python/unicode '{"project": "project-FPbY7j80PZqGVV2X1Z5bX2jX", "destination": + "/random", "objects": ["file-FPbY7gQ0gf46KjvF1pF3yv2v"]}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k658078zvPGFV44511f20/clone + uri: https://api.dnanexus.com/project-FPbY7gQ0gf4GVV2X1Z5bX2jP/clone response: - body: {string: !!python/unicode '{"id":"project-FP9k658078zvPGFV44511f20","project":"project-FP9k6680JG5z10qyFXkfFBXV","exists":[]}'} + body: {string: !!python/unicode '{"id":"project-FPbY7gQ0gf4GVV2X1Z5bX2jP","project":"project-FPbY7j80PZqGVV2X1Z5bX2jX","exists":[]}'} headers: connection: [keep-alive] content-length: ['98'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:20:13 GMT'] + date: ['Tue, 13 Nov 2018 20:28:22 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592413604-631369] + x-request-id: [1542140902067-474567] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"project": "project-FP9k658078zvPGFV44511f20"}' + body: !!python/unicode '{"project": "project-FPbY7gQ0gf4GVV2X1Z5bX2jP"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k658078zx16QXPVKq170V/describe + uri: https://api.dnanexus.com/file-FPbY7gQ0gf46KjvF1pF3yv2v/describe response: - body: {string: !!python/unicode '{"id":"file-FP9k658078zx16QXPVKq170V","project":"project-FP9k658078zvPGFV44511f20","class":"file","sponsored":false,"name":"folder_file.txt","types":[],"state":"closed","hidden":false,"links":[],"folder":"/temp_folder","tags":[],"created":1540592405000,"modified":1540592408008,"createdBy":{"user":"user-akumar_counsyl"},"media":"text/plain","archivalState":"live","size":4}'} + body: {string: !!python/unicode '{"id":"file-FPbY7gQ0gf46KjvF1pF3yv2v","project":"project-FPbY7gQ0gf4GVV2X1Z5bX2jP","class":"file","sponsored":false,"name":"folder_file.txt","types":[],"state":"closed","hidden":false,"links":[],"folder":"/temp_folder","tags":[],"created":1542140894000,"modified":1542140896272,"createdBy":{"user":"user-akumar_counsyl"},"media":"text/plain","archivalState":"live","size":4}'} headers: connection: [keep-alive] content-length: ['374'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:20:13 GMT'] + date: ['Tue, 13 Nov 2018 20:28:22 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592413805-376892] + x-request-id: [1542140902290-914177] status: {code: 200, message: OK} - request: body: !!python/unicode '{"limit": 2, "name": "test_dx_to_dx_file_folder_no_ext.TempProj", @@ -841,100 +842,100 @@ interactions: headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/system/findProjects response: - body: {string: !!python/unicode '{"results":[{"id":"project-FP9k6680JG5z10qyFXkfFBXV","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} + body: {string: !!python/unicode '{"results":[{"id":"project-FPbY7j80PZqGVV2X1Z5bX2jX","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} headers: connection: [keep-alive] content-length: ['147'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:20:13 GMT'] + date: ['Tue, 13 Nov 2018 20:28:22 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592413920-394628] + x-request-id: [1542140902393-133713] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"objects": [{"name": "folder_file.txt", "project": "project-FP9k6680JG5z10qyFXkfFBXV", - "batchsize": 2, "folder": "/random"}]}' + body: !!python/unicode '{"objects": [{"project": "project-FPbY7j80PZqGVV2X1Z5bX2jX", + "folder": "/random", "name": "folder_file.txt", "batchsize": 2}]}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/system/resolveDataObjects response: - body: {string: !!python/unicode '{"results":[[{"project":"project-FP9k6680JG5z10qyFXkfFBXV","id":"file-FP9k658078zx16QXPVKq170V"}]]}'} + body: {string: !!python/unicode '{"results":[[{"project":"project-FPbY7j80PZqGVV2X1Z5bX2jX","id":"file-FPbY7gQ0gf46KjvF1pF3yv2v"}]]}'} headers: connection: [keep-alive] content-length: ['99'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:20:14 GMT'] + date: ['Tue, 13 Nov 2018 20:28:22 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592414046-451345] + x-request-id: [1542140902527-736423] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"project": "project-FP9k6680JG5z10qyFXkfFBXV"}' + body: !!python/unicode '{"project": "project-FPbY7j80PZqGVV2X1Z5bX2jX"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k658078zx16QXPVKq170V/describe + uri: https://api.dnanexus.com/file-FPbY7gQ0gf46KjvF1pF3yv2v/describe response: - body: {string: !!python/unicode '{"id":"file-FP9k658078zx16QXPVKq170V","project":"project-FP9k6680JG5z10qyFXkfFBXV","class":"file","sponsored":false,"name":"folder_file.txt","types":[],"state":"closed","hidden":false,"links":[],"folder":"/random","tags":[],"created":1540592405000,"modified":1540592413686,"createdBy":{"user":"user-akumar_counsyl"},"media":"text/plain","archivalState":"live","size":4}'} + body: {string: !!python/unicode '{"id":"file-FPbY7gQ0gf46KjvF1pF3yv2v","project":"project-FPbY7j80PZqGVV2X1Z5bX2jX","class":"file","sponsored":false,"name":"folder_file.txt","types":[],"state":"closed","hidden":false,"links":[],"folder":"/random","tags":[],"created":1542140894000,"modified":1542140902186,"createdBy":{"user":"user-akumar_counsyl"},"media":"text/plain","archivalState":"live","size":4}'} headers: connection: [keep-alive] content-length: ['369'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:20:14 GMT'] + date: ['Tue, 13 Nov 2018 20:28:22 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592414154-27774] + x-request-id: [1542140902625-129862] status: {code: 200, message: OK} - request: body: !!python/unicode '{}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k6680JG5z10qyFXkfFBXV/destroy + uri: https://api.dnanexus.com/project-FPbY7j80PZqGVV2X1Z5bX2jX/destroy response: - body: {string: !!python/unicode '{"id":"project-FP9k6680JG5z10qyFXkfFBXV"}'} + body: {string: !!python/unicode '{"id":"project-FPbY7j80PZqGVV2X1Z5bX2jX"}'} headers: connection: [keep-alive] content-length: ['41'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:20:18 GMT'] + date: ['Tue, 13 Nov 2018 20:28:25 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592414272-601980] + x-request-id: [1542140902724-431087] status: {code: 200, message: OK} - request: body: !!python/unicode '{}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k658078zvPGFV44511f20/destroy + uri: https://api.dnanexus.com/project-FPbY7gQ0gf4GVV2X1Z5bX2jP/destroy response: - body: {string: !!python/unicode '{"id":"project-FP9k658078zvPGFV44511f20"}'} + body: {string: !!python/unicode '{"id":"project-FPbY7gQ0gf4GVV2X1Z5bX2jP"}'} headers: connection: [keep-alive] content-length: ['41'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:20:21 GMT'] + date: ['Tue, 13 Nov 2018 20:28:28 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592418292-804503] + x-request-id: [1542140905735-524428] status: {code: 200, message: OK} version: 1 diff --git a/stor/tests/cassettes_py2/TestCopy/test_dx_to_dx_folder.yaml b/stor_dx/stor_dx/tests/cassettes_py2/TestCopy/test_dx_to_dx_folder.yaml similarity index 58% rename from stor/tests/cassettes_py2/TestCopy/test_dx_to_dx_folder.yaml rename to stor_dx/stor_dx/tests/cassettes_py2/TestCopy/test_dx_to_dx_folder.yaml index 30525498..6126991d 100644 --- a/stor/tests/cassettes_py2/TestCopy/test_dx_to_dx_folder.yaml +++ b/stor_dx/stor_dx/tests/cassettes_py2/TestCopy/test_dx_to_dx_folder.yaml @@ -1,314 +1,314 @@ interactions: - request: - body: !!python/unicode '{"name": "TestCopy.test_dx_to_dx_folder.c466d30e"}' + body: !!python/unicode '{"name": "TestCopy.test_dx_to_dx_folder.279f14a4"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/project/new response: - body: {string: !!python/unicode '{"id":"project-FP9k698018GvPGFV44511f22"}'} + body: {string: !!python/unicode '{"id":"project-FPbY7q00pgVBqpgZ9Vx48pXK"}'} headers: connection: [keep-alive] content-length: ['41'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:20:21 GMT'] + date: ['Tue, 13 Nov 2018 20:28:28 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592421492-694519] + x-request-id: [1542140908463-860403] status: {code: 200, message: OK} - request: body: !!python/unicode '{}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k698018GvPGFV44511f22/describe + uri: https://api.dnanexus.com/project-FPbY7q00pgVBqpgZ9Vx48pXK/describe response: - body: {string: !!python/unicode '{"id":"project-FP9k698018GvPGFV44511f22","name":"TestCopy.test_dx_to_dx_folder.c466d30e","class":"project","created":1540592421000,"modified":1540592421000,"billTo":"org-counsyl","level":"ADMINISTER","dataUsage":0,"sponsoredDataUsage":0,"region":"aws:us-east-1","summary":"","description":"","protected":false,"restricted":false,"downloadRestricted":false,"containsPHI":false,"createdBy":{"user":"user-akumar_counsyl"},"version":0,"storageCost":0,"pendingTransfer":null,"tags":[],"defaultInstanceType":"mem2_hdd2_x2","archivalState":"live","archivalProgress":null,"totalSponsoredEgressBytes":0,"consumedSponsoredEgressBytes":0,"atSpendingLimit":false}'} + body: {string: !!python/unicode '{"id":"project-FPbY7q00pgVBqpgZ9Vx48pXK","name":"TestCopy.test_dx_to_dx_folder.279f14a4","class":"project","created":1542140908000,"modified":1542140908000,"billTo":"org-counsyl","level":"ADMINISTER","dataUsage":0,"sponsoredDataUsage":0,"region":"aws:us-east-1","summary":"","description":"","protected":false,"restricted":false,"downloadRestricted":false,"containsPHI":false,"createdBy":{"user":"user-akumar_counsyl"},"version":0,"storageCost":0,"pendingTransfer":null,"tags":[],"defaultInstanceType":"mem2_hdd2_x2","archivalState":"live","archivalProgress":null,"totalSponsoredEgressBytes":0,"consumedSponsoredEgressBytes":0,"atSpendingLimit":false}'} headers: connection: [keep-alive] content-length: ['651'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:20:21 GMT'] + date: ['Tue, 13 Nov 2018 20:28:28 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592421610-394519] + x-request-id: [1542140908569-50328] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"parents": true, "folder": "/temp_folder"}' + body: !!python/unicode '{"folder": "/temp_folder", "parents": true}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k698018GvPGFV44511f22/newFolder + uri: https://api.dnanexus.com/project-FPbY7q00pgVBqpgZ9Vx48pXK/newFolder response: - body: {string: !!python/unicode '{"id":"project-FP9k698018GvPGFV44511f22"}'} + body: {string: !!python/unicode '{"id":"project-FPbY7q00pgVBqpgZ9Vx48pXK"}'} headers: connection: [keep-alive] content-length: ['41'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:20:21 GMT'] + date: ['Tue, 13 Nov 2018 20:28:28 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592421786-451230] + x-request-id: [1542140908674-882697] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"name": "folder_file.txt", "project": "project-FP9k698018GvPGFV44511f22", - "folder": "/temp_folder", "nonce": "a6b9d06cc7b2566a8d0210c1937e17bd25822f20aa996c3c9b29ad399c7ab7ec1540592421.857452"}' + body: !!python/unicode '{"project": "project-FPbY7q00pgVBqpgZ9Vx48pXK", "nonce": + "86ad1dc9981c82141f4bc9c89b73fd7654d20136877408840d52f1a8da16996a1542140908.724434", + "folder": "/temp_folder", "name": "folder_file.txt"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/file/new response: - body: {string: !!python/unicode '{"id":"file-FP9k698018GgKZggK9KvpK80"}'} + body: {string: !!python/unicode '{"id":"file-FPbY7q00pgV7Y2Kq50fVv314"}'} headers: connection: [keep-alive] content-length: ['38'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:20:21 GMT'] + date: ['Tue, 13 Nov 2018 20:28:28 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592421910-486025] + x-request-id: [1542140908767-142024] status: {code: 200, message: OK} - request: body: !!python/unicode '{"fields": {"fileUploadParameters": true}}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k698018GvPGFV44511f22/describe + uri: https://api.dnanexus.com/project-FPbY7q00pgVBqpgZ9Vx48pXK/describe response: - body: {string: !!python/unicode '{"id":"project-FP9k698018GvPGFV44511f22","fileUploadParameters":{"maximumPartSize":5368709120,"minimumPartSize":5242880,"maximumFileSize":5497558138880,"maximumNumParts":10000,"emptyLastPartAllowed":true}}'} + body: {string: !!python/unicode '{"id":"project-FPbY7q00pgVBqpgZ9Vx48pXK","fileUploadParameters":{"maximumPartSize":5368709120,"minimumPartSize":5242880,"maximumFileSize":5497558138880,"maximumNumParts":10000,"emptyLastPartAllowed":true}}'} headers: connection: [keep-alive] content-length: ['205'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:20:22 GMT'] + date: ['Tue, 13 Nov 2018 20:28:28 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592422062-311748] + x-request-id: [1542140908903-881243] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"size": 4, "md5": "8d777f385d3dfec8815d20f7496026dc", - "index": 1}' + body: !!python/unicode '{"index": 1, "size": 4, "md5": "8d777f385d3dfec8815d20f7496026dc"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k698018GgKZggK9KvpK80/upload + uri: https://api.dnanexus.com/file-FPbY7q00pgV7Y2Kq50fVv314/upload response: - body: {string: !!python/unicode '{"url":"https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/ccfa/file/open/file-FP9k698018GgKZggK9KvpK80/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181026%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181026T222022Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=f066b98b59b59e88d3da9520e2e2353e98b0789f54e334725aa2aa6d261121db","headers":{"host":"dnanexus-platform-upload-prod.s3.amazonaws.com","content-type":"binary/octet-stream","x-amz-server-side-encryption":"AES256","content-md5":"jXd/OF09/siBXSD3SWAm3A==","content-length":"4"},"expires":1540592542191}'} + body: {string: !!python/unicode '{"url":"https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/2256/file/open/file-FPbY7q00pgV7Y2Kq50fVv314/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181113%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181113T202829Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=4260096bc504b606543ce50d7c0392b640a495a9cc9d34bc0e6826a1a21a68d6","headers":{"host":"dnanexus-platform-upload-prod.s3.amazonaws.com","content-type":"binary/octet-stream","x-amz-server-side-encryption":"AES256","content-md5":"jXd/OF09/siBXSD3SWAm3A==","content-length":"4"},"expires":1542141029005}'} headers: connection: [keep-alive] content-length: ['692'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:20:22 GMT'] + date: ['Tue, 13 Nov 2018 20:28:29 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592422179-764521] + x-request-id: [1542140908991-50674] status: {code: 200, message: OK} - request: body: !!python/unicode data headers: DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] content-length: ['4'] content-md5: [jXd/OF09/siBXSD3SWAm3A==] content-type: [binary/octet-stream] host: [dnanexus-platform-upload-prod.s3.amazonaws.com] x-amz-server-side-encryption: [AES256] method: PUT - uri: https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/ccfa/file/open/file-FP9k698018GgKZggK9KvpK80/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181026%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181026T222022Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=f066b98b59b59e88d3da9520e2e2353e98b0789f54e334725aa2aa6d261121db + uri: https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/2256/file/open/file-FPbY7q00pgV7Y2Kq50fVv314/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181113%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181113T202829Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=4260096bc504b606543ce50d7c0392b640a495a9cc9d34bc0e6826a1a21a68d6 response: body: {string: !!python/unicode ''} headers: content-length: ['0'] - date: ['Fri, 26 Oct 2018 22:20:23 GMT'] + date: ['Tue, 13 Nov 2018 20:28:30 GMT'] etag: ['"8d777f385d3dfec8815d20f7496026dc"'] server: [AmazonS3] - x-amz-expiration: ['expiry-date="Sat, 17 Nov 2018 00:00:00 GMT", rule-id="3weekpurge"'] - x-amz-id-2: [1pPSMoidFp3YCPyrZgOq9Zf8sbuK+ioUhFwC8oLQLBVFRvyKxAiH6yp17yMglc3b359EFOd53lI=] - x-amz-request-id: [E68A4EE9BB33051C] + x-amz-expiration: ['expiry-date="Wed, 05 Dec 2018 00:00:00 GMT", rule-id="3weekpurge"'] + x-amz-id-2: [S8HT55bDdbnBZUAgfp6cwyOsW4lmyPb9tI/sNPSzjNXdzoUfbETAfnonAS2NsWPPiw72QfcosYw=] + x-amz-request-id: [EBC978B71EDA203E] x-amz-server-side-encryption: [AES256] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"project": "project-FP9k698018GvPGFV44511f22", "fields": + body: !!python/unicode '{"project": "project-FPbY7q00pgVBqpgZ9Vx48pXK", "fields": {"state": true}}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k698018GgKZggK9KvpK80/describe + uri: https://api.dnanexus.com/file-FPbY7q00pgV7Y2Kq50fVv314/describe response: - body: {string: !!python/unicode '{"id":"file-FP9k698018GgKZggK9KvpK80","state":"open"}'} + body: {string: !!python/unicode '{"id":"file-FPbY7q00pgV7Y2Kq50fVv314","state":"open"}'} headers: connection: [keep-alive] content-length: ['53'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:20:22 GMT'] + date: ['Tue, 13 Nov 2018 20:28:29 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592422839-441922] + x-request-id: [1542140909478-640223] status: {code: 200, message: OK} - request: body: !!python/unicode '{}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k698018GgKZggK9KvpK80/close + uri: https://api.dnanexus.com/file-FPbY7q00pgV7Y2Kq50fVv314/close response: - body: {string: !!python/unicode '{"id":"file-FP9k698018GgKZggK9KvpK80"}'} + body: {string: !!python/unicode '{"id":"file-FPbY7q00pgV7Y2Kq50fVv314"}'} headers: connection: [keep-alive] content-length: ['38'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:20:23 GMT'] + date: ['Tue, 13 Nov 2018 20:28:29 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592422957-353147] + x-request-id: [1542140909572-467493] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"project": "project-FP9k698018GvPGFV44511f22", "fields": + body: !!python/unicode '{"project": "project-FPbY7q00pgVBqpgZ9Vx48pXK", "fields": {"state": true}}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k698018GgKZggK9KvpK80/describe + uri: https://api.dnanexus.com/file-FPbY7q00pgV7Y2Kq50fVv314/describe response: - body: {string: !!python/unicode '{"id":"file-FP9k698018GgKZggK9KvpK80","state":"closing"}'} + body: {string: !!python/unicode '{"id":"file-FPbY7q00pgV7Y2Kq50fVv314","state":"closing"}'} headers: connection: [keep-alive] content-length: ['56'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:20:23 GMT'] + date: ['Tue, 13 Nov 2018 20:28:29 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592423118-935939] + x-request-id: [1542140909700-747205] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"project": "project-FP9k698018GvPGFV44511f22", "fields": + body: !!python/unicode '{"project": "project-FPbY7q00pgVBqpgZ9Vx48pXK", "fields": {"state": true}}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k698018GgKZggK9KvpK80/describe + uri: https://api.dnanexus.com/file-FPbY7q00pgV7Y2Kq50fVv314/describe response: - body: {string: !!python/unicode '{"id":"file-FP9k698018GgKZggK9KvpK80","state":"closed"}'} + body: {string: !!python/unicode '{"id":"file-FPbY7q00pgV7Y2Kq50fVv314","state":"closed"}'} headers: connection: [keep-alive] content-length: ['55'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:20:25 GMT'] + date: ['Tue, 13 Nov 2018 20:28:31 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592425237-646624] + x-request-id: [1542140911795-886345] status: {code: 200, message: OK} - request: body: !!python/unicode '{"name": "test_dx_to_dx_folder.TempProj"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/project/new response: - body: {string: !!python/unicode '{"id":"project-FP9k6B80bj8GPGFV44511f23"}'} + body: {string: !!python/unicode '{"id":"project-FPbY7qj0FJj3YFg006F1yx7X"}'} headers: connection: [keep-alive] content-length: ['41'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:20:25 GMT'] + date: ['Tue, 13 Nov 2018 20:28:31 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592425350-817940] + x-request-id: [1542140911888-770897] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"limit": 2, "name": "TestCopy.test_dx_to_dx_folder.c466d30e", + body: !!python/unicode '{"limit": 2, "name": "TestCopy.test_dx_to_dx_folder.279f14a4", "level": "VIEW"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/system/findProjects response: - body: {string: !!python/unicode '{"results":[{"id":"project-FP9k698018GvPGFV44511f22","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} + body: {string: !!python/unicode '{"results":[{"id":"project-FPbY7q00pgVBqpgZ9Vx48pXK","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} headers: connection: [keep-alive] content-length: ['147'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:20:25 GMT'] + date: ['Tue, 13 Nov 2018 20:28:32 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592425469-713927] + x-request-id: [1542140912004-885334] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"objects": [{"name": "folder_file.txt", "project": "project-FP9k698018GvPGFV44511f22", - "batchsize": 2, "folder": "/temp_folder"}]}' + body: !!python/unicode '{"objects": [{"project": "project-FPbY7q00pgVBqpgZ9Vx48pXK", + "folder": "/temp_folder", "name": "folder_file.txt", "batchsize": 2}]}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/system/resolveDataObjects response: - body: {string: !!python/unicode '{"results":[[{"project":"project-FP9k698018GvPGFV44511f22","id":"file-FP9k698018GgKZggK9KvpK80"}]]}'} + body: {string: !!python/unicode '{"results":[[{"project":"project-FPbY7q00pgVBqpgZ9Vx48pXK","id":"file-FPbY7q00pgV7Y2Kq50fVv314"}]]}'} headers: connection: [keep-alive] content-length: ['99'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:20:25 GMT'] + date: ['Tue, 13 Nov 2018 20:28:32 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592425603-719314] + x-request-id: [1542140912123-824267] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"project": "project-FP9k698018GvPGFV44511f22"}' + body: !!python/unicode '{"project": "project-FPbY7q00pgVBqpgZ9Vx48pXK"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k698018GgKZggK9KvpK80/describe + uri: https://api.dnanexus.com/file-FPbY7q00pgV7Y2Kq50fVv314/describe response: - body: {string: !!python/unicode '{"id":"file-FP9k698018GgKZggK9KvpK80","project":"project-FP9k698018GvPGFV44511f22","class":"file","sponsored":false,"name":"folder_file.txt","types":[],"state":"closed","hidden":false,"links":[],"folder":"/temp_folder","tags":[],"created":1540592421000,"modified":1540592423418,"createdBy":{"user":"user-akumar_counsyl"},"media":"text/plain","archivalState":"live","size":4}'} + body: {string: !!python/unicode '{"id":"file-FPbY7q00pgV7Y2Kq50fVv314","project":"project-FPbY7q00pgVBqpgZ9Vx48pXK","class":"file","sponsored":false,"name":"folder_file.txt","types":[],"state":"closed","hidden":false,"links":[],"folder":"/temp_folder","tags":[],"created":1542140908000,"modified":1542140910671,"createdBy":{"user":"user-akumar_counsyl"},"media":"text/plain","archivalState":"live","size":4}'} headers: connection: [keep-alive] content-length: ['374'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:20:25 GMT'] + date: ['Tue, 13 Nov 2018 20:28:32 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592425716-171622] + x-request-id: [1542140912218-712705] status: {code: 200, message: OK} - request: body: !!python/unicode '{"limit": 2, "name": "test_dx_to_dx_folder.TempProj", @@ -316,43 +316,43 @@ interactions: headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/system/findProjects response: - body: {string: !!python/unicode '{"results":[{"id":"project-FP9k6B80bj8GPGFV44511f23","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} + body: {string: !!python/unicode '{"results":[{"id":"project-FPbY7qj0FJj3YFg006F1yx7X","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} headers: connection: [keep-alive] content-length: ['147'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:20:25 GMT'] + date: ['Tue, 13 Nov 2018 20:28:32 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592425844-329416] + x-request-id: [1542140912320-792752] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"includeHidden": false, "only": "folders", "folder": - "/random/", "describe": {"fields": {"name": true, "folder": true}}}' + body: !!python/unicode '{"folder": "/random/", "describe": {"fields": {"folder": + true, "name": true}}, "only": "folders", "includeHidden": false}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k6B80bj8GPGFV44511f23/listFolder + uri: https://api.dnanexus.com/project-FPbY7qj0FJj3YFg006F1yx7X/listFolder response: body: {string: !!python/unicode '{"error":{"type":"ResourceNotFound","message":"The - specified folder could not be found in project-FP9k6B80bj8GPGFV44511f23"}}'} + specified folder could not be found in project-FPbY7qj0FJj3YFg006F1yx7X"}}'} headers: connection: [keep-alive] content-type: [application/json] - date: ['Fri, 26 Oct 2018 22:20:26 GMT'] + date: ['Tue, 13 Nov 2018 20:28:32 GMT'] server: [nginx] transfer-encoding: [chunked] vary: [Accept-Encoding] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592426029-913321] + x-request-id: [1542140912441-789628] status: {code: 404, message: Not Found} - request: body: !!python/unicode '{"limit": 2, "name": "test_dx_to_dx_folder.TempProj", @@ -360,40 +360,40 @@ interactions: headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/system/findProjects response: - body: {string: !!python/unicode '{"results":[{"id":"project-FP9k6B80bj8GPGFV44511f23","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} + body: {string: !!python/unicode '{"results":[{"id":"project-FPbY7qj0FJj3YFg006F1yx7X","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} headers: connection: [keep-alive] content-length: ['147'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:20:27 GMT'] + date: ['Tue, 13 Nov 2018 20:28:32 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592427012-242757] + x-request-id: [1542140912794-200251] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"parents": true, "folder": "/random"}' + body: !!python/unicode '{"folder": "/random", "parents": true}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k6B80bj8GPGFV44511f23/newFolder + uri: https://api.dnanexus.com/project-FPbY7qj0FJj3YFg006F1yx7X/newFolder response: - body: {string: !!python/unicode '{"id":"project-FP9k6B80bj8GPGFV44511f23"}'} + body: {string: !!python/unicode '{"id":"project-FPbY7qj0FJj3YFg006F1yx7X"}'} headers: connection: [keep-alive] content-length: ['41'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:20:27 GMT'] + date: ['Tue, 13 Nov 2018 20:28:32 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592427171-278612] + x-request-id: [1542140912913-398438] status: {code: 200, message: OK} - request: body: !!python/unicode '{"limit": 2, "name": "test_dx_to_dx_folder.TempProj", @@ -401,28 +401,28 @@ interactions: headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/system/findProjects response: - body: {string: !!python/unicode '{"results":[{"id":"project-FP9k6B80bj8GPGFV44511f23","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} + body: {string: !!python/unicode '{"results":[{"id":"project-FPbY7qj0FJj3YFg006F1yx7X","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} headers: connection: [keep-alive] content-length: ['147'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:20:27 GMT'] + date: ['Tue, 13 Nov 2018 20:28:33 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592427283-143595] + x-request-id: [1542140913040-541191] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"objects": [{"name": "folder_file.txt", "project": "project-FP9k6B80bj8GPGFV44511f23", - "batchsize": 2, "folder": "/random"}]}' + body: !!python/unicode '{"objects": [{"project": "project-FPbY7qj0FJj3YFg006F1yx7X", + "folder": "/random", "name": "folder_file.txt", "batchsize": 2}]}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/system/resolveDataObjects response: @@ -431,52 +431,52 @@ interactions: connection: [keep-alive] content-length: ['16'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:20:27 GMT'] + date: ['Tue, 13 Nov 2018 20:28:33 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592427417-848607] + x-request-id: [1542140913155-924943] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"destination": "/random", "project": "project-FP9k6B80bj8GPGFV44511f23", - "objects": ["file-FP9k698018GgKZggK9KvpK80"]}' + body: !!python/unicode '{"project": "project-FPbY7qj0FJj3YFg006F1yx7X", "destination": + "/random", "objects": ["file-FPbY7q00pgV7Y2Kq50fVv314"]}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k698018GvPGFV44511f22/clone + uri: https://api.dnanexus.com/project-FPbY7q00pgVBqpgZ9Vx48pXK/clone response: - body: {string: !!python/unicode '{"id":"project-FP9k698018GvPGFV44511f22","project":"project-FP9k6B80bj8GPGFV44511f23","exists":[]}'} + body: {string: !!python/unicode '{"id":"project-FPbY7q00pgVBqpgZ9Vx48pXK","project":"project-FPbY7qj0FJj3YFg006F1yx7X","exists":[]}'} headers: connection: [keep-alive] content-length: ['98'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:20:27 GMT'] + date: ['Tue, 13 Nov 2018 20:28:33 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592427554-255767] + x-request-id: [1542140913256-29560] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"project": "project-FP9k698018GvPGFV44511f22"}' + body: !!python/unicode '{"project": "project-FPbY7q00pgVBqpgZ9Vx48pXK"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k698018GgKZggK9KvpK80/describe + uri: https://api.dnanexus.com/file-FPbY7q00pgV7Y2Kq50fVv314/describe response: - body: {string: !!python/unicode '{"id":"file-FP9k698018GgKZggK9KvpK80","project":"project-FP9k698018GvPGFV44511f22","class":"file","sponsored":false,"name":"folder_file.txt","types":[],"state":"closed","hidden":false,"links":[],"folder":"/temp_folder","tags":[],"created":1540592421000,"modified":1540592423418,"createdBy":{"user":"user-akumar_counsyl"},"media":"text/plain","archivalState":"live","size":4}'} + body: {string: !!python/unicode '{"id":"file-FPbY7q00pgV7Y2Kq50fVv314","project":"project-FPbY7q00pgVBqpgZ9Vx48pXK","class":"file","sponsored":false,"name":"folder_file.txt","types":[],"state":"closed","hidden":false,"links":[],"folder":"/temp_folder","tags":[],"created":1542140908000,"modified":1542140910671,"createdBy":{"user":"user-akumar_counsyl"},"media":"text/plain","archivalState":"live","size":4}'} headers: connection: [keep-alive] content-length: ['374'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:20:27 GMT'] + date: ['Tue, 13 Nov 2018 20:28:33 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592427846-910618] + x-request-id: [1542140913499-329647] status: {code: 200, message: OK} - request: body: !!python/unicode '{"limit": 2, "name": "test_dx_to_dx_folder.TempProj", @@ -484,100 +484,100 @@ interactions: headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/system/findProjects response: - body: {string: !!python/unicode '{"results":[{"id":"project-FP9k6B80bj8GPGFV44511f23","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} + body: {string: !!python/unicode '{"results":[{"id":"project-FPbY7qj0FJj3YFg006F1yx7X","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} headers: connection: [keep-alive] content-length: ['147'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:20:28 GMT'] + date: ['Tue, 13 Nov 2018 20:28:33 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592427961-616608] + x-request-id: [1542140913600-954934] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"objects": [{"name": "folder_file.txt", "project": "project-FP9k6B80bj8GPGFV44511f23", - "batchsize": 2, "folder": "/random"}]}' + body: !!python/unicode '{"objects": [{"project": "project-FPbY7qj0FJj3YFg006F1yx7X", + "folder": "/random", "name": "folder_file.txt", "batchsize": 2}]}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/system/resolveDataObjects response: - body: {string: !!python/unicode '{"results":[[{"project":"project-FP9k6B80bj8GPGFV44511f23","id":"file-FP9k698018GgKZggK9KvpK80"}]]}'} + body: {string: !!python/unicode '{"results":[[{"project":"project-FPbY7qj0FJj3YFg006F1yx7X","id":"file-FPbY7q00pgV7Y2Kq50fVv314"}]]}'} headers: connection: [keep-alive] content-length: ['99'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:20:28 GMT'] + date: ['Tue, 13 Nov 2018 20:28:33 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592428097-253065] + x-request-id: [1542140913780-440962] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"project": "project-FP9k6B80bj8GPGFV44511f23"}' + body: !!python/unicode '{"project": "project-FPbY7qj0FJj3YFg006F1yx7X"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k698018GgKZggK9KvpK80/describe + uri: https://api.dnanexus.com/file-FPbY7q00pgV7Y2Kq50fVv314/describe response: - body: {string: !!python/unicode '{"id":"file-FP9k698018GgKZggK9KvpK80","project":"project-FP9k6B80bj8GPGFV44511f23","class":"file","sponsored":false,"name":"folder_file.txt","types":[],"state":"closed","hidden":false,"links":[],"folder":"/random","tags":[],"created":1540592421000,"modified":1540592427707,"createdBy":{"user":"user-akumar_counsyl"},"media":"text/plain","archivalState":"live","size":4}'} + body: {string: !!python/unicode '{"id":"file-FPbY7q00pgV7Y2Kq50fVv314","project":"project-FPbY7qj0FJj3YFg006F1yx7X","class":"file","sponsored":false,"name":"folder_file.txt","types":[],"state":"closed","hidden":false,"links":[],"folder":"/random","tags":[],"created":1542140908000,"modified":1542140913380,"createdBy":{"user":"user-akumar_counsyl"},"media":"text/plain","archivalState":"live","size":4}'} headers: connection: [keep-alive] content-length: ['369'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:20:28 GMT'] + date: ['Tue, 13 Nov 2018 20:28:33 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592428200-260095] + x-request-id: [1542140913871-24738] status: {code: 200, message: OK} - request: body: !!python/unicode '{}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k6B80bj8GPGFV44511f23/destroy + uri: https://api.dnanexus.com/project-FPbY7qj0FJj3YFg006F1yx7X/destroy response: - body: {string: !!python/unicode '{"id":"project-FP9k6B80bj8GPGFV44511f23"}'} + body: {string: !!python/unicode '{"id":"project-FPbY7qj0FJj3YFg006F1yx7X"}'} headers: connection: [keep-alive] content-length: ['41'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:20:31 GMT'] + date: ['Tue, 13 Nov 2018 20:28:36 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592428324-651388] + x-request-id: [1542140913971-134741] status: {code: 200, message: OK} - request: body: !!python/unicode '{}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k698018GvPGFV44511f22/destroy + uri: https://api.dnanexus.com/project-FPbY7q00pgVBqpgZ9Vx48pXK/destroy response: - body: {string: !!python/unicode '{"id":"project-FP9k698018GvPGFV44511f22"}'} + body: {string: !!python/unicode '{"id":"project-FPbY7q00pgVBqpgZ9Vx48pXK"}'} headers: connection: [keep-alive] content-length: ['41'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:20:34 GMT'] + date: ['Tue, 13 Nov 2018 20:28:39 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592431602-57172] + x-request-id: [1542140916982-180054] status: {code: 200, message: OK} version: 1 diff --git a/stor/tests/cassettes_py2/TestCopy/test_dx_to_dx_same_project_exist_dest.yaml b/stor_dx/stor_dx/tests/cassettes_py2/TestCopy/test_dx_to_dx_same_project_exist_dest.yaml similarity index 57% rename from stor/tests/cassettes_py2/TestCopy/test_dx_to_dx_same_project_exist_dest.yaml rename to stor_dx/stor_dx/tests/cassettes_py2/TestCopy/test_dx_to_dx_same_project_exist_dest.yaml index cd73535f..50436c24 100644 --- a/stor/tests/cassettes_py2/TestCopy/test_dx_to_dx_same_project_exist_dest.yaml +++ b/stor_dx/stor_dx/tests/cassettes_py2/TestCopy/test_dx_to_dx_same_project_exist_dest.yaml @@ -1,909 +1,910 @@ interactions: - request: - body: !!python/unicode '{"name": "TestCopy.test_dx_to_dx_same_project_exist_dest.33f871c0"}' + body: !!python/unicode '{"name": "TestCopy.test_dx_to_dx_same_project_exist_dest.15700918"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/project/new response: - body: {string: !!python/unicode '{"id":"project-FP9k6Gj0QKBQq5P81088Yy46"}'} + body: {string: !!python/unicode '{"id":"project-FPbY7y00fVb3YFg006F1yx7b"}'} headers: connection: [keep-alive] content-length: ['41'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:20:35 GMT'] + date: ['Tue, 13 Nov 2018 20:28:40 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592435091-723177] + x-request-id: [1542140920139-904431] status: {code: 200, message: OK} - request: body: !!python/unicode '{}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k6Gj0QKBQq5P81088Yy46/describe + uri: https://api.dnanexus.com/project-FPbY7y00fVb3YFg006F1yx7b/describe response: - body: {string: !!python/unicode '{"id":"project-FP9k6Gj0QKBQq5P81088Yy46","name":"TestCopy.test_dx_to_dx_same_project_exist_dest.33f871c0","class":"project","created":1540592435000,"modified":1540592435000,"billTo":"org-counsyl","level":"ADMINISTER","dataUsage":0,"sponsoredDataUsage":0,"region":"aws:us-east-1","summary":"","description":"","protected":false,"restricted":false,"downloadRestricted":false,"containsPHI":false,"createdBy":{"user":"user-akumar_counsyl"},"version":0,"storageCost":0,"pendingTransfer":null,"tags":[],"defaultInstanceType":"mem2_hdd2_x2","archivalState":"live","archivalProgress":null,"totalSponsoredEgressBytes":0,"consumedSponsoredEgressBytes":0,"atSpendingLimit":false}'} + body: {string: !!python/unicode '{"id":"project-FPbY7y00fVb3YFg006F1yx7b","name":"TestCopy.test_dx_to_dx_same_project_exist_dest.15700918","class":"project","created":1542140920000,"modified":1542140920000,"billTo":"org-counsyl","level":"ADMINISTER","dataUsage":0,"sponsoredDataUsage":0,"region":"aws:us-east-1","summary":"","description":"","protected":false,"restricted":false,"downloadRestricted":false,"containsPHI":false,"createdBy":{"user":"user-akumar_counsyl"},"version":0,"storageCost":0,"pendingTransfer":null,"tags":[],"defaultInstanceType":"mem2_hdd2_x2","archivalState":"live","archivalProgress":null,"totalSponsoredEgressBytes":0,"consumedSponsoredEgressBytes":0,"atSpendingLimit":false}'} headers: connection: [keep-alive] content-length: ['668'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:20:35 GMT'] + date: ['Tue, 13 Nov 2018 20:28:40 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592435222-858365] + x-request-id: [1542140920265-987847] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"parents": true, "folder": "/temp_folder"}' + body: !!python/unicode '{"folder": "/temp_folder", "parents": true}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k6Gj0QKBQq5P81088Yy46/newFolder + uri: https://api.dnanexus.com/project-FPbY7y00fVb3YFg006F1yx7b/newFolder response: - body: {string: !!python/unicode '{"id":"project-FP9k6Gj0QKBQq5P81088Yy46"}'} + body: {string: !!python/unicode '{"id":"project-FPbY7y00fVb3YFg006F1yx7b"}'} headers: connection: [keep-alive] content-length: ['41'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:20:35 GMT'] + date: ['Tue, 13 Nov 2018 20:28:40 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592435351-737613] + x-request-id: [1542140920403-520056] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"name": "folder_file.txt", "project": "project-FP9k6Gj0QKBQq5P81088Yy46", - "folder": "/temp_folder", "nonce": "dd0d580f4c3f77a5541dc39f99476275ffa32bbbce2d9140b1136582ac4304111540592435.414858"}' + body: !!python/unicode '{"project": "project-FPbY7y00fVb3YFg006F1yx7b", "nonce": + "f547a053e285402ac9e4f4646a8c9860d48128253d7dad9ac572e148d9baf3981542140920.510789", + "folder": "/temp_folder", "name": "folder_file.txt"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/file/new response: - body: {string: !!python/unicode '{"id":"file-FP9k6Gj0QKBz10qyFXkfFBXX"}'} + body: {string: !!python/unicode '{"id":"file-FPbY7y00fVb3YFg006F1yx7f"}'} headers: connection: [keep-alive] content-length: ['38'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:20:35 GMT'] + date: ['Tue, 13 Nov 2018 20:28:40 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592435461-623313] + x-request-id: [1542140920555-131472] status: {code: 200, message: OK} - request: body: !!python/unicode '{"fields": {"fileUploadParameters": true}}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k6Gj0QKBQq5P81088Yy46/describe + uri: https://api.dnanexus.com/project-FPbY7y00fVb3YFg006F1yx7b/describe response: - body: {string: !!python/unicode '{"id":"project-FP9k6Gj0QKBQq5P81088Yy46","fileUploadParameters":{"maximumPartSize":5368709120,"minimumPartSize":5242880,"maximumFileSize":5497558138880,"maximumNumParts":10000,"emptyLastPartAllowed":true}}'} + body: {string: !!python/unicode '{"id":"project-FPbY7y00fVb3YFg006F1yx7b","fileUploadParameters":{"maximumPartSize":5368709120,"minimumPartSize":5242880,"maximumFileSize":5497558138880,"maximumNumParts":10000,"emptyLastPartAllowed":true}}'} headers: connection: [keep-alive] content-length: ['205'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:20:35 GMT'] + date: ['Tue, 13 Nov 2018 20:28:40 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592435623-141678] + x-request-id: [1542140920736-999154] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"size": 5, "md5": "73dfff57fe24e807bd4fb1bc4e07cd73", - "index": 1}' + body: !!python/unicode '{"index": 1, "size": 5, "md5": "73dfff57fe24e807bd4fb1bc4e07cd73"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k6Gj0QKBz10qyFXkfFBXX/upload + uri: https://api.dnanexus.com/file-FPbY7y00fVb3YFg006F1yx7f/upload response: - body: {string: !!python/unicode '{"url":"https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/2ddd/file/open/file-FP9k6Gj0QKBz10qyFXkfFBXX/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181026%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181026T222035Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=8f00b4ceb03ea424a4eb25cb6f2d0cc4d2061fe2779c837874490b088094bee4","headers":{"host":"dnanexus-platform-upload-prod.s3.amazonaws.com","content-type":"binary/octet-stream","x-amz-server-side-encryption":"AES256","content-md5":"c9//V/4k6Ae9T7G8TgfNcw==","content-length":"5"},"expires":1540592555749}'} + body: {string: !!python/unicode '{"url":"https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/ed13/file/open/file-FPbY7y00fVb3YFg006F1yx7f/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181113%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181113T202842Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=dbc2d6ca75ddd713c812638ea1141d94fae6064c827712e16bbc9fcde1cb844b","headers":{"host":"dnanexus-platform-upload-prod.s3.amazonaws.com","content-type":"binary/octet-stream","x-amz-server-side-encryption":"AES256","content-md5":"c9//V/4k6Ae9T7G8TgfNcw==","content-length":"5"},"expires":1542141042378}'} headers: connection: [keep-alive] content-length: ['692'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:20:35 GMT'] + date: ['Tue, 13 Nov 2018 20:28:42 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592435733-625963] + x-request-id: [1542140921830-610254] status: {code: 200, message: OK} - request: body: !!python/unicode data0 headers: DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] content-length: ['5'] content-md5: [c9//V/4k6Ae9T7G8TgfNcw==] content-type: [binary/octet-stream] host: [dnanexus-platform-upload-prod.s3.amazonaws.com] x-amz-server-side-encryption: [AES256] method: PUT - uri: https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/2ddd/file/open/file-FP9k6Gj0QKBz10qyFXkfFBXX/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181026%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181026T222035Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=8f00b4ceb03ea424a4eb25cb6f2d0cc4d2061fe2779c837874490b088094bee4 + uri: https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/ed13/file/open/file-FPbY7y00fVb3YFg006F1yx7f/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181113%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181113T202842Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=dbc2d6ca75ddd713c812638ea1141d94fae6064c827712e16bbc9fcde1cb844b response: body: {string: !!python/unicode ''} headers: content-length: ['0'] - date: ['Fri, 26 Oct 2018 22:20:37 GMT'] + date: ['Tue, 13 Nov 2018 20:28:43 GMT'] etag: ['"73dfff57fe24e807bd4fb1bc4e07cd73"'] server: [AmazonS3] - x-amz-expiration: ['expiry-date="Sat, 17 Nov 2018 00:00:00 GMT", rule-id="3weekpurge"'] - x-amz-id-2: [mbwMOsNA11SVWAoeeNBPCC1J7cCVesIr5MCu+cR+hlVwpScrK24dJ3/ZoUuEPTyWOiTzepdMywo=] - x-amz-request-id: [5553C19A470205CB] + x-amz-expiration: ['expiry-date="Wed, 05 Dec 2018 00:00:00 GMT", rule-id="3weekpurge"'] + x-amz-id-2: [YGgcNHeuSdtFdJnWRvdiujY9X6louiJ2ptkTEYArpCBxtvUyqk5U5aJCVjWN33cgOo69Z4SemIs=] + x-amz-request-id: [D98B7324D15EA3C0] x-amz-server-side-encryption: [AES256] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"project": "project-FP9k6Gj0QKBQq5P81088Yy46", "fields": + body: !!python/unicode '{"project": "project-FPbY7y00fVb3YFg006F1yx7b", "fields": {"state": true}}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k6Gj0QKBz10qyFXkfFBXX/describe + uri: https://api.dnanexus.com/file-FPbY7y00fVb3YFg006F1yx7f/describe response: - body: {string: !!python/unicode '{"id":"file-FP9k6Gj0QKBz10qyFXkfFBXX","state":"open"}'} + body: {string: !!python/unicode '{"id":"file-FPbY7y00fVb3YFg006F1yx7f","state":"open"}'} headers: connection: [keep-alive] content-length: ['53'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:20:36 GMT'] + date: ['Tue, 13 Nov 2018 20:28:42 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592436287-291859] + x-request-id: [1542140922894-265367] status: {code: 200, message: OK} - request: body: !!python/unicode '{}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k6Gj0QKBz10qyFXkfFBXX/close + uri: https://api.dnanexus.com/file-FPbY7y00fVb3YFg006F1yx7f/close response: - body: {string: !!python/unicode '{"id":"file-FP9k6Gj0QKBz10qyFXkfFBXX"}'} + body: {string: !!python/unicode '{"id":"file-FPbY7y00fVb3YFg006F1yx7f"}'} headers: connection: [keep-alive] content-length: ['38'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:20:36 GMT'] + date: ['Tue, 13 Nov 2018 20:28:43 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592436393-192153] + x-request-id: [1542140922986-194512] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"parents": true, "folder": "/another_folder"}' + body: !!python/unicode '{"folder": "/another_folder", "parents": true}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k6Gj0QKBQq5P81088Yy46/newFolder + uri: https://api.dnanexus.com/project-FPbY7y00fVb3YFg006F1yx7b/newFolder response: - body: {string: !!python/unicode '{"id":"project-FP9k6Gj0QKBQq5P81088Yy46"}'} + body: {string: !!python/unicode '{"id":"project-FPbY7y00fVb3YFg006F1yx7b"}'} headers: connection: [keep-alive] content-length: ['41'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:20:36 GMT'] + date: ['Tue, 13 Nov 2018 20:28:43 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592436533-85383] + x-request-id: [1542140923143-344787] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"name": "random_file.txt", "project": "project-FP9k6Gj0QKBQq5P81088Yy46", - "folder": "/another_folder", "nonce": "994b88dea65bf6e941344289b9d76b68deef6f8f6898231837c2ea687ebcd4841540592436.598021"}' + body: !!python/unicode '{"project": "project-FPbY7y00fVb3YFg006F1yx7b", "nonce": + "23c158ad3272d1e431131b947a816ddebba46021a18dea6165e56ecd70cb698b1542140923.196432", + "folder": "/another_folder", "name": "random_file.txt"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/file/new response: - body: {string: !!python/unicode '{"id":"file-FP9k6J00QKBb88FB44yY4Zb8"}'} + body: {string: !!python/unicode '{"id":"file-FPbY7yj0fVbGVV2X1Z5bX2jf"}'} headers: connection: [keep-alive] content-length: ['38'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:20:36 GMT'] + date: ['Tue, 13 Nov 2018 20:28:43 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592436643-992986] + x-request-id: [1542140923240-130751] status: {code: 200, message: OK} - request: body: !!python/unicode '{"fields": {"fileUploadParameters": true}}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k6Gj0QKBQq5P81088Yy46/describe + uri: https://api.dnanexus.com/project-FPbY7y00fVb3YFg006F1yx7b/describe response: - body: {string: !!python/unicode '{"id":"project-FP9k6Gj0QKBQq5P81088Yy46","fileUploadParameters":{"maximumPartSize":5368709120,"minimumPartSize":5242880,"maximumFileSize":5497558138880,"maximumNumParts":10000,"emptyLastPartAllowed":true}}'} + body: {string: !!python/unicode '{"id":"project-FPbY7y00fVb3YFg006F1yx7b","fileUploadParameters":{"maximumPartSize":5368709120,"minimumPartSize":5242880,"maximumFileSize":5497558138880,"maximumNumParts":10000,"emptyLastPartAllowed":true}}'} headers: connection: [keep-alive] content-length: ['205'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:20:37 GMT'] + date: ['Tue, 13 Nov 2018 20:28:43 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592437027-919502] + x-request-id: [1542140923382-838593] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"size": 5, "md5": "89d903bc35dede724fd52c51437ff5fd", - "index": 1}' + body: !!python/unicode '{"index": 1, "size": 5, "md5": "89d903bc35dede724fd52c51437ff5fd"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k6J00QKBb88FB44yY4Zb8/upload + uri: https://api.dnanexus.com/file-FPbY7yj0fVbGVV2X1Z5bX2jf/upload response: - body: {string: !!python/unicode '{"url":"https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/473f/file/open/file-FP9k6J00QKBb88FB44yY4Zb8/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181026%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181026T222037Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=c6202cdc852a7d1293f2b8c03b9461bee8253dc1187056d40eef16c606eac8f6","headers":{"host":"dnanexus-platform-upload-prod.s3.amazonaws.com","content-type":"binary/octet-stream","x-amz-server-side-encryption":"AES256","content-md5":"idkDvDXe3nJP1SxRQ3/1/Q==","content-length":"5"},"expires":1540592557149}'} + body: {string: !!python/unicode '{"url":"https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/a286/file/open/file-FPbY7yj0fVbGVV2X1Z5bX2jf/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181113%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181113T202843Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=5a40bbdd398d9dd1b02ab4104df993ccea157113d4226200f13ce6ad6f86ac24","headers":{"host":"dnanexus-platform-upload-prod.s3.amazonaws.com","content-type":"binary/octet-stream","x-amz-server-side-encryption":"AES256","content-md5":"idkDvDXe3nJP1SxRQ3/1/Q==","content-length":"5"},"expires":1542141043494}'} headers: connection: [keep-alive] content-length: ['692'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:20:37 GMT'] + date: ['Tue, 13 Nov 2018 20:28:43 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592437133-910969] + x-request-id: [1542140923484-974363] status: {code: 200, message: OK} - request: body: !!python/unicode data1 headers: DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] content-length: ['5'] content-md5: [idkDvDXe3nJP1SxRQ3/1/Q==] content-type: [binary/octet-stream] host: [dnanexus-platform-upload-prod.s3.amazonaws.com] x-amz-server-side-encryption: [AES256] method: PUT - uri: https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/473f/file/open/file-FP9k6J00QKBb88FB44yY4Zb8/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181026%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181026T222037Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=c6202cdc852a7d1293f2b8c03b9461bee8253dc1187056d40eef16c606eac8f6 + uri: https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/a286/file/open/file-FPbY7yj0fVbGVV2X1Z5bX2jf/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181113%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181113T202843Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=5a40bbdd398d9dd1b02ab4104df993ccea157113d4226200f13ce6ad6f86ac24 response: body: {string: !!python/unicode ''} headers: content-length: ['0'] - date: ['Fri, 26 Oct 2018 22:20:38 GMT'] + date: ['Tue, 13 Nov 2018 20:28:44 GMT'] etag: ['"89d903bc35dede724fd52c51437ff5fd"'] server: [AmazonS3] - x-amz-expiration: ['expiry-date="Sat, 17 Nov 2018 00:00:00 GMT", rule-id="3weekpurge"'] - x-amz-id-2: [/Okp7zgJ5hFdY4NsFOlpGfdU8qfeNV1stQMVzzPoCKz1eb0/d8WJr4TMvUMsOkLtd5xzVT+4sso=] - x-amz-request-id: [BF1E5D34BFD3EDEB] + x-amz-expiration: ['expiry-date="Wed, 05 Dec 2018 00:00:00 GMT", rule-id="3weekpurge"'] + x-amz-id-2: [yHvWcg7hFhgN6CMHcgLk0jHNZsXFNLDrm9mG2lGbBByfqs8QI5F+iETnrPrT+37qjaAlprlynWI=] + x-amz-request-id: [AD6B2869983A1D9E] x-amz-server-side-encryption: [AES256] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"project": "project-FP9k6Gj0QKBQq5P81088Yy46", "fields": + body: !!python/unicode '{"project": "project-FPbY7y00fVb3YFg006F1yx7b", "fields": {"state": true}}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k6J00QKBb88FB44yY4Zb8/describe + uri: https://api.dnanexus.com/file-FPbY7yj0fVbGVV2X1Z5bX2jf/describe response: - body: {string: !!python/unicode '{"id":"file-FP9k6J00QKBb88FB44yY4Zb8","state":"open"}'} + body: {string: !!python/unicode '{"id":"file-FPbY7yj0fVbGVV2X1Z5bX2jf","state":"open"}'} headers: connection: [keep-alive] content-length: ['53'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:20:37 GMT'] + date: ['Tue, 13 Nov 2018 20:28:43 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592437419-534924] + x-request-id: [1542140923704-469663] status: {code: 200, message: OK} - request: body: !!python/unicode '{}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k6J00QKBb88FB44yY4Zb8/close + uri: https://api.dnanexus.com/file-FPbY7yj0fVbGVV2X1Z5bX2jf/close response: - body: {string: !!python/unicode '{"id":"file-FP9k6J00QKBb88FB44yY4Zb8"}'} + body: {string: !!python/unicode '{"id":"file-FPbY7yj0fVbGVV2X1Z5bX2jf"}'} headers: connection: [keep-alive] content-length: ['38'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:20:37 GMT'] + date: ['Tue, 13 Nov 2018 20:28:43 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592437528-813252] + x-request-id: [1542140923800-462549] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"parents": true, "folder": "/another_folder"}' + body: !!python/unicode '{"folder": "/another_folder", "parents": true}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k6Gj0QKBQq5P81088Yy46/newFolder + uri: https://api.dnanexus.com/project-FPbY7y00fVb3YFg006F1yx7b/newFolder response: - body: {string: !!python/unicode '{"id":"project-FP9k6Gj0QKBQq5P81088Yy46"}'} + body: {string: !!python/unicode '{"id":"project-FPbY7y00fVb3YFg006F1yx7b"}'} headers: connection: [keep-alive] content-length: ['41'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:20:37 GMT'] + date: ['Tue, 13 Nov 2018 20:28:43 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592437657-632808] + x-request-id: [1542140923918-244069] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"name": "folder_file.txt", "project": "project-FP9k6Gj0QKBQq5P81088Yy46", - "folder": "/another_folder", "nonce": "c344441abea495abf654ac41c19294ad26d73f600279b09bb8d682e3085321191540592437.729794"}' + body: !!python/unicode '{"project": "project-FPbY7y00fVb3YFg006F1yx7b", "nonce": + "e12973ef71f8d0d3487e9969be56d19ad6b8490283ceaa90f649aa57b262b8221542140923.967383", + "folder": "/another_folder", "name": "folder_file.txt"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/file/new response: - body: {string: !!python/unicode '{"id":"file-FP9k6J80QKBz10qyFXkfFBXZ"}'} + body: {string: !!python/unicode '{"id":"file-FPbY7z00fVb7Y2Kq50fVv317"}'} headers: connection: [keep-alive] content-length: ['38'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:20:37 GMT'] + date: ['Tue, 13 Nov 2018 20:28:44 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592437776-653220] + x-request-id: [1542140924011-630481] status: {code: 200, message: OK} - request: body: !!python/unicode '{"fields": {"fileUploadParameters": true}}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k6Gj0QKBQq5P81088Yy46/describe + uri: https://api.dnanexus.com/project-FPbY7y00fVb3YFg006F1yx7b/describe response: - body: {string: !!python/unicode '{"id":"project-FP9k6Gj0QKBQq5P81088Yy46","fileUploadParameters":{"maximumPartSize":5368709120,"minimumPartSize":5242880,"maximumFileSize":5497558138880,"maximumNumParts":10000,"emptyLastPartAllowed":true}}'} + body: {string: !!python/unicode '{"id":"project-FPbY7y00fVb3YFg006F1yx7b","fileUploadParameters":{"maximumPartSize":5368709120,"minimumPartSize":5242880,"maximumFileSize":5497558138880,"maximumNumParts":10000,"emptyLastPartAllowed":true}}'} headers: connection: [keep-alive] content-length: ['205'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:20:37 GMT'] + date: ['Tue, 13 Nov 2018 20:28:44 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592437915-206981] + x-request-id: [1542140924195-437333] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"size": 5, "md5": "ff9cf2d690d888cb337f6bf4526b6130", - "index": 1}' + body: !!python/unicode '{"index": 1, "size": 5, "md5": "ff9cf2d690d888cb337f6bf4526b6130"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k6J80QKBz10qyFXkfFBXZ/upload + uri: https://api.dnanexus.com/file-FPbY7z00fVb7Y2Kq50fVv317/upload response: - body: {string: !!python/unicode '{"url":"https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/a0a2/file/open/file-FP9k6J80QKBz10qyFXkfFBXZ/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181026%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181026T222038Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=ba58e3e56aa4e4cf064ee0ba937c5402bf892940fe28bcee968ce878edc65732","headers":{"host":"dnanexus-platform-upload-prod.s3.amazonaws.com","content-type":"binary/octet-stream","x-amz-server-side-encryption":"AES256","content-md5":"/5zy1pDYiMszf2v0UmthMA==","content-length":"5"},"expires":1540592558037}'} + body: {string: !!python/unicode '{"url":"https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/40b0/file/open/file-FPbY7z00fVb7Y2Kq50fVv317/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181113%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181113T202844Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=d7bd236f79ce2a0f143fabfc81a2434ddbea7ffe0b639176b5727bf4a2f1516e","headers":{"host":"dnanexus-platform-upload-prod.s3.amazonaws.com","content-type":"binary/octet-stream","x-amz-server-side-encryption":"AES256","content-md5":"/5zy1pDYiMszf2v0UmthMA==","content-length":"5"},"expires":1542141044311}'} headers: connection: [keep-alive] content-length: ['692'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:20:38 GMT'] + date: ['Tue, 13 Nov 2018 20:28:44 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592438024-293263] + x-request-id: [1542140924298-800821] status: {code: 200, message: OK} - request: body: !!python/unicode data2 headers: DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] content-length: ['5'] content-md5: [/5zy1pDYiMszf2v0UmthMA==] content-type: [binary/octet-stream] host: [dnanexus-platform-upload-prod.s3.amazonaws.com] x-amz-server-side-encryption: [AES256] method: PUT - uri: https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/a0a2/file/open/file-FP9k6J80QKBz10qyFXkfFBXZ/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181026%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181026T222038Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=ba58e3e56aa4e4cf064ee0ba937c5402bf892940fe28bcee968ce878edc65732 + uri: https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/40b0/file/open/file-FPbY7z00fVb7Y2Kq50fVv317/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181113%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181113T202844Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=d7bd236f79ce2a0f143fabfc81a2434ddbea7ffe0b639176b5727bf4a2f1516e response: body: {string: !!python/unicode ''} headers: content-length: ['0'] - date: ['Fri, 26 Oct 2018 22:20:39 GMT'] + date: ['Tue, 13 Nov 2018 20:28:45 GMT'] etag: ['"ff9cf2d690d888cb337f6bf4526b6130"'] server: [AmazonS3] - x-amz-expiration: ['expiry-date="Sat, 17 Nov 2018 00:00:00 GMT", rule-id="3weekpurge"'] - x-amz-id-2: [SZbTVWQUAPzNebxPNyHqovYIj3FjESTsmybd8TaZIBrUBQ/GLQW6yvu0Fx92LlZgD1cfK2aKOw4=] - x-amz-request-id: [E4F6B4146194B949] + x-amz-expiration: ['expiry-date="Wed, 05 Dec 2018 00:00:00 GMT", rule-id="3weekpurge"'] + x-amz-id-2: [Mbv8g/ObIvgcl4o6N4IKwLsgzJ5l7U4kncSrJC+91HeUW3r4DEeTqFquFvATou+FT5E3zW8XwYE=] + x-amz-request-id: [BFCF8A5E97C3FAE1] x-amz-server-side-encryption: [AES256] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"project": "project-FP9k6Gj0QKBQq5P81088Yy46", "fields": + body: !!python/unicode '{"project": "project-FPbY7y00fVb3YFg006F1yx7b", "fields": {"state": true}}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k6J80QKBz10qyFXkfFBXZ/describe + uri: https://api.dnanexus.com/file-FPbY7z00fVb7Y2Kq50fVv317/describe response: - body: {string: !!python/unicode '{"id":"file-FP9k6J80QKBz10qyFXkfFBXZ","state":"open"}'} + body: {string: !!python/unicode '{"id":"file-FPbY7z00fVb7Y2Kq50fVv317","state":"open"}'} headers: connection: [keep-alive] content-length: ['53'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:20:38 GMT'] + date: ['Tue, 13 Nov 2018 20:28:44 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592438264-508239] + x-request-id: [1542140924525-70710] status: {code: 200, message: OK} - request: body: !!python/unicode '{}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k6J80QKBz10qyFXkfFBXZ/close + uri: https://api.dnanexus.com/file-FPbY7z00fVb7Y2Kq50fVv317/close response: - body: {string: !!python/unicode '{"id":"file-FP9k6J80QKBz10qyFXkfFBXZ"}'} + body: {string: !!python/unicode '{"id":"file-FPbY7z00fVb7Y2Kq50fVv317"}'} headers: connection: [keep-alive] content-length: ['38'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:20:38 GMT'] + date: ['Tue, 13 Nov 2018 20:28:44 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592438374-820237] + x-request-id: [1542140924626-457660] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"limit": 2, "name": "TestCopy.test_dx_to_dx_same_project_exist_dest.33f871c0", + body: !!python/unicode '{"limit": 2, "name": "TestCopy.test_dx_to_dx_same_project_exist_dest.15700918", "level": "VIEW"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/system/findProjects response: - body: {string: !!python/unicode '{"results":[{"id":"project-FP9k6Gj0QKBQq5P81088Yy46","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} + body: {string: !!python/unicode '{"results":[{"id":"project-FPbY7y00fVb3YFg006F1yx7b","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} headers: connection: [keep-alive] content-length: ['147'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:20:38 GMT'] + date: ['Tue, 13 Nov 2018 20:28:46 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592438503-524939] + x-request-id: [1542140925004-533386] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"objects": [{"name": "folder_file.txt", "project": "project-FP9k6Gj0QKBQq5P81088Yy46", - "batchsize": 2, "folder": "/temp_folder"}]}' + body: !!python/unicode '{"objects": [{"project": "project-FPbY7y00fVb3YFg006F1yx7b", + "folder": "/temp_folder", "name": "folder_file.txt", "batchsize": 2}]}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/system/resolveDataObjects response: - body: {string: !!python/unicode '{"results":[[{"project":"project-FP9k6Gj0QKBQq5P81088Yy46","id":"file-FP9k6Gj0QKBz10qyFXkfFBXX"}]]}'} + body: {string: !!python/unicode '{"results":[[{"project":"project-FPbY7y00fVb3YFg006F1yx7b","id":"file-FPbY7y00fVb3YFg006F1yx7f"}]]}'} headers: connection: [keep-alive] content-length: ['99'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:20:38 GMT'] + date: ['Tue, 13 Nov 2018 20:28:46 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592438635-529734] + x-request-id: [1542140926441-797928] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"project": "project-FP9k6Gj0QKBQq5P81088Yy46"}' + body: !!python/unicode '{"project": "project-FPbY7y00fVb3YFg006F1yx7b"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k6Gj0QKBz10qyFXkfFBXX/describe + uri: https://api.dnanexus.com/file-FPbY7y00fVb3YFg006F1yx7f/describe response: - body: {string: !!python/unicode '{"id":"file-FP9k6Gj0QKBz10qyFXkfFBXX","project":"project-FP9k6Gj0QKBQq5P81088Yy46","class":"file","sponsored":false,"name":"folder_file.txt","types":[],"state":"closed","hidden":false,"links":[],"folder":"/temp_folder","tags":[],"created":1540592435000,"modified":1540592437199,"createdBy":{"user":"user-akumar_counsyl"},"media":"text/plain","archivalState":"live","size":5}'} + body: {string: !!python/unicode '{"id":"file-FPbY7y00fVb3YFg006F1yx7f","project":"project-FPbY7y00fVb3YFg006F1yx7b","class":"file","sponsored":false,"name":"folder_file.txt","types":[],"state":"closed","hidden":false,"links":[],"folder":"/temp_folder","tags":[],"created":1542140920000,"modified":1542140923981,"createdBy":{"user":"user-akumar_counsyl"},"media":"text/plain","archivalState":"live","size":5}'} headers: connection: [keep-alive] content-length: ['374'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:20:38 GMT'] + date: ['Tue, 13 Nov 2018 20:28:46 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592438739-738538] + x-request-id: [1542140926558-657281] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"limit": 2, "name": "TestCopy.test_dx_to_dx_same_project_exist_dest.33f871c0", + body: !!python/unicode '{"limit": 2, "name": "TestCopy.test_dx_to_dx_same_project_exist_dest.15700918", "level": "VIEW"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/system/findProjects response: - body: {string: !!python/unicode '{"results":[{"id":"project-FP9k6Gj0QKBQq5P81088Yy46","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} + body: {string: !!python/unicode '{"results":[{"id":"project-FPbY7y00fVb3YFg006F1yx7b","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} headers: connection: [keep-alive] content-length: ['147'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:20:38 GMT'] + date: ['Tue, 13 Nov 2018 20:28:46 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592438853-203765] + x-request-id: [1542140926671-665820] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"includeHidden": false, "only": "folders", "folder": - "/another_folder/random_file.txt", "describe": {"fields": {"name": true, "folder": - true}}}' + body: !!python/unicode '{"folder": "/another_folder/random_file.txt", "describe": + {"fields": {"folder": true, "name": true}}, "only": "folders", "includeHidden": + false}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k6Gj0QKBQq5P81088Yy46/listFolder + uri: https://api.dnanexus.com/project-FPbY7y00fVb3YFg006F1yx7b/listFolder response: body: {string: !!python/unicode '{"error":{"type":"ResourceNotFound","message":"The - specified folder could not be found in project-FP9k6Gj0QKBQq5P81088Yy46"}}'} + specified folder could not be found in project-FPbY7y00fVb3YFg006F1yx7b"}}'} headers: connection: [keep-alive] content-type: [application/json] - date: ['Fri, 26 Oct 2018 22:20:38 GMT'] + date: ['Tue, 13 Nov 2018 20:28:46 GMT'] server: [nginx] transfer-encoding: [chunked] vary: [Accept-Encoding] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592438980-204322] + x-request-id: [1542140926806-329724] status: {code: 404, message: Not Found} - request: - body: !!python/unicode '{"limit": 2, "name": "TestCopy.test_dx_to_dx_same_project_exist_dest.33f871c0", + body: !!python/unicode '{"limit": 2, "name": "TestCopy.test_dx_to_dx_same_project_exist_dest.15700918", "level": "VIEW"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/system/findProjects response: - body: {string: !!python/unicode '{"results":[{"id":"project-FP9k6Gj0QKBQq5P81088Yy46","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} + body: {string: !!python/unicode '{"results":[{"id":"project-FPbY7y00fVb3YFg006F1yx7b","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} headers: connection: [keep-alive] content-length: ['147'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:20:39 GMT'] + date: ['Tue, 13 Nov 2018 20:28:47 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592439381-9752] + x-request-id: [1542140927167-885058] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"parents": true, "folder": "/another_folder"}' + body: !!python/unicode '{"folder": "/another_folder", "parents": true}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k6Gj0QKBQq5P81088Yy46/newFolder + uri: https://api.dnanexus.com/project-FPbY7y00fVb3YFg006F1yx7b/newFolder response: - body: {string: !!python/unicode '{"id":"project-FP9k6Gj0QKBQq5P81088Yy46"}'} + body: {string: !!python/unicode '{"id":"project-FPbY7y00fVb3YFg006F1yx7b"}'} headers: connection: [keep-alive] content-length: ['41'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:20:39 GMT'] + date: ['Tue, 13 Nov 2018 20:28:47 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592439605-528482] + x-request-id: [1542140927323-428238] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"objects": [{"name": "random_file.txt", "project": "project-FP9k6Gj0QKBQq5P81088Yy46", - "batchsize": 2, "folder": "/another_folder"}]}' + body: !!python/unicode '{"objects": [{"project": "project-FPbY7y00fVb3YFg006F1yx7b", + "folder": "/another_folder", "name": "random_file.txt", "batchsize": 2}]}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/system/resolveDataObjects response: - body: {string: !!python/unicode '{"results":[[{"project":"project-FP9k6Gj0QKBQq5P81088Yy46","id":"file-FP9k6J00QKBb88FB44yY4Zb8"}]]}'} + body: {string: !!python/unicode '{"results":[[{"project":"project-FPbY7y00fVb3YFg006F1yx7b","id":"file-FPbY7yj0fVbGVV2X1Z5bX2jf"}]]}'} headers: connection: [keep-alive] content-length: ['99'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:20:39 GMT'] + date: ['Tue, 13 Nov 2018 20:28:47 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592439714-171452] + x-request-id: [1542140927483-494416] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"project": "project-FP9k6Gj0QKBQq5P81088Yy46"}' + body: !!python/unicode '{"project": "project-FPbY7y00fVb3YFg006F1yx7b"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k6J00QKBb88FB44yY4Zb8/describe + uri: https://api.dnanexus.com/file-FPbY7yj0fVbGVV2X1Z5bX2jf/describe response: - body: {string: !!python/unicode '{"id":"file-FP9k6J00QKBb88FB44yY4Zb8","project":"project-FP9k6Gj0QKBQq5P81088Yy46","class":"file","sponsored":false,"name":"random_file.txt","types":[],"state":"closed","hidden":false,"links":[],"folder":"/another_folder","tags":[],"created":1540592436000,"modified":1540592438580,"createdBy":{"user":"user-akumar_counsyl"},"media":"text/plain","archivalState":"live","size":5}'} + body: {string: !!python/unicode '{"id":"file-FPbY7yj0fVbGVV2X1Z5bX2jf","project":"project-FPbY7y00fVb3YFg006F1yx7b","class":"file","sponsored":false,"name":"random_file.txt","types":[],"state":"closed","hidden":false,"links":[],"folder":"/another_folder","tags":[],"created":1542140923000,"modified":1542140925869,"createdBy":{"user":"user-akumar_counsyl"},"media":"text/plain","archivalState":"live","size":5}'} headers: connection: [keep-alive] content-length: ['377'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:20:39 GMT'] + date: ['Tue, 13 Nov 2018 20:28:47 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592439827-995397] + x-request-id: [1542140927633-373319] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"objects": ["file-FP9k6J00QKBb88FB44yY4Zb8"]}' + body: !!python/unicode '{"objects": ["file-FPbY7yj0fVbGVV2X1Z5bX2jf"]}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k6Gj0QKBQq5P81088Yy46/removeObjects + uri: https://api.dnanexus.com/project-FPbY7y00fVb3YFg006F1yx7b/removeObjects response: - body: {string: !!python/unicode '{"id":"project-FP9k6Gj0QKBQq5P81088Yy46"}'} + body: {string: !!python/unicode '{"id":"project-FPbY7y00fVb3YFg006F1yx7b"}'} headers: connection: [keep-alive] content-length: ['41'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:20:40 GMT'] + date: ['Tue, 13 Nov 2018 20:28:48 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592439938-183194] + x-request-id: [1542140927765-789652] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"destination": "/another_folder", "objects": ["file-FP9k6Gj0QKBz10qyFXkfFBXX"]}' + body: !!python/unicode '{"destination": "/another_folder", "objects": ["file-FPbY7y00fVb3YFg006F1yx7f"]}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k6Gj0QKBQq5P81088Yy46/move + uri: https://api.dnanexus.com/project-FPbY7y00fVb3YFg006F1yx7b/move response: - body: {string: !!python/unicode '{"id":"project-FP9k6Gj0QKBQq5P81088Yy46"}'} + body: {string: !!python/unicode '{"id":"project-FPbY7y00fVb3YFg006F1yx7b"}'} headers: connection: [keep-alive] content-length: ['41'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:20:40 GMT'] + date: ['Tue, 13 Nov 2018 20:28:48 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592440104-254836] + x-request-id: [1542140928323-995434] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"name": "random_file.txt", "project": "project-FP9k6Gj0QKBQq5P81088Yy46"}' + body: !!python/unicode '{"project": "project-FPbY7y00fVb3YFg006F1yx7b", "name": + "random_file.txt"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k6Gj0QKBz10qyFXkfFBXX/rename + uri: https://api.dnanexus.com/file-FPbY7y00fVb3YFg006F1yx7f/rename response: - body: {string: !!python/unicode '{"id":"file-FP9k6Gj0QKBz10qyFXkfFBXX"}'} + body: {string: !!python/unicode '{"id":"file-FPbY7y00fVb3YFg006F1yx7f"}'} headers: connection: [keep-alive] content-length: ['38'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:20:40 GMT'] + date: ['Tue, 13 Nov 2018 20:28:48 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592440249-643377] + x-request-id: [1542140928491-594092] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"limit": 2, "name": "TestCopy.test_dx_to_dx_same_project_exist_dest.33f871c0", + body: !!python/unicode '{"limit": 2, "name": "TestCopy.test_dx_to_dx_same_project_exist_dest.15700918", "level": "VIEW"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/system/findProjects response: - body: {string: !!python/unicode '{"results":[{"id":"project-FP9k6Gj0QKBQq5P81088Yy46","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} + body: {string: !!python/unicode '{"results":[{"id":"project-FPbY7y00fVb3YFg006F1yx7b","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} headers: connection: [keep-alive] content-length: ['147'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:20:40 GMT'] + date: ['Tue, 13 Nov 2018 20:28:48 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592440359-770032] + x-request-id: [1542140928594-420848] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"objects": [{"name": "random_file.txt", "project": "project-FP9k6Gj0QKBQq5P81088Yy46", - "batchsize": 2, "folder": "/another_folder"}]}' + body: !!python/unicode '{"objects": [{"project": "project-FPbY7y00fVb3YFg006F1yx7b", + "folder": "/another_folder", "name": "random_file.txt", "batchsize": 2}]}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/system/resolveDataObjects response: - body: {string: !!python/unicode '{"results":[[{"project":"project-FP9k6Gj0QKBQq5P81088Yy46","id":"file-FP9k6Gj0QKBz10qyFXkfFBXX"}]]}'} + body: {string: !!python/unicode '{"results":[[{"project":"project-FPbY7y00fVb3YFg006F1yx7b","id":"file-FPbY7y00fVb3YFg006F1yx7f"}]]}'} headers: connection: [keep-alive] content-length: ['99'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:20:40 GMT'] + date: ['Tue, 13 Nov 2018 20:28:48 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592440485-350621] + x-request-id: [1542140928714-728518] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"project": "project-FP9k6Gj0QKBQq5P81088Yy46"}' + body: !!python/unicode '{"project": "project-FPbY7y00fVb3YFg006F1yx7b"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k6Gj0QKBz10qyFXkfFBXX/describe + uri: https://api.dnanexus.com/file-FPbY7y00fVb3YFg006F1yx7f/describe response: - body: {string: !!python/unicode '{"id":"file-FP9k6Gj0QKBz10qyFXkfFBXX","project":"project-FP9k6Gj0QKBQq5P81088Yy46","class":"file","sponsored":false,"name":"random_file.txt","types":[],"state":"closed","hidden":false,"links":[],"folder":"/another_folder","tags":[],"created":1540592435000,"modified":1540592440260,"createdBy":{"user":"user-akumar_counsyl"},"media":"text/plain","archivalState":"live","size":5}'} + body: {string: !!python/unicode '{"id":"file-FPbY7y00fVb3YFg006F1yx7f","project":"project-FPbY7y00fVb3YFg006F1yx7b","class":"file","sponsored":false,"name":"random_file.txt","types":[],"state":"closed","hidden":false,"links":[],"folder":"/another_folder","tags":[],"created":1542140920000,"modified":1542140928513,"createdBy":{"user":"user-akumar_counsyl"},"media":"text/plain","archivalState":"live","size":5}'} headers: connection: [keep-alive] content-length: ['377'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:20:40 GMT'] + date: ['Tue, 13 Nov 2018 20:28:48 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592440591-768425] + x-request-id: [1542140928804-831353] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"project": "project-FP9k6Gj0QKBQq5P81088Yy46"}' + body: !!python/unicode '{"project": "project-FPbY7y00fVb3YFg006F1yx7b"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k6Gj0QKBz10qyFXkfFBXX/describe + uri: https://api.dnanexus.com/file-FPbY7y00fVb3YFg006F1yx7f/describe response: - body: {string: !!python/unicode '{"id":"file-FP9k6Gj0QKBz10qyFXkfFBXX","project":"project-FP9k6Gj0QKBQq5P81088Yy46","class":"file","sponsored":false,"name":"random_file.txt","types":[],"state":"closed","hidden":false,"links":[],"folder":"/another_folder","tags":[],"created":1540592435000,"modified":1540592440260,"createdBy":{"user":"user-akumar_counsyl"},"media":"text/plain","archivalState":"live","size":5}'} + body: {string: !!python/unicode '{"id":"file-FPbY7y00fVb3YFg006F1yx7f","project":"project-FPbY7y00fVb3YFg006F1yx7b","class":"file","sponsored":false,"name":"random_file.txt","types":[],"state":"closed","hidden":false,"links":[],"folder":"/another_folder","tags":[],"created":1542140920000,"modified":1542140928513,"createdBy":{"user":"user-akumar_counsyl"},"media":"text/plain","archivalState":"live","size":5}'} headers: connection: [keep-alive] content-length: ['377'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:20:40 GMT'] + date: ['Tue, 13 Nov 2018 20:28:48 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592440702-566273] + x-request-id: [1542140928906-970097] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"limit": 2, "name": "TestCopy.test_dx_to_dx_same_project_exist_dest.33f871c0", + body: !!python/unicode '{"limit": 2, "name": "TestCopy.test_dx_to_dx_same_project_exist_dest.15700918", "level": "VIEW"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/system/findProjects response: - body: {string: !!python/unicode '{"results":[{"id":"project-FP9k6Gj0QKBQq5P81088Yy46","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} + body: {string: !!python/unicode '{"results":[{"id":"project-FPbY7y00fVb3YFg006F1yx7b","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} headers: connection: [keep-alive] content-length: ['147'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:20:40 GMT'] + date: ['Tue, 13 Nov 2018 20:28:49 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592440825-259375] + x-request-id: [1542140929001-30793] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"includeHidden": false, "only": "folders", "folder": - "/temp_folder/folder_file.txt", "describe": {"fields": {"name": true, "folder": - true}}}' + body: !!python/unicode '{"folder": "/temp_folder/folder_file.txt", "describe": + {"fields": {"folder": true, "name": true}}, "only": "folders", "includeHidden": + false}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k6Gj0QKBQq5P81088Yy46/listFolder + uri: https://api.dnanexus.com/project-FPbY7y00fVb3YFg006F1yx7b/listFolder response: body: {string: !!python/unicode '{"error":{"type":"ResourceNotFound","message":"The - specified folder could not be found in project-FP9k6Gj0QKBQq5P81088Yy46"}}'} + specified folder could not be found in project-FPbY7y00fVb3YFg006F1yx7b"}}'} headers: connection: [keep-alive] content-type: [application/json] - date: ['Fri, 26 Oct 2018 22:20:40 GMT'] + date: ['Tue, 13 Nov 2018 20:28:49 GMT'] server: [nginx] transfer-encoding: [chunked] vary: [Accept-Encoding] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592440955-308831] + x-request-id: [1542140929113-637362] status: {code: 404, message: Not Found} - request: - body: !!python/unicode '{"limit": 2, "name": "TestCopy.test_dx_to_dx_same_project_exist_dest.33f871c0", + body: !!python/unicode '{"limit": 2, "name": "TestCopy.test_dx_to_dx_same_project_exist_dest.15700918", "level": "VIEW"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/system/findProjects response: - body: {string: !!python/unicode '{"results":[{"id":"project-FP9k6Gj0QKBQq5P81088Yy46","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} + body: {string: !!python/unicode '{"results":[{"id":"project-FPbY7y00fVb3YFg006F1yx7b","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} headers: connection: [keep-alive] content-length: ['147'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:20:41 GMT'] + date: ['Tue, 13 Nov 2018 20:28:49 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592441346-949147] + x-request-id: [1542140929464-941987] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"parents": true, "folder": "/temp_folder"}' + body: !!python/unicode '{"folder": "/temp_folder", "parents": true}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k6Gj0QKBQq5P81088Yy46/newFolder + uri: https://api.dnanexus.com/project-FPbY7y00fVb3YFg006F1yx7b/newFolder response: - body: {string: !!python/unicode '{"id":"project-FP9k6Gj0QKBQq5P81088Yy46"}'} + body: {string: !!python/unicode '{"id":"project-FPbY7y00fVb3YFg006F1yx7b"}'} headers: connection: [keep-alive] content-length: ['41'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:20:41 GMT'] + date: ['Tue, 13 Nov 2018 20:28:49 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592441524-493558] + x-request-id: [1542140929591-443107] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"objects": [{"name": "folder_file.txt", "project": "project-FP9k6Gj0QKBQq5P81088Yy46", - "batchsize": 2, "folder": "/temp_folder"}]}' + body: !!python/unicode '{"objects": [{"project": "project-FPbY7y00fVb3YFg006F1yx7b", + "folder": "/temp_folder", "name": "folder_file.txt", "batchsize": 2}]}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/system/resolveDataObjects response: @@ -912,286 +913,287 @@ interactions: connection: [keep-alive] content-length: ['16'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:20:41 GMT'] + date: ['Tue, 13 Nov 2018 20:28:49 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592441633-499785] + x-request-id: [1542140929682-809307] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"destination": "/temp_folder", "objects": ["file-FP9k6Gj0QKBz10qyFXkfFBXX"]}' + body: !!python/unicode '{"destination": "/temp_folder", "objects": ["file-FPbY7y00fVb3YFg006F1yx7f"]}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k6Gj0QKBQq5P81088Yy46/move + uri: https://api.dnanexus.com/project-FPbY7y00fVb3YFg006F1yx7b/move response: - body: {string: !!python/unicode '{"id":"project-FP9k6Gj0QKBQq5P81088Yy46"}'} + body: {string: !!python/unicode '{"id":"project-FPbY7y00fVb3YFg006F1yx7b"}'} headers: connection: [keep-alive] content-length: ['41'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:20:41 GMT'] + date: ['Tue, 13 Nov 2018 20:28:49 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592441743-851499] + x-request-id: [1542140929787-477097] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"name": "folder_file.txt", "project": "project-FP9k6Gj0QKBQq5P81088Yy46"}' + body: !!python/unicode '{"project": "project-FPbY7y00fVb3YFg006F1yx7b", "name": + "folder_file.txt"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k6Gj0QKBz10qyFXkfFBXX/rename + uri: https://api.dnanexus.com/file-FPbY7y00fVb3YFg006F1yx7f/rename response: - body: {string: !!python/unicode '{"id":"file-FP9k6Gj0QKBz10qyFXkfFBXX"}'} + body: {string: !!python/unicode '{"id":"file-FPbY7y00fVb3YFg006F1yx7f"}'} headers: connection: [keep-alive] content-length: ['38'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:20:41 GMT'] + date: ['Tue, 13 Nov 2018 20:28:49 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592441888-494242] + x-request-id: [1542140929920-295483] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"limit": 2, "name": "TestCopy.test_dx_to_dx_same_project_exist_dest.33f871c0", + body: !!python/unicode '{"limit": 2, "name": "TestCopy.test_dx_to_dx_same_project_exist_dest.15700918", "level": "VIEW"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/system/findProjects response: - body: {string: !!python/unicode '{"results":[{"id":"project-FP9k6Gj0QKBQq5P81088Yy46","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} + body: {string: !!python/unicode '{"results":[{"id":"project-FPbY7y00fVb3YFg006F1yx7b","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} headers: connection: [keep-alive] content-length: ['147'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:20:42 GMT'] + date: ['Tue, 13 Nov 2018 20:28:50 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592441997-74040] + x-request-id: [1542140930020-500158] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"objects": [{"name": "folder_file.txt", "project": "project-FP9k6Gj0QKBQq5P81088Yy46", - "batchsize": 2, "folder": "/temp_folder"}]}' + body: !!python/unicode '{"objects": [{"project": "project-FPbY7y00fVb3YFg006F1yx7b", + "folder": "/temp_folder", "name": "folder_file.txt", "batchsize": 2}]}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/system/resolveDataObjects response: - body: {string: !!python/unicode '{"results":[[{"project":"project-FP9k6Gj0QKBQq5P81088Yy46","id":"file-FP9k6Gj0QKBz10qyFXkfFBXX"}]]}'} + body: {string: !!python/unicode '{"results":[[{"project":"project-FPbY7y00fVb3YFg006F1yx7b","id":"file-FPbY7y00fVb3YFg006F1yx7f"}]]}'} headers: connection: [keep-alive] content-length: ['99'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:20:42 GMT'] + date: ['Tue, 13 Nov 2018 20:28:50 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592442129-183382] + x-request-id: [1542140930167-948846] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"project": "project-FP9k6Gj0QKBQq5P81088Yy46"}' + body: !!python/unicode '{"project": "project-FPbY7y00fVb3YFg006F1yx7b"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k6Gj0QKBz10qyFXkfFBXX/describe + uri: https://api.dnanexus.com/file-FPbY7y00fVb3YFg006F1yx7f/describe response: - body: {string: !!python/unicode '{"id":"file-FP9k6Gj0QKBz10qyFXkfFBXX","project":"project-FP9k6Gj0QKBQq5P81088Yy46","class":"file","sponsored":false,"name":"folder_file.txt","types":[],"state":"closed","hidden":false,"links":[],"folder":"/temp_folder","tags":[],"created":1540592435000,"modified":1540592441897,"createdBy":{"user":"user-akumar_counsyl"},"media":"text/plain","archivalState":"live","size":5}'} + body: {string: !!python/unicode '{"id":"file-FPbY7y00fVb3YFg006F1yx7f","project":"project-FPbY7y00fVb3YFg006F1yx7b","class":"file","sponsored":false,"name":"folder_file.txt","types":[],"state":"closed","hidden":false,"links":[],"folder":"/temp_folder","tags":[],"created":1542140920000,"modified":1542140929929,"createdBy":{"user":"user-akumar_counsyl"},"media":"text/plain","archivalState":"live","size":5}'} headers: connection: [keep-alive] content-length: ['374'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:20:42 GMT'] + date: ['Tue, 13 Nov 2018 20:28:50 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592442237-158908] + x-request-id: [1542140930256-932273] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"limit": 2, "name": "TestCopy.test_dx_to_dx_same_project_exist_dest.33f871c0", + body: !!python/unicode '{"limit": 2, "name": "TestCopy.test_dx_to_dx_same_project_exist_dest.15700918", "level": "VIEW"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/system/findProjects response: - body: {string: !!python/unicode '{"results":[{"id":"project-FP9k6Gj0QKBQq5P81088Yy46","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} + body: {string: !!python/unicode '{"results":[{"id":"project-FPbY7y00fVb3YFg006F1yx7b","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} headers: connection: [keep-alive] content-length: ['147'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:20:42 GMT'] + date: ['Tue, 13 Nov 2018 20:28:50 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592442349-799353] + x-request-id: [1542140930357-757222] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"includeHidden": false, "only": "folders", "folder": - "/another_folder", "describe": {"fields": {"name": true, "folder": true}}}' + body: !!python/unicode '{"folder": "/another_folder", "describe": {"fields": {"folder": + true, "name": true}}, "only": "folders", "includeHidden": false}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k6Gj0QKBQq5P81088Yy46/listFolder + uri: https://api.dnanexus.com/project-FPbY7y00fVb3YFg006F1yx7b/listFolder response: body: {string: !!python/unicode '{"folders":[]}'} headers: connection: [keep-alive] content-length: ['14'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:20:42 GMT'] + date: ['Tue, 13 Nov 2018 20:28:50 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592442501-211641] + x-request-id: [1542140930493-698889] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"limit": 2, "name": "TestCopy.test_dx_to_dx_same_project_exist_dest.33f871c0", + body: !!python/unicode '{"limit": 2, "name": "TestCopy.test_dx_to_dx_same_project_exist_dest.15700918", "level": "VIEW"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/system/findProjects response: - body: {string: !!python/unicode '{"results":[{"id":"project-FP9k6Gj0QKBQq5P81088Yy46","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} + body: {string: !!python/unicode '{"results":[{"id":"project-FPbY7y00fVb3YFg006F1yx7b","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} headers: connection: [keep-alive] content-length: ['147'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:20:42 GMT'] + date: ['Tue, 13 Nov 2018 20:28:50 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592442609-141424] + x-request-id: [1542140930596-207724] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"objects": [{"name": "folder_file.txt", "project": "project-FP9k6Gj0QKBQq5P81088Yy46", - "batchsize": 2, "folder": "/another_folder"}]}' + body: !!python/unicode '{"objects": [{"project": "project-FPbY7y00fVb3YFg006F1yx7b", + "folder": "/another_folder", "name": "folder_file.txt", "batchsize": 2}]}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/system/resolveDataObjects response: - body: {string: !!python/unicode '{"results":[[{"project":"project-FP9k6Gj0QKBQq5P81088Yy46","id":"file-FP9k6J80QKBz10qyFXkfFBXZ"}]]}'} + body: {string: !!python/unicode '{"results":[[{"project":"project-FPbY7y00fVb3YFg006F1yx7b","id":"file-FPbY7z00fVb7Y2Kq50fVv317"}]]}'} headers: connection: [keep-alive] content-length: ['99'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:20:42 GMT'] + date: ['Tue, 13 Nov 2018 20:28:50 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592442735-706745] + x-request-id: [1542140930712-736961] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"project": "project-FP9k6Gj0QKBQq5P81088Yy46"}' + body: !!python/unicode '{"project": "project-FPbY7y00fVb3YFg006F1yx7b"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k6J80QKBz10qyFXkfFBXZ/describe + uri: https://api.dnanexus.com/file-FPbY7z00fVb7Y2Kq50fVv317/describe response: - body: {string: !!python/unicode '{"id":"file-FP9k6J80QKBz10qyFXkfFBXZ","project":"project-FP9k6Gj0QKBQq5P81088Yy46","class":"file","sponsored":false,"name":"folder_file.txt","types":[],"state":"closed","hidden":false,"links":[],"folder":"/another_folder","tags":[],"created":1540592437000,"modified":1540592438881,"createdBy":{"user":"user-akumar_counsyl"},"media":"text/plain","archivalState":"live","size":5}'} + body: {string: !!python/unicode '{"id":"file-FPbY7z00fVb7Y2Kq50fVv317","project":"project-FPbY7y00fVb3YFg006F1yx7b","class":"file","sponsored":false,"name":"folder_file.txt","types":[],"state":"closed","hidden":false,"links":[],"folder":"/another_folder","tags":[],"created":1542140924000,"modified":1542140925399,"createdBy":{"user":"user-akumar_counsyl"},"media":"text/plain","archivalState":"live","size":5}'} headers: connection: [keep-alive] content-length: ['377'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:20:42 GMT'] + date: ['Tue, 13 Nov 2018 20:28:50 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592442842-159783] + x-request-id: [1542140930800-351495] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"objects": ["file-FP9k6J80QKBz10qyFXkfFBXZ"]}' + body: !!python/unicode '{"objects": ["file-FPbY7z00fVb7Y2Kq50fVv317"]}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k6Gj0QKBQq5P81088Yy46/removeObjects + uri: https://api.dnanexus.com/project-FPbY7y00fVb3YFg006F1yx7b/removeObjects response: - body: {string: !!python/unicode '{"id":"project-FP9k6Gj0QKBQq5P81088Yy46"}'} + body: {string: !!python/unicode '{"id":"project-FPbY7y00fVb3YFg006F1yx7b"}'} headers: connection: [keep-alive] content-length: ['41'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:20:43 GMT'] + date: ['Tue, 13 Nov 2018 20:28:51 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592442954-720529] + x-request-id: [1542140930913-287929] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"destination": "/another_folder", "objects": ["file-FP9k6Gj0QKBz10qyFXkfFBXX"]}' + body: !!python/unicode '{"destination": "/another_folder", "objects": ["file-FPbY7y00fVb3YFg006F1yx7f"]}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k6Gj0QKBQq5P81088Yy46/move + uri: https://api.dnanexus.com/project-FPbY7y00fVb3YFg006F1yx7b/move response: - body: {string: !!python/unicode '{"id":"project-FP9k6Gj0QKBQq5P81088Yy46"}'} + body: {string: !!python/unicode '{"id":"project-FPbY7y00fVb3YFg006F1yx7b"}'} headers: connection: [keep-alive] content-length: ['41'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:20:43 GMT'] + date: ['Tue, 13 Nov 2018 20:28:51 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592443138-503724] + x-request-id: [1542140931099-571362] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"limit": 2, "name": "TestCopy.test_dx_to_dx_same_project_exist_dest.33f871c0", + body: !!python/unicode '{"limit": 2, "name": "TestCopy.test_dx_to_dx_same_project_exist_dest.15700918", "level": "VIEW"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/system/findProjects response: - body: {string: !!python/unicode '{"results":[{"id":"project-FP9k6Gj0QKBQq5P81088Yy46","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} + body: {string: !!python/unicode '{"results":[{"id":"project-FPbY7y00fVb3YFg006F1yx7b","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} headers: connection: [keep-alive] content-length: ['147'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:20:43 GMT'] + date: ['Tue, 13 Nov 2018 20:28:51 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592443302-207961] + x-request-id: [1542140931291-741539] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"objects": [{"name": "another_folder", "project": "project-FP9k6Gj0QKBQq5P81088Yy46", - "batchsize": 2, "folder": "/"}]}' + body: !!python/unicode '{"objects": [{"project": "project-FPbY7y00fVb3YFg006F1yx7b", + "folder": "/", "name": "another_folder", "batchsize": 2}]}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/system/resolveDataObjects response: @@ -1200,51 +1202,51 @@ interactions: connection: [keep-alive] content-length: ['16'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:20:43 GMT'] + date: ['Tue, 13 Nov 2018 20:28:51 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592443427-154066] + x-request-id: [1542140931472-239697] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"includeHidden": false, "only": "folders", "folder": - "/another_folder", "describe": {"fields": {"name": true, "folder": true}}}' + body: !!python/unicode '{"folder": "/another_folder", "describe": {"fields": {"folder": + true, "name": true}}, "only": "folders", "includeHidden": false}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k6Gj0QKBQq5P81088Yy46/listFolder + uri: https://api.dnanexus.com/project-FPbY7y00fVb3YFg006F1yx7b/listFolder response: body: {string: !!python/unicode '{"folders":[]}'} headers: connection: [keep-alive] content-length: ['14'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:20:43 GMT'] + date: ['Tue, 13 Nov 2018 20:28:51 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592443536-159798] + x-request-id: [1542140931592-414424] status: {code: 200, message: OK} - request: body: !!python/unicode '{}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k6Gj0QKBQq5P81088Yy46/destroy + uri: https://api.dnanexus.com/project-FPbY7y00fVb3YFg006F1yx7b/destroy response: - body: {string: !!python/unicode '{"id":"project-FP9k6Gj0QKBQq5P81088Yy46"}'} + body: {string: !!python/unicode '{"id":"project-FPbY7y00fVb3YFg006F1yx7b"}'} headers: connection: [keep-alive] content-length: ['41'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:20:48 GMT'] + date: ['Tue, 13 Nov 2018 20:28:54 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592443648-804978] + x-request-id: [1542140931687-975513] status: {code: 200, message: OK} version: 1 diff --git a/stor/tests/cassettes_py2/TestCopy/test_dx_to_dx_within_project_fail.yaml b/stor_dx/stor_dx/tests/cassettes_py2/TestCopy/test_dx_to_dx_within_project_fail.yaml similarity index 56% rename from stor/tests/cassettes_py2/TestCopy/test_dx_to_dx_within_project_fail.yaml rename to stor_dx/stor_dx/tests/cassettes_py2/TestCopy/test_dx_to_dx_within_project_fail.yaml index dfc60a0e..b15c314b 100644 --- a/stor/tests/cassettes_py2/TestCopy/test_dx_to_dx_within_project_fail.yaml +++ b/stor_dx/stor_dx/tests/cassettes_py2/TestCopy/test_dx_to_dx_within_project_fail.yaml @@ -1,333 +1,333 @@ interactions: - request: - body: !!python/unicode '{"name": "TestCopy.test_dx_to_dx_within_project_fail.533dc162"}' + body: !!python/unicode '{"name": "TestCopy.test_dx_to_dx_within_project_fail.9ab71833"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/project/new response: - body: {string: !!python/unicode '{"id":"project-FP9k6Q001qV588FB44yY4ZbB"}'} + body: {string: !!python/unicode '{"id":"project-FPbY81j0zK4vVV2X1Z5bX2jj"}'} headers: connection: [keep-alive] content-length: ['41'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:20:48 GMT'] + date: ['Tue, 13 Nov 2018 20:28:55 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592448629-685947] + x-request-id: [1542140935105-180374] status: {code: 200, message: OK} - request: body: !!python/unicode '{}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k6Q001qV588FB44yY4ZbB/describe + uri: https://api.dnanexus.com/project-FPbY81j0zK4vVV2X1Z5bX2jj/describe response: - body: {string: !!python/unicode '{"id":"project-FP9k6Q001qV588FB44yY4ZbB","name":"TestCopy.test_dx_to_dx_within_project_fail.533dc162","class":"project","created":1540592448000,"modified":1540592448000,"billTo":"org-counsyl","level":"ADMINISTER","dataUsage":0,"sponsoredDataUsage":0,"region":"aws:us-east-1","summary":"","description":"","protected":false,"restricted":false,"downloadRestricted":false,"containsPHI":false,"createdBy":{"user":"user-akumar_counsyl"},"version":0,"storageCost":0,"pendingTransfer":null,"tags":[],"defaultInstanceType":"mem2_hdd2_x2","archivalState":"live","archivalProgress":null,"totalSponsoredEgressBytes":0,"consumedSponsoredEgressBytes":0,"atSpendingLimit":false}'} + body: {string: !!python/unicode '{"id":"project-FPbY81j0zK4vVV2X1Z5bX2jj","name":"TestCopy.test_dx_to_dx_within_project_fail.9ab71833","class":"project","created":1542140935000,"modified":1542140935000,"billTo":"org-counsyl","level":"ADMINISTER","dataUsage":0,"sponsoredDataUsage":0,"region":"aws:us-east-1","summary":"","description":"","protected":false,"restricted":false,"downloadRestricted":false,"containsPHI":false,"createdBy":{"user":"user-akumar_counsyl"},"version":0,"storageCost":0,"pendingTransfer":null,"tags":[],"defaultInstanceType":"mem2_hdd2_x2","archivalState":"live","archivalProgress":null,"totalSponsoredEgressBytes":0,"consumedSponsoredEgressBytes":0,"atSpendingLimit":false}'} headers: connection: [keep-alive] content-length: ['664'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:20:48 GMT'] + date: ['Tue, 13 Nov 2018 20:28:55 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592448773-881305] + x-request-id: [1542140935255-436327] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"parents": true, "folder": "/temp_folder"}' + body: !!python/unicode '{"folder": "/temp_folder", "parents": true}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k6Q001qV588FB44yY4ZbB/newFolder + uri: https://api.dnanexus.com/project-FPbY81j0zK4vVV2X1Z5bX2jj/newFolder response: - body: {string: !!python/unicode '{"id":"project-FP9k6Q001qV588FB44yY4ZbB"}'} + body: {string: !!python/unicode '{"id":"project-FPbY81j0zK4vVV2X1Z5bX2jj"}'} headers: connection: [keep-alive] content-length: ['41'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:20:48 GMT'] + date: ['Tue, 13 Nov 2018 20:28:55 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592448889-73157] + x-request-id: [1542140935383-381550] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"name": "folder_file.txt", "project": "project-FP9k6Q001qV588FB44yY4ZbB", - "folder": "/temp_folder", "nonce": "45c109d11a3c2a625b71c715a923119201918731ba5cfbc42091ae2f301f1c951540592448.955579"}' + body: !!python/unicode '{"project": "project-FPbY81j0zK4vVV2X1Z5bX2jj", "nonce": + "d1105ac8b990cb0bfd445ea1ec30b8650008f57d1a18fc59f2ca066020a808571542140935.462957", + "folder": "/temp_folder", "name": "folder_file.txt"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/file/new response: - body: {string: !!python/unicode '{"id":"file-FP9k6Q801qV7KZggK9KvpK82"}'} + body: {string: !!python/unicode '{"id":"file-FPbY81j0zK4pqpgZ9Vx48pXV"}'} headers: connection: [keep-alive] content-length: ['38'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:20:49 GMT'] + date: ['Tue, 13 Nov 2018 20:28:55 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592448999-325889] + x-request-id: [1542140935507-77608] status: {code: 200, message: OK} - request: body: !!python/unicode '{"fields": {"fileUploadParameters": true}}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k6Q001qV588FB44yY4ZbB/describe + uri: https://api.dnanexus.com/project-FPbY81j0zK4vVV2X1Z5bX2jj/describe response: - body: {string: !!python/unicode '{"id":"project-FP9k6Q001qV588FB44yY4ZbB","fileUploadParameters":{"maximumPartSize":5368709120,"minimumPartSize":5242880,"maximumFileSize":5497558138880,"maximumNumParts":10000,"emptyLastPartAllowed":true}}'} + body: {string: !!python/unicode '{"id":"project-FPbY81j0zK4vVV2X1Z5bX2jj","fileUploadParameters":{"maximumPartSize":5368709120,"minimumPartSize":5242880,"maximumFileSize":5497558138880,"maximumNumParts":10000,"emptyLastPartAllowed":true}}'} headers: connection: [keep-alive] content-length: ['205'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:20:49 GMT'] + date: ['Tue, 13 Nov 2018 20:28:55 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592449145-576860] + x-request-id: [1542140935666-18141] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"size": 5, "md5": "73dfff57fe24e807bd4fb1bc4e07cd73", - "index": 1}' + body: !!python/unicode '{"index": 1, "size": 5, "md5": "73dfff57fe24e807bd4fb1bc4e07cd73"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k6Q801qV7KZggK9KvpK82/upload + uri: https://api.dnanexus.com/file-FPbY81j0zK4pqpgZ9Vx48pXV/upload response: - body: {string: !!python/unicode '{"url":"https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/1d51/file/open/file-FP9k6Q801qV7KZggK9KvpK82/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181026%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181026T222049Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=29f35a9b2a05698931a26d1cce8f809ff9252f4f41a6dd20cc120e8a3ee5bf34","headers":{"host":"dnanexus-platform-upload-prod.s3.amazonaws.com","content-type":"binary/octet-stream","x-amz-server-side-encryption":"AES256","content-md5":"c9//V/4k6Ae9T7G8TgfNcw==","content-length":"5"},"expires":1540592569261}'} + body: {string: !!python/unicode '{"url":"https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/c030/file/open/file-FPbY81j0zK4pqpgZ9Vx48pXV/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181113%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181113T202855Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=3ba23fd41a8846d62160a4a0bbb84816ba806d85f14bbc8bba614dc538c11d14","headers":{"host":"dnanexus-platform-upload-prod.s3.amazonaws.com","content-type":"binary/octet-stream","x-amz-server-side-encryption":"AES256","content-md5":"c9//V/4k6Ae9T7G8TgfNcw==","content-length":"5"},"expires":1542141055777}'} headers: connection: [keep-alive] content-length: ['692'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:20:49 GMT'] + date: ['Tue, 13 Nov 2018 20:28:55 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592449249-216505] + x-request-id: [1542140935762-160111] status: {code: 200, message: OK} - request: body: !!python/unicode data0 headers: DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] content-length: ['5'] content-md5: [c9//V/4k6Ae9T7G8TgfNcw==] content-type: [binary/octet-stream] host: [dnanexus-platform-upload-prod.s3.amazonaws.com] x-amz-server-side-encryption: [AES256] method: PUT - uri: https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/1d51/file/open/file-FP9k6Q801qV7KZggK9KvpK82/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181026%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181026T222049Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=29f35a9b2a05698931a26d1cce8f809ff9252f4f41a6dd20cc120e8a3ee5bf34 + uri: https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/c030/file/open/file-FPbY81j0zK4pqpgZ9Vx48pXV/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181113%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181113T202855Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=3ba23fd41a8846d62160a4a0bbb84816ba806d85f14bbc8bba614dc538c11d14 response: body: {string: !!python/unicode ''} headers: content-length: ['0'] - date: ['Fri, 26 Oct 2018 22:20:50 GMT'] + date: ['Tue, 13 Nov 2018 20:28:57 GMT'] etag: ['"73dfff57fe24e807bd4fb1bc4e07cd73"'] server: [AmazonS3] - x-amz-expiration: ['expiry-date="Sat, 17 Nov 2018 00:00:00 GMT", rule-id="3weekpurge"'] - x-amz-id-2: [iRN3dbVmLBJv9fMFvGU7hZFSyzag3TPKJX9WDaENg63S6uoHInn31CLeU9hQ9Y9nebsAma/RBpQ=] - x-amz-request-id: [616B4A3037D1F20B] + x-amz-expiration: ['expiry-date="Wed, 05 Dec 2018 00:00:00 GMT", rule-id="3weekpurge"'] + x-amz-id-2: [s+RB8wkaD9JM0402dELUEA1aJbrULG0dc2UjX7ZBZDDgT+9G7FH99FOMYdpYrt3/GoQaaoIeBbQ=] + x-amz-request-id: [A0D2239ADC305E72] x-amz-server-side-encryption: [AES256] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"project": "project-FP9k6Q001qV588FB44yY4ZbB", "fields": + body: !!python/unicode '{"project": "project-FPbY81j0zK4vVV2X1Z5bX2jj", "fields": {"state": true}}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k6Q801qV7KZggK9KvpK82/describe + uri: https://api.dnanexus.com/file-FPbY81j0zK4pqpgZ9Vx48pXV/describe response: - body: {string: !!python/unicode '{"id":"file-FP9k6Q801qV7KZggK9KvpK82","state":"open"}'} + body: {string: !!python/unicode '{"id":"file-FPbY81j0zK4pqpgZ9Vx48pXV","state":"open"}'} headers: connection: [keep-alive] content-length: ['53'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:20:49 GMT'] + date: ['Tue, 13 Nov 2018 20:28:56 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592449915-830827] + x-request-id: [1542140936252-507368] status: {code: 200, message: OK} - request: body: !!python/unicode '{}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k6Q801qV7KZggK9KvpK82/close + uri: https://api.dnanexus.com/file-FPbY81j0zK4pqpgZ9Vx48pXV/close response: - body: {string: !!python/unicode '{"id":"file-FP9k6Q801qV7KZggK9KvpK82"}'} + body: {string: !!python/unicode '{"id":"file-FPbY81j0zK4pqpgZ9Vx48pXV"}'} headers: connection: [keep-alive] content-length: ['38'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:20:50 GMT'] + date: ['Tue, 13 Nov 2018 20:28:56 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592450023-677298] + x-request-id: [1542140936348-900814] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"limit": 2, "name": "TestCopy.test_dx_to_dx_within_project_fail.533dc162", + body: !!python/unicode '{"limit": 2, "name": "TestCopy.test_dx_to_dx_within_project_fail.9ab71833", "level": "VIEW"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/system/findProjects response: - body: {string: !!python/unicode '{"results":[{"id":"project-FP9k6Q001qV588FB44yY4ZbB","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} + body: {string: !!python/unicode '{"results":[{"id":"project-FPbY81j0zK4vVV2X1Z5bX2jj","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} headers: connection: [keep-alive] content-length: ['147'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:20:50 GMT'] + date: ['Tue, 13 Nov 2018 20:28:56 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592450159-666466] + x-request-id: [1542140936489-498116] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"objects": [{"name": "folder_file.txt", "project": "project-FP9k6Q001qV588FB44yY4ZbB", - "batchsize": 2, "folder": "/temp_folder"}]}' + body: !!python/unicode '{"objects": [{"project": "project-FPbY81j0zK4vVV2X1Z5bX2jj", + "folder": "/temp_folder", "name": "folder_file.txt", "batchsize": 2}]}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/system/resolveDataObjects response: - body: {string: !!python/unicode '{"results":[[{"project":"project-FP9k6Q001qV588FB44yY4ZbB","id":"file-FP9k6Q801qV7KZggK9KvpK82"}]]}'} + body: {string: !!python/unicode '{"results":[[{"project":"project-FPbY81j0zK4vVV2X1Z5bX2jj","id":"file-FPbY81j0zK4pqpgZ9Vx48pXV"}]]}'} headers: connection: [keep-alive] content-length: ['99'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:20:50 GMT'] + date: ['Tue, 13 Nov 2018 20:28:56 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592450381-192340] + x-request-id: [1542140936602-242015] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"project": "project-FP9k6Q001qV588FB44yY4ZbB"}' + body: !!python/unicode '{"project": "project-FPbY81j0zK4vVV2X1Z5bX2jj"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k6Q801qV7KZggK9KvpK82/describe + uri: https://api.dnanexus.com/file-FPbY81j0zK4pqpgZ9Vx48pXV/describe response: - body: {string: !!python/unicode '{"id":"file-FP9k6Q801qV7KZggK9KvpK82","project":"project-FP9k6Q001qV588FB44yY4ZbB","class":"file","sponsored":false,"name":"folder_file.txt","types":[],"state":"closed","hidden":false,"links":[],"folder":"/temp_folder","tags":[],"created":1540592449000,"modified":1540592450426,"createdBy":{"user":"user-akumar_counsyl"},"media":"text/plain","archivalState":"live","size":5}'} + body: {string: !!python/unicode '{"id":"file-FPbY81j0zK4pqpgZ9Vx48pXV","project":"project-FPbY81j0zK4vVV2X1Z5bX2jj","class":"file","sponsored":false,"name":"folder_file.txt","types":[],"state":"closing","hidden":false,"links":[],"folder":"/temp_folder","tags":[],"created":1542140935000,"modified":1542140936363,"createdBy":{"user":"user-akumar_counsyl"},"media":"","archivalState":"live"}'} headers: connection: [keep-alive] - content-length: ['374'] + content-length: ['356'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:20:50 GMT'] + date: ['Tue, 13 Nov 2018 20:28:56 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592450488-729002] + x-request-id: [1542140936690-692578] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"limit": 2, "name": "TestCopy.test_dx_to_dx_within_project_fail.533dc162", + body: !!python/unicode '{"limit": 2, "name": "TestCopy.test_dx_to_dx_within_project_fail.9ab71833", "level": "VIEW"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/system/findProjects response: - body: {string: !!python/unicode '{"results":[{"id":"project-FP9k6Q001qV588FB44yY4ZbB","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} + body: {string: !!python/unicode '{"results":[{"id":"project-FPbY81j0zK4vVV2X1Z5bX2jj","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} headers: connection: [keep-alive] content-length: ['147'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:20:50 GMT'] + date: ['Tue, 13 Nov 2018 20:28:56 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592450601-438322] + x-request-id: [1542140936784-179194] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"project": "project-FP9k6Q001qV588FB44yY4ZbB"}' + body: !!python/unicode '{"project": "project-FPbY81j0zK4vVV2X1Z5bX2jj"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k6Q801qV7KZggK9KvpK82/describe + uri: https://api.dnanexus.com/file-FPbY81j0zK4pqpgZ9Vx48pXV/describe response: - body: {string: !!python/unicode '{"id":"file-FP9k6Q801qV7KZggK9KvpK82","project":"project-FP9k6Q001qV588FB44yY4ZbB","class":"file","sponsored":false,"name":"folder_file.txt","types":[],"state":"closed","hidden":false,"links":[],"folder":"/temp_folder","tags":[],"created":1540592449000,"modified":1540592450426,"createdBy":{"user":"user-akumar_counsyl"},"media":"text/plain","archivalState":"live","size":5}'} + body: {string: !!python/unicode '{"id":"file-FPbY81j0zK4pqpgZ9Vx48pXV","project":"project-FPbY81j0zK4vVV2X1Z5bX2jj","class":"file","sponsored":false,"name":"folder_file.txt","types":[],"state":"closing","hidden":false,"links":[],"folder":"/temp_folder","tags":[],"created":1542140935000,"modified":1542140936363,"createdBy":{"user":"user-akumar_counsyl"},"media":"","archivalState":"live"}'} headers: connection: [keep-alive] - content-length: ['374'] + content-length: ['356'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:20:50 GMT'] + date: ['Tue, 13 Nov 2018 20:28:56 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592450727-449640] + x-request-id: [1542140936906-817359] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"limit": 2, "name": "TestCopy.test_dx_to_dx_within_project_fail.533dc162", + body: !!python/unicode '{"limit": 2, "name": "TestCopy.test_dx_to_dx_within_project_fail.9ab71833", "level": "VIEW"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/system/findProjects response: - body: {string: !!python/unicode '{"results":[{"id":"project-FP9k6Q001qV588FB44yY4ZbB","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} + body: {string: !!python/unicode '{"results":[{"id":"project-FPbY81j0zK4vVV2X1Z5bX2jj","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} headers: connection: [keep-alive] content-length: ['147'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:20:50 GMT'] + date: ['Tue, 13 Nov 2018 20:28:57 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592450836-118078] + x-request-id: [1542140936996-451479] status: {code: 200, message: OK} - request: body: !!python/unicode '{}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k6Q001qV588FB44yY4ZbB/destroy + uri: https://api.dnanexus.com/project-FPbY81j0zK4vVV2X1Z5bX2jj/destroy response: - body: {string: !!python/unicode '{"id":"project-FP9k6Q001qV588FB44yY4ZbB"}'} + body: {string: !!python/unicode '{"id":"project-FPbY81j0zK4vVV2X1Z5bX2jj"}'} headers: connection: [keep-alive] content-length: ['41'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:20:53 GMT'] + date: ['Tue, 13 Nov 2018 20:28:59 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592450974-546440] + x-request-id: [1542140937112-462075] status: {code: 200, message: OK} version: 1 diff --git a/stor/tests/cassettes_py2/TestCopy/test_dx_to_dx_within_project_pass.yaml b/stor_dx/stor_dx/tests/cassettes_py2/TestCopy/test_dx_to_dx_within_project_pass.yaml similarity index 59% rename from stor/tests/cassettes_py2/TestCopy/test_dx_to_dx_within_project_pass.yaml rename to stor_dx/stor_dx/tests/cassettes_py2/TestCopy/test_dx_to_dx_within_project_pass.yaml index e0473d11..ba0f2558 100644 --- a/stor/tests/cassettes_py2/TestCopy/test_dx_to_dx_within_project_pass.yaml +++ b/stor_dx/stor_dx/tests/cassettes_py2/TestCopy/test_dx_to_dx_within_project_pass.yaml @@ -1,346 +1,346 @@ interactions: - request: - body: !!python/unicode '{"name": "TestCopy.test_dx_to_dx_within_project_pass.ab62eaed"}' + body: !!python/unicode '{"name": "TestCopy.test_dx_to_dx_within_project_pass.1ce1045a"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/project/new response: - body: {string: !!python/unicode '{"id":"project-FP9k6VQ09J6kfjJK43xBxp9F"}'} + body: {string: !!python/unicode '{"id":"project-FPbY83000jZYYFg006F1yx7p"}'} headers: connection: [keep-alive] content-length: ['41'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:20:54 GMT'] + date: ['Tue, 13 Nov 2018 20:29:00 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592454132-890333] + x-request-id: [1542140940262-474249] status: {code: 200, message: OK} - request: body: !!python/unicode '{}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k6VQ09J6kfjJK43xBxp9F/describe + uri: https://api.dnanexus.com/project-FPbY83000jZYYFg006F1yx7p/describe response: - body: {string: !!python/unicode '{"id":"project-FP9k6VQ09J6kfjJK43xBxp9F","name":"TestCopy.test_dx_to_dx_within_project_pass.ab62eaed","class":"project","created":1540592454000,"modified":1540592454000,"billTo":"org-counsyl","level":"ADMINISTER","dataUsage":0,"sponsoredDataUsage":0,"region":"aws:us-east-1","summary":"","description":"","protected":false,"restricted":false,"downloadRestricted":false,"containsPHI":false,"createdBy":{"user":"user-akumar_counsyl"},"version":0,"storageCost":0,"pendingTransfer":null,"tags":[],"defaultInstanceType":"mem2_hdd2_x2","archivalState":"live","archivalProgress":null,"totalSponsoredEgressBytes":0,"consumedSponsoredEgressBytes":0,"atSpendingLimit":false}'} + body: {string: !!python/unicode '{"id":"project-FPbY83000jZYYFg006F1yx7p","name":"TestCopy.test_dx_to_dx_within_project_pass.1ce1045a","class":"project","created":1542140940000,"modified":1542140940000,"billTo":"org-counsyl","level":"ADMINISTER","dataUsage":0,"sponsoredDataUsage":0,"region":"aws:us-east-1","summary":"","description":"","protected":false,"restricted":false,"downloadRestricted":false,"containsPHI":false,"createdBy":{"user":"user-akumar_counsyl"},"version":0,"storageCost":0,"pendingTransfer":null,"tags":[],"defaultInstanceType":"mem2_hdd2_x2","archivalState":"live","archivalProgress":null,"totalSponsoredEgressBytes":0,"consumedSponsoredEgressBytes":0,"atSpendingLimit":false}'} headers: connection: [keep-alive] content-length: ['664'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:20:54 GMT'] + date: ['Tue, 13 Nov 2018 20:29:00 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592454258-596652] + x-request-id: [1542140940453-603959] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"parents": true, "folder": "/temp_folder"}' + body: !!python/unicode '{"folder": "/temp_folder", "parents": true}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k6VQ09J6kfjJK43xBxp9F/newFolder + uri: https://api.dnanexus.com/project-FPbY83000jZYYFg006F1yx7p/newFolder response: - body: {string: !!python/unicode '{"id":"project-FP9k6VQ09J6kfjJK43xBxp9F"}'} + body: {string: !!python/unicode '{"id":"project-FPbY83000jZYYFg006F1yx7p"}'} headers: connection: [keep-alive] content-length: ['41'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:20:54 GMT'] + date: ['Tue, 13 Nov 2018 20:29:00 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592454383-838637] + x-request-id: [1542140940621-97077] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"name": "file.txt", "project": "project-FP9k6VQ09J6kfjJK43xBxp9F", - "folder": "/temp_folder", "nonce": "4ae7b9e3c8de9f49b1629963eae7ffc9a95898b7f04229caa22030d2a35b75f81540592454.449968"}' + body: !!python/unicode '{"project": "project-FPbY83000jZYYFg006F1yx7p", "nonce": + "ca5231e38b1c8216be4575bc043fba356204e7abd00461e74533dae9b315efee1542140940.686477", + "folder": "/temp_folder", "name": "file.txt"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/file/new response: - body: {string: !!python/unicode '{"id":"file-FP9k6VQ09J6Qq5P81088Yy47"}'} + body: {string: !!python/unicode '{"id":"file-FPbY83000jZVf1vx1VF3x726"}'} headers: connection: [keep-alive] content-length: ['38'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:20:54 GMT'] + date: ['Tue, 13 Nov 2018 20:29:00 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592454499-632196] + x-request-id: [1542140940731-832957] status: {code: 200, message: OK} - request: body: !!python/unicode '{"fields": {"fileUploadParameters": true}}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k6VQ09J6kfjJK43xBxp9F/describe + uri: https://api.dnanexus.com/project-FPbY83000jZYYFg006F1yx7p/describe response: - body: {string: !!python/unicode '{"id":"project-FP9k6VQ09J6kfjJK43xBxp9F","fileUploadParameters":{"maximumPartSize":5368709120,"minimumPartSize":5242880,"maximumFileSize":5497558138880,"maximumNumParts":10000,"emptyLastPartAllowed":true}}'} + body: {string: !!python/unicode '{"id":"project-FPbY83000jZYYFg006F1yx7p","fileUploadParameters":{"maximumPartSize":5368709120,"minimumPartSize":5242880,"maximumFileSize":5497558138880,"maximumNumParts":10000,"emptyLastPartAllowed":true}}'} headers: connection: [keep-alive] content-length: ['205'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:20:54 GMT'] + date: ['Tue, 13 Nov 2018 20:29:00 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592454666-658109] + x-request-id: [1542140940891-800317] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"size": 5, "md5": "73dfff57fe24e807bd4fb1bc4e07cd73", - "index": 1}' + body: !!python/unicode '{"index": 1, "size": 5, "md5": "73dfff57fe24e807bd4fb1bc4e07cd73"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k6VQ09J6Qq5P81088Yy47/upload + uri: https://api.dnanexus.com/file-FPbY83000jZVf1vx1VF3x726/upload response: - body: {string: !!python/unicode '{"url":"https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/c1aa/file/open/file-FP9k6VQ09J6Qq5P81088Yy47/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181026%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181026T222054Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=f775f3fc9131c188ed8c9f6251a2848b4ca1b30c17dfec794c5bc6a40ebb20c5","headers":{"host":"dnanexus-platform-upload-prod.s3.amazonaws.com","content-type":"binary/octet-stream","x-amz-server-side-encryption":"AES256","content-md5":"c9//V/4k6Ae9T7G8TgfNcw==","content-length":"5"},"expires":1540592574786}'} + body: {string: !!python/unicode '{"url":"https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/dce5/file/open/file-FPbY83000jZVf1vx1VF3x726/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181113%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181113T202901Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=d4dde2831f7ec7fceabbed656dfcd0cb24dad7718f3d5f70d23000ed6c40bdc6","headers":{"host":"dnanexus-platform-upload-prod.s3.amazonaws.com","content-type":"binary/octet-stream","x-amz-server-side-encryption":"AES256","content-md5":"c9//V/4k6Ae9T7G8TgfNcw==","content-length":"5"},"expires":1542141061069}'} headers: connection: [keep-alive] content-length: ['692'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:20:54 GMT'] + date: ['Tue, 13 Nov 2018 20:29:01 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592454772-970920] + x-request-id: [1542140941006-469503] status: {code: 200, message: OK} - request: body: !!python/unicode data0 headers: DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] content-length: ['5'] content-md5: [c9//V/4k6Ae9T7G8TgfNcw==] content-type: [binary/octet-stream] host: [dnanexus-platform-upload-prod.s3.amazonaws.com] x-amz-server-side-encryption: [AES256] method: PUT - uri: https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/c1aa/file/open/file-FP9k6VQ09J6Qq5P81088Yy47/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181026%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181026T222054Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=f775f3fc9131c188ed8c9f6251a2848b4ca1b30c17dfec794c5bc6a40ebb20c5 + uri: https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/dce5/file/open/file-FPbY83000jZVf1vx1VF3x726/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181113%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181113T202901Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=d4dde2831f7ec7fceabbed656dfcd0cb24dad7718f3d5f70d23000ed6c40bdc6 response: body: {string: !!python/unicode ''} headers: content-length: ['0'] - date: ['Fri, 26 Oct 2018 22:20:56 GMT'] + date: ['Tue, 13 Nov 2018 20:29:02 GMT'] etag: ['"73dfff57fe24e807bd4fb1bc4e07cd73"'] server: [AmazonS3] - x-amz-expiration: ['expiry-date="Sat, 17 Nov 2018 00:00:00 GMT", rule-id="3weekpurge"'] - x-amz-id-2: [NoB/w007F77tE1e5EnFqV/kLhnGBqIjD9hpuJlAqRGKx2xX359UHkHlGjGFJre6NfxGbDYOTRjs=] - x-amz-request-id: [5F34152C0151366E] + x-amz-expiration: ['expiry-date="Wed, 05 Dec 2018 00:00:00 GMT", rule-id="3weekpurge"'] + x-amz-id-2: [nt6gmP+tEFMz4tM29wc9/z9gJbbQ2xzhKgVGZJhGDRy6oktzFE/h2hXvFlcLtDn0IrqAOKlvrV8=] + x-amz-request-id: [9713B0C2BBC496DD] x-amz-server-side-encryption: [AES256] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"project": "project-FP9k6VQ09J6kfjJK43xBxp9F", "fields": + body: !!python/unicode '{"project": "project-FPbY83000jZYYFg006F1yx7p", "fields": {"state": true}}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k6VQ09J6Qq5P81088Yy47/describe + uri: https://api.dnanexus.com/file-FPbY83000jZVf1vx1VF3x726/describe response: - body: {string: !!python/unicode '{"id":"file-FP9k6VQ09J6Qq5P81088Yy47","state":"open"}'} + body: {string: !!python/unicode '{"id":"file-FPbY83000jZVf1vx1VF3x726","state":"open"}'} headers: connection: [keep-alive] content-length: ['53'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:20:55 GMT'] + date: ['Tue, 13 Nov 2018 20:29:01 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592455443-590388] + x-request-id: [1542140941546-976388] status: {code: 200, message: OK} - request: body: !!python/unicode '{}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k6VQ09J6Qq5P81088Yy47/close + uri: https://api.dnanexus.com/file-FPbY83000jZVf1vx1VF3x726/close response: - body: {string: !!python/unicode '{"id":"file-FP9k6VQ09J6Qq5P81088Yy47"}'} + body: {string: !!python/unicode '{"id":"file-FPbY83000jZVf1vx1VF3x726"}'} headers: connection: [keep-alive] content-length: ['38'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:20:55 GMT'] + date: ['Tue, 13 Nov 2018 20:29:01 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592455566-774114] + x-request-id: [1542140941800-365797] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"limit": 2, "name": "TestCopy.test_dx_to_dx_within_project_pass.ab62eaed", + body: !!python/unicode '{"limit": 2, "name": "TestCopy.test_dx_to_dx_within_project_pass.1ce1045a", "level": "VIEW"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/system/findProjects response: - body: {string: !!python/unicode '{"results":[{"id":"project-FP9k6VQ09J6kfjJK43xBxp9F","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} + body: {string: !!python/unicode '{"results":[{"id":"project-FPbY83000jZYYFg006F1yx7p","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} headers: connection: [keep-alive] content-length: ['147'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:20:55 GMT'] + date: ['Tue, 13 Nov 2018 20:29:02 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592455708-337749] + x-request-id: [1542140942006-919264] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"objects": [{"name": "file.txt", "project": "project-FP9k6VQ09J6kfjJK43xBxp9F", - "batchsize": 2, "folder": "/temp_folder"}]}' + body: !!python/unicode '{"objects": [{"project": "project-FPbY83000jZYYFg006F1yx7p", + "folder": "/temp_folder", "name": "file.txt", "batchsize": 2}]}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/system/resolveDataObjects response: - body: {string: !!python/unicode '{"results":[[{"project":"project-FP9k6VQ09J6kfjJK43xBxp9F","id":"file-FP9k6VQ09J6Qq5P81088Yy47"}]]}'} + body: {string: !!python/unicode '{"results":[[{"project":"project-FPbY83000jZYYFg006F1yx7p","id":"file-FPbY83000jZVf1vx1VF3x726"}]]}'} headers: connection: [keep-alive] content-length: ['99'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:20:55 GMT'] + date: ['Tue, 13 Nov 2018 20:29:02 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592455835-302770] + x-request-id: [1542140942135-790819] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"project": "project-FP9k6VQ09J6kfjJK43xBxp9F"}' + body: !!python/unicode '{"project": "project-FPbY83000jZYYFg006F1yx7p"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k6VQ09J6Qq5P81088Yy47/describe + uri: https://api.dnanexus.com/file-FPbY83000jZVf1vx1VF3x726/describe response: - body: {string: !!python/unicode '{"id":"file-FP9k6VQ09J6Qq5P81088Yy47","project":"project-FP9k6VQ09J6kfjJK43xBxp9F","class":"file","sponsored":false,"name":"file.txt","types":[],"state":"closing","hidden":false,"links":[],"folder":"/temp_folder","tags":[],"created":1540592454000,"modified":1540592455595,"createdBy":{"user":"user-akumar_counsyl"},"media":"","archivalState":"live"}'} + body: {string: !!python/unicode '{"id":"file-FPbY83000jZVf1vx1VF3x726","project":"project-FPbY83000jZYYFg006F1yx7p","class":"file","sponsored":false,"name":"file.txt","types":[],"state":"closing","hidden":false,"links":[],"folder":"/temp_folder","tags":[],"created":1542140940000,"modified":1542140941849,"createdBy":{"user":"user-akumar_counsyl"},"media":"","archivalState":"live"}'} headers: connection: [keep-alive] content-length: ['349'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:20:55 GMT'] + date: ['Tue, 13 Nov 2018 20:29:02 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592455946-569301] + x-request-id: [1542140942238-248323] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"limit": 2, "name": "TestCopy.test_dx_to_dx_within_project_pass.ab62eaed", + body: !!python/unicode '{"limit": 2, "name": "TestCopy.test_dx_to_dx_within_project_pass.1ce1045a", "level": "VIEW"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/system/findProjects response: - body: {string: !!python/unicode '{"results":[{"id":"project-FP9k6VQ09J6kfjJK43xBxp9F","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} + body: {string: !!python/unicode '{"results":[{"id":"project-FPbY83000jZYYFg006F1yx7p","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} headers: connection: [keep-alive] content-length: ['147'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:20:56 GMT'] + date: ['Tue, 13 Nov 2018 20:29:02 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592456059-241022] + x-request-id: [1542140942343-440813] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"includeHidden": false, "only": "folders", "folder": - "/another_folder/fold_file.txt", "describe": {"fields": {"name": true, "folder": - true}}}' + body: !!python/unicode '{"folder": "/another_folder/fold_file.txt", "describe": + {"fields": {"folder": true, "name": true}}, "only": "folders", "includeHidden": + false}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k6VQ09J6kfjJK43xBxp9F/listFolder + uri: https://api.dnanexus.com/project-FPbY83000jZYYFg006F1yx7p/listFolder response: body: {string: !!python/unicode '{"error":{"type":"ResourceNotFound","message":"The - specified folder could not be found in project-FP9k6VQ09J6kfjJK43xBxp9F"}}'} + specified folder could not be found in project-FPbY83000jZYYFg006F1yx7p"}}'} headers: connection: [keep-alive] content-type: [application/json] - date: ['Fri, 26 Oct 2018 22:20:56 GMT'] + date: ['Tue, 13 Nov 2018 20:29:02 GMT'] server: [nginx] transfer-encoding: [chunked] vary: [Accept-Encoding] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592456190-464423] + x-request-id: [1542140942467-17658] status: {code: 404, message: Not Found} - request: - body: !!python/unicode '{"limit": 2, "name": "TestCopy.test_dx_to_dx_within_project_pass.ab62eaed", + body: !!python/unicode '{"limit": 2, "name": "TestCopy.test_dx_to_dx_within_project_pass.1ce1045a", "level": "VIEW"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/system/findProjects response: - body: {string: !!python/unicode '{"results":[{"id":"project-FP9k6VQ09J6kfjJK43xBxp9F","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} + body: {string: !!python/unicode '{"results":[{"id":"project-FPbY83000jZYYFg006F1yx7p","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} headers: connection: [keep-alive] content-length: ['147'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:20:56 GMT'] + date: ['Tue, 13 Nov 2018 20:29:02 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592456586-551244] + x-request-id: [1542140942823-368918] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"parents": true, "folder": "/another_folder"}' + body: !!python/unicode '{"folder": "/another_folder", "parents": true}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k6VQ09J6kfjJK43xBxp9F/newFolder + uri: https://api.dnanexus.com/project-FPbY83000jZYYFg006F1yx7p/newFolder response: - body: {string: !!python/unicode '{"id":"project-FP9k6VQ09J6kfjJK43xBxp9F"}'} + body: {string: !!python/unicode '{"id":"project-FPbY83000jZYYFg006F1yx7p"}'} headers: connection: [keep-alive] content-length: ['41'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:20:56 GMT'] + date: ['Tue, 13 Nov 2018 20:29:02 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592456712-796506] + x-request-id: [1542140942937-999966] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"objects": [{"name": "fold_file.txt", "project": "project-FP9k6VQ09J6kfjJK43xBxp9F", - "batchsize": 2, "folder": "/another_folder"}]}' + body: !!python/unicode '{"objects": [{"project": "project-FPbY83000jZYYFg006F1yx7p", + "folder": "/another_folder", "name": "fold_file.txt", "batchsize": 2}]}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/system/resolveDataObjects response: @@ -349,142 +349,143 @@ interactions: connection: [keep-alive] content-length: ['16'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:20:56 GMT'] + date: ['Tue, 13 Nov 2018 20:29:03 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592456826-273883] + x-request-id: [1542140943055-826125] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"destination": "/another_folder", "objects": ["file-FP9k6VQ09J6Qq5P81088Yy47"]}' + body: !!python/unicode '{"destination": "/another_folder", "objects": ["file-FPbY83000jZVf1vx1VF3x726"]}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k6VQ09J6kfjJK43xBxp9F/move + uri: https://api.dnanexus.com/project-FPbY83000jZYYFg006F1yx7p/move response: - body: {string: !!python/unicode '{"id":"project-FP9k6VQ09J6kfjJK43xBxp9F"}'} + body: {string: !!python/unicode '{"id":"project-FPbY83000jZYYFg006F1yx7p"}'} headers: connection: [keep-alive] content-length: ['41'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:20:57 GMT'] + date: ['Tue, 13 Nov 2018 20:29:03 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592456940-330942] + x-request-id: [1542140943168-612177] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"name": "fold_file.txt", "project": "project-FP9k6VQ09J6kfjJK43xBxp9F"}' + body: !!python/unicode '{"project": "project-FPbY83000jZYYFg006F1yx7p", "name": + "fold_file.txt"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k6VQ09J6Qq5P81088Yy47/rename + uri: https://api.dnanexus.com/file-FPbY83000jZVf1vx1VF3x726/rename response: - body: {string: !!python/unicode '{"id":"file-FP9k6VQ09J6Qq5P81088Yy47"}'} + body: {string: !!python/unicode '{"id":"file-FPbY83000jZVf1vx1VF3x726"}'} headers: connection: [keep-alive] content-length: ['38'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:20:57 GMT'] + date: ['Tue, 13 Nov 2018 20:29:03 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592457109-683845] + x-request-id: [1542140943345-405336] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"limit": 2, "name": "TestCopy.test_dx_to_dx_within_project_pass.ab62eaed", + body: !!python/unicode '{"limit": 2, "name": "TestCopy.test_dx_to_dx_within_project_pass.1ce1045a", "level": "VIEW"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/system/findProjects response: - body: {string: !!python/unicode '{"results":[{"id":"project-FP9k6VQ09J6kfjJK43xBxp9F","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} + body: {string: !!python/unicode '{"results":[{"id":"project-FPbY83000jZYYFg006F1yx7p","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} headers: connection: [keep-alive] content-length: ['147'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:20:57 GMT'] + date: ['Tue, 13 Nov 2018 20:29:03 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592457216-421631] + x-request-id: [1542140943438-457055] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"objects": [{"name": "fold_file.txt", "project": "project-FP9k6VQ09J6kfjJK43xBxp9F", - "batchsize": 2, "folder": "/another_folder"}]}' + body: !!python/unicode '{"objects": [{"project": "project-FPbY83000jZYYFg006F1yx7p", + "folder": "/another_folder", "name": "fold_file.txt", "batchsize": 2}]}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/system/resolveDataObjects response: - body: {string: !!python/unicode '{"results":[[{"project":"project-FP9k6VQ09J6kfjJK43xBxp9F","id":"file-FP9k6VQ09J6Qq5P81088Yy47"}]]}'} + body: {string: !!python/unicode '{"results":[[{"project":"project-FPbY83000jZYYFg006F1yx7p","id":"file-FPbY83000jZVf1vx1VF3x726"}]]}'} headers: connection: [keep-alive] content-length: ['99'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:20:57 GMT'] + date: ['Tue, 13 Nov 2018 20:29:03 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592457354-568225] + x-request-id: [1542140943567-158013] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"project": "project-FP9k6VQ09J6kfjJK43xBxp9F"}' + body: !!python/unicode '{"project": "project-FPbY83000jZYYFg006F1yx7p"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k6VQ09J6Qq5P81088Yy47/describe + uri: https://api.dnanexus.com/file-FPbY83000jZVf1vx1VF3x726/describe response: - body: {string: !!python/unicode '{"id":"file-FP9k6VQ09J6Qq5P81088Yy47","project":"project-FP9k6VQ09J6kfjJK43xBxp9F","class":"file","sponsored":false,"name":"fold_file.txt","types":[],"state":"closed","hidden":false,"links":[],"folder":"/another_folder","tags":[],"created":1540592454000,"modified":1540592457117,"createdBy":{"user":"user-akumar_counsyl"},"media":"text/plain","archivalState":"live","size":5}'} + body: {string: !!python/unicode '{"id":"file-FPbY83000jZVf1vx1VF3x726","project":"project-FPbY83000jZYYFg006F1yx7p","class":"file","sponsored":false,"name":"fold_file.txt","types":[],"state":"closed","hidden":false,"links":[],"folder":"/another_folder","tags":[],"created":1542140940000,"modified":1542140943355,"createdBy":{"user":"user-akumar_counsyl"},"media":"text/plain","archivalState":"live","size":5}'} headers: connection: [keep-alive] content-length: ['375'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:20:57 GMT'] + date: ['Tue, 13 Nov 2018 20:29:03 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592457467-992320] + x-request-id: [1542140943662-814486] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"limit": 2, "name": "TestCopy.test_dx_to_dx_within_project_pass.ab62eaed", + body: !!python/unicode '{"limit": 2, "name": "TestCopy.test_dx_to_dx_within_project_pass.1ce1045a", "level": "VIEW"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/system/findProjects response: - body: {string: !!python/unicode '{"results":[{"id":"project-FP9k6VQ09J6kfjJK43xBxp9F","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} + body: {string: !!python/unicode '{"results":[{"id":"project-FPbY83000jZYYFg006F1yx7p","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} headers: connection: [keep-alive] content-length: ['147'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:20:57 GMT'] + date: ['Tue, 13 Nov 2018 20:29:03 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592457584-581852] + x-request-id: [1542140943759-61440] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"objects": [{"name": "file.txt", "project": "project-FP9k6VQ09J6kfjJK43xBxp9F", - "batchsize": 2, "folder": "/temp_folder"}]}' + body: !!python/unicode '{"objects": [{"project": "project-FPbY83000jZYYFg006F1yx7p", + "folder": "/temp_folder", "name": "file.txt", "batchsize": 2}]}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/system/resolveDataObjects response: @@ -493,42 +494,42 @@ interactions: connection: [keep-alive] content-length: ['16'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:20:57 GMT'] + date: ['Tue, 13 Nov 2018 20:29:03 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592457738-975992] + x-request-id: [1542140943915-133215] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"includeHidden": false, "only": "folders", "folder": - "/temp_folder/file.txt", "describe": {"fields": {"name": true, "folder": true}}}' + body: !!python/unicode '{"folder": "/temp_folder/file.txt", "describe": {"fields": + {"folder": true, "name": true}}, "only": "folders", "includeHidden": false}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k6VQ09J6kfjJK43xBxp9F/listFolder + uri: https://api.dnanexus.com/project-FPbY83000jZYYFg006F1yx7p/listFolder response: body: {string: !!python/unicode '{"error":{"type":"ResourceNotFound","message":"The - specified folder could not be found in project-FP9k6VQ09J6kfjJK43xBxp9F"}}'} + specified folder could not be found in project-FPbY83000jZYYFg006F1yx7p"}}'} headers: connection: [keep-alive] content-type: [application/json] - date: ['Fri, 26 Oct 2018 22:20:57 GMT'] + date: ['Tue, 13 Nov 2018 20:29:04 GMT'] server: [nginx] transfer-encoding: [chunked] vary: [Accept-Encoding] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592457851-34808] + x-request-id: [1542140944043-160732] status: {code: 404, message: Not Found} - request: - body: !!python/unicode '{"objects": [{"name": "file.txt", "project": "project-FP9k6VQ09J6kfjJK43xBxp9F", - "batchsize": 2, "folder": "/temp_folder"}]}' + body: !!python/unicode '{"objects": [{"project": "project-FPbY83000jZYYFg006F1yx7p", + "folder": "/temp_folder", "name": "file.txt", "batchsize": 2}]}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/system/resolveDataObjects response: @@ -537,124 +538,124 @@ interactions: connection: [keep-alive] content-length: ['16'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:20:58 GMT'] + date: ['Tue, 13 Nov 2018 20:29:04 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592458329-728637] + x-request-id: [1542140944398-871922] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"project": "project-FP9k6VQ09J6kfjJK43xBxp9F"}' + body: !!python/unicode '{"project": "project-FPbY83000jZYYFg006F1yx7p"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k6VQ09J6Qq5P81088Yy47/describe + uri: https://api.dnanexus.com/file-FPbY83000jZVf1vx1VF3x726/describe response: - body: {string: !!python/unicode '{"id":"file-FP9k6VQ09J6Qq5P81088Yy47","project":"project-FP9k6VQ09J6kfjJK43xBxp9F","class":"file","sponsored":false,"name":"fold_file.txt","types":[],"state":"closed","hidden":false,"links":[],"folder":"/another_folder","tags":[],"created":1540592454000,"modified":1540592457117,"createdBy":{"user":"user-akumar_counsyl"},"media":"text/plain","archivalState":"live","size":5}'} + body: {string: !!python/unicode '{"id":"file-FPbY83000jZVf1vx1VF3x726","project":"project-FPbY83000jZYYFg006F1yx7p","class":"file","sponsored":false,"name":"fold_file.txt","types":[],"state":"closed","hidden":false,"links":[],"folder":"/another_folder","tags":[],"created":1542140940000,"modified":1542140943355,"createdBy":{"user":"user-akumar_counsyl"},"media":"text/plain","archivalState":"live","size":5}'} headers: connection: [keep-alive] content-length: ['375'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:20:58 GMT'] + date: ['Tue, 13 Nov 2018 20:29:04 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592458440-461183] + x-request-id: [1542140944514-205039] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"limit": 2, "name": "TestCopy.test_dx_to_dx_within_project_pass.ab62eaed", + body: !!python/unicode '{"limit": 2, "name": "TestCopy.test_dx_to_dx_within_project_pass.1ce1045a", "level": "VIEW"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/system/findProjects response: - body: {string: !!python/unicode '{"results":[{"id":"project-FP9k6VQ09J6kfjJK43xBxp9F","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} + body: {string: !!python/unicode '{"results":[{"id":"project-FPbY83000jZYYFg006F1yx7p","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} headers: connection: [keep-alive] content-length: ['147'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:20:58 GMT'] + date: ['Tue, 13 Nov 2018 20:29:04 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592458556-365898] + x-request-id: [1542140944612-522206] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"includeHidden": false, "only": "folders", "folder": - "/temp_folder/file.txt", "describe": {"fields": {"name": true, "folder": true}}}' + body: !!python/unicode '{"folder": "/temp_folder/file.txt", "describe": {"fields": + {"folder": true, "name": true}}, "only": "folders", "includeHidden": false}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k6VQ09J6kfjJK43xBxp9F/listFolder + uri: https://api.dnanexus.com/project-FPbY83000jZYYFg006F1yx7p/listFolder response: body: {string: !!python/unicode '{"error":{"type":"ResourceNotFound","message":"The - specified folder could not be found in project-FP9k6VQ09J6kfjJK43xBxp9F"}}'} + specified folder could not be found in project-FPbY83000jZYYFg006F1yx7p"}}'} headers: connection: [keep-alive] content-type: [application/json] - date: ['Fri, 26 Oct 2018 22:20:59 GMT'] + date: ['Tue, 13 Nov 2018 20:29:04 GMT'] server: [nginx] transfer-encoding: [chunked] vary: [Accept-Encoding] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592459048-350258] + x-request-id: [1542140944746-35864] status: {code: 404, message: Not Found} - request: - body: !!python/unicode '{"limit": 2, "name": "TestCopy.test_dx_to_dx_within_project_pass.ab62eaed", + body: !!python/unicode '{"limit": 2, "name": "TestCopy.test_dx_to_dx_within_project_pass.1ce1045a", "level": "VIEW"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/system/findProjects response: - body: {string: !!python/unicode '{"results":[{"id":"project-FP9k6VQ09J6kfjJK43xBxp9F","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} + body: {string: !!python/unicode '{"results":[{"id":"project-FPbY83000jZYYFg006F1yx7p","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} headers: connection: [keep-alive] content-length: ['147'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:20:59 GMT'] + date: ['Tue, 13 Nov 2018 20:29:05 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592459451-978676] + x-request-id: [1542140945115-822749] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"parents": true, "folder": "/temp_folder"}' + body: !!python/unicode '{"folder": "/temp_folder", "parents": true}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k6VQ09J6kfjJK43xBxp9F/newFolder + uri: https://api.dnanexus.com/project-FPbY83000jZYYFg006F1yx7p/newFolder response: - body: {string: !!python/unicode '{"id":"project-FP9k6VQ09J6kfjJK43xBxp9F"}'} + body: {string: !!python/unicode '{"id":"project-FPbY83000jZYYFg006F1yx7p"}'} headers: connection: [keep-alive] content-length: ['41'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:20:59 GMT'] + date: ['Tue, 13 Nov 2018 20:29:05 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592459590-643318] + x-request-id: [1542140945244-596867] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"objects": [{"name": "file.txt", "project": "project-FP9k6VQ09J6kfjJK43xBxp9F", - "batchsize": 2, "folder": "/temp_folder"}]}' + body: !!python/unicode '{"objects": [{"project": "project-FPbY83000jZYYFg006F1yx7p", + "folder": "/temp_folder", "name": "file.txt", "batchsize": 2}]}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/system/resolveDataObjects response: @@ -663,163 +664,164 @@ interactions: connection: [keep-alive] content-length: ['16'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:20:59 GMT'] + date: ['Tue, 13 Nov 2018 20:29:05 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592459701-680446] + x-request-id: [1542140945343-788886] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"destination": "/temp_folder", "objects": ["file-FP9k6VQ09J6Qq5P81088Yy47"]}' + body: !!python/unicode '{"destination": "/temp_folder", "objects": ["file-FPbY83000jZVf1vx1VF3x726"]}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k6VQ09J6kfjJK43xBxp9F/move + uri: https://api.dnanexus.com/project-FPbY83000jZYYFg006F1yx7p/move response: - body: {string: !!python/unicode '{"id":"project-FP9k6VQ09J6kfjJK43xBxp9F"}'} + body: {string: !!python/unicode '{"id":"project-FPbY83000jZYYFg006F1yx7p"}'} headers: connection: [keep-alive] content-length: ['41'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:20:59 GMT'] + date: ['Tue, 13 Nov 2018 20:29:05 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592459807-347525] + x-request-id: [1542140945474-454567] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"name": "file.txt", "project": "project-FP9k6VQ09J6kfjJK43xBxp9F"}' + body: !!python/unicode '{"project": "project-FPbY83000jZYYFg006F1yx7p", "name": + "file.txt"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k6VQ09J6Qq5P81088Yy47/rename + uri: https://api.dnanexus.com/file-FPbY83000jZVf1vx1VF3x726/rename response: - body: {string: !!python/unicode '{"id":"file-FP9k6VQ09J6Qq5P81088Yy47"}'} + body: {string: !!python/unicode '{"id":"file-FPbY83000jZVf1vx1VF3x726"}'} headers: connection: [keep-alive] content-length: ['38'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:21:00 GMT'] + date: ['Tue, 13 Nov 2018 20:29:05 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592459985-222811] + x-request-id: [1542140945619-404334] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"objects": [{"name": "file.txt", "project": "project-FP9k6VQ09J6kfjJK43xBxp9F", - "batchsize": 2, "folder": "/temp_folder"}]}' + body: !!python/unicode '{"objects": [{"project": "project-FPbY83000jZYYFg006F1yx7p", + "folder": "/temp_folder", "name": "file.txt", "batchsize": 2}]}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/system/resolveDataObjects response: - body: {string: !!python/unicode '{"results":[[{"project":"project-FP9k6VQ09J6kfjJK43xBxp9F","id":"file-FP9k6VQ09J6Qq5P81088Yy47"}]]}'} + body: {string: !!python/unicode '{"results":[[{"project":"project-FPbY83000jZYYFg006F1yx7p","id":"file-FPbY83000jZVf1vx1VF3x726"}]]}'} headers: connection: [keep-alive] content-length: ['99'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:21:00 GMT'] + date: ['Tue, 13 Nov 2018 20:29:05 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592460103-545275] + x-request-id: [1542140945714-822718] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"project": "project-FP9k6VQ09J6kfjJK43xBxp9F"}' + body: !!python/unicode '{"project": "project-FPbY83000jZYYFg006F1yx7p"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k6VQ09J6Qq5P81088Yy47/describe + uri: https://api.dnanexus.com/file-FPbY83000jZVf1vx1VF3x726/describe response: - body: {string: !!python/unicode '{"id":"file-FP9k6VQ09J6Qq5P81088Yy47","project":"project-FP9k6VQ09J6kfjJK43xBxp9F","class":"file","sponsored":false,"name":"file.txt","types":[],"state":"closed","hidden":false,"links":[],"folder":"/temp_folder","tags":[],"created":1540592454000,"modified":1540592460005,"createdBy":{"user":"user-akumar_counsyl"},"media":"text/plain","archivalState":"live","size":5}'} + body: {string: !!python/unicode '{"id":"file-FPbY83000jZVf1vx1VF3x726","project":"project-FPbY83000jZYYFg006F1yx7p","class":"file","sponsored":false,"name":"file.txt","types":[],"state":"closed","hidden":false,"links":[],"folder":"/temp_folder","tags":[],"created":1542140940000,"modified":1542140945629,"createdBy":{"user":"user-akumar_counsyl"},"media":"text/plain","archivalState":"live","size":5}'} headers: connection: [keep-alive] content-length: ['367'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:21:00 GMT'] + date: ['Tue, 13 Nov 2018 20:29:05 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592460212-626262] + x-request-id: [1542140945813-636062] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"limit": 2, "name": "TestCopy.test_dx_to_dx_within_project_pass.ab62eaed", + body: !!python/unicode '{"limit": 2, "name": "TestCopy.test_dx_to_dx_within_project_pass.1ce1045a", "level": "VIEW"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/system/findProjects response: - body: {string: !!python/unicode '{"results":[{"id":"project-FP9k6VQ09J6kfjJK43xBxp9F","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} + body: {string: !!python/unicode '{"results":[{"id":"project-FPbY83000jZYYFg006F1yx7p","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} headers: connection: [keep-alive] content-length: ['147'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:21:00 GMT'] + date: ['Tue, 13 Nov 2018 20:29:05 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592460324-685335] + x-request-id: [1542140945920-90400] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"includeHidden": false, "only": "folders", "folder": - "/another_folder/", "describe": {"fields": {"name": true, "folder": true}}}' + body: !!python/unicode '{"folder": "/another_folder/", "describe": {"fields": + {"folder": true, "name": true}}, "only": "folders", "includeHidden": false}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k6VQ09J6kfjJK43xBxp9F/listFolder + uri: https://api.dnanexus.com/project-FPbY83000jZYYFg006F1yx7p/listFolder response: body: {string: !!python/unicode '{"folders":[]}'} headers: connection: [keep-alive] content-length: ['14'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:21:00 GMT'] + date: ['Tue, 13 Nov 2018 20:29:06 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592460459-4206] + x-request-id: [1542140946071-793754] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"limit": 2, "name": "TestCopy.test_dx_to_dx_within_project_pass.ab62eaed", + body: !!python/unicode '{"limit": 2, "name": "TestCopy.test_dx_to_dx_within_project_pass.1ce1045a", "level": "VIEW"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/system/findProjects response: - body: {string: !!python/unicode '{"results":[{"id":"project-FP9k6VQ09J6kfjJK43xBxp9F","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} + body: {string: !!python/unicode '{"results":[{"id":"project-FPbY83000jZYYFg006F1yx7p","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} headers: connection: [keep-alive] content-length: ['147'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:21:00 GMT'] + date: ['Tue, 13 Nov 2018 20:29:06 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592460570-339692] + x-request-id: [1542140946176-945351] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"objects": [{"name": "file.txt", "project": "project-FP9k6VQ09J6kfjJK43xBxp9F", - "batchsize": 2, "folder": "/another_folder"}]}' + body: !!python/unicode '{"objects": [{"project": "project-FPbY83000jZYYFg006F1yx7p", + "folder": "/another_folder", "name": "file.txt", "batchsize": 2}]}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/system/resolveDataObjects response: @@ -828,60 +830,60 @@ interactions: connection: [keep-alive] content-length: ['16'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:21:00 GMT'] + date: ['Tue, 13 Nov 2018 20:29:06 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592460799-832353] + x-request-id: [1542140946383-882094] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"destination": "/another_folder", "objects": ["file-FP9k6VQ09J6Qq5P81088Yy47"]}' + body: !!python/unicode '{"destination": "/another_folder", "objects": ["file-FPbY83000jZVf1vx1VF3x726"]}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k6VQ09J6kfjJK43xBxp9F/move + uri: https://api.dnanexus.com/project-FPbY83000jZYYFg006F1yx7p/move response: - body: {string: !!python/unicode '{"id":"project-FP9k6VQ09J6kfjJK43xBxp9F"}'} + body: {string: !!python/unicode '{"id":"project-FPbY83000jZYYFg006F1yx7p"}'} headers: connection: [keep-alive] content-length: ['41'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:21:01 GMT'] + date: ['Tue, 13 Nov 2018 20:29:06 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592460965-168529] + x-request-id: [1542140946482-969089] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"limit": 2, "name": "TestCopy.test_dx_to_dx_within_project_pass.ab62eaed", + body: !!python/unicode '{"limit": 2, "name": "TestCopy.test_dx_to_dx_within_project_pass.1ce1045a", "level": "VIEW"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/system/findProjects response: - body: {string: !!python/unicode '{"results":[{"id":"project-FP9k6VQ09J6kfjJK43xBxp9F","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} + body: {string: !!python/unicode '{"results":[{"id":"project-FPbY83000jZYYFg006F1yx7p","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} headers: connection: [keep-alive] content-length: ['147'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:21:01 GMT'] + date: ['Tue, 13 Nov 2018 20:29:06 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592461123-952441] + x-request-id: [1542140946639-730299] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"objects": [{"name": "file.txt", "project": "project-FP9k6VQ09J6kfjJK43xBxp9F", - "batchsize": 2, "folder": "/temp_folder"}]}' + body: !!python/unicode '{"objects": [{"project": "project-FPbY83000jZYYFg006F1yx7p", + "folder": "/temp_folder", "name": "file.txt", "batchsize": 2}]}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/system/resolveDataObjects response: @@ -890,115 +892,115 @@ interactions: connection: [keep-alive] content-length: ['16'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:21:01 GMT'] + date: ['Tue, 13 Nov 2018 20:29:06 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592461249-216678] + x-request-id: [1542140946763-429586] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"includeHidden": false, "only": "folders", "folder": - "/temp_folder/file.txt", "describe": {"fields": {"name": true, "folder": true}}}' + body: !!python/unicode '{"folder": "/temp_folder/file.txt", "describe": {"fields": + {"folder": true, "name": true}}, "only": "folders", "includeHidden": false}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k6VQ09J6kfjJK43xBxp9F/listFolder + uri: https://api.dnanexus.com/project-FPbY83000jZYYFg006F1yx7p/listFolder response: body: {string: !!python/unicode '{"error":{"type":"ResourceNotFound","message":"The - specified folder could not be found in project-FP9k6VQ09J6kfjJK43xBxp9F"}}'} + specified folder could not be found in project-FPbY83000jZYYFg006F1yx7p"}}'} headers: connection: [keep-alive] content-type: [application/json] - date: ['Fri, 26 Oct 2018 22:21:01 GMT'] + date: ['Tue, 13 Nov 2018 20:29:06 GMT'] server: [nginx] transfer-encoding: [chunked] vary: [Accept-Encoding] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592461360-684750] + x-request-id: [1542140946863-746046] status: {code: 404, message: Not Found} - request: - body: !!python/unicode '{"limit": 2, "name": "TestCopy.test_dx_to_dx_within_project_pass.ab62eaed", + body: !!python/unicode '{"limit": 2, "name": "TestCopy.test_dx_to_dx_within_project_pass.1ce1045a", "level": "VIEW"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/system/findProjects response: - body: {string: !!python/unicode '{"results":[{"id":"project-FP9k6VQ09J6kfjJK43xBxp9F","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} + body: {string: !!python/unicode '{"results":[{"id":"project-FPbY83000jZYYFg006F1yx7p","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} headers: connection: [keep-alive] content-length: ['147'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:21:01 GMT'] + date: ['Tue, 13 Nov 2018 20:29:07 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592461769-624522] + x-request-id: [1542140947197-832649] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"objects": [{"name": "file.txt", "project": "project-FP9k6VQ09J6kfjJK43xBxp9F", - "batchsize": 2, "folder": "/another_folder"}]}' + body: !!python/unicode '{"objects": [{"project": "project-FPbY83000jZYYFg006F1yx7p", + "folder": "/another_folder", "name": "file.txt", "batchsize": 2}]}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/system/resolveDataObjects response: - body: {string: !!python/unicode '{"results":[[{"project":"project-FP9k6VQ09J6kfjJK43xBxp9F","id":"file-FP9k6VQ09J6Qq5P81088Yy47"}]]}'} + body: {string: !!python/unicode '{"results":[[{"project":"project-FPbY83000jZYYFg006F1yx7p","id":"file-FPbY83000jZVf1vx1VF3x726"}]]}'} headers: connection: [keep-alive] content-length: ['99'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:21:01 GMT'] + date: ['Tue, 13 Nov 2018 20:29:07 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592461898-562715] + x-request-id: [1542140947363-621836] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"project": "project-FP9k6VQ09J6kfjJK43xBxp9F"}' + body: !!python/unicode '{"project": "project-FPbY83000jZYYFg006F1yx7p"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k6VQ09J6Qq5P81088Yy47/describe + uri: https://api.dnanexus.com/file-FPbY83000jZVf1vx1VF3x726/describe response: - body: {string: !!python/unicode '{"id":"file-FP9k6VQ09J6Qq5P81088Yy47","project":"project-FP9k6VQ09J6kfjJK43xBxp9F","class":"file","sponsored":false,"name":"file.txt","types":[],"state":"closed","hidden":false,"links":[],"folder":"/another_folder","tags":[],"created":1540592454000,"modified":1540592460005,"createdBy":{"user":"user-akumar_counsyl"},"media":"text/plain","archivalState":"live","size":5}'} + body: {string: !!python/unicode '{"id":"file-FPbY83000jZVf1vx1VF3x726","project":"project-FPbY83000jZYYFg006F1yx7p","class":"file","sponsored":false,"name":"file.txt","types":[],"state":"closed","hidden":false,"links":[],"folder":"/another_folder","tags":[],"created":1542140940000,"modified":1542140945629,"createdBy":{"user":"user-akumar_counsyl"},"media":"text/plain","archivalState":"live","size":5}'} headers: connection: [keep-alive] content-length: ['370'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:21:02 GMT'] + date: ['Tue, 13 Nov 2018 20:29:07 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592462010-266249] + x-request-id: [1542140947460-150698] status: {code: 200, message: OK} - request: body: !!python/unicode '{}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k6VQ09J6kfjJK43xBxp9F/destroy + uri: https://api.dnanexus.com/project-FPbY83000jZYYFg006F1yx7p/destroy response: - body: {string: !!python/unicode '{"id":"project-FP9k6VQ09J6kfjJK43xBxp9F"}'} + body: {string: !!python/unicode '{"id":"project-FPbY83000jZYYFg006F1yx7p"}'} headers: connection: [keep-alive] content-length: ['41'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:21:05 GMT'] + date: ['Tue, 13 Nov 2018 20:29:09 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592462141-203515] + x-request-id: [1542140947565-819610] status: {code: 200, message: OK} version: 1 diff --git a/stor/tests/cassettes_py2/TestCopy/test_dx_to_other_obs.yaml b/stor_dx/stor_dx/tests/cassettes_py2/TestCopy/test_dx_to_other_obs.yaml similarity index 56% rename from stor/tests/cassettes_py2/TestCopy/test_dx_to_other_obs.yaml rename to stor_dx/stor_dx/tests/cassettes_py2/TestCopy/test_dx_to_other_obs.yaml index b88369c4..0917bee6 100644 --- a/stor/tests/cassettes_py2/TestCopy/test_dx_to_other_obs.yaml +++ b/stor_dx/stor_dx/tests/cassettes_py2/TestCopy/test_dx_to_other_obs.yaml @@ -1,251 +1,251 @@ interactions: - request: - body: !!python/unicode '{"name": "TestCopy.test_dx_to_other_obs.6b1336b5"}' + body: !!python/unicode '{"name": "TestCopy.test_dx_to_other_obs.468b6b7c"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/project/new response: - body: {string: !!python/unicode '{"id":"project-FP9k6Z80BXbz10qyFXkfFBXk"}'} + body: {string: !!python/unicode '{"id":"project-FPbY85Q0Q78YYFg006F1yx7q"}'} headers: connection: [keep-alive] content-length: ['41'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:21:05 GMT'] + date: ['Tue, 13 Nov 2018 20:29:10 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592465616-663824] + x-request-id: [1542140950239-114453] status: {code: 200, message: OK} - request: body: !!python/unicode '{}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k6Z80BXbz10qyFXkfFBXk/describe + uri: https://api.dnanexus.com/project-FPbY85Q0Q78YYFg006F1yx7q/describe response: - body: {string: !!python/unicode '{"id":"project-FP9k6Z80BXbz10qyFXkfFBXk","name":"TestCopy.test_dx_to_other_obs.6b1336b5","class":"project","created":1540592465000,"modified":1540592465000,"billTo":"org-counsyl","level":"ADMINISTER","dataUsage":0,"sponsoredDataUsage":0,"region":"aws:us-east-1","summary":"","description":"","protected":false,"restricted":false,"downloadRestricted":false,"containsPHI":false,"createdBy":{"user":"user-akumar_counsyl"},"version":0,"storageCost":0,"pendingTransfer":null,"tags":[],"defaultInstanceType":"mem2_hdd2_x2","archivalState":"live","archivalProgress":null,"totalSponsoredEgressBytes":0,"consumedSponsoredEgressBytes":0,"atSpendingLimit":false}'} + body: {string: !!python/unicode '{"id":"project-FPbY85Q0Q78YYFg006F1yx7q","name":"TestCopy.test_dx_to_other_obs.468b6b7c","class":"project","created":1542140950000,"modified":1542140950000,"billTo":"org-counsyl","level":"ADMINISTER","dataUsage":0,"sponsoredDataUsage":0,"region":"aws:us-east-1","summary":"","description":"","protected":false,"restricted":false,"downloadRestricted":false,"containsPHI":false,"createdBy":{"user":"user-akumar_counsyl"},"version":0,"storageCost":0,"pendingTransfer":null,"tags":[],"defaultInstanceType":"mem2_hdd2_x2","archivalState":"live","archivalProgress":null,"totalSponsoredEgressBytes":0,"consumedSponsoredEgressBytes":0,"atSpendingLimit":false}'} headers: connection: [keep-alive] content-length: ['651'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:21:05 GMT'] + date: ['Tue, 13 Nov 2018 20:29:10 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592465781-754913] + x-request-id: [1542140950347-74130] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"parents": true, "folder": "/temp_folder"}' + body: !!python/unicode '{"folder": "/temp_folder", "parents": true}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k6Z80BXbz10qyFXkfFBXk/newFolder + uri: https://api.dnanexus.com/project-FPbY85Q0Q78YYFg006F1yx7q/newFolder response: - body: {string: !!python/unicode '{"id":"project-FP9k6Z80BXbz10qyFXkfFBXk"}'} + body: {string: !!python/unicode '{"id":"project-FPbY85Q0Q78YYFg006F1yx7q"}'} headers: connection: [keep-alive] content-length: ['41'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:21:05 GMT'] + date: ['Tue, 13 Nov 2018 20:29:10 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592465900-538192] + x-request-id: [1542140950454-400578] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"name": "folder_file.txt", "project": "project-FP9k6Z80BXbz10qyFXkfFBXk", - "folder": "/temp_folder", "nonce": "1fbb613f1ba6c8341a59fa5fdb5f4fc087818d46f752436baf6584c438979d971540592465.966241"}' + body: !!python/unicode '{"project": "project-FPbY85Q0Q78YYFg006F1yx7q", "nonce": + "6bb056a5e64d290105cf967e6fe00bb9e7e4ea5882133f6e0310064099cfb9861542140950.517003", + "folder": "/temp_folder", "name": "folder_file.txt"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/file/new response: - body: {string: !!python/unicode '{"id":"file-FP9k6ZQ0BXbkfjJK43xBxp9G"}'} + body: {string: !!python/unicode '{"id":"file-FPbY85Q0Q78gY2Kq50fVv31F"}'} headers: connection: [keep-alive] content-length: ['38'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:21:06 GMT'] + date: ['Tue, 13 Nov 2018 20:29:10 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592466014-787211] + x-request-id: [1542140950559-803877] status: {code: 200, message: OK} - request: body: !!python/unicode '{"fields": {"fileUploadParameters": true}}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k6Z80BXbz10qyFXkfFBXk/describe + uri: https://api.dnanexus.com/project-FPbY85Q0Q78YYFg006F1yx7q/describe response: - body: {string: !!python/unicode '{"id":"project-FP9k6Z80BXbz10qyFXkfFBXk","fileUploadParameters":{"maximumPartSize":5368709120,"minimumPartSize":5242880,"maximumFileSize":5497558138880,"maximumNumParts":10000,"emptyLastPartAllowed":true}}'} + body: {string: !!python/unicode '{"id":"project-FPbY85Q0Q78YYFg006F1yx7q","fileUploadParameters":{"maximumPartSize":5368709120,"minimumPartSize":5242880,"maximumFileSize":5497558138880,"maximumNumParts":10000,"emptyLastPartAllowed":true}}'} headers: connection: [keep-alive] content-length: ['205'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:21:06 GMT'] + date: ['Tue, 13 Nov 2018 20:29:10 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592466258-370383] + x-request-id: [1542140950698-605967] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"size": 4, "md5": "8d777f385d3dfec8815d20f7496026dc", - "index": 1}' + body: !!python/unicode '{"index": 1, "size": 4, "md5": "8d777f385d3dfec8815d20f7496026dc"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k6ZQ0BXbkfjJK43xBxp9G/upload + uri: https://api.dnanexus.com/file-FPbY85Q0Q78gY2Kq50fVv31F/upload response: - body: {string: !!python/unicode '{"url":"https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/af6a/file/open/file-FP9k6ZQ0BXbkfjJK43xBxp9G/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181026%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181026T222106Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=9737cccf4bacf517330b0ff86487abb3cc884385e2007c4bdde71efd1a070e3b","headers":{"host":"dnanexus-platform-upload-prod.s3.amazonaws.com","content-type":"binary/octet-stream","x-amz-server-side-encryption":"AES256","content-md5":"jXd/OF09/siBXSD3SWAm3A==","content-length":"4"},"expires":1540592586407}'} + body: {string: !!python/unicode '{"url":"https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/be29/file/open/file-FPbY85Q0Q78gY2Kq50fVv31F/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181113%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181113T202910Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=221818ac70211ab1e7ac2c6816d4c1c6228c3849f5a0adbcf28a7cab7c0152a2","headers":{"host":"dnanexus-platform-upload-prod.s3.amazonaws.com","content-type":"binary/octet-stream","x-amz-server-side-encryption":"AES256","content-md5":"jXd/OF09/siBXSD3SWAm3A==","content-length":"4"},"expires":1542141070807}'} headers: connection: [keep-alive] content-length: ['692'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:21:06 GMT'] + date: ['Tue, 13 Nov 2018 20:29:10 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592466372-714325] + x-request-id: [1542140950789-421042] status: {code: 200, message: OK} - request: body: !!python/unicode data headers: DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] content-length: ['4'] content-md5: [jXd/OF09/siBXSD3SWAm3A==] content-type: [binary/octet-stream] host: [dnanexus-platform-upload-prod.s3.amazonaws.com] x-amz-server-side-encryption: [AES256] method: PUT - uri: https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/af6a/file/open/file-FP9k6ZQ0BXbkfjJK43xBxp9G/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181026%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181026T222106Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=9737cccf4bacf517330b0ff86487abb3cc884385e2007c4bdde71efd1a070e3b + uri: https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/be29/file/open/file-FPbY85Q0Q78gY2Kq50fVv31F/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181113%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181113T202910Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=221818ac70211ab1e7ac2c6816d4c1c6228c3849f5a0adbcf28a7cab7c0152a2 response: body: {string: !!python/unicode ''} headers: content-length: ['0'] - date: ['Fri, 26 Oct 2018 22:21:07 GMT'] + date: ['Tue, 13 Nov 2018 20:29:12 GMT'] etag: ['"8d777f385d3dfec8815d20f7496026dc"'] server: [AmazonS3] - x-amz-expiration: ['expiry-date="Sat, 17 Nov 2018 00:00:00 GMT", rule-id="3weekpurge"'] - x-amz-id-2: [DRZAS5rEKcqJVpZBejFOCvZ0q/keyu8ZzSSLR/ph0MUMA4jAabm5ZqlG5zFzaIox8g/RBJQOa/o=] - x-amz-request-id: [4686B2BCB441B10E] + x-amz-expiration: ['expiry-date="Wed, 05 Dec 2018 00:00:00 GMT", rule-id="3weekpurge"'] + x-amz-id-2: [bII0vO1f8FTpd09xahAilyyG2uQMaoheh2SVIVZV/d9fpqauouFh463LuasLyayU3I3yTUmX88Y=] + x-amz-request-id: [B5BB44FBF86EFA1D] x-amz-server-side-encryption: [AES256] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"project": "project-FP9k6Z80BXbz10qyFXkfFBXk", "fields": + body: !!python/unicode '{"project": "project-FPbY85Q0Q78YYFg006F1yx7q", "fields": {"state": true}}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k6ZQ0BXbkfjJK43xBxp9G/describe + uri: https://api.dnanexus.com/file-FPbY85Q0Q78gY2Kq50fVv31F/describe response: - body: {string: !!python/unicode '{"id":"file-FP9k6ZQ0BXbkfjJK43xBxp9G","state":"open"}'} + body: {string: !!python/unicode '{"id":"file-FPbY85Q0Q78gY2Kq50fVv31F","state":"open"}'} headers: connection: [keep-alive] content-length: ['53'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:21:06 GMT'] + date: ['Tue, 13 Nov 2018 20:29:11 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592466968-439721] + x-request-id: [1542140951289-662254] status: {code: 200, message: OK} - request: body: !!python/unicode '{}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k6ZQ0BXbkfjJK43xBxp9G/close + uri: https://api.dnanexus.com/file-FPbY85Q0Q78gY2Kq50fVv31F/close response: - body: {string: !!python/unicode '{"id":"file-FP9k6ZQ0BXbkfjJK43xBxp9G"}'} + body: {string: !!python/unicode '{"id":"file-FPbY85Q0Q78gY2Kq50fVv31F"}'} headers: connection: [keep-alive] content-length: ['38'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:21:07 GMT'] + date: ['Tue, 13 Nov 2018 20:29:11 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592467083-789032] + x-request-id: [1542140951390-997525] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"project": "project-FP9k6Z80BXbz10qyFXkfFBXk", "fields": + body: !!python/unicode '{"project": "project-FPbY85Q0Q78YYFg006F1yx7q", "fields": {"state": true}}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k6ZQ0BXbkfjJK43xBxp9G/describe + uri: https://api.dnanexus.com/file-FPbY85Q0Q78gY2Kq50fVv31F/describe response: - body: {string: !!python/unicode '{"id":"file-FP9k6ZQ0BXbkfjJK43xBxp9G","state":"closing"}'} + body: {string: !!python/unicode '{"id":"file-FPbY85Q0Q78gY2Kq50fVv31F","state":"closing"}'} headers: connection: [keep-alive] content-length: ['56'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:21:07 GMT'] + date: ['Tue, 13 Nov 2018 20:29:11 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592467238-864834] + x-request-id: [1542140951504-329479] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"project": "project-FP9k6Z80BXbz10qyFXkfFBXk", "fields": + body: !!python/unicode '{"project": "project-FPbY85Q0Q78YYFg006F1yx7q", "fields": {"state": true}}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k6ZQ0BXbkfjJK43xBxp9G/describe + uri: https://api.dnanexus.com/file-FPbY85Q0Q78gY2Kq50fVv31F/describe response: - body: {string: !!python/unicode '{"id":"file-FP9k6ZQ0BXbkfjJK43xBxp9G","state":"closed"}'} + body: {string: !!python/unicode '{"id":"file-FPbY85Q0Q78gY2Kq50fVv31F","state":"closed"}'} headers: connection: [keep-alive] content-length: ['55'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:21:09 GMT'] + date: ['Tue, 13 Nov 2018 20:29:13 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592469361-396296] + x-request-id: [1542140953599-240473] status: {code: 200, message: OK} - request: body: !!python/unicode '{}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k6Z80BXbz10qyFXkfFBXk/destroy + uri: https://api.dnanexus.com/project-FPbY85Q0Q78YYFg006F1yx7q/destroy response: - body: {string: !!python/unicode '{"id":"project-FP9k6Z80BXbz10qyFXkfFBXk"}'} + body: {string: !!python/unicode '{"id":"project-FPbY85Q0Q78YYFg006F1yx7q"}'} headers: connection: [keep-alive] content-length: ['41'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:21:12 GMT'] + date: ['Tue, 13 Nov 2018 20:29:16 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592469489-341673] + x-request-id: [1542140953727-896632] status: {code: 200, message: OK} version: 1 diff --git a/stor/tests/cassettes_py2/TestCopy/test_dx_to_posix_file.yaml b/stor_dx/stor_dx/tests/cassettes_py2/TestCopy/test_dx_to_posix_file.yaml similarity index 57% rename from stor/tests/cassettes_py2/TestCopy/test_dx_to_posix_file.yaml rename to stor_dx/stor_dx/tests/cassettes_py2/TestCopy/test_dx_to_posix_file.yaml index c80a81da..ea583e7f 100644 --- a/stor/tests/cassettes_py2/TestCopy/test_dx_to_posix_file.yaml +++ b/stor_dx/stor_dx/tests/cassettes_py2/TestCopy/test_dx_to_posix_file.yaml @@ -1,328 +1,329 @@ interactions: - request: - body: !!python/unicode '{"name": "TestCopy.test_dx_to_posix_file.6419f1ff"}' + body: !!python/unicode '{"name": "TestCopy.test_dx_to_posix_file.ed9fd68b"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/project/new response: - body: {string: !!python/unicode '{"id":"project-FP9k6f008fQJ16QXPVKq170Z"}'} + body: {string: !!python/unicode '{"id":"project-FPbY87804bgBqpgZ9Vx48pXY"}'} headers: connection: [keep-alive] content-length: ['41'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:21:12 GMT'] + date: ['Tue, 13 Nov 2018 20:29:17 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592472601-880082] + x-request-id: [1542140957105-50895] status: {code: 200, message: OK} - request: body: !!python/unicode '{}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k6f008fQJ16QXPVKq170Z/describe + uri: https://api.dnanexus.com/project-FPbY87804bgBqpgZ9Vx48pXY/describe response: - body: {string: !!python/unicode '{"id":"project-FP9k6f008fQJ16QXPVKq170Z","name":"TestCopy.test_dx_to_posix_file.6419f1ff","class":"project","created":1540592472000,"modified":1540592472000,"billTo":"org-counsyl","level":"ADMINISTER","dataUsage":0,"sponsoredDataUsage":0,"region":"aws:us-east-1","summary":"","description":"","protected":false,"restricted":false,"downloadRestricted":false,"containsPHI":false,"createdBy":{"user":"user-akumar_counsyl"},"version":0,"storageCost":0,"pendingTransfer":null,"tags":[],"defaultInstanceType":"mem2_hdd2_x2","archivalState":"live","archivalProgress":null,"totalSponsoredEgressBytes":0,"consumedSponsoredEgressBytes":0,"atSpendingLimit":false}'} + body: {string: !!python/unicode '{"id":"project-FPbY87804bgBqpgZ9Vx48pXY","name":"TestCopy.test_dx_to_posix_file.ed9fd68b","class":"project","created":1542140957000,"modified":1542140957000,"billTo":"org-counsyl","level":"ADMINISTER","dataUsage":0,"sponsoredDataUsage":0,"region":"aws:us-east-1","summary":"","description":"","protected":false,"restricted":false,"downloadRestricted":false,"containsPHI":false,"createdBy":{"user":"user-akumar_counsyl"},"version":0,"storageCost":0,"pendingTransfer":null,"tags":[],"defaultInstanceType":"mem2_hdd2_x2","archivalState":"live","archivalProgress":null,"totalSponsoredEgressBytes":0,"consumedSponsoredEgressBytes":0,"atSpendingLimit":false}'} headers: connection: [keep-alive] content-length: ['652'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:21:12 GMT'] + date: ['Tue, 13 Nov 2018 20:29:17 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592472721-292437] + x-request-id: [1542140957238-708238] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"parents": true, "folder": "/temp_folder"}' + body: !!python/unicode '{"folder": "/temp_folder", "parents": true}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k6f008fQJ16QXPVKq170Z/newFolder + uri: https://api.dnanexus.com/project-FPbY87804bgBqpgZ9Vx48pXY/newFolder response: - body: {string: !!python/unicode '{"id":"project-FP9k6f008fQJ16QXPVKq170Z"}'} + body: {string: !!python/unicode '{"id":"project-FPbY87804bgBqpgZ9Vx48pXY"}'} headers: connection: [keep-alive] content-length: ['41'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:21:12 GMT'] + date: ['Tue, 13 Nov 2018 20:29:17 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592472847-184601] + x-request-id: [1542140957344-952963] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"name": "folder_file.txt", "project": "project-FP9k6f008fQJ16QXPVKq170Z", - "folder": "/temp_folder", "nonce": "8f252fc0e0d52509c9e76cc7f6ffd815d916d8b8499d02ceac26062d900ca9b71540592472.919268"}' + body: !!python/unicode '{"project": "project-FPbY87804bgBqpgZ9Vx48pXY", "nonce": + "df291c111b32d0b0149994064ce452476770aefe38442568e84d8ebd39bb75eb1542140957.392389", + "folder": "/temp_folder", "name": "folder_file.txt"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/file/new response: - body: {string: !!python/unicode '{"id":"file-FP9k6f008fQGPGFV44511f27"}'} + body: {string: !!python/unicode '{"id":"file-FPbY87804bg7B5V79xBKF004"}'} headers: connection: [keep-alive] content-length: ['38'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:21:13 GMT'] + date: ['Tue, 13 Nov 2018 20:29:17 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592472968-359562] + x-request-id: [1542140957434-525887] status: {code: 200, message: OK} - request: body: !!python/unicode '{"fields": {"fileUploadParameters": true}}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k6f008fQJ16QXPVKq170Z/describe + uri: https://api.dnanexus.com/project-FPbY87804bgBqpgZ9Vx48pXY/describe response: - body: {string: !!python/unicode '{"id":"project-FP9k6f008fQJ16QXPVKq170Z","fileUploadParameters":{"maximumPartSize":5368709120,"minimumPartSize":5242880,"maximumFileSize":5497558138880,"maximumNumParts":10000,"emptyLastPartAllowed":true}}'} + body: {string: !!python/unicode '{"id":"project-FPbY87804bgBqpgZ9Vx48pXY","fileUploadParameters":{"maximumPartSize":5368709120,"minimumPartSize":5242880,"maximumFileSize":5497558138880,"maximumNumParts":10000,"emptyLastPartAllowed":true}}'} headers: connection: [keep-alive] content-length: ['205'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:21:13 GMT'] + date: ['Tue, 13 Nov 2018 20:29:17 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592473257-132986] + x-request-id: [1542140957564-629444] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"size": 4, "md5": "8d777f385d3dfec8815d20f7496026dc", - "index": 1}' + body: !!python/unicode '{"index": 1, "size": 4, "md5": "8d777f385d3dfec8815d20f7496026dc"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k6f008fQGPGFV44511f27/upload + uri: https://api.dnanexus.com/file-FPbY87804bg7B5V79xBKF004/upload response: - body: {string: !!python/unicode '{"url":"https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/3630/file/open/file-FP9k6f008fQGPGFV44511f27/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181026%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181026T222113Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=9edf6fafc0fbbd11ba6e852bf5da8c4a9a12161288bfcefa322b64bfbb6e3356","headers":{"host":"dnanexus-platform-upload-prod.s3.amazonaws.com","content-type":"binary/octet-stream","x-amz-server-side-encryption":"AES256","content-md5":"jXd/OF09/siBXSD3SWAm3A==","content-length":"4"},"expires":1540592593402}'} + body: {string: !!python/unicode '{"url":"https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/34c7/file/open/file-FPbY87804bg7B5V79xBKF004/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181113%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181113T202917Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=55c1e15a47b527c5ee62bc2d8cc19401d64f02ac1962efe4e9ee41c556273b83","headers":{"host":"dnanexus-platform-upload-prod.s3.amazonaws.com","content-type":"binary/octet-stream","x-amz-server-side-encryption":"AES256","content-md5":"jXd/OF09/siBXSD3SWAm3A==","content-length":"4"},"expires":1542141077668}'} headers: connection: [keep-alive] content-length: ['692'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:21:13 GMT'] + date: ['Tue, 13 Nov 2018 20:29:17 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592473379-19949] + x-request-id: [1542140957654-754070] status: {code: 200, message: OK} - request: body: !!python/unicode data headers: DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] content-length: ['4'] content-md5: [jXd/OF09/siBXSD3SWAm3A==] content-type: [binary/octet-stream] host: [dnanexus-platform-upload-prod.s3.amazonaws.com] x-amz-server-side-encryption: [AES256] method: PUT - uri: https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/3630/file/open/file-FP9k6f008fQGPGFV44511f27/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181026%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181026T222113Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=9edf6fafc0fbbd11ba6e852bf5da8c4a9a12161288bfcefa322b64bfbb6e3356 + uri: https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/34c7/file/open/file-FPbY87804bg7B5V79xBKF004/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181113%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181113T202917Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=55c1e15a47b527c5ee62bc2d8cc19401d64f02ac1962efe4e9ee41c556273b83 response: body: {string: !!python/unicode ''} headers: content-length: ['0'] - date: ['Fri, 26 Oct 2018 22:21:14 GMT'] + date: ['Tue, 13 Nov 2018 20:29:18 GMT'] etag: ['"8d777f385d3dfec8815d20f7496026dc"'] server: [AmazonS3] - x-amz-expiration: ['expiry-date="Sat, 17 Nov 2018 00:00:00 GMT", rule-id="3weekpurge"'] - x-amz-id-2: [TcWuVcgJa94+Y2eDoPjfBPHqcFGniuZSS+ktAvrjNnyqQb6E4Nzk/lVcal9zBTM0U1QROk9FNHE=] - x-amz-request-id: [20ADA3AE6967202D] + x-amz-expiration: ['expiry-date="Wed, 05 Dec 2018 00:00:00 GMT", rule-id="3weekpurge"'] + x-amz-id-2: [PA/FOo85kQfy38V44/JQ03EZfFLT/iSSwiLlkPsNprJWrgOlBkOk+Ig9wjA3h0eIlI4mdsbwGCM=] + x-amz-request-id: [2890682C6A8E7540] x-amz-server-side-encryption: [AES256] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"project": "project-FP9k6f008fQJ16QXPVKq170Z", "fields": + body: !!python/unicode '{"project": "project-FPbY87804bgBqpgZ9Vx48pXY", "fields": {"state": true}}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k6f008fQGPGFV44511f27/describe + uri: https://api.dnanexus.com/file-FPbY87804bg7B5V79xBKF004/describe response: - body: {string: !!python/unicode '{"id":"file-FP9k6f008fQGPGFV44511f27","state":"open"}'} + body: {string: !!python/unicode '{"id":"file-FPbY87804bg7B5V79xBKF004","state":"open"}'} headers: connection: [keep-alive] content-length: ['53'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:21:13 GMT'] + date: ['Tue, 13 Nov 2018 20:29:18 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592473935-516195] + x-request-id: [1542140958092-610720] status: {code: 200, message: OK} - request: body: !!python/unicode '{}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k6f008fQGPGFV44511f27/close + uri: https://api.dnanexus.com/file-FPbY87804bg7B5V79xBKF004/close response: - body: {string: !!python/unicode '{"id":"file-FP9k6f008fQGPGFV44511f27"}'} + body: {string: !!python/unicode '{"id":"file-FPbY87804bg7B5V79xBKF004"}'} headers: connection: [keep-alive] content-length: ['38'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:21:14 GMT'] + date: ['Tue, 13 Nov 2018 20:29:18 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592474046-383786] + x-request-id: [1542140958188-146489] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"project": "project-FP9k6f008fQJ16QXPVKq170Z", "fields": + body: !!python/unicode '{"project": "project-FPbY87804bgBqpgZ9Vx48pXY", "fields": {"state": true}}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k6f008fQGPGFV44511f27/describe + uri: https://api.dnanexus.com/file-FPbY87804bg7B5V79xBKF004/describe response: - body: {string: !!python/unicode '{"id":"file-FP9k6f008fQGPGFV44511f27","state":"closing"}'} + body: {string: !!python/unicode '{"id":"file-FPbY87804bg7B5V79xBKF004","state":"closing"}'} headers: connection: [keep-alive] content-length: ['56'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:21:14 GMT'] + date: ['Tue, 13 Nov 2018 20:29:18 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592474188-609033] + x-request-id: [1542140958311-272032] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"project": "project-FP9k6f008fQJ16QXPVKq170Z", "fields": + body: !!python/unicode '{"project": "project-FPbY87804bgBqpgZ9Vx48pXY", "fields": {"state": true}}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k6f008fQGPGFV44511f27/describe + uri: https://api.dnanexus.com/file-FPbY87804bg7B5V79xBKF004/describe response: - body: {string: !!python/unicode '{"id":"file-FP9k6f008fQGPGFV44511f27","state":"closed"}'} + body: {string: !!python/unicode '{"id":"file-FPbY87804bg7B5V79xBKF004","state":"closed"}'} headers: connection: [keep-alive] content-length: ['55'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:21:16 GMT'] + date: ['Tue, 13 Nov 2018 20:29:20 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592476330-720809] + x-request-id: [1542140960421-160278] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"limit": 2, "name": "TestCopy.test_dx_to_posix_file.6419f1ff", + body: !!python/unicode '{"limit": 2, "name": "TestCopy.test_dx_to_posix_file.ed9fd68b", "level": "VIEW"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/system/findProjects response: - body: {string: !!python/unicode '{"results":[{"id":"project-FP9k6f008fQJ16QXPVKq170Z","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} + body: {string: !!python/unicode '{"results":[{"id":"project-FPbY87804bgBqpgZ9Vx48pXY","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} headers: connection: [keep-alive] content-length: ['147'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:21:16 GMT'] + date: ['Tue, 13 Nov 2018 20:29:20 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592476444-180786] + x-request-id: [1542140960560-136155] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"objects": [{"name": "folder_file.txt", "project": "project-FP9k6f008fQJ16QXPVKq170Z", - "batchsize": 2, "folder": "/temp_folder"}]}' + body: !!python/unicode '{"objects": [{"project": "project-FPbY87804bgBqpgZ9Vx48pXY", + "folder": "/temp_folder", "name": "folder_file.txt", "batchsize": 2}]}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/system/resolveDataObjects response: - body: {string: !!python/unicode '{"results":[[{"project":"project-FP9k6f008fQJ16QXPVKq170Z","id":"file-FP9k6f008fQGPGFV44511f27"}]]}'} + body: {string: !!python/unicode '{"results":[[{"project":"project-FPbY87804bgBqpgZ9Vx48pXY","id":"file-FPbY87804bg7B5V79xBKF004"}]]}'} headers: connection: [keep-alive] content-length: ['99'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:21:16 GMT'] + date: ['Tue, 13 Nov 2018 20:29:20 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592476590-571654] + x-request-id: [1542140960680-607030] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"project": "project-FP9k6f008fQJ16QXPVKq170Z", "defaultFields": + body: !!python/unicode '{"project": "project-FPbY87804bgBqpgZ9Vx48pXY", "defaultFields": true, "fields": {"parts": true}}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k6f008fQGPGFV44511f27/describe + uri: https://api.dnanexus.com/file-FPbY87804bg7B5V79xBKF004/describe response: - body: {string: !!python/unicode '{"id":"file-FP9k6f008fQGPGFV44511f27","project":"project-FP9k6f008fQJ16QXPVKq170Z","class":"file","sponsored":false,"name":"folder_file.txt","types":[],"state":"closed","hidden":false,"links":[],"folder":"/temp_folder","tags":[],"created":1540592472000,"modified":1540592475078,"createdBy":{"user":"user-akumar_counsyl"},"media":"text/plain","archivalState":"live","parts":{"1":{"state":"complete","size":4,"md5":"8d777f385d3dfec8815d20f7496026dc"}},"size":4}'} + body: {string: !!python/unicode '{"id":"file-FPbY87804bg7B5V79xBKF004","project":"project-FPbY87804bgBqpgZ9Vx48pXY","class":"file","sponsored":false,"name":"folder_file.txt","types":[],"state":"closed","hidden":false,"links":[],"folder":"/temp_folder","tags":[],"created":1542140957000,"modified":1542140959310,"createdBy":{"user":"user-akumar_counsyl"},"media":"text/plain","archivalState":"live","parts":{"1":{"state":"complete","size":4,"md5":"8d777f385d3dfec8815d20f7496026dc"}},"size":4}'} headers: connection: [keep-alive] content-length: ['459'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:21:16 GMT'] + date: ['Tue, 13 Nov 2018 20:29:20 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592476702-679416] + x-request-id: [1542140960777-885899] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"preauthenticated": false, "project": "project-FP9k6f008fQJ16QXPVKq170Z"}' + body: !!python/unicode '{"project": "project-FPbY87804bgBqpgZ9Vx48pXY", "preauthenticated": + false}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k6f008fQGPGFV44511f27/download + uri: https://api.dnanexus.com/file-FPbY87804bg7B5V79xBKF004/download response: - body: {string: !!python/unicode '{"url":"https://dl.dnanex.us/F/D2PRJ/file-FP9k6f008fQGPGFV44511f27/project-FP9k6f008fQJ16QXPVKq170Z","headers":{"X-Authorization":"xvikWJf5EfyoFK7ts58Kg01M23eflOAq"}}'} + body: {string: !!python/unicode '{"url":"https://dl.dnanex.us/F/D2PRJ/file-FPbY87804bg7B5V79xBKF004/project-FPbY87804bgBqpgZ9Vx48pXY","headers":{"X-Authorization":"xvikWJf5EfyoFK7ts58Kg01M23eflOAq"}}'} headers: access-control-allow-credentials: ['true'] connection: [keep-alive] content-length: ['166'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:21:16 GMT'] + date: ['Tue, 13 Nov 2018 20:29:20 GMT'] server: [nginx] set-cookie: [authorization=xvikWJf5EfyoFK7ts58Kg01M23eflOAq; Domain=dl.dnanex.us; - Path=/F/D2PRJ/file-FP9k6f008fQGPGFV44511f27/project-FP9k6f008fQJ16QXPVKq170Z; + Path=/F/D2PRJ/file-FPbY87804bg7B5V79xBKF004/project-FPbY87804bgBqpgZ9Vx48pXY; Max-Age=86400; HttpOnly; Secure] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592476825-411273] + x-request-id: [1542140960877-642364] status: {code: 200, message: OK} - request: body: !!python/unicode headers: DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] X-Authorization: [xvikWJf5EfyoFK7ts58Kg01M23eflOAq] method: GET - uri: https://dl.dnanex.us/F/D2PRJ/file-FP9k6f008fQGPGFV44511f27/project-FP9k6f008fQJ16QXPVKq170Z + uri: https://dl.dnanex.us/F/D2PRJ/file-FPbY87804bg7B5V79xBKF004/project-FPbY87804bgBqpgZ9Vx48pXY response: body: {string: !!python/unicode data} headers: @@ -333,27 +334,27 @@ interactions: content-disposition: [attachment] content-length: ['4'] content-type: [text/plain] - date: ['Fri, 26 Oct 2018 22:21:17 GMT'] - last-modified: ['Fri, 26 Oct 2018 22:21:15 GMT'] + date: ['Tue, 13 Nov 2018 20:29:21 GMT'] + last-modified: ['Tue, 13 Nov 2018 20:29:19 GMT'] status: {code: 200, message: OK} - request: body: !!python/unicode '{}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k6f008fQJ16QXPVKq170Z/destroy + uri: https://api.dnanexus.com/project-FPbY87804bgBqpgZ9Vx48pXY/destroy response: - body: {string: !!python/unicode '{"id":"project-FP9k6f008fQJ16QXPVKq170Z"}'} + body: {string: !!python/unicode '{"id":"project-FPbY87804bgBqpgZ9Vx48pXY"}'} headers: connection: [keep-alive] content-length: ['41'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:21:20 GMT'] + date: ['Tue, 13 Nov 2018 20:29:24 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592477536-250906] + x-request-id: [1542140961427-887168] status: {code: 200, message: OK} version: 1 diff --git a/stor/tests/cassettes_py2/TestCopy/test_dx_to_posix_file_folder_no_ext.yaml b/stor_dx/stor_dx/tests/cassettes_py2/TestCopy/test_dx_to_posix_file_folder_no_ext.yaml similarity index 58% rename from stor/tests/cassettes_py2/TestCopy/test_dx_to_posix_file_folder_no_ext.yaml rename to stor_dx/stor_dx/tests/cassettes_py2/TestCopy/test_dx_to_posix_file_folder_no_ext.yaml index 5ac6f371..0b9a884d 100644 --- a/stor/tests/cassettes_py2/TestCopy/test_dx_to_posix_file_folder_no_ext.yaml +++ b/stor_dx/stor_dx/tests/cassettes_py2/TestCopy/test_dx_to_posix_file_folder_no_ext.yaml @@ -1,328 +1,329 @@ interactions: - request: - body: !!python/unicode '{"name": "TestCopy.test_dx_to_posix_file_folder_no_ext.29c0ff6b"}' + body: !!python/unicode '{"name": "TestCopy.test_dx_to_posix_file_folder_no_ext.df651905"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/project/new response: - body: {string: !!python/unicode '{"id":"project-FP9k6j00k5v9fjJK43xBxp9K"}'} + body: {string: !!python/unicode '{"id":"project-FPbY89009q0gB5V79xBKF008"}'} headers: connection: [keep-alive] content-length: ['41'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:21:20 GMT'] + date: ['Tue, 13 Nov 2018 20:29:24 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592480464-444132] + x-request-id: [1542140964371-321272] status: {code: 200, message: OK} - request: body: !!python/unicode '{}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k6j00k5v9fjJK43xBxp9K/describe + uri: https://api.dnanexus.com/project-FPbY89009q0gB5V79xBKF008/describe response: - body: {string: !!python/unicode '{"id":"project-FP9k6j00k5v9fjJK43xBxp9K","name":"TestCopy.test_dx_to_posix_file_folder_no_ext.29c0ff6b","class":"project","created":1540592480000,"modified":1540592480000,"billTo":"org-counsyl","level":"ADMINISTER","dataUsage":0,"sponsoredDataUsage":0,"region":"aws:us-east-1","summary":"","description":"","protected":false,"restricted":false,"downloadRestricted":false,"containsPHI":false,"createdBy":{"user":"user-akumar_counsyl"},"version":0,"storageCost":0,"pendingTransfer":null,"tags":[],"defaultInstanceType":"mem2_hdd2_x2","archivalState":"live","archivalProgress":null,"totalSponsoredEgressBytes":0,"consumedSponsoredEgressBytes":0,"atSpendingLimit":false}'} + body: {string: !!python/unicode '{"id":"project-FPbY89009q0gB5V79xBKF008","name":"TestCopy.test_dx_to_posix_file_folder_no_ext.df651905","class":"project","created":1542140964000,"modified":1542140964000,"billTo":"org-counsyl","level":"ADMINISTER","dataUsage":0,"sponsoredDataUsage":0,"region":"aws:us-east-1","summary":"","description":"","protected":false,"restricted":false,"downloadRestricted":false,"containsPHI":false,"createdBy":{"user":"user-akumar_counsyl"},"version":0,"storageCost":0,"pendingTransfer":null,"tags":[],"defaultInstanceType":"mem2_hdd2_x2","archivalState":"live","archivalProgress":null,"totalSponsoredEgressBytes":0,"consumedSponsoredEgressBytes":0,"atSpendingLimit":false}'} headers: connection: [keep-alive] content-length: ['666'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:21:20 GMT'] + date: ['Tue, 13 Nov 2018 20:29:24 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592480628-262251] + x-request-id: [1542140964472-514630] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"parents": true, "folder": "/temp_folder"}' + body: !!python/unicode '{"folder": "/temp_folder", "parents": true}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k6j00k5v9fjJK43xBxp9K/newFolder + uri: https://api.dnanexus.com/project-FPbY89009q0gB5V79xBKF008/newFolder response: - body: {string: !!python/unicode '{"id":"project-FP9k6j00k5v9fjJK43xBxp9K"}'} + body: {string: !!python/unicode '{"id":"project-FPbY89009q0gB5V79xBKF008"}'} headers: connection: [keep-alive] content-length: ['41'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:21:20 GMT'] + date: ['Tue, 13 Nov 2018 20:29:24 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592480761-219889] + x-request-id: [1542140964579-859567] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"name": "folder_file.txt", "project": "project-FP9k6j00k5v9fjJK43xBxp9K", - "folder": "/temp_folder", "nonce": "299a8aeec3fea4abb9ef2c04b90050dbd66c887ab29325bf8d02bacc9ac5b5071540592480.831481"}' + body: !!python/unicode '{"project": "project-FPbY89009q0gB5V79xBKF008", "nonce": + "fc7726fa29729200575ae650e90131bb87c8146aac408d1b3138d3aefc05cbfc1542140964.633867", + "folder": "/temp_folder", "name": "folder_file.txt"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/file/new response: - body: {string: !!python/unicode '{"id":"file-FP9k6j00k5vP10qyFXkfFBXp"}'} + body: {string: !!python/unicode '{"id":"file-FPbY89009q0gY2Kq50fVv31J"}'} headers: connection: [keep-alive] content-length: ['38'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:21:20 GMT'] + date: ['Tue, 13 Nov 2018 20:29:24 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592480877-200451] + x-request-id: [1542140964677-889140] status: {code: 200, message: OK} - request: body: !!python/unicode '{"fields": {"fileUploadParameters": true}}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k6j00k5v9fjJK43xBxp9K/describe + uri: https://api.dnanexus.com/project-FPbY89009q0gB5V79xBKF008/describe response: - body: {string: !!python/unicode '{"id":"project-FP9k6j00k5v9fjJK43xBxp9K","fileUploadParameters":{"maximumPartSize":5368709120,"minimumPartSize":5242880,"maximumFileSize":5497558138880,"maximumNumParts":10000,"emptyLastPartAllowed":true}}'} + body: {string: !!python/unicode '{"id":"project-FPbY89009q0gB5V79xBKF008","fileUploadParameters":{"maximumPartSize":5368709120,"minimumPartSize":5242880,"maximumFileSize":5497558138880,"maximumNumParts":10000,"emptyLastPartAllowed":true}}'} headers: connection: [keep-alive] content-length: ['205'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:21:21 GMT'] + date: ['Tue, 13 Nov 2018 20:29:24 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592481079-838525] + x-request-id: [1542140964806-569562] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"size": 4, "md5": "8d777f385d3dfec8815d20f7496026dc", - "index": 1}' + body: !!python/unicode '{"index": 1, "size": 4, "md5": "8d777f385d3dfec8815d20f7496026dc"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k6j00k5vP10qyFXkfFBXp/upload + uri: https://api.dnanexus.com/file-FPbY89009q0gY2Kq50fVv31J/upload response: - body: {string: !!python/unicode '{"url":"https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/fcd4/file/open/file-FP9k6j00k5vP10qyFXkfFBXp/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181026%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181026T222121Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=dd5fc5e3f65777e7574ee97bf3a0fbc41b871ca245ac38935fa89a2e97207855","headers":{"host":"dnanexus-platform-upload-prod.s3.amazonaws.com","content-type":"binary/octet-stream","x-amz-server-side-encryption":"AES256","content-md5":"jXd/OF09/siBXSD3SWAm3A==","content-length":"4"},"expires":1540592601212}'} + body: {string: !!python/unicode '{"url":"https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/3ee8/file/open/file-FPbY89009q0gY2Kq50fVv31J/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181113%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181113T202924Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=1cbee9a4318b53c7de3fcf3f08fe608df7937058a44d970026f142cc7c254756","headers":{"host":"dnanexus-platform-upload-prod.s3.amazonaws.com","content-type":"binary/octet-stream","x-amz-server-side-encryption":"AES256","content-md5":"jXd/OF09/siBXSD3SWAm3A==","content-length":"4"},"expires":1542141084912}'} headers: connection: [keep-alive] content-length: ['692'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:21:21 GMT'] + date: ['Tue, 13 Nov 2018 20:29:24 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592481198-740856] + x-request-id: [1542140964897-534523] status: {code: 200, message: OK} - request: body: !!python/unicode data headers: DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] content-length: ['4'] content-md5: [jXd/OF09/siBXSD3SWAm3A==] content-type: [binary/octet-stream] host: [dnanexus-platform-upload-prod.s3.amazonaws.com] x-amz-server-side-encryption: [AES256] method: PUT - uri: https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/fcd4/file/open/file-FP9k6j00k5vP10qyFXkfFBXp/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181026%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181026T222121Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=dd5fc5e3f65777e7574ee97bf3a0fbc41b871ca245ac38935fa89a2e97207855 + uri: https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/3ee8/file/open/file-FPbY89009q0gY2Kq50fVv31J/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181113%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181113T202924Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=1cbee9a4318b53c7de3fcf3f08fe608df7937058a44d970026f142cc7c254756 response: body: {string: !!python/unicode ''} headers: content-length: ['0'] - date: ['Fri, 26 Oct 2018 22:21:22 GMT'] + date: ['Tue, 13 Nov 2018 20:29:26 GMT'] etag: ['"8d777f385d3dfec8815d20f7496026dc"'] server: [AmazonS3] - x-amz-expiration: ['expiry-date="Sat, 17 Nov 2018 00:00:00 GMT", rule-id="3weekpurge"'] - x-amz-id-2: [98dq36Z/Nc2GVAI9xRyXHdtsZrugzdQ5PzJEElKPeicHWvs5fxc61VtdoJc7pG8jYUGcL2xVTG0=] - x-amz-request-id: [D93C74B820A07B8C] + x-amz-expiration: ['expiry-date="Wed, 05 Dec 2018 00:00:00 GMT", rule-id="3weekpurge"'] + x-amz-id-2: [zP04IJ/v2JXaQ+z4kDacTGlt/GV7UYDKBsZK0JvxJg7rqXqOZWzVcvuIiSl4oZe7iuGB61AVKzE=] + x-amz-request-id: [02DA74E91594E96B] x-amz-server-side-encryption: [AES256] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"project": "project-FP9k6j00k5v9fjJK43xBxp9K", "fields": + body: !!python/unicode '{"project": "project-FPbY89009q0gB5V79xBKF008", "fields": {"state": true}}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k6j00k5vP10qyFXkfFBXp/describe + uri: https://api.dnanexus.com/file-FPbY89009q0gY2Kq50fVv31J/describe response: - body: {string: !!python/unicode '{"id":"file-FP9k6j00k5vP10qyFXkfFBXp","state":"open"}'} + body: {string: !!python/unicode '{"id":"file-FPbY89009q0gY2Kq50fVv31J","state":"open"}'} headers: connection: [keep-alive] content-length: ['53'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:21:21 GMT'] + date: ['Tue, 13 Nov 2018 20:29:25 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592481753-219647] + x-request-id: [1542140965345-48527] status: {code: 200, message: OK} - request: body: !!python/unicode '{}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k6j00k5vP10qyFXkfFBXp/close + uri: https://api.dnanexus.com/file-FPbY89009q0gY2Kq50fVv31J/close response: - body: {string: !!python/unicode '{"id":"file-FP9k6j00k5vP10qyFXkfFBXp"}'} + body: {string: !!python/unicode '{"id":"file-FPbY89009q0gY2Kq50fVv31J"}'} headers: connection: [keep-alive] content-length: ['38'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:21:21 GMT'] + date: ['Tue, 13 Nov 2018 20:29:25 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592481884-453980] + x-request-id: [1542140965450-101523] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"project": "project-FP9k6j00k5v9fjJK43xBxp9K", "fields": + body: !!python/unicode '{"project": "project-FPbY89009q0gB5V79xBKF008", "fields": {"state": true}}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k6j00k5vP10qyFXkfFBXp/describe + uri: https://api.dnanexus.com/file-FPbY89009q0gY2Kq50fVv31J/describe response: - body: {string: !!python/unicode '{"id":"file-FP9k6j00k5vP10qyFXkfFBXp","state":"closing"}'} + body: {string: !!python/unicode '{"id":"file-FPbY89009q0gY2Kq50fVv31J","state":"closing"}'} headers: connection: [keep-alive] content-length: ['56'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:21:22 GMT'] + date: ['Tue, 13 Nov 2018 20:29:25 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592482060-858783] + x-request-id: [1542140965575-996028] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"project": "project-FP9k6j00k5v9fjJK43xBxp9K", "fields": + body: !!python/unicode '{"project": "project-FPbY89009q0gB5V79xBKF008", "fields": {"state": true}}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k6j00k5vP10qyFXkfFBXp/describe + uri: https://api.dnanexus.com/file-FPbY89009q0gY2Kq50fVv31J/describe response: - body: {string: !!python/unicode '{"id":"file-FP9k6j00k5vP10qyFXkfFBXp","state":"closed"}'} + body: {string: !!python/unicode '{"id":"file-FPbY89009q0gY2Kq50fVv31J","state":"closed"}'} headers: connection: [keep-alive] content-length: ['55'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:21:24 GMT'] + date: ['Tue, 13 Nov 2018 20:29:27 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592484198-788869] + x-request-id: [1542140967679-258756] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"limit": 2, "name": "TestCopy.test_dx_to_posix_file_folder_no_ext.29c0ff6b", + body: !!python/unicode '{"limit": 2, "name": "TestCopy.test_dx_to_posix_file_folder_no_ext.df651905", "level": "VIEW"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/system/findProjects response: - body: {string: !!python/unicode '{"results":[{"id":"project-FP9k6j00k5v9fjJK43xBxp9K","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} + body: {string: !!python/unicode '{"results":[{"id":"project-FPbY89009q0gB5V79xBKF008","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} headers: connection: [keep-alive] content-length: ['147'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:21:24 GMT'] + date: ['Tue, 13 Nov 2018 20:29:27 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592484323-524259] + x-request-id: [1542140967825-991322] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"objects": [{"name": "folder_file.txt", "project": "project-FP9k6j00k5v9fjJK43xBxp9K", - "batchsize": 2, "folder": "/temp_folder"}]}' + body: !!python/unicode '{"objects": [{"project": "project-FPbY89009q0gB5V79xBKF008", + "folder": "/temp_folder", "name": "folder_file.txt", "batchsize": 2}]}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/system/resolveDataObjects response: - body: {string: !!python/unicode '{"results":[[{"project":"project-FP9k6j00k5v9fjJK43xBxp9K","id":"file-FP9k6j00k5vP10qyFXkfFBXp"}]]}'} + body: {string: !!python/unicode '{"results":[[{"project":"project-FPbY89009q0gB5V79xBKF008","id":"file-FPbY89009q0gY2Kq50fVv31J"}]]}'} headers: connection: [keep-alive] content-length: ['99'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:21:24 GMT'] + date: ['Tue, 13 Nov 2018 20:29:27 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592484470-325182] + x-request-id: [1542140967938-359197] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"project": "project-FP9k6j00k5v9fjJK43xBxp9K", "defaultFields": + body: !!python/unicode '{"project": "project-FPbY89009q0gB5V79xBKF008", "defaultFields": true, "fields": {"parts": true}}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k6j00k5vP10qyFXkfFBXp/describe + uri: https://api.dnanexus.com/file-FPbY89009q0gY2Kq50fVv31J/describe response: - body: {string: !!python/unicode '{"id":"file-FP9k6j00k5vP10qyFXkfFBXp","project":"project-FP9k6j00k5v9fjJK43xBxp9K","class":"file","sponsored":false,"name":"folder_file.txt","types":[],"state":"closed","hidden":false,"links":[],"folder":"/temp_folder","tags":[],"created":1540592480000,"modified":1540592482368,"createdBy":{"user":"user-akumar_counsyl"},"media":"text/plain","archivalState":"live","parts":{"1":{"state":"complete","size":4,"md5":"8d777f385d3dfec8815d20f7496026dc"}},"size":4}'} + body: {string: !!python/unicode '{"id":"file-FPbY89009q0gY2Kq50fVv31J","project":"project-FPbY89009q0gB5V79xBKF008","class":"file","sponsored":false,"name":"folder_file.txt","types":[],"state":"closed","hidden":false,"links":[],"folder":"/temp_folder","tags":[],"created":1542140964000,"modified":1542140966459,"createdBy":{"user":"user-akumar_counsyl"},"media":"text/plain","archivalState":"live","parts":{"1":{"state":"complete","size":4,"md5":"8d777f385d3dfec8815d20f7496026dc"}},"size":4}'} headers: connection: [keep-alive] content-length: ['459'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:21:24 GMT'] + date: ['Tue, 13 Nov 2018 20:29:28 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592484589-507277] + x-request-id: [1542140968031-89717] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"preauthenticated": false, "project": "project-FP9k6j00k5v9fjJK43xBxp9K"}' + body: !!python/unicode '{"project": "project-FPbY89009q0gB5V79xBKF008", "preauthenticated": + false}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k6j00k5vP10qyFXkfFBXp/download + uri: https://api.dnanexus.com/file-FPbY89009q0gY2Kq50fVv31J/download response: - body: {string: !!python/unicode '{"url":"https://dl.dnanex.us/F/D2PRJ/file-FP9k6j00k5vP10qyFXkfFBXp/project-FP9k6j00k5v9fjJK43xBxp9K","headers":{"X-Authorization":"xvikWJf5EfyoFK7ts58Kg01M23eflOAq"}}'} + body: {string: !!python/unicode '{"url":"https://dl.dnanex.us/F/D2PRJ/file-FPbY89009q0gY2Kq50fVv31J/project-FPbY89009q0gB5V79xBKF008","headers":{"X-Authorization":"xvikWJf5EfyoFK7ts58Kg01M23eflOAq"}}'} headers: access-control-allow-credentials: ['true'] connection: [keep-alive] content-length: ['166'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:21:24 GMT'] + date: ['Tue, 13 Nov 2018 20:29:28 GMT'] server: [nginx] set-cookie: [authorization=xvikWJf5EfyoFK7ts58Kg01M23eflOAq; Domain=dl.dnanex.us; - Path=/F/D2PRJ/file-FP9k6j00k5vP10qyFXkfFBXp/project-FP9k6j00k5v9fjJK43xBxp9K; + Path=/F/D2PRJ/file-FPbY89009q0gY2Kq50fVv31J/project-FPbY89009q0gB5V79xBKF008; Max-Age=86400; HttpOnly; Secure] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592484710-976732] + x-request-id: [1542140968151-887440] status: {code: 200, message: OK} - request: body: !!python/unicode headers: DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] X-Authorization: [xvikWJf5EfyoFK7ts58Kg01M23eflOAq] method: GET - uri: https://dl.dnanex.us/F/D2PRJ/file-FP9k6j00k5vP10qyFXkfFBXp/project-FP9k6j00k5v9fjJK43xBxp9K + uri: https://dl.dnanex.us/F/D2PRJ/file-FPbY89009q0gY2Kq50fVv31J/project-FPbY89009q0gB5V79xBKF008 response: body: {string: !!python/unicode data} headers: @@ -333,104 +334,105 @@ interactions: content-disposition: [attachment] content-length: ['4'] content-type: [text/plain] - date: ['Fri, 26 Oct 2018 22:21:25 GMT'] - last-modified: ['Fri, 26 Oct 2018 22:21:23 GMT'] + date: ['Tue, 13 Nov 2018 20:29:28 GMT'] + last-modified: ['Tue, 13 Nov 2018 20:29:27 GMT'] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"limit": 2, "name": "TestCopy.test_dx_to_posix_file_folder_no_ext.29c0ff6b", + body: !!python/unicode '{"limit": 2, "name": "TestCopy.test_dx_to_posix_file_folder_no_ext.df651905", "level": "VIEW"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/system/findProjects response: - body: {string: !!python/unicode '{"results":[{"id":"project-FP9k6j00k5v9fjJK43xBxp9K","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} + body: {string: !!python/unicode '{"results":[{"id":"project-FPbY89009q0gB5V79xBKF008","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} headers: connection: [keep-alive] content-length: ['147'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:21:25 GMT'] + date: ['Tue, 13 Nov 2018 20:29:28 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592485375-537057] + x-request-id: [1542140968670-577175] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"objects": [{"name": "folder_file.txt", "project": "project-FP9k6j00k5v9fjJK43xBxp9K", - "batchsize": 2, "folder": "/temp_folder"}]}' + body: !!python/unicode '{"objects": [{"project": "project-FPbY89009q0gB5V79xBKF008", + "folder": "/temp_folder", "name": "folder_file.txt", "batchsize": 2}]}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/system/resolveDataObjects response: - body: {string: !!python/unicode '{"results":[[{"project":"project-FP9k6j00k5v9fjJK43xBxp9K","id":"file-FP9k6j00k5vP10qyFXkfFBXp"}]]}'} + body: {string: !!python/unicode '{"results":[[{"project":"project-FPbY89009q0gB5V79xBKF008","id":"file-FPbY89009q0gY2Kq50fVv31J"}]]}'} headers: connection: [keep-alive] content-length: ['99'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:21:25 GMT'] + date: ['Tue, 13 Nov 2018 20:29:28 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592485519-89853] + x-request-id: [1542140968795-375528] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"project": "project-FP9k6j00k5v9fjJK43xBxp9K", "defaultFields": + body: !!python/unicode '{"project": "project-FPbY89009q0gB5V79xBKF008", "defaultFields": true, "fields": {"parts": true}}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k6j00k5vP10qyFXkfFBXp/describe + uri: https://api.dnanexus.com/file-FPbY89009q0gY2Kq50fVv31J/describe response: - body: {string: !!python/unicode '{"id":"file-FP9k6j00k5vP10qyFXkfFBXp","project":"project-FP9k6j00k5v9fjJK43xBxp9K","class":"file","sponsored":false,"name":"folder_file.txt","types":[],"state":"closed","hidden":false,"links":[],"folder":"/temp_folder","tags":[],"created":1540592480000,"modified":1540592482368,"createdBy":{"user":"user-akumar_counsyl"},"media":"text/plain","archivalState":"live","parts":{"1":{"state":"complete","size":4,"md5":"8d777f385d3dfec8815d20f7496026dc"}},"size":4}'} + body: {string: !!python/unicode '{"id":"file-FPbY89009q0gY2Kq50fVv31J","project":"project-FPbY89009q0gB5V79xBKF008","class":"file","sponsored":false,"name":"folder_file.txt","types":[],"state":"closed","hidden":false,"links":[],"folder":"/temp_folder","tags":[],"created":1542140964000,"modified":1542140966459,"createdBy":{"user":"user-akumar_counsyl"},"media":"text/plain","archivalState":"live","parts":{"1":{"state":"complete","size":4,"md5":"8d777f385d3dfec8815d20f7496026dc"}},"size":4}'} headers: connection: [keep-alive] content-length: ['459'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:21:25 GMT'] + date: ['Tue, 13 Nov 2018 20:29:28 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592485644-57293] + x-request-id: [1542140968886-890154] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"preauthenticated": false, "project": "project-FP9k6j00k5v9fjJK43xBxp9K"}' + body: !!python/unicode '{"project": "project-FPbY89009q0gB5V79xBKF008", "preauthenticated": + false}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k6j00k5vP10qyFXkfFBXp/download + uri: https://api.dnanexus.com/file-FPbY89009q0gY2Kq50fVv31J/download response: - body: {string: !!python/unicode '{"url":"https://dl.dnanex.us/F/D2PRJ/file-FP9k6j00k5vP10qyFXkfFBXp/project-FP9k6j00k5v9fjJK43xBxp9K","headers":{"X-Authorization":"xvikWJf5EfyoFK7ts58Kg01M23eflOAq"}}'} + body: {string: !!python/unicode '{"url":"https://dl.dnanex.us/F/D2PRJ/file-FPbY89009q0gY2Kq50fVv31J/project-FPbY89009q0gB5V79xBKF008","headers":{"X-Authorization":"xvikWJf5EfyoFK7ts58Kg01M23eflOAq"}}'} headers: access-control-allow-credentials: ['true'] connection: [keep-alive] content-length: ['166'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:21:25 GMT'] + date: ['Tue, 13 Nov 2018 20:29:29 GMT'] server: [nginx] set-cookie: [authorization=xvikWJf5EfyoFK7ts58Kg01M23eflOAq; Domain=dl.dnanex.us; - Path=/F/D2PRJ/file-FP9k6j00k5vP10qyFXkfFBXp/project-FP9k6j00k5v9fjJK43xBxp9K; + Path=/F/D2PRJ/file-FPbY89009q0gY2Kq50fVv31J/project-FPbY89009q0gB5V79xBKF008; Max-Age=86400; HttpOnly; Secure] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592485801-257210] + x-request-id: [1542140968988-675835] status: {code: 200, message: OK} - request: body: !!python/unicode headers: DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] X-Authorization: [xvikWJf5EfyoFK7ts58Kg01M23eflOAq] method: GET - uri: https://dl.dnanex.us/F/D2PRJ/file-FP9k6j00k5vP10qyFXkfFBXp/project-FP9k6j00k5v9fjJK43xBxp9K + uri: https://dl.dnanex.us/F/D2PRJ/file-FPbY89009q0gY2Kq50fVv31J/project-FPbY89009q0gB5V79xBKF008 response: body: {string: !!python/unicode data} headers: @@ -441,27 +443,27 @@ interactions: content-disposition: [attachment] content-length: ['4'] content-type: [text/plain] - date: ['Fri, 26 Oct 2018 22:21:25 GMT'] - last-modified: ['Fri, 26 Oct 2018 22:21:23 GMT'] + date: ['Tue, 13 Nov 2018 20:29:29 GMT'] + last-modified: ['Tue, 13 Nov 2018 20:29:27 GMT'] status: {code: 200, message: OK} - request: body: !!python/unicode '{}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k6j00k5v9fjJK43xBxp9K/destroy + uri: https://api.dnanexus.com/project-FPbY89009q0gB5V79xBKF008/destroy response: - body: {string: !!python/unicode '{"id":"project-FP9k6j00k5v9fjJK43xBxp9K"}'} + body: {string: !!python/unicode '{"id":"project-FPbY89009q0gB5V79xBKF008"}'} headers: connection: [keep-alive] content-length: ['41'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:21:29 GMT'] + date: ['Tue, 13 Nov 2018 20:29:31 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592486086-389974] + x-request-id: [1542140969224-310885] status: {code: 200, message: OK} version: 1 diff --git a/stor/tests/cassettes_py2/TestCopy/test_dx_to_posix_folder.yaml b/stor_dx/stor_dx/tests/cassettes_py2/TestCopy/test_dx_to_posix_folder.yaml similarity index 57% rename from stor/tests/cassettes_py2/TestCopy/test_dx_to_posix_folder.yaml rename to stor_dx/stor_dx/tests/cassettes_py2/TestCopy/test_dx_to_posix_folder.yaml index d77bf883..216f61c1 100644 --- a/stor/tests/cassettes_py2/TestCopy/test_dx_to_posix_folder.yaml +++ b/stor_dx/stor_dx/tests/cassettes_py2/TestCopy/test_dx_to_posix_folder.yaml @@ -1,328 +1,329 @@ interactions: - request: - body: !!python/unicode '{"name": "TestCopy.test_dx_to_posix_folder.b0d980b6"}' + body: !!python/unicode '{"name": "TestCopy.test_dx_to_posix_folder.920b664a"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/project/new response: - body: {string: !!python/unicode '{"id":"project-FP9k6p80gPb0q5P81088Yy49"}'} + body: {string: !!python/unicode '{"id":"project-FPbY8F00Yjk3YFg006F1yx80"}'} headers: connection: [keep-alive] content-length: ['41'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:21:29 GMT'] + date: ['Tue, 13 Nov 2018 20:29:32 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592489490-864381] + x-request-id: [1542140972156-390533] status: {code: 200, message: OK} - request: body: !!python/unicode '{}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k6p80gPb0q5P81088Yy49/describe + uri: https://api.dnanexus.com/project-FPbY8F00Yjk3YFg006F1yx80/describe response: - body: {string: !!python/unicode '{"id":"project-FP9k6p80gPb0q5P81088Yy49","name":"TestCopy.test_dx_to_posix_folder.b0d980b6","class":"project","created":1540592489000,"modified":1540592489000,"billTo":"org-counsyl","level":"ADMINISTER","dataUsage":0,"sponsoredDataUsage":0,"region":"aws:us-east-1","summary":"","description":"","protected":false,"restricted":false,"downloadRestricted":false,"containsPHI":false,"createdBy":{"user":"user-akumar_counsyl"},"version":0,"storageCost":0,"pendingTransfer":null,"tags":[],"defaultInstanceType":"mem2_hdd2_x2","archivalState":"live","archivalProgress":null,"totalSponsoredEgressBytes":0,"consumedSponsoredEgressBytes":0,"atSpendingLimit":false}'} + body: {string: !!python/unicode '{"id":"project-FPbY8F00Yjk3YFg006F1yx80","name":"TestCopy.test_dx_to_posix_folder.920b664a","class":"project","created":1542140972000,"modified":1542140972000,"billTo":"org-counsyl","level":"ADMINISTER","dataUsage":0,"sponsoredDataUsage":0,"region":"aws:us-east-1","summary":"","description":"","protected":false,"restricted":false,"downloadRestricted":false,"containsPHI":false,"createdBy":{"user":"user-akumar_counsyl"},"version":0,"storageCost":0,"pendingTransfer":null,"tags":[],"defaultInstanceType":"mem2_hdd2_x2","archivalState":"live","archivalProgress":null,"totalSponsoredEgressBytes":0,"consumedSponsoredEgressBytes":0,"atSpendingLimit":false}'} headers: connection: [keep-alive] content-length: ['654'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:21:29 GMT'] + date: ['Tue, 13 Nov 2018 20:29:32 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592489643-77245] + x-request-id: [1542140972251-518054] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"parents": true, "folder": "/temp_folder"}' + body: !!python/unicode '{"folder": "/temp_folder", "parents": true}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k6p80gPb0q5P81088Yy49/newFolder + uri: https://api.dnanexus.com/project-FPbY8F00Yjk3YFg006F1yx80/newFolder response: - body: {string: !!python/unicode '{"id":"project-FP9k6p80gPb0q5P81088Yy49"}'} + body: {string: !!python/unicode '{"id":"project-FPbY8F00Yjk3YFg006F1yx80"}'} headers: connection: [keep-alive] content-length: ['41'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:21:29 GMT'] + date: ['Tue, 13 Nov 2018 20:29:32 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592489784-976569] + x-request-id: [1542140972355-450670] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"name": "folder_file.txt", "project": "project-FP9k6p80gPb0q5P81088Yy49", - "folder": "/temp_folder", "nonce": "976250304b1ede2ade1365dea052d605ffaa1c375033c891102839b22810981e1540592489.939071"}' + body: !!python/unicode '{"project": "project-FPbY8F00Yjk3YFg006F1yx80", "nonce": + "87620c84dd6f33d6942e4564130cc3687504e7bf65f8928f5acb2af7b289fcaa1542140972.407337", + "folder": "/temp_folder", "name": "folder_file.txt"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/file/new response: - body: {string: !!python/unicode '{"id":"file-FP9k6p80gPbGPGFV44511f29"}'} + body: {string: !!python/unicode '{"id":"file-FPbY8F00Yjk7gpxV1j3fqjBz"}'} headers: connection: [keep-alive] content-length: ['38'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:21:30 GMT'] + date: ['Tue, 13 Nov 2018 20:29:32 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592489988-257784] + x-request-id: [1542140972450-134733] status: {code: 200, message: OK} - request: body: !!python/unicode '{"fields": {"fileUploadParameters": true}}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k6p80gPb0q5P81088Yy49/describe + uri: https://api.dnanexus.com/project-FPbY8F00Yjk3YFg006F1yx80/describe response: - body: {string: !!python/unicode '{"id":"project-FP9k6p80gPb0q5P81088Yy49","fileUploadParameters":{"maximumPartSize":5368709120,"minimumPartSize":5242880,"maximumFileSize":5497558138880,"maximumNumParts":10000,"emptyLastPartAllowed":true}}'} + body: {string: !!python/unicode '{"id":"project-FPbY8F00Yjk3YFg006F1yx80","fileUploadParameters":{"maximumPartSize":5368709120,"minimumPartSize":5242880,"maximumFileSize":5497558138880,"maximumNumParts":10000,"emptyLastPartAllowed":true}}'} headers: connection: [keep-alive] content-length: ['205'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:21:30 GMT'] + date: ['Tue, 13 Nov 2018 20:29:32 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592490224-527303] + x-request-id: [1542140972594-487387] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"size": 4, "md5": "8d777f385d3dfec8815d20f7496026dc", - "index": 1}' + body: !!python/unicode '{"index": 1, "size": 4, "md5": "8d777f385d3dfec8815d20f7496026dc"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k6p80gPbGPGFV44511f29/upload + uri: https://api.dnanexus.com/file-FPbY8F00Yjk7gpxV1j3fqjBz/upload response: - body: {string: !!python/unicode '{"url":"https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/6909/file/open/file-FP9k6p80gPbGPGFV44511f29/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181026%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181026T222130Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=68dedc244837a460c4a6189f2c0a63e6f1b3fe166a0b0a5aa14bf41036527d8e","headers":{"host":"dnanexus-platform-upload-prod.s3.amazonaws.com","content-type":"binary/octet-stream","x-amz-server-side-encryption":"AES256","content-md5":"jXd/OF09/siBXSD3SWAm3A==","content-length":"4"},"expires":1540592610457}'} + body: {string: !!python/unicode '{"url":"https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/b8ff/file/open/file-FPbY8F00Yjk7gpxV1j3fqjBz/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181113%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181113T202932Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=a0c31c51621484195cd1ab25d4766c133ad1f081913d96fd161a4e05a3877e45","headers":{"host":"dnanexus-platform-upload-prod.s3.amazonaws.com","content-type":"binary/octet-stream","x-amz-server-side-encryption":"AES256","content-md5":"jXd/OF09/siBXSD3SWAm3A==","content-length":"4"},"expires":1542141092695}'} headers: connection: [keep-alive] content-length: ['692'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:21:30 GMT'] + date: ['Tue, 13 Nov 2018 20:29:32 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592490381-565933] + x-request-id: [1542140972685-21226] status: {code: 200, message: OK} - request: body: !!python/unicode data headers: DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] content-length: ['4'] content-md5: [jXd/OF09/siBXSD3SWAm3A==] content-type: [binary/octet-stream] host: [dnanexus-platform-upload-prod.s3.amazonaws.com] x-amz-server-side-encryption: [AES256] method: PUT - uri: https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/6909/file/open/file-FP9k6p80gPbGPGFV44511f29/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181026%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181026T222130Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=68dedc244837a460c4a6189f2c0a63e6f1b3fe166a0b0a5aa14bf41036527d8e + uri: https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/b8ff/file/open/file-FPbY8F00Yjk7gpxV1j3fqjBz/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181113%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181113T202932Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=a0c31c51621484195cd1ab25d4766c133ad1f081913d96fd161a4e05a3877e45 response: body: {string: !!python/unicode ''} headers: content-length: ['0'] - date: ['Fri, 26 Oct 2018 22:21:31 GMT'] + date: ['Tue, 13 Nov 2018 20:29:34 GMT'] etag: ['"8d777f385d3dfec8815d20f7496026dc"'] server: [AmazonS3] - x-amz-expiration: ['expiry-date="Sat, 17 Nov 2018 00:00:00 GMT", rule-id="3weekpurge"'] - x-amz-id-2: [v9AOyvFdAMhFAIMheVT7V9UDB1u9ZjzX32rIu2SJiI7NidvQBRtrfBKajqYwmBKCQyallRFWHig=] - x-amz-request-id: [2F8F5764860CF6FF] + x-amz-expiration: ['expiry-date="Wed, 05 Dec 2018 00:00:00 GMT", rule-id="3weekpurge"'] + x-amz-id-2: [7NLnR5r0Le2I8Vqstz9zIiUtlF415B8+xRM016H528nkQgjWbLaeqxUTF/nQr/fxfH72N/x/2Po=] + x-amz-request-id: [4FB1FE086F564AA1] x-amz-server-side-encryption: [AES256] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"project": "project-FP9k6p80gPb0q5P81088Yy49", "fields": + body: !!python/unicode '{"project": "project-FPbY8F00Yjk3YFg006F1yx80", "fields": {"state": true}}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k6p80gPbGPGFV44511f29/describe + uri: https://api.dnanexus.com/file-FPbY8F00Yjk7gpxV1j3fqjBz/describe response: - body: {string: !!python/unicode '{"id":"file-FP9k6p80gPbGPGFV44511f29","state":"open"}'} + body: {string: !!python/unicode '{"id":"file-FPbY8F00Yjk7gpxV1j3fqjBz","state":"open"}'} headers: connection: [keep-alive] content-length: ['53'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:21:31 GMT'] + date: ['Tue, 13 Nov 2018 20:29:33 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592491194-4434] + x-request-id: [1542140973189-939228] status: {code: 200, message: OK} - request: body: !!python/unicode '{}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k6p80gPbGPGFV44511f29/close + uri: https://api.dnanexus.com/file-FPbY8F00Yjk7gpxV1j3fqjBz/close response: - body: {string: !!python/unicode '{"id":"file-FP9k6p80gPbGPGFV44511f29"}'} + body: {string: !!python/unicode '{"id":"file-FPbY8F00Yjk7gpxV1j3fqjBz"}'} headers: connection: [keep-alive] content-length: ['38'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:21:31 GMT'] + date: ['Tue, 13 Nov 2018 20:29:33 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592491340-32793] + x-request-id: [1542140973277-194480] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"project": "project-FP9k6p80gPb0q5P81088Yy49", "fields": + body: !!python/unicode '{"project": "project-FPbY8F00Yjk3YFg006F1yx80", "fields": {"state": true}}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k6p80gPbGPGFV44511f29/describe + uri: https://api.dnanexus.com/file-FPbY8F00Yjk7gpxV1j3fqjBz/describe response: - body: {string: !!python/unicode '{"id":"file-FP9k6p80gPbGPGFV44511f29","state":"closing"}'} + body: {string: !!python/unicode '{"id":"file-FPbY8F00Yjk7gpxV1j3fqjBz","state":"closing"}'} headers: connection: [keep-alive] content-length: ['56'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:21:31 GMT'] + date: ['Tue, 13 Nov 2018 20:29:33 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592491518-256950] + x-request-id: [1542140973391-928563] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"project": "project-FP9k6p80gPb0q5P81088Yy49", "fields": + body: !!python/unicode '{"project": "project-FPbY8F00Yjk3YFg006F1yx80", "fields": {"state": true}}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k6p80gPbGPGFV44511f29/describe + uri: https://api.dnanexus.com/file-FPbY8F00Yjk7gpxV1j3fqjBz/describe response: - body: {string: !!python/unicode '{"id":"file-FP9k6p80gPbGPGFV44511f29","state":"closed"}'} + body: {string: !!python/unicode '{"id":"file-FPbY8F00Yjk7gpxV1j3fqjBz","state":"closed"}'} headers: connection: [keep-alive] content-length: ['55'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:21:33 GMT'] + date: ['Tue, 13 Nov 2018 20:29:35 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592493689-190797] + x-request-id: [1542140975485-901806] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"limit": 2, "name": "TestCopy.test_dx_to_posix_folder.b0d980b6", + body: !!python/unicode '{"limit": 2, "name": "TestCopy.test_dx_to_posix_folder.920b664a", "level": "VIEW"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/system/findProjects response: - body: {string: !!python/unicode '{"results":[{"id":"project-FP9k6p80gPb0q5P81088Yy49","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} + body: {string: !!python/unicode '{"results":[{"id":"project-FPbY8F00Yjk3YFg006F1yx80","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} headers: connection: [keep-alive] content-length: ['147'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:21:34 GMT'] + date: ['Tue, 13 Nov 2018 20:29:35 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592493899-194252] + x-request-id: [1542140975634-643183] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"objects": [{"name": "folder_file.txt", "project": "project-FP9k6p80gPb0q5P81088Yy49", - "batchsize": 2, "folder": "/temp_folder"}]}' + body: !!python/unicode '{"objects": [{"project": "project-FPbY8F00Yjk3YFg006F1yx80", + "folder": "/temp_folder", "name": "folder_file.txt", "batchsize": 2}]}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/system/resolveDataObjects response: - body: {string: !!python/unicode '{"results":[[{"project":"project-FP9k6p80gPb0q5P81088Yy49","id":"file-FP9k6p80gPbGPGFV44511f29"}]]}'} + body: {string: !!python/unicode '{"results":[[{"project":"project-FPbY8F00Yjk3YFg006F1yx80","id":"file-FPbY8F00Yjk7gpxV1j3fqjBz"}]]}'} headers: connection: [keep-alive] content-length: ['99'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:21:34 GMT'] + date: ['Tue, 13 Nov 2018 20:29:35 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592494162-790930] + x-request-id: [1542140975745-237995] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"project": "project-FP9k6p80gPb0q5P81088Yy49", "defaultFields": + body: !!python/unicode '{"project": "project-FPbY8F00Yjk3YFg006F1yx80", "defaultFields": true, "fields": {"parts": true}}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k6p80gPbGPGFV44511f29/describe + uri: https://api.dnanexus.com/file-FPbY8F00Yjk7gpxV1j3fqjBz/describe response: - body: {string: !!python/unicode '{"id":"file-FP9k6p80gPbGPGFV44511f29","project":"project-FP9k6p80gPb0q5P81088Yy49","class":"file","sponsored":false,"name":"folder_file.txt","types":[],"state":"closed","hidden":false,"links":[],"folder":"/temp_folder","tags":[],"created":1540592489000,"modified":1540592491952,"createdBy":{"user":"user-akumar_counsyl"},"media":"text/plain","archivalState":"live","parts":{"1":{"state":"complete","size":4,"md5":"8d777f385d3dfec8815d20f7496026dc"}},"size":4}'} + body: {string: !!python/unicode '{"id":"file-FPbY8F00Yjk7gpxV1j3fqjBz","project":"project-FPbY8F00Yjk3YFg006F1yx80","class":"file","sponsored":false,"name":"folder_file.txt","types":[],"state":"closed","hidden":false,"links":[],"folder":"/temp_folder","tags":[],"created":1542140972000,"modified":1542140974461,"createdBy":{"user":"user-akumar_counsyl"},"media":"text/plain","archivalState":"live","parts":{"1":{"state":"complete","size":4,"md5":"8d777f385d3dfec8815d20f7496026dc"}},"size":4}'} headers: connection: [keep-alive] content-length: ['459'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:21:34 GMT'] + date: ['Tue, 13 Nov 2018 20:29:35 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592494284-958054] + x-request-id: [1542140975834-479909] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"preauthenticated": false, "project": "project-FP9k6p80gPb0q5P81088Yy49"}' + body: !!python/unicode '{"project": "project-FPbY8F00Yjk3YFg006F1yx80", "preauthenticated": + false}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k6p80gPbGPGFV44511f29/download + uri: https://api.dnanexus.com/file-FPbY8F00Yjk7gpxV1j3fqjBz/download response: - body: {string: !!python/unicode '{"url":"https://dl.dnanex.us/F/D2PRJ/file-FP9k6p80gPbGPGFV44511f29/project-FP9k6p80gPb0q5P81088Yy49","headers":{"X-Authorization":"xvikWJf5EfyoFK7ts58Kg01M23eflOAq"}}'} + body: {string: !!python/unicode '{"url":"https://dl.dnanex.us/F/D2PRJ/file-FPbY8F00Yjk7gpxV1j3fqjBz/project-FPbY8F00Yjk3YFg006F1yx80","headers":{"X-Authorization":"xvikWJf5EfyoFK7ts58Kg01M23eflOAq"}}'} headers: access-control-allow-credentials: ['true'] connection: [keep-alive] content-length: ['166'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:21:34 GMT'] + date: ['Tue, 13 Nov 2018 20:29:35 GMT'] server: [nginx] set-cookie: [authorization=xvikWJf5EfyoFK7ts58Kg01M23eflOAq; Domain=dl.dnanex.us; - Path=/F/D2PRJ/file-FP9k6p80gPbGPGFV44511f29/project-FP9k6p80gPb0q5P81088Yy49; + Path=/F/D2PRJ/file-FPbY8F00Yjk7gpxV1j3fqjBz/project-FPbY8F00Yjk3YFg006F1yx80; Max-Age=86400; HttpOnly; Secure] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592494502-78673] + x-request-id: [1542140975931-123919] status: {code: 200, message: OK} - request: body: !!python/unicode headers: DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] X-Authorization: [xvikWJf5EfyoFK7ts58Kg01M23eflOAq] method: GET - uri: https://dl.dnanex.us/F/D2PRJ/file-FP9k6p80gPbGPGFV44511f29/project-FP9k6p80gPb0q5P81088Yy49 + uri: https://dl.dnanex.us/F/D2PRJ/file-FPbY8F00Yjk7gpxV1j3fqjBz/project-FPbY8F00Yjk3YFg006F1yx80 response: body: {string: !!python/unicode data} headers: @@ -333,27 +334,27 @@ interactions: content-disposition: [attachment] content-length: ['4'] content-type: [text/plain] - date: ['Fri, 26 Oct 2018 22:21:35 GMT'] - last-modified: ['Fri, 26 Oct 2018 22:21:32 GMT'] + date: ['Tue, 13 Nov 2018 20:29:36 GMT'] + last-modified: ['Tue, 13 Nov 2018 20:29:35 GMT'] status: {code: 200, message: OK} - request: body: !!python/unicode '{}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k6p80gPb0q5P81088Yy49/destroy + uri: https://api.dnanexus.com/project-FPbY8F00Yjk3YFg006F1yx80/destroy response: - body: {string: !!python/unicode '{"id":"project-FP9k6p80gPb0q5P81088Yy49"}'} + body: {string: !!python/unicode '{"id":"project-FPbY8F00Yjk3YFg006F1yx80"}'} headers: connection: [keep-alive] content-length: ['41'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:21:37 GMT'] + date: ['Tue, 13 Nov 2018 20:29:39 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592495109-723631] + x-request-id: [1542140976426-386862] status: {code: 200, message: OK} version: 1 diff --git a/stor/tests/cassettes_py2/TestCopy/test_dx_to_same_dx_pass.yaml b/stor_dx/stor_dx/tests/cassettes_py2/TestCopy/test_dx_to_same_dx_pass.yaml similarity index 57% rename from stor/tests/cassettes_py2/TestCopy/test_dx_to_same_dx_pass.yaml rename to stor_dx/stor_dx/tests/cassettes_py2/TestCopy/test_dx_to_same_dx_pass.yaml index 8b35994c..e465ff0b 100644 --- a/stor/tests/cassettes_py2/TestCopy/test_dx_to_same_dx_pass.yaml +++ b/stor_dx/stor_dx/tests/cassettes_py2/TestCopy/test_dx_to_same_dx_pass.yaml @@ -1,354 +1,354 @@ interactions: - request: - body: !!python/unicode '{"name": "TestCopy.test_dx_to_same_dx_pass.ab103b60"}' + body: !!python/unicode '{"name": "TestCopy.test_dx_to_same_dx_pass.25b60b71"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/project/new response: - body: {string: !!python/unicode '{"id":"project-FP9k6vQ0K244Q3zV44ZYQ31P"}'} + body: {string: !!python/unicode '{"id":"project-FPbY8Gj0FbpfKjvF1pF3yv39"}'} headers: connection: [keep-alive] content-length: ['41'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:21:38 GMT'] + date: ['Tue, 13 Nov 2018 20:29:39 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592498273-533972] + x-request-id: [1542140979933-586897] status: {code: 200, message: OK} - request: body: !!python/unicode '{}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k6vQ0K244Q3zV44ZYQ31P/describe + uri: https://api.dnanexus.com/project-FPbY8Gj0FbpfKjvF1pF3yv39/describe response: - body: {string: !!python/unicode '{"id":"project-FP9k6vQ0K244Q3zV44ZYQ31P","name":"TestCopy.test_dx_to_same_dx_pass.ab103b60","class":"project","created":1540592498000,"modified":1540592498000,"billTo":"org-counsyl","level":"ADMINISTER","dataUsage":0,"sponsoredDataUsage":0,"region":"aws:us-east-1","summary":"","description":"","protected":false,"restricted":false,"downloadRestricted":false,"containsPHI":false,"createdBy":{"user":"user-akumar_counsyl"},"version":0,"storageCost":0,"pendingTransfer":null,"tags":[],"defaultInstanceType":"mem2_hdd2_x2","archivalState":"live","archivalProgress":null,"totalSponsoredEgressBytes":0,"consumedSponsoredEgressBytes":0,"atSpendingLimit":false}'} + body: {string: !!python/unicode '{"id":"project-FPbY8Gj0FbpfKjvF1pF3yv39","name":"TestCopy.test_dx_to_same_dx_pass.25b60b71","class":"project","created":1542140979000,"modified":1542140979000,"billTo":"org-counsyl","level":"ADMINISTER","dataUsage":0,"sponsoredDataUsage":0,"region":"aws:us-east-1","summary":"","description":"","protected":false,"restricted":false,"downloadRestricted":false,"containsPHI":false,"createdBy":{"user":"user-akumar_counsyl"},"version":0,"storageCost":0,"pendingTransfer":null,"tags":[],"defaultInstanceType":"mem2_hdd2_x2","archivalState":"live","archivalProgress":null,"totalSponsoredEgressBytes":0,"consumedSponsoredEgressBytes":0,"atSpendingLimit":false}'} headers: connection: [keep-alive] content-length: ['654'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:21:38 GMT'] + date: ['Tue, 13 Nov 2018 20:29:40 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592498476-735449] + x-request-id: [1542140980041-122539] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"parents": true, "folder": "/temp_folder"}' + body: !!python/unicode '{"folder": "/temp_folder", "parents": true}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k6vQ0K244Q3zV44ZYQ31P/newFolder + uri: https://api.dnanexus.com/project-FPbY8Gj0FbpfKjvF1pF3yv39/newFolder response: - body: {string: !!python/unicode '{"id":"project-FP9k6vQ0K244Q3zV44ZYQ31P"}'} + body: {string: !!python/unicode '{"id":"project-FPbY8Gj0FbpfKjvF1pF3yv39"}'} headers: connection: [keep-alive] content-length: ['41'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:21:38 GMT'] + date: ['Tue, 13 Nov 2018 20:29:40 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592498731-264231] + x-request-id: [1542140980278-298715] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"name": "folder_file.txt", "project": "project-FP9k6vQ0K244Q3zV44ZYQ31P", - "folder": "/temp_folder", "nonce": "65a528c36bbb91d4addbe972f805fbf73d2b6c3d94a97bf622fba7eac038e0c41540592498.883086"}' + body: !!python/unicode '{"project": "project-FPbY8Gj0FbpfKjvF1pF3yv39", "nonce": + "f001d53e23ee3d17853460b8269772f8c729a60048694bb2e9f7812e5fc4edd91542140980.499035", + "folder": "/temp_folder", "name": "folder_file.txt"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/file/new response: - body: {string: !!python/unicode '{"id":"file-FP9k6vQ0K240q5P81088Yy4B"}'} + body: {string: !!python/unicode '{"id":"file-FPbY8J00FbpggpxV1j3fqjF1"}'} headers: connection: [keep-alive] content-length: ['38'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:21:39 GMT'] + date: ['Tue, 13 Nov 2018 20:29:40 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592498939-199486] + x-request-id: [1542140980542-230926] status: {code: 200, message: OK} - request: body: !!python/unicode '{"fields": {"fileUploadParameters": true}}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k6vQ0K244Q3zV44ZYQ31P/describe + uri: https://api.dnanexus.com/project-FPbY8Gj0FbpfKjvF1pF3yv39/describe response: - body: {string: !!python/unicode '{"id":"project-FP9k6vQ0K244Q3zV44ZYQ31P","fileUploadParameters":{"maximumPartSize":5368709120,"minimumPartSize":5242880,"maximumFileSize":5497558138880,"maximumNumParts":10000,"emptyLastPartAllowed":true}}'} + body: {string: !!python/unicode '{"id":"project-FPbY8Gj0FbpfKjvF1pF3yv39","fileUploadParameters":{"maximumPartSize":5368709120,"minimumPartSize":5242880,"maximumFileSize":5497558138880,"maximumNumParts":10000,"emptyLastPartAllowed":true}}'} headers: connection: [keep-alive] content-length: ['205'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:21:39 GMT'] + date: ['Tue, 13 Nov 2018 20:29:40 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592499304-643485] + x-request-id: [1542140980858-741788] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"size": 4, "md5": "8d777f385d3dfec8815d20f7496026dc", - "index": 1}' + body: !!python/unicode '{"index": 1, "size": 4, "md5": "8d777f385d3dfec8815d20f7496026dc"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k6vQ0K240q5P81088Yy4B/upload + uri: https://api.dnanexus.com/file-FPbY8J00FbpggpxV1j3fqjF1/upload response: - body: {string: !!python/unicode '{"url":"https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/a3e1/file/open/file-FP9k6vQ0K240q5P81088Yy4B/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181026%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181026T222139Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=a81e31638fd562f3ec732c0a2097a3883cdab628bc10d6fed74f1a98d329131c","headers":{"host":"dnanexus-platform-upload-prod.s3.amazonaws.com","content-type":"binary/octet-stream","x-amz-server-side-encryption":"AES256","content-md5":"jXd/OF09/siBXSD3SWAm3A==","content-length":"4"},"expires":1540592619528}'} + body: {string: !!python/unicode '{"url":"https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/bae6/file/open/file-FPbY8J00FbpggpxV1j3fqjF1/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181113%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181113T202941Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=eddaaabaf237a1f938e51e76516ce41e552959c1f66e441a54037319c4bdb2a1","headers":{"host":"dnanexus-platform-upload-prod.s3.amazonaws.com","content-type":"binary/octet-stream","x-amz-server-side-encryption":"AES256","content-md5":"jXd/OF09/siBXSD3SWAm3A==","content-length":"4"},"expires":1542141101054}'} headers: connection: [keep-alive] content-length: ['692'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:21:39 GMT'] + date: ['Tue, 13 Nov 2018 20:29:41 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592499491-958549] + x-request-id: [1542140981035-66463] status: {code: 200, message: OK} - request: body: !!python/unicode data headers: DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] content-length: ['4'] content-md5: [jXd/OF09/siBXSD3SWAm3A==] content-type: [binary/octet-stream] host: [dnanexus-platform-upload-prod.s3.amazonaws.com] x-amz-server-side-encryption: [AES256] method: PUT - uri: https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/a3e1/file/open/file-FP9k6vQ0K240q5P81088Yy4B/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181026%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181026T222139Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=a81e31638fd562f3ec732c0a2097a3883cdab628bc10d6fed74f1a98d329131c + uri: https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/bae6/file/open/file-FPbY8J00FbpggpxV1j3fqjF1/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181113%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181113T202941Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=eddaaabaf237a1f938e51e76516ce41e552959c1f66e441a54037319c4bdb2a1 response: body: {string: !!python/unicode ''} headers: content-length: ['0'] - date: ['Fri, 26 Oct 2018 22:21:40 GMT'] + date: ['Tue, 13 Nov 2018 20:29:42 GMT'] etag: ['"8d777f385d3dfec8815d20f7496026dc"'] server: [AmazonS3] - x-amz-expiration: ['expiry-date="Sat, 17 Nov 2018 00:00:00 GMT", rule-id="3weekpurge"'] - x-amz-id-2: [esRnHmVwZj0h9IBgLhKbp6pApEbp9kuU4mXRnDQrgfKral9tkzjppBJWPCwTn9kNxlhJ5jJFJE0=] - x-amz-request-id: [695BD0B7E590974B] + x-amz-expiration: ['expiry-date="Wed, 05 Dec 2018 00:00:00 GMT", rule-id="3weekpurge"'] + x-amz-id-2: [EOh+F+NkDi01EImX6BiWK+uP6yuaoBPp7wIw4DtqJlBUZZxCRsNeygMRHaNQFM0k0HJ3mmcR/qM=] + x-amz-request-id: [5F9BAB268D3532C3] x-amz-server-side-encryption: [AES256] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"project": "project-FP9k6vQ0K244Q3zV44ZYQ31P", "fields": + body: !!python/unicode '{"project": "project-FPbY8Gj0FbpfKjvF1pF3yv39", "fields": {"state": true}}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k6vQ0K240q5P81088Yy4B/describe + uri: https://api.dnanexus.com/file-FPbY8J00FbpggpxV1j3fqjF1/describe response: - body: {string: !!python/unicode '{"id":"file-FP9k6vQ0K240q5P81088Yy4B","state":"open"}'} + body: {string: !!python/unicode '{"id":"file-FPbY8J00FbpggpxV1j3fqjF1","state":"open"}'} headers: connection: [keep-alive] content-length: ['53'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:21:40 GMT'] + date: ['Tue, 13 Nov 2018 20:29:42 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592500107-826971] + x-request-id: [1542140982255-523731] status: {code: 200, message: OK} - request: body: !!python/unicode '{}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k6vQ0K240q5P81088Yy4B/close + uri: https://api.dnanexus.com/file-FPbY8J00FbpggpxV1j3fqjF1/close response: - body: {string: !!python/unicode '{"id":"file-FP9k6vQ0K240q5P81088Yy4B"}'} + body: {string: !!python/unicode '{"id":"file-FPbY8J00FbpggpxV1j3fqjF1"}'} headers: connection: [keep-alive] content-length: ['38'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:21:40 GMT'] + date: ['Tue, 13 Nov 2018 20:29:42 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592500284-795282] + x-request-id: [1542140982441-163137] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"project": "project-FP9k6vQ0K244Q3zV44ZYQ31P", "fields": + body: !!python/unicode '{"project": "project-FPbY8Gj0FbpfKjvF1pF3yv39", "fields": {"state": true}}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k6vQ0K240q5P81088Yy4B/describe + uri: https://api.dnanexus.com/file-FPbY8J00FbpggpxV1j3fqjF1/describe response: - body: {string: !!python/unicode '{"id":"file-FP9k6vQ0K240q5P81088Yy4B","state":"closing"}'} + body: {string: !!python/unicode '{"id":"file-FPbY8J00FbpggpxV1j3fqjF1","state":"closing"}'} headers: connection: [keep-alive] content-length: ['56'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:21:40 GMT'] + date: ['Tue, 13 Nov 2018 20:29:42 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592500606-746360] + x-request-id: [1542140982634-614587] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"project": "project-FP9k6vQ0K244Q3zV44ZYQ31P", "fields": + body: !!python/unicode '{"project": "project-FPbY8Gj0FbpfKjvF1pF3yv39", "fields": {"state": true}}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k6vQ0K240q5P81088Yy4B/describe + uri: https://api.dnanexus.com/file-FPbY8J00FbpggpxV1j3fqjF1/describe response: - body: {string: !!python/unicode '{"id":"file-FP9k6vQ0K240q5P81088Yy4B","state":"closed"}'} + body: {string: !!python/unicode '{"id":"file-FPbY8J00FbpggpxV1j3fqjF1","state":"closed"}'} headers: connection: [keep-alive] content-length: ['55'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:21:42 GMT'] + date: ['Tue, 13 Nov 2018 20:29:44 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592502829-165542] + x-request-id: [1542140984811-779616] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"limit": 2, "name": "TestCopy.test_dx_to_same_dx_pass.ab103b60", + body: !!python/unicode '{"limit": 2, "name": "TestCopy.test_dx_to_same_dx_pass.25b60b71", "level": "VIEW"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/system/findProjects response: - body: {string: !!python/unicode '{"results":[{"id":"project-FP9k6vQ0K244Q3zV44ZYQ31P","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} + body: {string: !!python/unicode '{"results":[{"id":"project-FPbY8Gj0FbpfKjvF1pF3yv39","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} headers: connection: [keep-alive] content-length: ['147'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:21:43 GMT'] + date: ['Tue, 13 Nov 2018 20:29:44 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592503031-330986] + x-request-id: [1542140984929-1544] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"objects": [{"name": "folder_file.txt", "project": "project-FP9k6vQ0K244Q3zV44ZYQ31P", - "batchsize": 2, "folder": "/temp_folder"}]}' + body: !!python/unicode '{"objects": [{"project": "project-FPbY8Gj0FbpfKjvF1pF3yv39", + "folder": "/temp_folder", "name": "folder_file.txt", "batchsize": 2}]}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/system/resolveDataObjects response: - body: {string: !!python/unicode '{"results":[[{"project":"project-FP9k6vQ0K244Q3zV44ZYQ31P","id":"file-FP9k6vQ0K240q5P81088Yy4B"}]]}'} + body: {string: !!python/unicode '{"results":[[{"project":"project-FPbY8Gj0FbpfKjvF1pF3yv39","id":"file-FPbY8J00FbpggpxV1j3fqjF1"}]]}'} headers: connection: [keep-alive] content-length: ['99'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:21:43 GMT'] + date: ['Tue, 13 Nov 2018 20:29:45 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592503493-714068] + x-request-id: [1542140985065-17325] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"project": "project-FP9k6vQ0K244Q3zV44ZYQ31P"}' + body: !!python/unicode '{"project": "project-FPbY8Gj0FbpfKjvF1pF3yv39"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k6vQ0K240q5P81088Yy4B/describe + uri: https://api.dnanexus.com/file-FPbY8J00FbpggpxV1j3fqjF1/describe response: - body: {string: !!python/unicode '{"id":"file-FP9k6vQ0K240q5P81088Yy4B","project":"project-FP9k6vQ0K244Q3zV44ZYQ31P","class":"file","sponsored":false,"name":"folder_file.txt","types":[],"state":"closed","hidden":false,"links":[],"folder":"/temp_folder","tags":[],"created":1540592498000,"modified":1540592501045,"createdBy":{"user":"user-akumar_counsyl"},"media":"text/plain","archivalState":"live","size":4}'} + body: {string: !!python/unicode '{"id":"file-FPbY8J00FbpggpxV1j3fqjF1","project":"project-FPbY8Gj0FbpfKjvF1pF3yv39","class":"file","sponsored":false,"name":"folder_file.txt","types":[],"state":"closed","hidden":false,"links":[],"folder":"/temp_folder","tags":[],"created":1542140980000,"modified":1542140983503,"createdBy":{"user":"user-akumar_counsyl"},"media":"text/plain","archivalState":"live","size":4}'} headers: connection: [keep-alive] content-length: ['374'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:21:43 GMT'] + date: ['Tue, 13 Nov 2018 20:29:45 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592503660-272437] + x-request-id: [1542140985157-440203] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"limit": 2, "name": "TestCopy.test_dx_to_same_dx_pass.ab103b60", + body: !!python/unicode '{"limit": 2, "name": "TestCopy.test_dx_to_same_dx_pass.25b60b71", "level": "VIEW"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/system/findProjects response: - body: {string: !!python/unicode '{"results":[{"id":"project-FP9k6vQ0K244Q3zV44ZYQ31P","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} + body: {string: !!python/unicode '{"results":[{"id":"project-FPbY8Gj0FbpfKjvF1pF3yv39","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} headers: connection: [keep-alive] content-length: ['147'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:21:44 GMT'] + date: ['Tue, 13 Nov 2018 20:29:45 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592503852-614587] + x-request-id: [1542140985277-670033] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"project": "project-FP9k6vQ0K244Q3zV44ZYQ31P"}' + body: !!python/unicode '{"project": "project-FPbY8Gj0FbpfKjvF1pF3yv39"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k6vQ0K240q5P81088Yy4B/describe + uri: https://api.dnanexus.com/file-FPbY8J00FbpggpxV1j3fqjF1/describe response: - body: {string: !!python/unicode '{"id":"file-FP9k6vQ0K240q5P81088Yy4B","project":"project-FP9k6vQ0K244Q3zV44ZYQ31P","class":"file","sponsored":false,"name":"folder_file.txt","types":[],"state":"closed","hidden":false,"links":[],"folder":"/temp_folder","tags":[],"created":1540592498000,"modified":1540592501045,"createdBy":{"user":"user-akumar_counsyl"},"media":"text/plain","archivalState":"live","size":4}'} + body: {string: !!python/unicode '{"id":"file-FPbY8J00FbpggpxV1j3fqjF1","project":"project-FPbY8Gj0FbpfKjvF1pF3yv39","class":"file","sponsored":false,"name":"folder_file.txt","types":[],"state":"closed","hidden":false,"links":[],"folder":"/temp_folder","tags":[],"created":1542140980000,"modified":1542140983503,"createdBy":{"user":"user-akumar_counsyl"},"media":"text/plain","archivalState":"live","size":4}'} headers: connection: [keep-alive] content-length: ['374'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:21:44 GMT'] + date: ['Tue, 13 Nov 2018 20:29:45 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592504106-85973] + x-request-id: [1542140985438-79243] status: {code: 200, message: OK} - request: body: !!python/unicode '{}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k6vQ0K244Q3zV44ZYQ31P/destroy + uri: https://api.dnanexus.com/project-FPbY8Gj0FbpfKjvF1pF3yv39/destroy response: - body: {string: !!python/unicode '{"id":"project-FP9k6vQ0K244Q3zV44ZYQ31P"}'} + body: {string: !!python/unicode '{"id":"project-FPbY8Gj0FbpfKjvF1pF3yv39"}'} headers: connection: [keep-alive] content-length: ['41'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:21:51 GMT'] + date: ['Tue, 13 Nov 2018 20:29:47 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592504307-985267] + x-request-id: [1542140985537-146241] status: {code: 200, message: OK} version: 1 diff --git a/stor/tests/cassettes_py2/TestCopy/test_move_diff_project_fail.yaml b/stor_dx/stor_dx/tests/cassettes_py2/TestCopy/test_move_diff_project_fail.yaml similarity index 58% rename from stor/tests/cassettes_py2/TestCopy/test_move_diff_project_fail.yaml rename to stor_dx/stor_dx/tests/cassettes_py2/TestCopy/test_move_diff_project_fail.yaml index b4d4aea5..68d1321f 100644 --- a/stor/tests/cassettes_py2/TestCopy/test_move_diff_project_fail.yaml +++ b/stor_dx/stor_dx/tests/cassettes_py2/TestCopy/test_move_diff_project_fail.yaml @@ -1,252 +1,252 @@ interactions: - request: - body: !!python/unicode '{"name": "TestCopy.test_move_diff_project_fail.8d1e13fe"}' + body: !!python/unicode '{"name": "TestCopy.test_move_diff_project_fail.f1baa83e"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/project/new response: - body: {string: !!python/unicode '{"id":"project-FP9k6zj0QV1yK8by4vpG2YK3"}'} + body: {string: !!python/unicode '{"id":"project-FPbY8P008407B5V79xBKF009"}'} headers: connection: [keep-alive] content-length: ['41'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:21:51 GMT'] + date: ['Tue, 13 Nov 2018 20:29:48 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592511579-736009] + x-request-id: [1542140988336-710044] status: {code: 200, message: OK} - request: body: !!python/unicode '{}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k6zj0QV1yK8by4vpG2YK3/describe + uri: https://api.dnanexus.com/project-FPbY8P008407B5V79xBKF009/describe response: - body: {string: !!python/unicode '{"id":"project-FP9k6zj0QV1yK8by4vpG2YK3","name":"TestCopy.test_move_diff_project_fail.8d1e13fe","class":"project","created":1540592511000,"modified":1540592511000,"billTo":"org-counsyl","level":"ADMINISTER","dataUsage":0,"sponsoredDataUsage":0,"region":"aws:us-east-1","summary":"","description":"","protected":false,"restricted":false,"downloadRestricted":false,"containsPHI":false,"createdBy":{"user":"user-akumar_counsyl"},"version":0,"storageCost":0,"pendingTransfer":null,"tags":[],"defaultInstanceType":"mem2_hdd2_x2","archivalState":"live","archivalProgress":null,"totalSponsoredEgressBytes":0,"consumedSponsoredEgressBytes":0,"atSpendingLimit":false}'} + body: {string: !!python/unicode '{"id":"project-FPbY8P008407B5V79xBKF009","name":"TestCopy.test_move_diff_project_fail.f1baa83e","class":"project","created":1542140988000,"modified":1542140988000,"billTo":"org-counsyl","level":"ADMINISTER","dataUsage":0,"sponsoredDataUsage":0,"region":"aws:us-east-1","summary":"","description":"","protected":false,"restricted":false,"downloadRestricted":false,"containsPHI":false,"createdBy":{"user":"user-akumar_counsyl"},"version":0,"storageCost":0,"pendingTransfer":null,"tags":[],"defaultInstanceType":"mem2_hdd2_x2","archivalState":"live","archivalProgress":null,"totalSponsoredEgressBytes":0,"consumedSponsoredEgressBytes":0,"atSpendingLimit":false}'} headers: connection: [keep-alive] content-length: ['658'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:21:51 GMT'] + date: ['Tue, 13 Nov 2018 20:29:48 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592511695-912465] + x-request-id: [1542140988465-379289] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"parents": true, "folder": "/"}' + body: !!python/unicode '{"folder": "/", "parents": true}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k6zj0QV1yK8by4vpG2YK3/newFolder + uri: https://api.dnanexus.com/project-FPbY8P008407B5V79xBKF009/newFolder response: - body: {string: !!python/unicode '{"id":"project-FP9k6zj0QV1yK8by4vpG2YK3"}'} + body: {string: !!python/unicode '{"id":"project-FPbY8P008407B5V79xBKF009"}'} headers: connection: [keep-alive] content-length: ['41'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:21:51 GMT'] + date: ['Tue, 13 Nov 2018 20:29:48 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592511809-334230] + x-request-id: [1542140988585-450004] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"name": "folder_file.txt", "project": "project-FP9k6zj0QV1yK8by4vpG2YK3", - "folder": "/", "nonce": "77341db75cd668a4da5945e85485b1f205c20487823c85504595d54e33a4de3a1540592511.872062"}' + body: !!python/unicode '{"project": "project-FPbY8P008407B5V79xBKF009", "nonce": + "bc13c296d904325e97964e0db35cf8e231c86ad98ee6ca46b991ec53e672046d1542140988.635407", + "folder": "/", "name": "folder_file.txt"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/file/new response: - body: {string: !!python/unicode '{"id":"file-FP9k6zj0QV1kZYkF52JZ1Vk9"}'} + body: {string: !!python/unicode '{"id":"file-FPbY8P008401f1vx1VF3x72K"}'} headers: connection: [keep-alive] content-length: ['38'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:21:52 GMT'] + date: ['Tue, 13 Nov 2018 20:29:48 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592511916-579186] + x-request-id: [1542140988679-131314] status: {code: 200, message: OK} - request: body: !!python/unicode '{"fields": {"fileUploadParameters": true}}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k6zj0QV1yK8by4vpG2YK3/describe + uri: https://api.dnanexus.com/project-FPbY8P008407B5V79xBKF009/describe response: - body: {string: !!python/unicode '{"id":"project-FP9k6zj0QV1yK8by4vpG2YK3","fileUploadParameters":{"maximumPartSize":5368709120,"minimumPartSize":5242880,"maximumFileSize":5497558138880,"maximumNumParts":10000,"emptyLastPartAllowed":true}}'} + body: {string: !!python/unicode '{"id":"project-FPbY8P008407B5V79xBKF009","fileUploadParameters":{"maximumPartSize":5368709120,"minimumPartSize":5242880,"maximumFileSize":5497558138880,"maximumNumParts":10000,"emptyLastPartAllowed":true}}'} headers: connection: [keep-alive] content-length: ['205'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:21:52 GMT'] + date: ['Tue, 13 Nov 2018 20:29:48 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592512112-93245] + x-request-id: [1542140988834-147364] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"size": 4, "md5": "8d777f385d3dfec8815d20f7496026dc", - "index": 1}' + body: !!python/unicode '{"index": 1, "size": 4, "md5": "8d777f385d3dfec8815d20f7496026dc"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k6zj0QV1kZYkF52JZ1Vk9/upload + uri: https://api.dnanexus.com/file-FPbY8P008401f1vx1VF3x72K/upload response: - body: {string: !!python/unicode '{"url":"https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/dec9/file/open/file-FP9k6zj0QV1kZYkF52JZ1Vk9/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181026%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181026T222152Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=c6c2aea9539ed38ec8e4e318ff063b66817d6e2a393bec67b372c9aa500329fe","headers":{"host":"dnanexus-platform-upload-prod.s3.amazonaws.com","content-type":"binary/octet-stream","x-amz-server-side-encryption":"AES256","content-md5":"jXd/OF09/siBXSD3SWAm3A==","content-length":"4"},"expires":1540592632238}'} + body: {string: !!python/unicode '{"url":"https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/9e04/file/open/file-FPbY8P008401f1vx1VF3x72K/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181113%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181113T202949Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=8a698558e4a5a3f70e6334e1f605e24f682ffbc478152edab083f91cc388b443","headers":{"host":"dnanexus-platform-upload-prod.s3.amazonaws.com","content-type":"binary/octet-stream","x-amz-server-side-encryption":"AES256","content-md5":"jXd/OF09/siBXSD3SWAm3A==","content-length":"4"},"expires":1542141108995}'} headers: connection: [keep-alive] content-length: ['692'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:21:52 GMT'] + date: ['Tue, 13 Nov 2018 20:29:49 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592512220-163580] + x-request-id: [1542140988965-619427] status: {code: 200, message: OK} - request: body: !!python/unicode data headers: DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] content-length: ['4'] content-md5: [jXd/OF09/siBXSD3SWAm3A==] content-type: [binary/octet-stream] host: [dnanexus-platform-upload-prod.s3.amazonaws.com] x-amz-server-side-encryption: [AES256] method: PUT - uri: https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/dec9/file/open/file-FP9k6zj0QV1kZYkF52JZ1Vk9/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181026%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181026T222152Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=c6c2aea9539ed38ec8e4e318ff063b66817d6e2a393bec67b372c9aa500329fe + uri: https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/9e04/file/open/file-FPbY8P008401f1vx1VF3x72K/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181113%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181113T202949Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=8a698558e4a5a3f70e6334e1f605e24f682ffbc478152edab083f91cc388b443 response: body: {string: !!python/unicode ''} headers: content-length: ['0'] - date: ['Fri, 26 Oct 2018 22:21:53 GMT'] + date: ['Tue, 13 Nov 2018 20:29:50 GMT'] etag: ['"8d777f385d3dfec8815d20f7496026dc"'] server: [AmazonS3] - x-amz-expiration: ['expiry-date="Sat, 17 Nov 2018 00:00:00 GMT", rule-id="3weekpurge"'] - x-amz-id-2: [ngsjLZSyV7zaiHSa+3OVwHsVn6SceRRgukU81MWlB8Y5+ExaIRF+NvvAfNyKfDvF2qx3z3ldzO0=] - x-amz-request-id: [490CA38D93E139DE] + x-amz-expiration: ['expiry-date="Wed, 05 Dec 2018 00:00:00 GMT", rule-id="3weekpurge"'] + x-amz-id-2: [81aOYEkPHdkIedE4MioQ81mjPuX9A8F4/qHqUO6xmktw11Oun88PSqGaYh6TIbyIVnEMysnLn8Y=] + x-amz-request-id: [EC87DF021B4BD2F5] x-amz-server-side-encryption: [AES256] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"project": "project-FP9k6zj0QV1yK8by4vpG2YK3", "fields": + body: !!python/unicode '{"project": "project-FPbY8P008407B5V79xBKF009", "fields": {"state": true}}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k6zj0QV1kZYkF52JZ1Vk9/describe + uri: https://api.dnanexus.com/file-FPbY8P008401f1vx1VF3x72K/describe response: - body: {string: !!python/unicode '{"id":"file-FP9k6zj0QV1kZYkF52JZ1Vk9","state":"open"}'} + body: {string: !!python/unicode '{"id":"file-FPbY8P008401f1vx1VF3x72K","state":"open"}'} headers: connection: [keep-alive] content-length: ['53'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:21:52 GMT'] + date: ['Tue, 13 Nov 2018 20:29:49 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592512831-801459] + x-request-id: [1542140989461-286407] status: {code: 200, message: OK} - request: body: !!python/unicode '{}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k6zj0QV1kZYkF52JZ1Vk9/close + uri: https://api.dnanexus.com/file-FPbY8P008401f1vx1VF3x72K/close response: - body: {string: !!python/unicode '{"id":"file-FP9k6zj0QV1kZYkF52JZ1Vk9"}'} + body: {string: !!python/unicode '{"id":"file-FPbY8P008401f1vx1VF3x72K"}'} headers: connection: [keep-alive] content-length: ['38'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:21:52 GMT'] + date: ['Tue, 13 Nov 2018 20:29:49 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592512941-186056] + x-request-id: [1542140989555-193622] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"project": "project-FP9k6zj0QV1yK8by4vpG2YK3", "fields": + body: !!python/unicode '{"project": "project-FPbY8P008407B5V79xBKF009", "fields": {"state": true}}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k6zj0QV1kZYkF52JZ1Vk9/describe + uri: https://api.dnanexus.com/file-FPbY8P008401f1vx1VF3x72K/describe response: - body: {string: !!python/unicode '{"id":"file-FP9k6zj0QV1kZYkF52JZ1Vk9","state":"closing"}'} + body: {string: !!python/unicode '{"id":"file-FPbY8P008401f1vx1VF3x72K","state":"closing"}'} headers: connection: [keep-alive] content-length: ['56'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:21:53 GMT'] + date: ['Tue, 13 Nov 2018 20:29:49 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592513071-369465] + x-request-id: [1542140989669-744204] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"project": "project-FP9k6zj0QV1yK8by4vpG2YK3", "fields": + body: !!python/unicode '{"project": "project-FPbY8P008407B5V79xBKF009", "fields": {"state": true}}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k6zj0QV1kZYkF52JZ1Vk9/describe + uri: https://api.dnanexus.com/file-FPbY8P008401f1vx1VF3x72K/describe response: - body: {string: !!python/unicode '{"id":"file-FP9k6zj0QV1kZYkF52JZ1Vk9","state":"closed"}'} + body: {string: !!python/unicode '{"id":"file-FPbY8P008401f1vx1VF3x72K","state":"closed"}'} headers: connection: [keep-alive] content-length: ['55'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:21:55 GMT'] + date: ['Tue, 13 Nov 2018 20:29:51 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592515183-624854] + x-request-id: [1542140991766-720375] status: {code: 200, message: OK} - request: body: !!python/unicode '{"name": "test_move_diff_project_fail.TempProj"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/project/new response: - body: {string: !!python/unicode '{"id":"project-FP9k70j0K5XkZYkF52JZ1VkF"}'} + body: {string: !!python/unicode '{"id":"project-FPbY8Pj01q4vVV2X1Z5bX2k0"}'} headers: connection: [keep-alive] content-length: ['41'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:21:55 GMT'] + date: ['Tue, 13 Nov 2018 20:29:51 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592515297-189342] + x-request-id: [1542140991913-917314] status: {code: 200, message: OK} - request: body: !!python/unicode '{"limit": 2, "name": "test_move_diff_project_fail.TempProj", @@ -254,80 +254,80 @@ interactions: headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/system/findProjects response: - body: {string: !!python/unicode '{"results":[{"id":"project-FP9k70j0K5XkZYkF52JZ1VkF","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} + body: {string: !!python/unicode '{"results":[{"id":"project-FPbY8Pj01q4vVV2X1Z5bX2k0","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} headers: connection: [keep-alive] content-length: ['147'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:21:55 GMT'] + date: ['Tue, 13 Nov 2018 20:29:52 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592515407-888367] + x-request-id: [1542140992024-228745] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"limit": 2, "name": "TestCopy.test_move_diff_project_fail.8d1e13fe", + body: !!python/unicode '{"limit": 2, "name": "TestCopy.test_move_diff_project_fail.f1baa83e", "level": "VIEW"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/system/findProjects response: - body: {string: !!python/unicode '{"results":[{"id":"project-FP9k6zj0QV1yK8by4vpG2YK3","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} + body: {string: !!python/unicode '{"results":[{"id":"project-FPbY8P008407B5V79xBKF009","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} headers: connection: [keep-alive] content-length: ['147'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:21:55 GMT'] + date: ['Tue, 13 Nov 2018 20:29:52 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592515535-293111] + x-request-id: [1542140992143-905642] status: {code: 200, message: OK} - request: body: !!python/unicode '{}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k70j0K5XkZYkF52JZ1VkF/destroy + uri: https://api.dnanexus.com/project-FPbY8Pj01q4vVV2X1Z5bX2k0/destroy response: - body: {string: !!python/unicode '{"id":"project-FP9k70j0K5XkZYkF52JZ1VkF"}'} + body: {string: !!python/unicode '{"id":"project-FPbY8Pj01q4vVV2X1Z5bX2k0"}'} headers: connection: [keep-alive] content-length: ['41'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:21:59 GMT'] + date: ['Tue, 13 Nov 2018 20:29:54 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592515679-748689] + x-request-id: [1542140992270-47383] status: {code: 200, message: OK} - request: body: !!python/unicode '{}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k6zj0QV1yK8by4vpG2YK3/destroy + uri: https://api.dnanexus.com/project-FPbY8P008407B5V79xBKF009/destroy response: - body: {string: !!python/unicode '{"id":"project-FP9k6zj0QV1yK8by4vpG2YK3"}'} + body: {string: !!python/unicode '{"id":"project-FPbY8P008407B5V79xBKF009"}'} headers: connection: [keep-alive] content-length: ['41'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:22:03 GMT'] + date: ['Tue, 13 Nov 2018 20:29:57 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592520030-875096] + x-request-id: [1542140994881-500477] status: {code: 200, message: OK} version: 1 diff --git a/stor/tests/cassettes_py2/TestCopy/test_other_obs_to_dx.yaml b/stor_dx/stor_dx/tests/cassettes_py2/TestCopy/test_other_obs_to_dx.yaml similarity index 56% rename from stor/tests/cassettes_py2/TestCopy/test_other_obs_to_dx.yaml rename to stor_dx/stor_dx/tests/cassettes_py2/TestCopy/test_other_obs_to_dx.yaml index 997062fd..c9f01078 100644 --- a/stor/tests/cassettes_py2/TestCopy/test_other_obs_to_dx.yaml +++ b/stor_dx/stor_dx/tests/cassettes_py2/TestCopy/test_other_obs_to_dx.yaml @@ -1,251 +1,251 @@ interactions: - request: - body: !!python/unicode '{"name": "TestCopy.test_other_obs_to_dx.37a96503"}' + body: !!python/unicode '{"name": "TestCopy.test_other_obs_to_dx.226adf79"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/project/new response: - body: {string: !!python/unicode '{"id":"project-FP9k72j0pK192JG740JK7GvF"}'} + body: {string: !!python/unicode '{"id":"project-FPbY8V804BJYYFg006F1yx81"}'} headers: connection: [keep-alive] content-length: ['41'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:22:03 GMT'] + date: ['Tue, 13 Nov 2018 20:29:57 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592523594-179009] + x-request-id: [1542140997579-540742] status: {code: 200, message: OK} - request: body: !!python/unicode '{}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k72j0pK192JG740JK7GvF/describe + uri: https://api.dnanexus.com/project-FPbY8V804BJYYFg006F1yx81/describe response: - body: {string: !!python/unicode '{"id":"project-FP9k72j0pK192JG740JK7GvF","name":"TestCopy.test_other_obs_to_dx.37a96503","class":"project","created":1540592523000,"modified":1540592523000,"billTo":"org-counsyl","level":"ADMINISTER","dataUsage":0,"sponsoredDataUsage":0,"region":"aws:us-east-1","summary":"","description":"","protected":false,"restricted":false,"downloadRestricted":false,"containsPHI":false,"createdBy":{"user":"user-akumar_counsyl"},"version":0,"storageCost":0,"pendingTransfer":null,"tags":[],"defaultInstanceType":"mem2_hdd2_x2","archivalState":"live","archivalProgress":null,"totalSponsoredEgressBytes":0,"consumedSponsoredEgressBytes":0,"atSpendingLimit":false}'} + body: {string: !!python/unicode '{"id":"project-FPbY8V804BJYYFg006F1yx81","name":"TestCopy.test_other_obs_to_dx.226adf79","class":"project","created":1542140997000,"modified":1542140997000,"billTo":"org-counsyl","level":"ADMINISTER","dataUsage":0,"sponsoredDataUsage":0,"region":"aws:us-east-1","summary":"","description":"","protected":false,"restricted":false,"downloadRestricted":false,"containsPHI":false,"createdBy":{"user":"user-akumar_counsyl"},"version":0,"storageCost":0,"pendingTransfer":null,"tags":[],"defaultInstanceType":"mem2_hdd2_x2","archivalState":"live","archivalProgress":null,"totalSponsoredEgressBytes":0,"consumedSponsoredEgressBytes":0,"atSpendingLimit":false}'} headers: connection: [keep-alive] content-length: ['651'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:22:03 GMT'] + date: ['Tue, 13 Nov 2018 20:29:57 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592523739-365608] + x-request-id: [1542140997683-749339] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"parents": true, "folder": "/temp_folder"}' + body: !!python/unicode '{"folder": "/temp_folder", "parents": true}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k72j0pK192JG740JK7GvF/newFolder + uri: https://api.dnanexus.com/project-FPbY8V804BJYYFg006F1yx81/newFolder response: - body: {string: !!python/unicode '{"id":"project-FP9k72j0pK192JG740JK7GvF"}'} + body: {string: !!python/unicode '{"id":"project-FPbY8V804BJYYFg006F1yx81"}'} headers: connection: [keep-alive] content-length: ['41'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:22:03 GMT'] + date: ['Tue, 13 Nov 2018 20:29:57 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592523862-314760] + x-request-id: [1542140997830-108920] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"name": "folder_file.txt", "project": "project-FP9k72j0pK192JG740JK7GvF", - "folder": "/temp_folder", "nonce": "09d09394909cfc676635f53319c10b4c9c7c4b32c464088d7348570d2889ac331540592523.934034"}' + body: !!python/unicode '{"project": "project-FPbY8V804BJYYFg006F1yx81", "nonce": + "52d35e11e149ff1bb062741aca93099652e0d771477f3ba0802d8389907ddc251542140997.904961", + "folder": "/temp_folder", "name": "folder_file.txt"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/file/new response: - body: {string: !!python/unicode '{"id":"file-FP9k72j0pK15Yj5j40f25Yzx"}'} + body: {string: !!python/unicode '{"id":"file-FPbY8V804BJgB5V79xBKF00B"}'} headers: connection: [keep-alive] content-length: ['38'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:22:04 GMT'] + date: ['Tue, 13 Nov 2018 20:29:58 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592523983-282481] + x-request-id: [1542140997950-641295] status: {code: 200, message: OK} - request: body: !!python/unicode '{"fields": {"fileUploadParameters": true}}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k72j0pK192JG740JK7GvF/describe + uri: https://api.dnanexus.com/project-FPbY8V804BJYYFg006F1yx81/describe response: - body: {string: !!python/unicode '{"id":"project-FP9k72j0pK192JG740JK7GvF","fileUploadParameters":{"maximumPartSize":5368709120,"minimumPartSize":5242880,"maximumFileSize":5497558138880,"maximumNumParts":10000,"emptyLastPartAllowed":true}}'} + body: {string: !!python/unicode '{"id":"project-FPbY8V804BJYYFg006F1yx81","fileUploadParameters":{"maximumPartSize":5368709120,"minimumPartSize":5242880,"maximumFileSize":5497558138880,"maximumNumParts":10000,"emptyLastPartAllowed":true}}'} headers: connection: [keep-alive] content-length: ['205'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:22:04 GMT'] + date: ['Tue, 13 Nov 2018 20:29:58 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592524136-13877] + x-request-id: [1542140998095-129767] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"size": 4, "md5": "8d777f385d3dfec8815d20f7496026dc", - "index": 1}' + body: !!python/unicode '{"index": 1, "size": 4, "md5": "8d777f385d3dfec8815d20f7496026dc"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k72j0pK15Yj5j40f25Yzx/upload + uri: https://api.dnanexus.com/file-FPbY8V804BJgB5V79xBKF00B/upload response: - body: {string: !!python/unicode '{"url":"https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/8100/file/open/file-FP9k72j0pK15Yj5j40f25Yzx/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181026%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181026T222204Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=cbdb83e8eb39bcc82759df00c23466ec2468d22fd8679bbccc2abdcc4772f9aa","headers":{"host":"dnanexus-platform-upload-prod.s3.amazonaws.com","content-type":"binary/octet-stream","x-amz-server-side-encryption":"AES256","content-md5":"jXd/OF09/siBXSD3SWAm3A==","content-length":"4"},"expires":1540592644285}'} + body: {string: !!python/unicode '{"url":"https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/424b/file/open/file-FPbY8V804BJgB5V79xBKF00B/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181113%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181113T202958Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=ce183b35a58f6a48b8c018ec2a8b4dca979ed65898706c70904c97268fd567b9","headers":{"host":"dnanexus-platform-upload-prod.s3.amazonaws.com","content-type":"binary/octet-stream","x-amz-server-side-encryption":"AES256","content-md5":"jXd/OF09/siBXSD3SWAm3A==","content-length":"4"},"expires":1542141118259}'} headers: connection: [keep-alive] content-length: ['692'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:22:04 GMT'] + date: ['Tue, 13 Nov 2018 20:29:58 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592524272-798039] + x-request-id: [1542140998232-351195] status: {code: 200, message: OK} - request: body: !!python/unicode data headers: DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] content-length: ['4'] content-md5: [jXd/OF09/siBXSD3SWAm3A==] content-type: [binary/octet-stream] host: [dnanexus-platform-upload-prod.s3.amazonaws.com] x-amz-server-side-encryption: [AES256] method: PUT - uri: https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/8100/file/open/file-FP9k72j0pK15Yj5j40f25Yzx/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181026%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181026T222204Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=cbdb83e8eb39bcc82759df00c23466ec2468d22fd8679bbccc2abdcc4772f9aa + uri: https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/424b/file/open/file-FPbY8V804BJgB5V79xBKF00B/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181113%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181113T202958Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=ce183b35a58f6a48b8c018ec2a8b4dca979ed65898706c70904c97268fd567b9 response: body: {string: !!python/unicode ''} headers: content-length: ['0'] - date: ['Fri, 26 Oct 2018 22:22:05 GMT'] + date: ['Tue, 13 Nov 2018 20:29:59 GMT'] etag: ['"8d777f385d3dfec8815d20f7496026dc"'] server: [AmazonS3] - x-amz-expiration: ['expiry-date="Sat, 17 Nov 2018 00:00:00 GMT", rule-id="3weekpurge"'] - x-amz-id-2: [HntGEKbWuz3OzixTDrWliPdSXAvxm0ihOga67UNGcDdq2qcICwkazVQ+VpbIZ4sUM9WiHmRFECw=] - x-amz-request-id: [197C3CFABFB04822] + x-amz-expiration: ['expiry-date="Wed, 05 Dec 2018 00:00:00 GMT", rule-id="3weekpurge"'] + x-amz-id-2: [a4vwtidJwbpDBWOupr+wPmsR1mCIofJcdwPvqy+XZtL3xGpkBlZQ7ZgrQ24howd/lh4AHt0R3m8=] + x-amz-request-id: [5820721DBE9FCD78] x-amz-server-side-encryption: [AES256] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"project": "project-FP9k72j0pK192JG740JK7GvF", "fields": + body: !!python/unicode '{"project": "project-FPbY8V804BJYYFg006F1yx81", "fields": {"state": true}}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k72j0pK15Yj5j40f25Yzx/describe + uri: https://api.dnanexus.com/file-FPbY8V804BJgB5V79xBKF00B/describe response: - body: {string: !!python/unicode '{"id":"file-FP9k72j0pK15Yj5j40f25Yzx","state":"open"}'} + body: {string: !!python/unicode '{"id":"file-FPbY8V804BJgB5V79xBKF00B","state":"open"}'} headers: connection: [keep-alive] content-length: ['53'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:22:04 GMT'] + date: ['Tue, 13 Nov 2018 20:29:58 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592524868-975644] + x-request-id: [1542140998733-73675] status: {code: 200, message: OK} - request: body: !!python/unicode '{}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k72j0pK15Yj5j40f25Yzx/close + uri: https://api.dnanexus.com/file-FPbY8V804BJgB5V79xBKF00B/close response: - body: {string: !!python/unicode '{"id":"file-FP9k72j0pK15Yj5j40f25Yzx"}'} + body: {string: !!python/unicode '{"id":"file-FPbY8V804BJgB5V79xBKF00B"}'} headers: connection: [keep-alive] content-length: ['38'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:22:05 GMT'] + date: ['Tue, 13 Nov 2018 20:29:58 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592524984-553173] + x-request-id: [1542140998915-386124] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"project": "project-FP9k72j0pK192JG740JK7GvF", "fields": + body: !!python/unicode '{"project": "project-FPbY8V804BJYYFg006F1yx81", "fields": {"state": true}}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k72j0pK15Yj5j40f25Yzx/describe + uri: https://api.dnanexus.com/file-FPbY8V804BJgB5V79xBKF00B/describe response: - body: {string: !!python/unicode '{"id":"file-FP9k72j0pK15Yj5j40f25Yzx","state":"closing"}'} + body: {string: !!python/unicode '{"id":"file-FPbY8V804BJgB5V79xBKF00B","state":"closing"}'} headers: connection: [keep-alive] content-length: ['56'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:22:05 GMT'] + date: ['Tue, 13 Nov 2018 20:29:59 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592525115-598708] + x-request-id: [1542140999046-615280] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"project": "project-FP9k72j0pK192JG740JK7GvF", "fields": + body: !!python/unicode '{"project": "project-FPbY8V804BJYYFg006F1yx81", "fields": {"state": true}}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k72j0pK15Yj5j40f25Yzx/describe + uri: https://api.dnanexus.com/file-FPbY8V804BJgB5V79xBKF00B/describe response: - body: {string: !!python/unicode '{"id":"file-FP9k72j0pK15Yj5j40f25Yzx","state":"closed"}'} + body: {string: !!python/unicode '{"id":"file-FPbY8V804BJgB5V79xBKF00B","state":"closed"}'} headers: connection: [keep-alive] content-length: ['55'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:22:07 GMT'] + date: ['Tue, 13 Nov 2018 20:30:01 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592527236-987093] + x-request-id: [1542141001177-535281] status: {code: 200, message: OK} - request: body: !!python/unicode '{}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k72j0pK192JG740JK7GvF/destroy + uri: https://api.dnanexus.com/project-FPbY8V804BJYYFg006F1yx81/destroy response: - body: {string: !!python/unicode '{"id":"project-FP9k72j0pK192JG740JK7GvF"}'} + body: {string: !!python/unicode '{"id":"project-FPbY8V804BJYYFg006F1yx81"}'} headers: connection: [keep-alive] content-length: ['41'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:22:12 GMT'] + date: ['Tue, 13 Nov 2018 20:30:04 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592527453-233264] + x-request-id: [1542141001325-421459] status: {code: 200, message: OK} version: 1 diff --git a/stor/tests/cassettes_py2/TestCopy/test_posix_to_dx_fail.yaml b/stor_dx/stor_dx/tests/cassettes_py2/TestCopy/test_posix_to_dx_fail.yaml similarity index 53% rename from stor/tests/cassettes_py2/TestCopy/test_posix_to_dx_fail.yaml rename to stor_dx/stor_dx/tests/cassettes_py2/TestCopy/test_posix_to_dx_fail.yaml index 03e29b07..cb33ff3f 100644 --- a/stor/tests/cassettes_py2/TestCopy/test_posix_to_dx_fail.yaml +++ b/stor_dx/stor_dx/tests/cassettes_py2/TestCopy/test_posix_to_dx_fail.yaml @@ -1,83 +1,106 @@ interactions: - request: - body: !!python/unicode '{"name": "TestCopy.test_posix_to_dx_fail.5926e941"}' + body: !!python/unicode '{"name": "TestCopy.test_posix_to_dx_fail.b18e1486"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/project/new response: - body: {string: !!python/unicode '{"id":"project-FP9k75000kxzvv365P3k8ZvB"}'} + body: {string: !!python/unicode '{"id":"project-FPbY8Y806Jq7gpxV1j3fqjF3"}'} headers: connection: [keep-alive] content-length: ['41'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:22:12 GMT'] + date: ['Tue, 13 Nov 2018 20:30:05 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592532813-639103] + x-request-id: [1542141005069-334208] status: {code: 200, message: OK} - request: body: !!python/unicode '{}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k75000kxzvv365P3k8ZvB/describe + uri: https://api.dnanexus.com/project-FPbY8Y806Jq7gpxV1j3fqjF3/describe response: - body: {string: !!python/unicode '{"id":"project-FP9k75000kxzvv365P3k8ZvB","name":"TestCopy.test_posix_to_dx_fail.5926e941","class":"project","created":1540592532000,"modified":1540592532000,"billTo":"org-counsyl","level":"ADMINISTER","dataUsage":0,"sponsoredDataUsage":0,"region":"aws:us-east-1","summary":"","description":"","protected":false,"restricted":false,"downloadRestricted":false,"containsPHI":false,"createdBy":{"user":"user-akumar_counsyl"},"version":0,"storageCost":0,"pendingTransfer":null,"tags":[],"defaultInstanceType":"mem2_hdd2_x2","archivalState":"live","archivalProgress":null,"totalSponsoredEgressBytes":0,"consumedSponsoredEgressBytes":0,"atSpendingLimit":false}'} + body: {string: !!python/unicode '{"id":"project-FPbY8Y806Jq7gpxV1j3fqjF3","name":"TestCopy.test_posix_to_dx_fail.b18e1486","class":"project","created":1542141005000,"modified":1542141005000,"billTo":"org-counsyl","level":"ADMINISTER","dataUsage":0,"sponsoredDataUsage":0,"region":"aws:us-east-1","summary":"","description":"","protected":false,"restricted":false,"downloadRestricted":false,"containsPHI":false,"createdBy":{"user":"user-akumar_counsyl"},"version":0,"storageCost":0,"pendingTransfer":null,"tags":[],"defaultInstanceType":"mem2_hdd2_x2","archivalState":"live","archivalProgress":null,"totalSponsoredEgressBytes":0,"consumedSponsoredEgressBytes":0,"atSpendingLimit":false}'} headers: connection: [keep-alive] content-length: ['652'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:22:13 GMT'] + date: ['Tue, 13 Nov 2018 20:30:05 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592533032-98479] + x-request-id: [1542141005230-943468] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"limit": 2, "name": "TestCopy.test_posix_to_dx_fail.5926e941", + body: !!python/unicode '{"limit": 2, "name": "TestCopy.test_posix_to_dx_fail.b18e1486", "level": "VIEW"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/system/findProjects response: - body: {string: !!python/unicode '{"results":[{"id":"project-FP9k75000kxzvv365P3k8ZvB","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} + body: {string: !!python/unicode '{"results":[{"id":"project-FPbY8Y806Jq7gpxV1j3fqjF3","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} headers: connection: [keep-alive] content-length: ['147'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:22:13 GMT'] + date: ['Tue, 13 Nov 2018 20:30:05 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592533237-257329] + x-request-id: [1542141005431-693008] status: {code: 200, message: OK} +- request: + body: !!python/unicode '{"folder": "/random", "describe": {"fields": {"folder": + true, "name": true}}, "only": "folders", "includeHidden": false}' + headers: + Content-Type: [application/json] + DNAnexus-API: [1.0.0] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] + method: POST + uri: https://api.dnanexus.com/project-FPbY8Y806Jq7gpxV1j3fqjF3/listFolder + response: + body: {string: !!python/unicode '{"error":{"type":"ResourceNotFound","message":"The + specified folder could not be found in project-FPbY8Y806Jq7gpxV1j3fqjF3"}}'} + headers: + connection: [keep-alive] + content-type: [application/json] + date: ['Tue, 13 Nov 2018 20:30:05 GMT'] + server: [nginx] + transfer-encoding: [chunked] + vary: [Accept-Encoding] + x-content-type-options: [nosniff] + x-powered-by: [Express] + x-request-id: [1542141005650-649710] + status: {code: 404, message: Not Found} - request: body: !!python/unicode '{}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k75000kxzvv365P3k8ZvB/destroy + uri: https://api.dnanexus.com/project-FPbY8Y806Jq7gpxV1j3fqjF3/destroy response: - body: {string: !!python/unicode '{"id":"project-FP9k75000kxzvv365P3k8ZvB"}'} + body: {string: !!python/unicode '{"id":"project-FPbY8Y806Jq7gpxV1j3fqjF3"}'} headers: connection: [keep-alive] content-length: ['41'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:22:18 GMT'] + date: ['Tue, 13 Nov 2018 20:30:08 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592533545-548209] + x-request-id: [1542141006025-836094] status: {code: 200, message: OK} version: 1 diff --git a/stor/tests/cassettes_py2/TestCopy/test_posix_to_dx_file.yaml b/stor_dx/stor_dx/tests/cassettes_py2/TestCopy/test_posix_to_dx_file.yaml similarity index 55% rename from stor/tests/cassettes_py2/TestCopy/test_posix_to_dx_file.yaml rename to stor_dx/stor_dx/tests/cassettes_py2/TestCopy/test_posix_to_dx_file.yaml index 0c5d5d66..d328c2a9 100644 --- a/stor/tests/cassettes_py2/TestCopy/test_posix_to_dx_file.yaml +++ b/stor_dx/stor_dx/tests/cassettes_py2/TestCopy/test_posix_to_dx_file.yaml @@ -1,117 +1,96 @@ interactions: - request: - body: !!python/unicode '{"name": "TestCopy.test_posix_to_dx_file.46626e33"}' + body: !!python/unicode '{"name": "TestCopy.test_posix_to_dx_file.b7a39e7e"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/project/new response: - body: {string: !!python/unicode '{"id":"project-FP9k76j0YF2qPYg95F286zFv"}'} + body: {string: !!python/unicode '{"id":"project-FPbY8Z80g79pqpgZ9Vx48pXp"}'} headers: connection: [keep-alive] content-length: ['41'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:22:19 GMT'] + date: ['Tue, 13 Nov 2018 20:30:09 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592539425-986268] + x-request-id: [1542141008916-407163] status: {code: 200, message: OK} - request: body: !!python/unicode '{}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k76j0YF2qPYg95F286zFv/describe + uri: https://api.dnanexus.com/project-FPbY8Z80g79pqpgZ9Vx48pXp/describe response: - body: {string: !!python/unicode '{"id":"project-FP9k76j0YF2qPYg95F286zFv","name":"TestCopy.test_posix_to_dx_file.46626e33","class":"project","created":1540592539000,"modified":1540592539000,"billTo":"org-counsyl","level":"ADMINISTER","dataUsage":0,"sponsoredDataUsage":0,"region":"aws:us-east-1","summary":"","description":"","protected":false,"restricted":false,"downloadRestricted":false,"containsPHI":false,"createdBy":{"user":"user-akumar_counsyl"},"version":0,"storageCost":0,"pendingTransfer":null,"tags":[],"defaultInstanceType":"mem2_hdd2_x2","archivalState":"live","archivalProgress":null,"totalSponsoredEgressBytes":0,"consumedSponsoredEgressBytes":0,"atSpendingLimit":false}'} + body: {string: !!python/unicode '{"id":"project-FPbY8Z80g79pqpgZ9Vx48pXp","name":"TestCopy.test_posix_to_dx_file.b7a39e7e","class":"project","created":1542141009000,"modified":1542141009000,"billTo":"org-counsyl","level":"ADMINISTER","dataUsage":0,"sponsoredDataUsage":0,"region":"aws:us-east-1","summary":"","description":"","protected":false,"restricted":false,"downloadRestricted":false,"containsPHI":false,"createdBy":{"user":"user-akumar_counsyl"},"version":0,"storageCost":0,"pendingTransfer":null,"tags":[],"defaultInstanceType":"mem2_hdd2_x2","archivalState":"live","archivalProgress":null,"totalSponsoredEgressBytes":0,"consumedSponsoredEgressBytes":0,"atSpendingLimit":false}'} headers: connection: [keep-alive] content-length: ['652'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:22:19 GMT'] + date: ['Tue, 13 Nov 2018 20:30:09 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592539547-141201] + x-request-id: [1542141009156-445722] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"limit": 2, "name": "TestCopy.test_posix_to_dx_file.46626e33", + body: !!python/unicode '{"limit": 2, "name": "TestCopy.test_posix_to_dx_file.b7a39e7e", "level": "VIEW"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/system/findProjects response: - body: {string: !!python/unicode '{"results":[{"id":"project-FP9k76j0YF2qPYg95F286zFv","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} + body: {string: !!python/unicode '{"results":[{"id":"project-FPbY8Z80g79pqpgZ9Vx48pXp","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} headers: connection: [keep-alive] content-length: ['147'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:22:19 GMT'] + date: ['Tue, 13 Nov 2018 20:30:09 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592539687-339242] + x-request-id: [1542141009558-663678] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"includeHidden": false, "only": "folders", "folder": - "/temp_folder/folder_file.txt", "describe": {"fields": {"name": true, "folder": - true}}}' + body: !!python/unicode '{"folder": "/temp_folder/folder_file.txt", "describe": + {"fields": {"folder": true, "name": true}}, "only": "folders", "includeHidden": + false}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k76j0YF2qPYg95F286zFv/listFolder + uri: https://api.dnanexus.com/project-FPbY8Z80g79pqpgZ9Vx48pXp/listFolder response: body: {string: !!python/unicode '{"error":{"type":"ResourceNotFound","message":"The - specified folder could not be found in project-FP9k76j0YF2qPYg95F286zFv"}}'} + specified folder could not be found in project-FPbY8Z80g79pqpgZ9Vx48pXp"}}'} headers: connection: [keep-alive] content-type: [application/json] - date: ['Fri, 26 Oct 2018 22:22:19 GMT'] + date: ['Tue, 13 Nov 2018 20:30:10 GMT'] server: [nginx] transfer-encoding: [chunked] vary: [Accept-Encoding] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592539839-988837] + x-request-id: [1542141009978-504088] status: {code: 404, message: Not Found} - request: - body: !!python/unicode '{"limit": 2, "name": "TestCopy.test_posix_to_dx_file.46626e33", - "level": "VIEW"}' - headers: - Content-Type: [application/json] - DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] - method: POST - uri: https://api.dnanexus.com/system/findProjects - response: - body: {string: !!python/unicode '{"results":[{"id":"project-FP9k76j0YF2qPYg95F286zFv","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} - headers: - connection: [keep-alive] - content-length: ['147'] - content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:22:20 GMT'] - server: [nginx] - x-content-type-options: [nosniff] - x-powered-by: [Express] - x-request-id: [1540592540247-972624] - status: {code: 200, message: OK} -- request: - body: !!python/unicode '{"objects": [{"name": "folder_file.txt", "project": "project-FP9k76j0YF2qPYg95F286zFv", - "batchsize": 2, "folder": "/temp_folder"}]}' + body: !!python/unicode '{"objects": [{"project": "project-FPbY8Z80g79pqpgZ9Vx48pXp", + "folder": "/temp_folder", "name": "folder_file.txt", "batchsize": 2}]}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/system/resolveDataObjects response: @@ -120,96 +99,96 @@ interactions: connection: [keep-alive] content-length: ['16'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:22:20 GMT'] + date: ['Tue, 13 Nov 2018 20:30:10 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592540382-471913] + x-request-id: [1542141010509-100700] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"parents": true, "name": "folder_file.txt", "project": - "project-FP9k76j0YF2qPYg95F286zFv", "folder": "/temp_folder", "nonce": "3944fa70f5b19505716b61190e853478dd059f9e944562627e2055944080e66d1540592540.452321"}' + body: !!python/unicode '{"project": "project-FPbY8Z80g79pqpgZ9Vx48pXp", "nonce": + "be0a8709c335831d33c23165c61a2565a34d95f0b242df298dbc070d6be097831542141010.625229", + "folder": "/temp_folder", "parents": true, "name": "folder_file.txt"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/file/new response: - body: {string: !!python/unicode '{"id":"file-FP9k7700YF2bVJvpJkZZ2f6y"}'} + body: {string: !!python/unicode '{"id":"file-FPbY8ZQ0g79YYFg006F1yx86"}'} headers: connection: [keep-alive] content-length: ['38'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:22:20 GMT'] + date: ['Tue, 13 Nov 2018 20:30:11 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592540503-523607] + x-request-id: [1542141010688-582428] status: {code: 200, message: OK} - request: body: !!python/unicode '{"fields": {"fileUploadParameters": true}}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k76j0YF2qPYg95F286zFv/describe + uri: https://api.dnanexus.com/project-FPbY8Z80g79pqpgZ9Vx48pXp/describe response: - body: {string: !!python/unicode '{"id":"project-FP9k76j0YF2qPYg95F286zFv","fileUploadParameters":{"maximumPartSize":5368709120,"minimumPartSize":5242880,"maximumFileSize":5497558138880,"maximumNumParts":10000,"emptyLastPartAllowed":true}}'} + body: {string: !!python/unicode '{"id":"project-FPbY8Z80g79pqpgZ9Vx48pXp","fileUploadParameters":{"maximumPartSize":5368709120,"minimumPartSize":5242880,"maximumFileSize":5497558138880,"maximumNumParts":10000,"emptyLastPartAllowed":true}}'} headers: connection: [keep-alive] content-length: ['205'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:22:20 GMT'] + date: ['Tue, 13 Nov 2018 20:30:11 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592540705-65387] + x-request-id: [1542141011237-332711] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"size": 5, "md5": "73dfff57fe24e807bd4fb1bc4e07cd73", - "index": 1}' + body: !!python/unicode '{"index": 1, "size": 5, "md5": "73dfff57fe24e807bd4fb1bc4e07cd73"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k7700YF2bVJvpJkZZ2f6y/upload + uri: https://api.dnanexus.com/file-FPbY8ZQ0g79YYFg006F1yx86/upload response: - body: {string: !!python/unicode '{"url":"https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/ece4/file/open/file-FP9k7700YF2bVJvpJkZZ2f6y/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181026%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181026T222220Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=48eef08d60b051a3338aaab9a4a7378844febf89ba99fe973c89cd1de3e910a0","headers":{"host":"dnanexus-platform-upload-prod.s3.amazonaws.com","content-type":"binary/octet-stream","x-amz-server-side-encryption":"AES256","content-md5":"c9//V/4k6Ae9T7G8TgfNcw==","content-length":"5"},"expires":1540592660842}'} + body: {string: !!python/unicode '{"url":"https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/e035/file/open/file-FPbY8ZQ0g79YYFg006F1yx86/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181113%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181113T203011Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=8abe13e6159b82517ddfcdbbbb7c16adb4207e80ceb5d0a2595a44605a3a2959","headers":{"host":"dnanexus-platform-upload-prod.s3.amazonaws.com","content-type":"binary/octet-stream","x-amz-server-side-encryption":"AES256","content-md5":"c9//V/4k6Ae9T7G8TgfNcw==","content-length":"5"},"expires":1542141131541}'} headers: connection: [keep-alive] content-length: ['692'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:22:20 GMT'] + date: ['Tue, 13 Nov 2018 20:30:11 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592540826-765651] + x-request-id: [1542141011383-260742] status: {code: 200, message: OK} - request: body: !!python/unicode data0 headers: DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] content-length: ['5'] content-md5: [c9//V/4k6Ae9T7G8TgfNcw==] content-type: [binary/octet-stream] host: [dnanexus-platform-upload-prod.s3.amazonaws.com] x-amz-server-side-encryption: [AES256] method: PUT - uri: https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/ece4/file/open/file-FP9k7700YF2bVJvpJkZZ2f6y/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181026%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181026T222220Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=48eef08d60b051a3338aaab9a4a7378844febf89ba99fe973c89cd1de3e910a0 + uri: https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/e035/file/open/file-FPbY8ZQ0g79YYFg006F1yx86/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181113%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181113T203011Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=8abe13e6159b82517ddfcdbbbb7c16adb4207e80ceb5d0a2595a44605a3a2959 response: body: {string: !!python/unicode ''} headers: content-length: ['0'] - date: ['Fri, 26 Oct 2018 22:22:22 GMT'] + date: ['Tue, 13 Nov 2018 20:30:12 GMT'] etag: ['"73dfff57fe24e807bd4fb1bc4e07cd73"'] server: [AmazonS3] - x-amz-expiration: ['expiry-date="Sat, 17 Nov 2018 00:00:00 GMT", rule-id="3weekpurge"'] - x-amz-id-2: [gkrtnbwwzGLRr7sK0x/6aJLKYBQdvinl1XIiG5jA3Oc958H8vDWM55zEkENM5AlC0QT5Go0Baf8=] - x-amz-request-id: [579FC8D6FD564435] + x-amz-expiration: ['expiry-date="Wed, 05 Dec 2018 00:00:00 GMT", rule-id="3weekpurge"'] + x-amz-id-2: [m08ttTcs1Acj2cYen3CUlK4JqbP8Sai7YcW/++HvgxilQL9FmDMdykjke0PDiqEVYo53mdFtP3I=] + x-amz-request-id: [FE5F5DF731BFD918] x-amz-server-side-encryption: [AES256] status: {code: 200, message: OK} - request: @@ -217,101 +196,101 @@ interactions: headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k7700YF2bVJvpJkZZ2f6y/close + uri: https://api.dnanexus.com/file-FPbY8ZQ0g79YYFg006F1yx86/close response: - body: {string: !!python/unicode '{"id":"file-FP9k7700YF2bVJvpJkZZ2f6y"}'} + body: {string: !!python/unicode '{"id":"file-FPbY8ZQ0g79YYFg006F1yx86"}'} headers: connection: [keep-alive] content-length: ['38'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:22:21 GMT'] + date: ['Tue, 13 Nov 2018 20:30:12 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592541422-938574] + x-request-id: [1542141012001-762653] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"limit": 2, "name": "TestCopy.test_posix_to_dx_file.46626e33", + body: !!python/unicode '{"limit": 2, "name": "TestCopy.test_posix_to_dx_file.b7a39e7e", "level": "VIEW"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/system/findProjects response: - body: {string: !!python/unicode '{"results":[{"id":"project-FP9k76j0YF2qPYg95F286zFv","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} + body: {string: !!python/unicode '{"results":[{"id":"project-FPbY8Z80g79pqpgZ9Vx48pXp","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} headers: connection: [keep-alive] content-length: ['147'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:22:21 GMT'] + date: ['Tue, 13 Nov 2018 20:30:12 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592541569-402118] + x-request-id: [1542141012197-174316] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"objects": [{"name": "folder_file.txt", "project": "project-FP9k76j0YF2qPYg95F286zFv", - "batchsize": 2, "folder": "/temp_folder"}]}' + body: !!python/unicode '{"objects": [{"project": "project-FPbY8Z80g79pqpgZ9Vx48pXp", + "folder": "/temp_folder", "name": "folder_file.txt", "batchsize": 2}]}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/system/resolveDataObjects response: - body: {string: !!python/unicode '{"results":[[{"project":"project-FP9k76j0YF2qPYg95F286zFv","id":"file-FP9k7700YF2bVJvpJkZZ2f6y"}]]}'} + body: {string: !!python/unicode '{"results":[[{"project":"project-FPbY8Z80g79pqpgZ9Vx48pXp","id":"file-FPbY8ZQ0g79YYFg006F1yx86"}]]}'} headers: connection: [keep-alive] content-length: ['99'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:22:21 GMT'] + date: ['Tue, 13 Nov 2018 20:30:12 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592541850-621112] + x-request-id: [1542141012342-747254] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"project": "project-FP9k76j0YF2qPYg95F286zFv"}' + body: !!python/unicode '{"project": "project-FPbY8Z80g79pqpgZ9Vx48pXp"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k7700YF2bVJvpJkZZ2f6y/describe + uri: https://api.dnanexus.com/file-FPbY8ZQ0g79YYFg006F1yx86/describe response: - body: {string: !!python/unicode '{"id":"file-FP9k7700YF2bVJvpJkZZ2f6y","project":"project-FP9k76j0YF2qPYg95F286zFv","class":"file","sponsored":false,"name":"folder_file.txt","types":[],"state":"closing","hidden":false,"links":[],"folder":"/temp_folder","tags":[],"created":1540592540000,"modified":1540592541442,"createdBy":{"user":"user-akumar_counsyl"},"media":"","archivalState":"live"}'} + body: {string: !!python/unicode '{"id":"file-FPbY8ZQ0g79YYFg006F1yx86","project":"project-FPbY8Z80g79pqpgZ9Vx48pXp","class":"file","sponsored":false,"name":"folder_file.txt","types":[],"state":"closing","hidden":false,"links":[],"folder":"/temp_folder","tags":[],"created":1542141010000,"modified":1542141012047,"createdBy":{"user":"user-akumar_counsyl"},"media":"","archivalState":"live"}'} headers: connection: [keep-alive] content-length: ['356'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:22:21 GMT'] + date: ['Tue, 13 Nov 2018 20:30:12 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592541961-606565] + x-request-id: [1542141012455-11730] status: {code: 200, message: OK} - request: body: !!python/unicode '{}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k76j0YF2qPYg95F286zFv/destroy + uri: https://api.dnanexus.com/project-FPbY8Z80g79pqpgZ9Vx48pXp/destroy response: - body: {string: !!python/unicode '{"id":"project-FP9k76j0YF2qPYg95F286zFv"}'} + body: {string: !!python/unicode '{"id":"project-FPbY8Z80g79pqpgZ9Vx48pXp"}'} headers: connection: [keep-alive] content-length: ['41'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:22:24 GMT'] + date: ['Tue, 13 Nov 2018 20:30:15 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592542094-180117] + x-request-id: [1542141012593-842330] status: {code: 200, message: OK} version: 1 diff --git a/stor/tests/cassettes_py2/TestCopy/test_posix_to_dx_file_folder_no_ext.yaml b/stor_dx/stor_dx/tests/cassettes_py2/TestCopy/test_posix_to_dx_file_folder_no_ext.yaml similarity index 54% rename from stor/tests/cassettes_py2/TestCopy/test_posix_to_dx_file_folder_no_ext.yaml rename to stor_dx/stor_dx/tests/cassettes_py2/TestCopy/test_posix_to_dx_file_folder_no_ext.yaml index dae96cfc..b0ccb766 100644 --- a/stor/tests/cassettes_py2/TestCopy/test_posix_to_dx_file_folder_no_ext.yaml +++ b/stor_dx/stor_dx/tests/cassettes_py2/TestCopy/test_posix_to_dx_file_folder_no_ext.yaml @@ -1,117 +1,95 @@ interactions: - request: - body: !!python/unicode '{"name": "TestCopy.test_posix_to_dx_file_folder_no_ext.3a5aaa0c"}' + body: !!python/unicode '{"name": "TestCopy.test_posix_to_dx_file_folder_no_ext.51b8b80a"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/project/new response: - body: {string: !!python/unicode '{"id":"project-FP9k78805JybVJvpJkZZ2f70"}'} + body: {string: !!python/unicode '{"id":"project-FPbY8bj024bJQKK224Gky3JJ"}'} headers: connection: [keep-alive] content-length: ['41'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:22:25 GMT'] + date: ['Tue, 13 Nov 2018 20:30:15 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592545370-385613] + x-request-id: [1542141015533-773135] status: {code: 200, message: OK} - request: body: !!python/unicode '{}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k78805JybVJvpJkZZ2f70/describe + uri: https://api.dnanexus.com/project-FPbY8bj024bJQKK224Gky3JJ/describe response: - body: {string: !!python/unicode '{"id":"project-FP9k78805JybVJvpJkZZ2f70","name":"TestCopy.test_posix_to_dx_file_folder_no_ext.3a5aaa0c","class":"project","created":1540592545000,"modified":1540592545000,"billTo":"org-counsyl","level":"ADMINISTER","dataUsage":0,"sponsoredDataUsage":0,"region":"aws:us-east-1","summary":"","description":"","protected":false,"restricted":false,"downloadRestricted":false,"containsPHI":false,"createdBy":{"user":"user-akumar_counsyl"},"version":0,"storageCost":0,"pendingTransfer":null,"tags":[],"defaultInstanceType":"mem2_hdd2_x2","archivalState":"live","archivalProgress":null,"totalSponsoredEgressBytes":0,"consumedSponsoredEgressBytes":0,"atSpendingLimit":false}'} + body: {string: !!python/unicode '{"id":"project-FPbY8bj024bJQKK224Gky3JJ","name":"TestCopy.test_posix_to_dx_file_folder_no_ext.51b8b80a","class":"project","created":1542141015000,"modified":1542141015000,"billTo":"org-counsyl","level":"ADMINISTER","dataUsage":0,"sponsoredDataUsage":0,"region":"aws:us-east-1","summary":"","description":"","protected":false,"restricted":false,"downloadRestricted":false,"containsPHI":false,"createdBy":{"user":"user-akumar_counsyl"},"version":0,"storageCost":0,"pendingTransfer":null,"tags":[],"defaultInstanceType":"mem2_hdd2_x2","archivalState":"live","archivalProgress":null,"totalSponsoredEgressBytes":0,"consumedSponsoredEgressBytes":0,"atSpendingLimit":false}'} headers: connection: [keep-alive] content-length: ['666'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:22:25 GMT'] + date: ['Tue, 13 Nov 2018 20:30:15 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592545485-861551] + x-request-id: [1542141015643-549753] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"limit": 2, "name": "TestCopy.test_posix_to_dx_file_folder_no_ext.3a5aaa0c", + body: !!python/unicode '{"limit": 2, "name": "TestCopy.test_posix_to_dx_file_folder_no_ext.51b8b80a", "level": "VIEW"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/system/findProjects response: - body: {string: !!python/unicode '{"results":[{"id":"project-FP9k78805JybVJvpJkZZ2f70","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} + body: {string: !!python/unicode '{"results":[{"id":"project-FPbY8bj024bJQKK224Gky3JJ","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} headers: connection: [keep-alive] content-length: ['147'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:22:25 GMT'] + date: ['Tue, 13 Nov 2018 20:30:15 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592545602-829194] + x-request-id: [1542141015789-259925] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"includeHidden": false, "only": "folders", "folder": - "/temp_folder/folder_file", "describe": {"fields": {"name": true, "folder": - true}}}' + body: !!python/unicode '{"folder": "/temp_folder/folder_file", "describe": {"fields": + {"folder": true, "name": true}}, "only": "folders", "includeHidden": false}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k78805JybVJvpJkZZ2f70/listFolder + uri: https://api.dnanexus.com/project-FPbY8bj024bJQKK224Gky3JJ/listFolder response: body: {string: !!python/unicode '{"error":{"type":"ResourceNotFound","message":"The - specified folder could not be found in project-FP9k78805JybVJvpJkZZ2f70"}}'} + specified folder could not be found in project-FPbY8bj024bJQKK224Gky3JJ"}}'} headers: connection: [keep-alive] content-type: [application/json] - date: ['Fri, 26 Oct 2018 22:22:25 GMT'] + date: ['Tue, 13 Nov 2018 20:30:15 GMT'] server: [nginx] transfer-encoding: [chunked] vary: [Accept-Encoding] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592545727-341479] + x-request-id: [1542141015940-696671] status: {code: 404, message: Not Found} - request: - body: !!python/unicode '{"limit": 2, "name": "TestCopy.test_posix_to_dx_file_folder_no_ext.3a5aaa0c", - "level": "VIEW"}' - headers: - Content-Type: [application/json] - DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] - method: POST - uri: https://api.dnanexus.com/system/findProjects - response: - body: {string: !!python/unicode '{"results":[{"id":"project-FP9k78805JybVJvpJkZZ2f70","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} - headers: - connection: [keep-alive] - content-length: ['147'] - content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:22:26 GMT'] - server: [nginx] - x-content-type-options: [nosniff] - x-powered-by: [Express] - x-request-id: [1540592546127-328397] - status: {code: 200, message: OK} -- request: - body: !!python/unicode '{"objects": [{"name": "folder_file", "project": "project-FP9k78805JybVJvpJkZZ2f70", - "batchsize": 2, "folder": "/temp_folder"}]}' + body: !!python/unicode '{"objects": [{"project": "project-FPbY8bj024bJQKK224Gky3JJ", + "folder": "/temp_folder", "name": "folder_file", "batchsize": 2}]}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/system/resolveDataObjects response: @@ -120,96 +98,96 @@ interactions: connection: [keep-alive] content-length: ['16'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:22:26 GMT'] + date: ['Tue, 13 Nov 2018 20:30:16 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592546284-153773] + x-request-id: [1542141016281-340683] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"parents": true, "name": "folder_file", "project": "project-FP9k78805JybVJvpJkZZ2f70", - "folder": "/temp_folder", "nonce": "c82b8fe463703a1ce3cbb76b48e00b482c5afb2e552a57f4d95fa76914bf18351540592546.365773"}' + body: !!python/unicode '{"project": "project-FPbY8bj024bJQKK224Gky3JJ", "nonce": + "727c6fa610b1b5c337694db45c4b35a0a8c8a44bb8be4534b8def0c442f982971542141016.355648", + "folder": "/temp_folder", "parents": true, "name": "folder_file"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/file/new response: - body: {string: !!python/unicode '{"id":"file-FP9k78Q05JyqPYg95F286zFx"}'} + body: {string: !!python/unicode '{"id":"file-FPbY8f0024b8B942900j3yXz"}'} headers: connection: [keep-alive] content-length: ['38'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:22:26 GMT'] + date: ['Tue, 13 Nov 2018 20:30:16 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592546415-878573] + x-request-id: [1542141016399-299858] status: {code: 200, message: OK} - request: body: !!python/unicode '{"fields": {"fileUploadParameters": true}}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k78805JybVJvpJkZZ2f70/describe + uri: https://api.dnanexus.com/project-FPbY8bj024bJQKK224Gky3JJ/describe response: - body: {string: !!python/unicode '{"id":"project-FP9k78805JybVJvpJkZZ2f70","fileUploadParameters":{"maximumPartSize":5368709120,"minimumPartSize":5242880,"maximumFileSize":5497558138880,"maximumNumParts":10000,"emptyLastPartAllowed":true}}'} + body: {string: !!python/unicode '{"id":"project-FPbY8bj024bJQKK224Gky3JJ","fileUploadParameters":{"maximumPartSize":5368709120,"minimumPartSize":5242880,"maximumFileSize":5497558138880,"maximumNumParts":10000,"emptyLastPartAllowed":true}}'} headers: connection: [keep-alive] content-length: ['205'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:22:26 GMT'] + date: ['Tue, 13 Nov 2018 20:30:16 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592546566-904734] + x-request-id: [1542141016554-266233] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"size": 5, "md5": "73dfff57fe24e807bd4fb1bc4e07cd73", - "index": 1}' + body: !!python/unicode '{"index": 1, "size": 5, "md5": "73dfff57fe24e807bd4fb1bc4e07cd73"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k78Q05JyqPYg95F286zFx/upload + uri: https://api.dnanexus.com/file-FPbY8f0024b8B942900j3yXz/upload response: - body: {string: !!python/unicode '{"url":"https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/9cc4/file/open/file-FP9k78Q05JyqPYg95F286zFx/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181026%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181026T222226Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=04aaf84cd2954a463487e3e00967beee4f6ba42a5f0c8ca617ba32e72f76abf0","headers":{"host":"dnanexus-platform-upload-prod.s3.amazonaws.com","content-type":"binary/octet-stream","x-amz-server-side-encryption":"AES256","content-md5":"c9//V/4k6Ae9T7G8TgfNcw==","content-length":"5"},"expires":1540592666694}'} + body: {string: !!python/unicode '{"url":"https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/1e00/file/open/file-FPbY8f0024b8B942900j3yXz/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181113%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181113T203016Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=8a08cdab6d25ea082faa6bf83c39b7812d6d00021c93729daa74a401dd63c219","headers":{"host":"dnanexus-platform-upload-prod.s3.amazonaws.com","content-type":"binary/octet-stream","x-amz-server-side-encryption":"AES256","content-md5":"c9//V/4k6Ae9T7G8TgfNcw==","content-length":"5"},"expires":1542141136684}'} headers: connection: [keep-alive] content-length: ['692'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:22:26 GMT'] + date: ['Tue, 13 Nov 2018 20:30:16 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592546682-680284] + x-request-id: [1542141016670-702532] status: {code: 200, message: OK} - request: body: !!python/unicode data0 headers: DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] content-length: ['5'] content-md5: [c9//V/4k6Ae9T7G8TgfNcw==] content-type: [binary/octet-stream] host: [dnanexus-platform-upload-prod.s3.amazonaws.com] x-amz-server-side-encryption: [AES256] method: PUT - uri: https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/9cc4/file/open/file-FP9k78Q05JyqPYg95F286zFx/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181026%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181026T222226Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=04aaf84cd2954a463487e3e00967beee4f6ba42a5f0c8ca617ba32e72f76abf0 + uri: https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/1e00/file/open/file-FPbY8f0024b8B942900j3yXz/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181113%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181113T203016Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=8a08cdab6d25ea082faa6bf83c39b7812d6d00021c93729daa74a401dd63c219 response: body: {string: !!python/unicode ''} headers: content-length: ['0'] - date: ['Fri, 26 Oct 2018 22:22:28 GMT'] + date: ['Tue, 13 Nov 2018 20:30:18 GMT'] etag: ['"73dfff57fe24e807bd4fb1bc4e07cd73"'] server: [AmazonS3] - x-amz-expiration: ['expiry-date="Sat, 17 Nov 2018 00:00:00 GMT", rule-id="3weekpurge"'] - x-amz-id-2: [K23tvCVc8VStIjFZVTCVpSrZfXmHd/z+sypFZq966agdiDqltD8PHkDLyKZWgLKOIFksY24ZxbE=] - x-amz-request-id: [DEFF2EF0D3CA7F09] + x-amz-expiration: ['expiry-date="Wed, 05 Dec 2018 00:00:00 GMT", rule-id="3weekpurge"'] + x-amz-id-2: [isk3Qq4YGi08LrzhPnmMfdr1jmQ4gbb6zrQ6z7aB8SqaL4ThRXG1JuqQWvd1mGwswEjo/YKlPKU=] + x-amz-request-id: [9AA40FD0BA3094AA] x-amz-server-side-encryption: [AES256] status: {code: 200, message: OK} - request: @@ -217,135 +195,134 @@ interactions: headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k78Q05JyqPYg95F286zFx/close + uri: https://api.dnanexus.com/file-FPbY8f0024b8B942900j3yXz/close response: - body: {string: !!python/unicode '{"id":"file-FP9k78Q05JyqPYg95F286zFx"}'} + body: {string: !!python/unicode '{"id":"file-FPbY8f0024b8B942900j3yXz"}'} headers: connection: [keep-alive] content-length: ['38'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:22:27 GMT'] + date: ['Tue, 13 Nov 2018 20:30:17 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592547233-530640] + x-request-id: [1542141017175-227075] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"limit": 2, "name": "TestCopy.test_posix_to_dx_file_folder_no_ext.3a5aaa0c", + body: !!python/unicode '{"limit": 2, "name": "TestCopy.test_posix_to_dx_file_folder_no_ext.51b8b80a", "level": "VIEW"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/system/findProjects response: - body: {string: !!python/unicode '{"results":[{"id":"project-FP9k78805JybVJvpJkZZ2f70","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} + body: {string: !!python/unicode '{"results":[{"id":"project-FPbY8bj024bJQKK224Gky3JJ","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} headers: connection: [keep-alive] content-length: ['147'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:22:27 GMT'] + date: ['Tue, 13 Nov 2018 20:30:17 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592547364-459452] + x-request-id: [1542141017307-147851] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"objects": [{"name": "folder_file", "project": "project-FP9k78805JybVJvpJkZZ2f70", - "batchsize": 2, "folder": "/temp_folder"}]}' + body: !!python/unicode '{"objects": [{"project": "project-FPbY8bj024bJQKK224Gky3JJ", + "folder": "/temp_folder", "name": "folder_file", "batchsize": 2}]}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/system/resolveDataObjects response: - body: {string: !!python/unicode '{"results":[[{"project":"project-FP9k78805JybVJvpJkZZ2f70","id":"file-FP9k78Q05JyqPYg95F286zFx"}]]}'} + body: {string: !!python/unicode '{"results":[[{"project":"project-FPbY8bj024bJQKK224Gky3JJ","id":"file-FPbY8f0024b8B942900j3yXz"}]]}'} headers: connection: [keep-alive] content-length: ['99'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:22:27 GMT'] + date: ['Tue, 13 Nov 2018 20:30:17 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592547516-168980] + x-request-id: [1542141017426-270918] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"project": "project-FP9k78805JybVJvpJkZZ2f70"}' + body: !!python/unicode '{"project": "project-FPbY8bj024bJQKK224Gky3JJ"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k78Q05JyqPYg95F286zFx/describe + uri: https://api.dnanexus.com/file-FPbY8f0024b8B942900j3yXz/describe response: - body: {string: !!python/unicode '{"id":"file-FP9k78Q05JyqPYg95F286zFx","project":"project-FP9k78805JybVJvpJkZZ2f70","class":"file","sponsored":false,"name":"folder_file","types":[],"state":"closed","hidden":false,"links":[],"folder":"/temp_folder","tags":[],"created":1540592546000,"modified":1540592547594,"createdBy":{"user":"user-akumar_counsyl"},"media":"text/plain","archivalState":"live","size":5}'} + body: {string: !!python/unicode '{"id":"file-FPbY8f0024b8B942900j3yXz","project":"project-FPbY8bj024bJQKK224Gky3JJ","class":"file","sponsored":false,"name":"folder_file","types":[],"state":"closing","hidden":false,"links":[],"folder":"/temp_folder","tags":[],"created":1542141016000,"modified":1542141017188,"createdBy":{"user":"user-akumar_counsyl"},"media":"","archivalState":"live"}'} headers: connection: [keep-alive] - content-length: ['370'] + content-length: ['352'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:22:27 GMT'] + date: ['Tue, 13 Nov 2018 20:30:17 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592547622-624600] + x-request-id: [1542141017516-438324] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"includeHidden": false, "only": "folders", "folder": - "/temp_folder/folder_file", "describe": {"fields": {"name": true, "folder": - true}}}' + body: !!python/unicode '{"folder": "/temp_folder/folder_file", "describe": {"fields": + {"folder": true, "name": true}}, "only": "folders", "includeHidden": false}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k78805JybVJvpJkZZ2f70/listFolder + uri: https://api.dnanexus.com/project-FPbY8bj024bJQKK224Gky3JJ/listFolder response: body: {string: !!python/unicode '{"error":{"type":"ResourceNotFound","message":"The - specified folder could not be found in project-FP9k78805JybVJvpJkZZ2f70"}}'} + specified folder could not be found in project-FPbY8bj024bJQKK224Gky3JJ"}}'} headers: connection: [keep-alive] content-type: [application/json] - date: ['Fri, 26 Oct 2018 22:22:27 GMT'] + date: ['Tue, 13 Nov 2018 20:30:17 GMT'] server: [nginx] transfer-encoding: [chunked] vary: [Accept-Encoding] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592547731-446898] + x-request-id: [1542141017613-748188] status: {code: 404, message: Not Found} - request: - body: !!python/unicode '{"limit": 2, "name": "TestCopy.test_posix_to_dx_file_folder_no_ext.3a5aaa0c", + body: !!python/unicode '{"limit": 2, "name": "TestCopy.test_posix_to_dx_file_folder_no_ext.51b8b80a", "level": "VIEW"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/system/findProjects response: - body: {string: !!python/unicode '{"results":[{"id":"project-FP9k78805JybVJvpJkZZ2f70","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} + body: {string: !!python/unicode '{"results":[{"id":"project-FPbY8bj024bJQKK224Gky3JJ","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} headers: connection: [keep-alive] content-length: ['147'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:22:28 GMT'] + date: ['Tue, 13 Nov 2018 20:30:17 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592548169-35806] + x-request-id: [1542141017938-545337] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"objects": [{"name": "random.txt", "project": "project-FP9k78805JybVJvpJkZZ2f70", - "batchsize": 2, "folder": "/temp_folder/folder_file"}]}' + body: !!python/unicode '{"objects": [{"project": "project-FPbY8bj024bJQKK224Gky3JJ", + "folder": "/temp_folder/folder_file", "name": "random.txt", "batchsize": 2}]}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/system/resolveDataObjects response: @@ -354,106 +331,85 @@ interactions: connection: [keep-alive] content-length: ['16'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:22:28 GMT'] + date: ['Tue, 13 Nov 2018 20:30:18 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592548409-674251] + x-request-id: [1542141018049-369514] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"includeHidden": false, "only": "folders", "folder": - "/temp_folder/folder_file/random.txt", "describe": {"fields": {"name": true, - "folder": true}}}' + body: !!python/unicode '{"folder": "/temp_folder/folder_file/random.txt", "describe": + {"fields": {"folder": true, "name": true}}, "only": "folders", "includeHidden": + false}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k78805JybVJvpJkZZ2f70/listFolder + uri: https://api.dnanexus.com/project-FPbY8bj024bJQKK224Gky3JJ/listFolder response: body: {string: !!python/unicode '{"error":{"type":"ResourceNotFound","message":"The - specified folder could not be found in project-FP9k78805JybVJvpJkZZ2f70"}}'} + specified folder could not be found in project-FPbY8bj024bJQKK224Gky3JJ"}}'} headers: connection: [keep-alive] content-type: [application/json] - date: ['Fri, 26 Oct 2018 22:22:28 GMT'] + date: ['Tue, 13 Nov 2018 20:30:18 GMT'] server: [nginx] transfer-encoding: [chunked] vary: [Accept-Encoding] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592548516-79299] + x-request-id: [1542141018139-108967] status: {code: 404, message: Not Found} - request: - body: !!python/unicode '{"limit": 2, "name": "TestCopy.test_posix_to_dx_file_folder_no_ext.3a5aaa0c", + body: !!python/unicode '{"limit": 2, "name": "TestCopy.test_posix_to_dx_file_folder_no_ext.51b8b80a", "level": "VIEW"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/system/findProjects response: - body: {string: !!python/unicode '{"results":[{"id":"project-FP9k78805JybVJvpJkZZ2f70","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} + body: {string: !!python/unicode '{"results":[{"id":"project-FPbY8bj024bJQKK224Gky3JJ","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} headers: connection: [keep-alive] content-length: ['147'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:22:29 GMT'] + date: ['Tue, 13 Nov 2018 20:30:18 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592548944-501836] + x-request-id: [1542141018501-208321] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"includeHidden": false, "only": "folders", "folder": - "/temp_folder", "describe": {"fields": {"name": true, "folder": true}}}' + body: !!python/unicode '{"folder": "/temp_folder", "describe": {"fields": {"folder": + true, "name": true}}, "only": "folders", "includeHidden": false}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k78805JybVJvpJkZZ2f70/listFolder + uri: https://api.dnanexus.com/project-FPbY8bj024bJQKK224Gky3JJ/listFolder response: body: {string: !!python/unicode '{"folders":[]}'} headers: connection: [keep-alive] content-length: ['14'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:22:29 GMT'] - server: [nginx] - x-content-type-options: [nosniff] - x-powered-by: [Express] - x-request-id: [1540592549150-318403] - status: {code: 200, message: OK} -- request: - body: !!python/unicode '{"limit": 2, "name": "TestCopy.test_posix_to_dx_file_folder_no_ext.3a5aaa0c", - "level": "VIEW"}' - headers: - Content-Type: [application/json] - DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] - method: POST - uri: https://api.dnanexus.com/system/findProjects - response: - body: {string: !!python/unicode '{"results":[{"id":"project-FP9k78805JybVJvpJkZZ2f70","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} - headers: - connection: [keep-alive] - content-length: ['147'] - content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:22:29 GMT'] + date: ['Tue, 13 Nov 2018 20:30:18 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592549260-822302] + x-request-id: [1542141018615-530507] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"objects": [{"name": "random.txt", "project": "project-FP9k78805JybVJvpJkZZ2f70", - "batchsize": 2, "folder": "/temp_folder"}]}' + body: !!python/unicode '{"objects": [{"project": "project-FPbY8bj024bJQKK224Gky3JJ", + "folder": "/temp_folder", "name": "random.txt", "batchsize": 2}]}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/system/resolveDataObjects response: @@ -462,96 +418,96 @@ interactions: connection: [keep-alive] content-length: ['16'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:22:29 GMT'] + date: ['Tue, 13 Nov 2018 20:30:18 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592549694-170670] + x-request-id: [1542141018721-365658] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"parents": true, "name": "random.txt", "project": "project-FP9k78805JybVJvpJkZZ2f70", - "folder": "/temp_folder", "nonce": "d405040b550db6e9a936c6d7803e2765e4439a5dc14dca498725cf5e3e8754531540592549.755471"}' + body: !!python/unicode '{"project": "project-FPbY8bj024bJQKK224Gky3JJ", "nonce": + "aaf6c2d96e98bdd59d25ce5bc80e26ba4bbff98499037b7127329134a559d5be1542141018.779581", + "folder": "/temp_folder", "parents": true, "name": "random.txt"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/file/new response: - body: {string: !!python/unicode '{"id":"file-FP9k79805Jyf8GXkJpbYfZyv"}'} + body: {string: !!python/unicode '{"id":"file-FPbY8fQ024b8B942900j3yY1"}'} headers: connection: [keep-alive] content-length: ['38'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:22:29 GMT'] + date: ['Tue, 13 Nov 2018 20:30:18 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592549800-76508] + x-request-id: [1542141018823-485894] status: {code: 200, message: OK} - request: body: !!python/unicode '{"fields": {"fileUploadParameters": true}}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k78805JybVJvpJkZZ2f70/describe + uri: https://api.dnanexus.com/project-FPbY8bj024bJQKK224Gky3JJ/describe response: - body: {string: !!python/unicode '{"id":"project-FP9k78805JybVJvpJkZZ2f70","fileUploadParameters":{"maximumPartSize":5368709120,"minimumPartSize":5242880,"maximumFileSize":5497558138880,"maximumNumParts":10000,"emptyLastPartAllowed":true}}'} + body: {string: !!python/unicode '{"id":"project-FPbY8bj024bJQKK224Gky3JJ","fileUploadParameters":{"maximumPartSize":5368709120,"minimumPartSize":5242880,"maximumFileSize":5497558138880,"maximumNumParts":10000,"emptyLastPartAllowed":true}}'} headers: connection: [keep-alive] content-length: ['205'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:22:29 GMT'] + date: ['Tue, 13 Nov 2018 20:30:18 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592549940-968773] + x-request-id: [1542141018940-563098] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"size": 5, "md5": "73dfff57fe24e807bd4fb1bc4e07cd73", - "index": 1}' + body: !!python/unicode '{"index": 1, "size": 5, "md5": "73dfff57fe24e807bd4fb1bc4e07cd73"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k79805Jyf8GXkJpbYfZyv/upload + uri: https://api.dnanexus.com/file-FPbY8fQ024b8B942900j3yY1/upload response: - body: {string: !!python/unicode '{"url":"https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/603d/file/open/file-FP9k79805Jyf8GXkJpbYfZyv/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181026%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181026T222230Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=681b31e690d81e150deeb67573636e3d7ceb0da978d4b1588229a759aa73dd0e","headers":{"host":"dnanexus-platform-upload-prod.s3.amazonaws.com","content-type":"binary/octet-stream","x-amz-server-side-encryption":"AES256","content-md5":"c9//V/4k6Ae9T7G8TgfNcw==","content-length":"5"},"expires":1540592670096}'} + body: {string: !!python/unicode '{"url":"https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/8cbf/file/open/file-FPbY8fQ024b8B942900j3yY1/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181113%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181113T203019Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=ead5c1a45e14892f13aed1db896e880c2273c1dc0b9d1820f66e1e0a2be92d65","headers":{"host":"dnanexus-platform-upload-prod.s3.amazonaws.com","content-type":"binary/octet-stream","x-amz-server-side-encryption":"AES256","content-md5":"c9//V/4k6Ae9T7G8TgfNcw==","content-length":"5"},"expires":1542141139073}'} headers: connection: [keep-alive] content-length: ['692'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:22:30 GMT'] + date: ['Tue, 13 Nov 2018 20:30:19 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592550078-453404] + x-request-id: [1542141019048-215549] status: {code: 200, message: OK} - request: body: !!python/unicode data0 headers: DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] content-length: ['5'] content-md5: [c9//V/4k6Ae9T7G8TgfNcw==] content-type: [binary/octet-stream] host: [dnanexus-platform-upload-prod.s3.amazonaws.com] x-amz-server-side-encryption: [AES256] method: PUT - uri: https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/603d/file/open/file-FP9k79805Jyf8GXkJpbYfZyv/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181026%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181026T222230Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=681b31e690d81e150deeb67573636e3d7ceb0da978d4b1588229a759aa73dd0e + uri: https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/8cbf/file/open/file-FPbY8fQ024b8B942900j3yY1/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181113%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181113T203019Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=ead5c1a45e14892f13aed1db896e880c2273c1dc0b9d1820f66e1e0a2be92d65 response: body: {string: !!python/unicode ''} headers: content-length: ['0'] - date: ['Fri, 26 Oct 2018 22:22:31 GMT'] + date: ['Tue, 13 Nov 2018 20:30:20 GMT'] etag: ['"73dfff57fe24e807bd4fb1bc4e07cd73"'] server: [AmazonS3] - x-amz-expiration: ['expiry-date="Sat, 17 Nov 2018 00:00:00 GMT", rule-id="3weekpurge"'] - x-amz-id-2: [JYo81XzuxtCLOnL9M+0qjZi1f5+COsBU7aNDjx5LKUjcbldEbkvGv/0n1jvQdPmXhjVu1OlDZXU=] - x-amz-request-id: [7B919B4B04E48FE6] + x-amz-expiration: ['expiry-date="Wed, 05 Dec 2018 00:00:00 GMT", rule-id="3weekpurge"'] + x-amz-id-2: [buOhYyRQp4JZzhUsDfjiP6riYVzTsD0MysX7d5vCYA2y4hFAk5PpKxo85RvKf6zdDsq1CHSEZQo=] + x-amz-request-id: [8F4E9471D3AB706C] x-amz-server-side-encryption: [AES256] status: {code: 200, message: OK} - request: @@ -559,101 +515,101 @@ interactions: headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k79805Jyf8GXkJpbYfZyv/close + uri: https://api.dnanexus.com/file-FPbY8fQ024b8B942900j3yY1/close response: - body: {string: !!python/unicode '{"id":"file-FP9k79805Jyf8GXkJpbYfZyv"}'} + body: {string: !!python/unicode '{"id":"file-FPbY8fQ024b8B942900j3yY1"}'} headers: connection: [keep-alive] content-length: ['38'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:22:30 GMT'] + date: ['Tue, 13 Nov 2018 20:30:19 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592550691-864737] + x-request-id: [1542141019546-800948] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"limit": 2, "name": "TestCopy.test_posix_to_dx_file_folder_no_ext.3a5aaa0c", + body: !!python/unicode '{"limit": 2, "name": "TestCopy.test_posix_to_dx_file_folder_no_ext.51b8b80a", "level": "VIEW"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/system/findProjects response: - body: {string: !!python/unicode '{"results":[{"id":"project-FP9k78805JybVJvpJkZZ2f70","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} + body: {string: !!python/unicode '{"results":[{"id":"project-FPbY8bj024bJQKK224Gky3JJ","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} headers: connection: [keep-alive] content-length: ['147'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:22:30 GMT'] + date: ['Tue, 13 Nov 2018 20:30:19 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592550841-253231] + x-request-id: [1542141019659-566199] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"objects": [{"name": "random.txt", "project": "project-FP9k78805JybVJvpJkZZ2f70", - "batchsize": 2, "folder": "/temp_folder"}]}' + body: !!python/unicode '{"objects": [{"project": "project-FPbY8bj024bJQKK224Gky3JJ", + "folder": "/temp_folder", "name": "random.txt", "batchsize": 2}]}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/system/resolveDataObjects response: - body: {string: !!python/unicode '{"results":[[{"project":"project-FP9k78805JybVJvpJkZZ2f70","id":"file-FP9k79805Jyf8GXkJpbYfZyv"}]]}'} + body: {string: !!python/unicode '{"results":[[{"project":"project-FPbY8bj024bJQKK224Gky3JJ","id":"file-FPbY8fQ024b8B942900j3yY1"}]]}'} headers: connection: [keep-alive] content-length: ['99'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:22:31 GMT'] + date: ['Tue, 13 Nov 2018 20:30:19 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592551019-160738] + x-request-id: [1542141019770-913810] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"project": "project-FP9k78805JybVJvpJkZZ2f70"}' + body: !!python/unicode '{"project": "project-FPbY8bj024bJQKK224Gky3JJ"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k79805Jyf8GXkJpbYfZyv/describe + uri: https://api.dnanexus.com/file-FPbY8fQ024b8B942900j3yY1/describe response: - body: {string: !!python/unicode '{"id":"file-FP9k79805Jyf8GXkJpbYfZyv","project":"project-FP9k78805JybVJvpJkZZ2f70","class":"file","sponsored":false,"name":"random.txt","types":[],"state":"closing","hidden":false,"links":[],"folder":"/temp_folder","tags":[],"created":1540592549000,"modified":1540592550717,"createdBy":{"user":"user-akumar_counsyl"},"media":"","archivalState":"live"}'} + body: {string: !!python/unicode '{"id":"file-FPbY8fQ024b8B942900j3yY1","project":"project-FPbY8bj024bJQKK224Gky3JJ","class":"file","sponsored":false,"name":"random.txt","types":[],"state":"closing","hidden":false,"links":[],"folder":"/temp_folder","tags":[],"created":1542141018000,"modified":1542141019559,"createdBy":{"user":"user-akumar_counsyl"},"media":"","archivalState":"live"}'} headers: connection: [keep-alive] content-length: ['351'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:22:31 GMT'] + date: ['Tue, 13 Nov 2018 20:30:19 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592551143-654914] + x-request-id: [1542141019862-712777] status: {code: 200, message: OK} - request: body: !!python/unicode '{}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k78805JybVJvpJkZZ2f70/destroy + uri: https://api.dnanexus.com/project-FPbY8bj024bJQKK224Gky3JJ/destroy response: - body: {string: !!python/unicode '{"id":"project-FP9k78805JybVJvpJkZZ2f70"}'} + body: {string: !!python/unicode '{"id":"project-FPbY8bj024bJQKK224Gky3JJ"}'} headers: connection: [keep-alive] content-length: ['41'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:22:36 GMT'] + date: ['Tue, 13 Nov 2018 20:30:22 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592551277-363899] + x-request-id: [1542141019962-867796] status: {code: 200, message: OK} version: 1 diff --git a/stor/tests/cassettes_py2/TestCopy/test_posix_to_dx_folder.yaml b/stor_dx/stor_dx/tests/cassettes_py2/TestCopy/test_posix_to_dx_folder.yaml similarity index 55% rename from stor/tests/cassettes_py2/TestCopy/test_posix_to_dx_folder.yaml rename to stor_dx/stor_dx/tests/cassettes_py2/TestCopy/test_posix_to_dx_folder.yaml index 2a68fcb7..3b3ddc32 100644 --- a/stor/tests/cassettes_py2/TestCopy/test_posix_to_dx_folder.yaml +++ b/stor_dx/stor_dx/tests/cassettes_py2/TestCopy/test_posix_to_dx_folder.yaml @@ -1,72 +1,95 @@ interactions: - request: - body: !!python/unicode '{"name": "TestCopy.test_posix_to_dx_folder.d854ac6d"}' + body: !!python/unicode '{"name": "TestCopy.test_posix_to_dx_folder.98295c13"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/project/new response: - body: {string: !!python/unicode '{"id":"project-FP9k7F00pq7fzyV6JkV1p4P4"}'} + body: {string: !!python/unicode '{"id":"project-FPbY8gj0b3qbfv104VjK72X5"}'} headers: connection: [keep-alive] content-length: ['41'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:22:36 GMT'] + date: ['Tue, 13 Nov 2018 20:30:23 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592556755-405297] + x-request-id: [1542141023348-95675] status: {code: 200, message: OK} - request: body: !!python/unicode '{}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k7F00pq7fzyV6JkV1p4P4/describe + uri: https://api.dnanexus.com/project-FPbY8gj0b3qbfv104VjK72X5/describe response: - body: {string: !!python/unicode '{"id":"project-FP9k7F00pq7fzyV6JkV1p4P4","name":"TestCopy.test_posix_to_dx_folder.d854ac6d","class":"project","created":1540592556000,"modified":1540592556000,"billTo":"org-counsyl","level":"ADMINISTER","dataUsage":0,"sponsoredDataUsage":0,"region":"aws:us-east-1","summary":"","description":"","protected":false,"restricted":false,"downloadRestricted":false,"containsPHI":false,"createdBy":{"user":"user-akumar_counsyl"},"version":0,"storageCost":0,"pendingTransfer":null,"tags":[],"defaultInstanceType":"mem2_hdd2_x2","archivalState":"live","archivalProgress":null,"totalSponsoredEgressBytes":0,"consumedSponsoredEgressBytes":0,"atSpendingLimit":false}'} + body: {string: !!python/unicode '{"id":"project-FPbY8gj0b3qbfv104VjK72X5","name":"TestCopy.test_posix_to_dx_folder.98295c13","class":"project","created":1542141023000,"modified":1542141023000,"billTo":"org-counsyl","level":"ADMINISTER","dataUsage":0,"sponsoredDataUsage":0,"region":"aws:us-east-1","summary":"","description":"","protected":false,"restricted":false,"downloadRestricted":false,"containsPHI":false,"createdBy":{"user":"user-akumar_counsyl"},"version":0,"storageCost":0,"pendingTransfer":null,"tags":[],"defaultInstanceType":"mem2_hdd2_x2","archivalState":"live","archivalProgress":null,"totalSponsoredEgressBytes":0,"consumedSponsoredEgressBytes":0,"atSpendingLimit":false}'} headers: connection: [keep-alive] content-length: ['654'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:22:36 GMT'] + date: ['Tue, 13 Nov 2018 20:30:23 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592556915-939053] + x-request-id: [1542141023545-113206] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"limit": 2, "name": "TestCopy.test_posix_to_dx_folder.d854ac6d", + body: !!python/unicode '{"limit": 2, "name": "TestCopy.test_posix_to_dx_folder.98295c13", "level": "VIEW"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/system/findProjects response: - body: {string: !!python/unicode '{"results":[{"id":"project-FP9k7F00pq7fzyV6JkV1p4P4","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} + body: {string: !!python/unicode '{"results":[{"id":"project-FPbY8gj0b3qbfv104VjK72X5","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} headers: connection: [keep-alive] content-length: ['147'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:22:37 GMT'] + date: ['Tue, 13 Nov 2018 20:30:23 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592557046-819143] + x-request-id: [1542141023742-205523] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"objects": [{"name": "random.txt", "project": "project-FP9k7F00pq7fzyV6JkV1p4P4", - "batchsize": 2, "folder": "/temp_folder"}]}' + body: !!python/unicode '{"folder": "/temp_folder/random.txt", "describe": {"fields": + {"folder": true, "name": true}}, "only": "folders", "includeHidden": false}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] + method: POST + uri: https://api.dnanexus.com/project-FPbY8gj0b3qbfv104VjK72X5/listFolder + response: + body: {string: !!python/unicode '{"error":{"type":"ResourceNotFound","message":"The + specified folder could not be found in project-FPbY8gj0b3qbfv104VjK72X5"}}'} + headers: + connection: [keep-alive] + content-type: [application/json] + date: ['Tue, 13 Nov 2018 20:30:23 GMT'] + server: [nginx] + transfer-encoding: [chunked] + vary: [Accept-Encoding] + x-content-type-options: [nosniff] + x-powered-by: [Express] + x-request-id: [1542141023900-775743] + status: {code: 404, message: Not Found} +- request: + body: !!python/unicode '{"objects": [{"project": "project-FPbY8gj0b3qbfv104VjK72X5", + "folder": "/temp_folder", "name": "random.txt", "batchsize": 2}]}' + headers: + Content-Type: [application/json] + DNAnexus-API: [1.0.0] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/system/resolveDataObjects response: @@ -75,96 +98,96 @@ interactions: connection: [keep-alive] content-length: ['16'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:22:37 GMT'] + date: ['Tue, 13 Nov 2018 20:30:24 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592557217-678826] + x-request-id: [1542141024247-422507] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"parents": true, "name": "random.txt", "project": "project-FP9k7F00pq7fzyV6JkV1p4P4", - "folder": "/temp_folder", "nonce": "d11fc35dde91e180d3ee55de5d052950f0e2d2ebbf7a50dfb0d9e28804bc03101540592557.349862"}' + body: !!python/unicode '{"project": "project-FPbY8gj0b3qbfv104VjK72X5", "nonce": + "deb01ac16fb934b12a6d29d0674babdb254afe1915fd30bd5eea581431cfb6b21542141024.345254", + "folder": "/temp_folder", "parents": true, "name": "random.txt"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/file/new response: - body: {string: !!python/unicode '{"id":"file-FP9k7F80pq7fzyV6JkV1p4P5"}'} + body: {string: !!python/unicode '{"id":"file-FPbY8j00b3qxQKK224Gky3Jb"}'} headers: connection: [keep-alive] content-length: ['38'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:22:37 GMT'] + date: ['Tue, 13 Nov 2018 20:30:24 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592557398-883575] + x-request-id: [1542141024397-17805] status: {code: 200, message: OK} - request: body: !!python/unicode '{"fields": {"fileUploadParameters": true}}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k7F00pq7fzyV6JkV1p4P4/describe + uri: https://api.dnanexus.com/project-FPbY8gj0b3qbfv104VjK72X5/describe response: - body: {string: !!python/unicode '{"id":"project-FP9k7F00pq7fzyV6JkV1p4P4","fileUploadParameters":{"maximumPartSize":5368709120,"minimumPartSize":5242880,"maximumFileSize":5497558138880,"maximumNumParts":10000,"emptyLastPartAllowed":true}}'} + body: {string: !!python/unicode '{"id":"project-FPbY8gj0b3qbfv104VjK72X5","fileUploadParameters":{"maximumPartSize":5368709120,"minimumPartSize":5242880,"maximumFileSize":5497558138880,"maximumNumParts":10000,"emptyLastPartAllowed":true}}'} headers: connection: [keep-alive] content-length: ['205'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:22:37 GMT'] + date: ['Tue, 13 Nov 2018 20:30:24 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592557582-332135] + x-request-id: [1542141024630-908903] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"size": 5, "md5": "73dfff57fe24e807bd4fb1bc4e07cd73", - "index": 1}' + body: !!python/unicode '{"index": 1, "size": 5, "md5": "73dfff57fe24e807bd4fb1bc4e07cd73"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k7F80pq7fzyV6JkV1p4P5/upload + uri: https://api.dnanexus.com/file-FPbY8j00b3qxQKK224Gky3Jb/upload response: - body: {string: !!python/unicode '{"url":"https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/f71f/file/open/file-FP9k7F80pq7fzyV6JkV1p4P5/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181026%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181026T222237Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=c589f2fa1d99a5c30400b5882df309ec7300d781f6b0e2368ee98e9571b15fac","headers":{"host":"dnanexus-platform-upload-prod.s3.amazonaws.com","content-type":"binary/octet-stream","x-amz-server-side-encryption":"AES256","content-md5":"c9//V/4k6Ae9T7G8TgfNcw==","content-length":"5"},"expires":1540592677742}'} + body: {string: !!python/unicode '{"url":"https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/f3d8/file/open/file-FPbY8j00b3qxQKK224Gky3Jb/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181113%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181113T203024Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=a4b4d39d3355bf62e3a753b416cf9c5125f074fe06d05e560df018895f8635fe","headers":{"host":"dnanexus-platform-upload-prod.s3.amazonaws.com","content-type":"binary/octet-stream","x-amz-server-side-encryption":"AES256","content-md5":"c9//V/4k6Ae9T7G8TgfNcw==","content-length":"5"},"expires":1542141144836}'} headers: connection: [keep-alive] content-length: ['692'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:22:37 GMT'] + date: ['Tue, 13 Nov 2018 20:30:24 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592557706-706921] + x-request-id: [1542141024758-573062] status: {code: 200, message: OK} - request: body: !!python/unicode data0 headers: DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] content-length: ['5'] content-md5: [c9//V/4k6Ae9T7G8TgfNcw==] content-type: [binary/octet-stream] host: [dnanexus-platform-upload-prod.s3.amazonaws.com] x-amz-server-side-encryption: [AES256] method: PUT - uri: https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/f71f/file/open/file-FP9k7F80pq7fzyV6JkV1p4P5/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181026%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181026T222237Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=c589f2fa1d99a5c30400b5882df309ec7300d781f6b0e2368ee98e9571b15fac + uri: https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/f3d8/file/open/file-FPbY8j00b3qxQKK224Gky3Jb/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181113%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181113T203024Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=a4b4d39d3355bf62e3a753b416cf9c5125f074fe06d05e560df018895f8635fe response: body: {string: !!python/unicode ''} headers: content-length: ['0'] - date: ['Fri, 26 Oct 2018 22:22:39 GMT'] + date: ['Tue, 13 Nov 2018 20:30:26 GMT'] etag: ['"73dfff57fe24e807bd4fb1bc4e07cd73"'] server: [AmazonS3] - x-amz-expiration: ['expiry-date="Sat, 17 Nov 2018 00:00:00 GMT", rule-id="3weekpurge"'] - x-amz-id-2: [MvB9O5mGFMUPxmyA+K5h4O0sOhaT00dIkdmaKD4Y+p6h0IvgFTyaHriro7f0+eWZkbQsKR9hhoc=] - x-amz-request-id: [B7775BD2A565C3BA] + x-amz-expiration: ['expiry-date="Wed, 05 Dec 2018 00:00:00 GMT", rule-id="3weekpurge"'] + x-amz-id-2: [X8zNJRqzF2wb0Du0PET7fN0Mn58TyRUlV2XnxuDAzLR/cL/5NlsmXZe9bxbuzYtrDQVTlOeCBqk=] + x-amz-request-id: [EFA4F5855A5A31F6] x-amz-server-side-encryption: [AES256] status: {code: 200, message: OK} - request: @@ -172,101 +195,101 @@ interactions: headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k7F80pq7fzyV6JkV1p4P5/close + uri: https://api.dnanexus.com/file-FPbY8j00b3qxQKK224Gky3Jb/close response: - body: {string: !!python/unicode '{"id":"file-FP9k7F80pq7fzyV6JkV1p4P5"}'} + body: {string: !!python/unicode '{"id":"file-FPbY8j00b3qxQKK224Gky3Jb"}'} headers: connection: [keep-alive] content-length: ['38'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:22:38 GMT'] + date: ['Tue, 13 Nov 2018 20:30:25 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592558363-794357] + x-request-id: [1542141025302-826215] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"limit": 2, "name": "TestCopy.test_posix_to_dx_folder.d854ac6d", + body: !!python/unicode '{"limit": 2, "name": "TestCopy.test_posix_to_dx_folder.98295c13", "level": "VIEW"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/system/findProjects response: - body: {string: !!python/unicode '{"results":[{"id":"project-FP9k7F00pq7fzyV6JkV1p4P4","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} + body: {string: !!python/unicode '{"results":[{"id":"project-FPbY8gj0b3qbfv104VjK72X5","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} headers: connection: [keep-alive] content-length: ['147'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:22:38 GMT'] + date: ['Tue, 13 Nov 2018 20:30:25 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592558500-662454] + x-request-id: [1542141025460-661164] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"objects": [{"name": "random.txt", "project": "project-FP9k7F00pq7fzyV6JkV1p4P4", - "batchsize": 2, "folder": "/temp_folder"}]}' + body: !!python/unicode '{"objects": [{"project": "project-FPbY8gj0b3qbfv104VjK72X5", + "folder": "/temp_folder", "name": "random.txt", "batchsize": 2}]}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/system/resolveDataObjects response: - body: {string: !!python/unicode '{"results":[[{"project":"project-FP9k7F00pq7fzyV6JkV1p4P4","id":"file-FP9k7F80pq7fzyV6JkV1p4P5"}]]}'} + body: {string: !!python/unicode '{"results":[[{"project":"project-FPbY8gj0b3qbfv104VjK72X5","id":"file-FPbY8j00b3qxQKK224Gky3Jb"}]]}'} headers: connection: [keep-alive] content-length: ['99'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:22:38 GMT'] + date: ['Tue, 13 Nov 2018 20:30:25 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592558678-587483] + x-request-id: [1542141025585-246986] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"project": "project-FP9k7F00pq7fzyV6JkV1p4P4"}' + body: !!python/unicode '{"project": "project-FPbY8gj0b3qbfv104VjK72X5"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k7F80pq7fzyV6JkV1p4P5/describe + uri: https://api.dnanexus.com/file-FPbY8j00b3qxQKK224Gky3Jb/describe response: - body: {string: !!python/unicode '{"id":"file-FP9k7F80pq7fzyV6JkV1p4P5","project":"project-FP9k7F00pq7fzyV6JkV1p4P4","class":"file","sponsored":false,"name":"random.txt","types":[],"state":"closing","hidden":false,"links":[],"folder":"/temp_folder","tags":[],"created":1540592557000,"modified":1540592559095,"createdBy":{"user":"user-akumar_counsyl"},"media":"","archivalState":"live"}'} + body: {string: !!python/unicode '{"id":"file-FPbY8j00b3qxQKK224Gky3Jb","project":"project-FPbY8gj0b3qbfv104VjK72X5","class":"file","sponsored":false,"name":"random.txt","types":[],"state":"closing","hidden":false,"links":[],"folder":"/temp_folder","tags":[],"created":1542141024000,"modified":1542141025340,"createdBy":{"user":"user-akumar_counsyl"},"media":"","archivalState":"live"}'} headers: connection: [keep-alive] content-length: ['351'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:22:39 GMT'] + date: ['Tue, 13 Nov 2018 20:30:25 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592558828-572876] + x-request-id: [1542141025688-832996] status: {code: 200, message: OK} - request: body: !!python/unicode '{}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k7F00pq7fzyV6JkV1p4P4/destroy + uri: https://api.dnanexus.com/project-FPbY8gj0b3qbfv104VjK72X5/destroy response: - body: {string: !!python/unicode '{"id":"project-FP9k7F00pq7fzyV6JkV1p4P4"}'} + body: {string: !!python/unicode '{"id":"project-FPbY8gj0b3qbfv104VjK72X5"}'} headers: connection: [keep-alive] content-length: ['41'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:22:42 GMT'] + date: ['Tue, 13 Nov 2018 20:30:28 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592559400-545513] + x-request-id: [1542141025813-537494] status: {code: 200, message: OK} version: 1 diff --git a/stor/tests/cassettes_py2/TestCopy/test_posix_to_existing_dx_fail.yaml b/stor_dx/stor_dx/tests/cassettes_py2/TestCopy/test_posix_to_existing_dx_fail.yaml similarity index 53% rename from stor/tests/cassettes_py2/TestCopy/test_posix_to_existing_dx_fail.yaml rename to stor_dx/stor_dx/tests/cassettes_py2/TestCopy/test_posix_to_existing_dx_fail.yaml index f5461f57..4f0ca9ce 100644 --- a/stor/tests/cassettes_py2/TestCopy/test_posix_to_existing_dx_fail.yaml +++ b/stor_dx/stor_dx/tests/cassettes_py2/TestCopy/test_posix_to_existing_dx_fail.yaml @@ -1,313 +1,292 @@ interactions: - request: - body: !!python/unicode '{"name": "TestCopy.test_posix_to_existing_dx_fail.e01a7b3b"}' + body: !!python/unicode '{"name": "TestCopy.test_posix_to_existing_dx_fail.80159e4c"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/project/new response: - body: {string: !!python/unicode '{"id":"project-FP9k7GQ0jK9Pvv365P3k8ZvP"}'} + body: {string: !!python/unicode '{"id":"project-FPbY8k80pBx1X71F8q6pKGx0"}'} headers: connection: [keep-alive] content-length: ['41'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:22:42 GMT'] + date: ['Tue, 13 Nov 2018 20:30:29 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592562852-181681] + x-request-id: [1542141029047-4956] status: {code: 200, message: OK} - request: body: !!python/unicode '{}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k7GQ0jK9Pvv365P3k8ZvP/describe + uri: https://api.dnanexus.com/project-FPbY8k80pBx1X71F8q6pKGx0/describe response: - body: {string: !!python/unicode '{"id":"project-FP9k7GQ0jK9Pvv365P3k8ZvP","name":"TestCopy.test_posix_to_existing_dx_fail.e01a7b3b","class":"project","created":1540592562000,"modified":1540592562000,"billTo":"org-counsyl","level":"ADMINISTER","dataUsage":0,"sponsoredDataUsage":0,"region":"aws:us-east-1","summary":"","description":"","protected":false,"restricted":false,"downloadRestricted":false,"containsPHI":false,"createdBy":{"user":"user-akumar_counsyl"},"version":0,"storageCost":0,"pendingTransfer":null,"tags":[],"defaultInstanceType":"mem2_hdd2_x2","archivalState":"live","archivalProgress":null,"totalSponsoredEgressBytes":0,"consumedSponsoredEgressBytes":0,"atSpendingLimit":false}'} + body: {string: !!python/unicode '{"id":"project-FPbY8k80pBx1X71F8q6pKGx0","name":"TestCopy.test_posix_to_existing_dx_fail.80159e4c","class":"project","created":1542141029000,"modified":1542141029000,"billTo":"org-counsyl","level":"ADMINISTER","dataUsage":0,"sponsoredDataUsage":0,"region":"aws:us-east-1","summary":"","description":"","protected":false,"restricted":false,"downloadRestricted":false,"containsPHI":false,"createdBy":{"user":"user-akumar_counsyl"},"version":0,"storageCost":0,"pendingTransfer":null,"tags":[],"defaultInstanceType":"mem2_hdd2_x2","archivalState":"live","archivalProgress":null,"totalSponsoredEgressBytes":0,"consumedSponsoredEgressBytes":0,"atSpendingLimit":false}'} headers: connection: [keep-alive] content-length: ['661'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:22:43 GMT'] + date: ['Tue, 13 Nov 2018 20:30:29 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592562980-647853] + x-request-id: [1542141029178-480014] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"parents": true, "folder": "/temp_folder"}' + body: !!python/unicode '{"folder": "/temp_folder", "parents": true}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k7GQ0jK9Pvv365P3k8ZvP/newFolder + uri: https://api.dnanexus.com/project-FPbY8k80pBx1X71F8q6pKGx0/newFolder response: - body: {string: !!python/unicode '{"id":"project-FP9k7GQ0jK9Pvv365P3k8ZvP"}'} + body: {string: !!python/unicode '{"id":"project-FPbY8k80pBx1X71F8q6pKGx0"}'} headers: connection: [keep-alive] content-length: ['41'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:22:43 GMT'] + date: ['Tue, 13 Nov 2018 20:30:29 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592563101-877043] + x-request-id: [1542141029314-524862] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"name": "file.txt", "project": "project-FP9k7GQ0jK9Pvv365P3k8ZvP", - "folder": "/temp_folder", "nonce": "cbaa16f611d2ccb37f9f315e3163269dca20392c81a1f3d72dc90deb8cc748e51540592563.175114"}' + body: !!python/unicode '{"project": "project-FPbY8k80pBx1X71F8q6pKGx0", "nonce": + "1b4252416f4d478896ffabd088504d2d8fc65acb9592747eaacf62d692a76e901542141029.372300", + "folder": "/temp_folder", "name": "file.txt"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/file/new response: - body: {string: !!python/unicode '{"id":"file-FP9k7Gj0jK9Gf62VJp1k8p9k"}'} + body: {string: !!python/unicode '{"id":"file-FPbY8k80pBx8B942900j3yY6"}'} headers: connection: [keep-alive] content-length: ['38'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:22:43 GMT'] + date: ['Tue, 13 Nov 2018 20:30:29 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592563224-952987] + x-request-id: [1542141029415-379434] status: {code: 200, message: OK} - request: body: !!python/unicode '{"fields": {"fileUploadParameters": true}}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k7GQ0jK9Pvv365P3k8ZvP/describe + uri: https://api.dnanexus.com/project-FPbY8k80pBx1X71F8q6pKGx0/describe response: - body: {string: !!python/unicode '{"id":"project-FP9k7GQ0jK9Pvv365P3k8ZvP","fileUploadParameters":{"maximumPartSize":5368709120,"minimumPartSize":5242880,"maximumFileSize":5497558138880,"maximumNumParts":10000,"emptyLastPartAllowed":true}}'} + body: {string: !!python/unicode '{"id":"project-FPbY8k80pBx1X71F8q6pKGx0","fileUploadParameters":{"maximumPartSize":5368709120,"minimumPartSize":5242880,"maximumFileSize":5497558138880,"maximumNumParts":10000,"emptyLastPartAllowed":true}}'} headers: connection: [keep-alive] content-length: ['205'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:22:43 GMT'] + date: ['Tue, 13 Nov 2018 20:30:29 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592563491-856218] + x-request-id: [1542141029619-916151] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"size": 5, "md5": "73dfff57fe24e807bd4fb1bc4e07cd73", - "index": 1}' + body: !!python/unicode '{"index": 1, "size": 5, "md5": "73dfff57fe24e807bd4fb1bc4e07cd73"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k7Gj0jK9Gf62VJp1k8p9k/upload + uri: https://api.dnanexus.com/file-FPbY8k80pBx8B942900j3yY6/upload response: - body: {string: !!python/unicode '{"url":"https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/92c2/file/open/file-FP9k7Gj0jK9Gf62VJp1k8p9k/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181026%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181026T222243Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=ebe7fd52a5675364ce46e5e9230ad7b418620179573c5877a688895a94ee8b81","headers":{"host":"dnanexus-platform-upload-prod.s3.amazonaws.com","content-type":"binary/octet-stream","x-amz-server-side-encryption":"AES256","content-md5":"c9//V/4k6Ae9T7G8TgfNcw==","content-length":"5"},"expires":1540592683622}'} + body: {string: !!python/unicode '{"url":"https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/6f30/file/open/file-FPbY8k80pBx8B942900j3yY6/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181113%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181113T203029Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=b6ae490a10d4ef3998c28bdde240052e825178016de7ea8aef1135b6b0ff433e","headers":{"host":"dnanexus-platform-upload-prod.s3.amazonaws.com","content-type":"binary/octet-stream","x-amz-server-side-encryption":"AES256","content-md5":"c9//V/4k6Ae9T7G8TgfNcw==","content-length":"5"},"expires":1542141149739}'} headers: connection: [keep-alive] content-length: ['692'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:22:43 GMT'] + date: ['Tue, 13 Nov 2018 20:30:29 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592563607-14538] + x-request-id: [1542141029723-214863] status: {code: 200, message: OK} - request: body: !!python/unicode data0 headers: DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] content-length: ['5'] content-md5: [c9//V/4k6Ae9T7G8TgfNcw==] content-type: [binary/octet-stream] host: [dnanexus-platform-upload-prod.s3.amazonaws.com] x-amz-server-side-encryption: [AES256] method: PUT - uri: https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/92c2/file/open/file-FP9k7Gj0jK9Gf62VJp1k8p9k/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181026%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181026T222243Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=ebe7fd52a5675364ce46e5e9230ad7b418620179573c5877a688895a94ee8b81 + uri: https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/6f30/file/open/file-FPbY8k80pBx8B942900j3yY6/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181113%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181113T203029Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=b6ae490a10d4ef3998c28bdde240052e825178016de7ea8aef1135b6b0ff433e response: body: {string: !!python/unicode ''} headers: content-length: ['0'] - date: ['Fri, 26 Oct 2018 22:22:45 GMT'] + date: ['Tue, 13 Nov 2018 20:30:31 GMT'] etag: ['"73dfff57fe24e807bd4fb1bc4e07cd73"'] server: [AmazonS3] - x-amz-expiration: ['expiry-date="Sat, 17 Nov 2018 00:00:00 GMT", rule-id="3weekpurge"'] - x-amz-id-2: [avG/zFm8m0ZsZbx17N4Sf/MO/d4vyNIVYYxp4FjgJu8ZINKgL1VVTCu1GdhFUebsOA/ApCnqSiM=] - x-amz-request-id: [F953A00EACFC9D58] + x-amz-expiration: ['expiry-date="Wed, 05 Dec 2018 00:00:00 GMT", rule-id="3weekpurge"'] + x-amz-id-2: [4i0uBwN3WZu9afe5IkuAUOhX4p47vTSQbGzMv/N3JBHAkcyvZ1eBX8Lq78wYvpJ2fkE41FEZ1NQ=] + x-amz-request-id: [B80BBA6DCC74A0C0] x-amz-server-side-encryption: [AES256] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"project": "project-FP9k7GQ0jK9Pvv365P3k8ZvP", "fields": + body: !!python/unicode '{"project": "project-FPbY8k80pBx1X71F8q6pKGx0", "fields": {"state": true}}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k7Gj0jK9Gf62VJp1k8p9k/describe + uri: https://api.dnanexus.com/file-FPbY8k80pBx8B942900j3yY6/describe response: - body: {string: !!python/unicode '{"id":"file-FP9k7Gj0jK9Gf62VJp1k8p9k","state":"open"}'} + body: {string: !!python/unicode '{"id":"file-FPbY8k80pBx8B942900j3yY6","state":"open"}'} headers: connection: [keep-alive] content-length: ['53'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:22:44 GMT'] + date: ['Tue, 13 Nov 2018 20:30:30 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592564212-589424] + x-request-id: [1542141030341-136400] status: {code: 200, message: OK} - request: body: !!python/unicode '{}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k7Gj0jK9Gf62VJp1k8p9k/close + uri: https://api.dnanexus.com/file-FPbY8k80pBx8B942900j3yY6/close response: - body: {string: !!python/unicode '{"id":"file-FP9k7Gj0jK9Gf62VJp1k8p9k"}'} + body: {string: !!python/unicode '{"id":"file-FPbY8k80pBx8B942900j3yY6"}'} headers: connection: [keep-alive] content-length: ['38'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:22:44 GMT'] + date: ['Tue, 13 Nov 2018 20:30:30 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592564329-93866] + x-request-id: [1542141030468-846914] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"limit": 2, "name": "TestCopy.test_posix_to_existing_dx_fail.e01a7b3b", + body: !!python/unicode '{"limit": 2, "name": "TestCopy.test_posix_to_existing_dx_fail.80159e4c", "level": "VIEW"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/system/findProjects response: - body: {string: !!python/unicode '{"results":[{"id":"project-FP9k7GQ0jK9Pvv365P3k8ZvP","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} + body: {string: !!python/unicode '{"results":[{"id":"project-FPbY8k80pBx1X71F8q6pKGx0","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} headers: connection: [keep-alive] content-length: ['147'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:22:44 GMT'] + date: ['Tue, 13 Nov 2018 20:30:30 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592564466-985157] + x-request-id: [1542141030632-610778] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"includeHidden": false, "only": "folders", "folder": - "/temp_folder", "describe": {"fields": {"name": true, "folder": true}}}' + body: !!python/unicode '{"folder": "/temp_folder", "describe": {"fields": {"folder": + true, "name": true}}, "only": "folders", "includeHidden": false}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k7GQ0jK9Pvv365P3k8ZvP/listFolder + uri: https://api.dnanexus.com/project-FPbY8k80pBx1X71F8q6pKGx0/listFolder response: body: {string: !!python/unicode '{"folders":[]}'} headers: connection: [keep-alive] content-length: ['14'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:22:44 GMT'] + date: ['Tue, 13 Nov 2018 20:30:30 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592564613-981045] + x-request-id: [1542141030739-817978] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"limit": 2, "name": "TestCopy.test_posix_to_existing_dx_fail.e01a7b3b", - "level": "VIEW"}' - headers: - Content-Type: [application/json] - DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] - method: POST - uri: https://api.dnanexus.com/system/findProjects - response: - body: {string: !!python/unicode '{"results":[{"id":"project-FP9k7GQ0jK9Pvv365P3k8ZvP","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} - headers: - connection: [keep-alive] - content-length: ['147'] - content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:22:44 GMT'] - server: [nginx] - x-content-type-options: [nosniff] - x-powered-by: [Express] - x-request-id: [1540592564736-916996] - status: {code: 200, message: OK} -- request: - body: !!python/unicode '{"objects": [{"name": "file.txt", "project": "project-FP9k7GQ0jK9Pvv365P3k8ZvP", - "batchsize": 2, "folder": "/temp_folder"}]}' + body: !!python/unicode '{"objects": [{"project": "project-FPbY8k80pBx1X71F8q6pKGx0", + "folder": "/temp_folder", "name": "file.txt", "batchsize": 2}]}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/system/resolveDataObjects response: - body: {string: !!python/unicode '{"results":[[{"project":"project-FP9k7GQ0jK9Pvv365P3k8ZvP","id":"file-FP9k7Gj0jK9Gf62VJp1k8p9k"}]]}'} + body: {string: !!python/unicode '{"results":[[{"project":"project-FPbY8k80pBx1X71F8q6pKGx0","id":"file-FPbY8k80pBx8B942900j3yY6"}]]}'} headers: connection: [keep-alive] content-length: ['99'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:22:44 GMT'] + date: ['Tue, 13 Nov 2018 20:30:30 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592564905-261971] + x-request-id: [1542141030845-564286] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"project": "project-FP9k7GQ0jK9Pvv365P3k8ZvP"}' + body: !!python/unicode '{"project": "project-FPbY8k80pBx1X71F8q6pKGx0"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k7Gj0jK9Gf62VJp1k8p9k/describe + uri: https://api.dnanexus.com/file-FPbY8k80pBx8B942900j3yY6/describe response: - body: {string: !!python/unicode '{"id":"file-FP9k7Gj0jK9Gf62VJp1k8p9k","project":"project-FP9k7GQ0jK9Pvv365P3k8ZvP","class":"file","sponsored":false,"name":"file.txt","types":[],"state":"closing","hidden":false,"links":[],"folder":"/temp_folder","tags":[],"created":1540592563000,"modified":1540592564344,"createdBy":{"user":"user-akumar_counsyl"},"media":"","archivalState":"live"}'} + body: {string: !!python/unicode '{"id":"file-FPbY8k80pBx8B942900j3yY6","project":"project-FPbY8k80pBx1X71F8q6pKGx0","class":"file","sponsored":false,"name":"file.txt","types":[],"state":"closing","hidden":false,"links":[],"folder":"/temp_folder","tags":[],"created":1542141029000,"modified":1542141030489,"createdBy":{"user":"user-akumar_counsyl"},"media":"","archivalState":"live"}'} headers: connection: [keep-alive] content-length: ['349'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:22:45 GMT'] + date: ['Tue, 13 Nov 2018 20:30:30 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592565013-139595] + x-request-id: [1542141030947-310993] status: {code: 200, message: OK} - request: body: !!python/unicode '{}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k7GQ0jK9Pvv365P3k8ZvP/destroy + uri: https://api.dnanexus.com/project-FPbY8k80pBx1X71F8q6pKGx0/destroy response: - body: {string: !!python/unicode '{"id":"project-FP9k7GQ0jK9Pvv365P3k8ZvP"}'} + body: {string: !!python/unicode '{"id":"project-FPbY8k80pBx1X71F8q6pKGx0"}'} headers: connection: [keep-alive] content-length: ['41'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:22:47 GMT'] + date: ['Tue, 13 Nov 2018 20:30:34 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592565148-625604] + x-request-id: [1542141031056-410630] status: {code: 200, message: OK} version: 1 diff --git a/stor/tests/cassettes_py2/TestCopyTree/test_clonetree_within_project_fail.yaml b/stor_dx/stor_dx/tests/cassettes_py2/TestCopyTree/test_clonetree_within_project_fail.yaml similarity index 55% rename from stor/tests/cassettes_py2/TestCopyTree/test_clonetree_within_project_fail.yaml rename to stor_dx/stor_dx/tests/cassettes_py2/TestCopyTree/test_clonetree_within_project_fail.yaml index 475333e8..a143b0fe 100644 --- a/stor/tests/cassettes_py2/TestCopyTree/test_clonetree_within_project_fail.yaml +++ b/stor_dx/stor_dx/tests/cassettes_py2/TestCopyTree/test_clonetree_within_project_fail.yaml @@ -1,474 +1,482 @@ interactions: - request: - body: !!python/unicode '{"name": "TestCopyTree.test_clonetree_within_project_fail.2617387f"}' + body: !!python/unicode '{"name": "TestCopyTree.test_clonetree_within_project_fail.366279d9"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/project/new response: - body: {string: !!python/unicode '{"id":"project-FP9kg3808X8yK8by4vpG2YZZ"}'} + body: {string: !!python/unicode '{"id":"project-FPbY8pQ0Jfk9GXBB2vpY85K3"}'} headers: connection: [keep-alive] content-length: ['41'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:56:14 GMT'] + date: ['Tue, 13 Nov 2018 20:30:34 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540594573982-613794] + x-request-id: [1542141034425-579607] status: {code: 200, message: OK} - request: body: !!python/unicode '{}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9kg3808X8yK8by4vpG2YZZ/describe + uri: https://api.dnanexus.com/project-FPbY8pQ0Jfk9GXBB2vpY85K3/describe response: - body: {string: !!python/unicode '{"id":"project-FP9kg3808X8yK8by4vpG2YZZ","name":"TestCopyTree.test_clonetree_within_project_fail.2617387f","class":"project","created":1540594573000,"modified":1540594573000,"billTo":"org-counsyl","level":"ADMINISTER","dataUsage":0,"sponsoredDataUsage":0,"region":"aws:us-east-1","summary":"","description":"","protected":false,"restricted":false,"downloadRestricted":false,"containsPHI":false,"createdBy":{"user":"user-akumar_counsyl"},"version":0,"storageCost":0,"pendingTransfer":null,"tags":[],"defaultInstanceType":"mem2_hdd2_x2","archivalState":"live","archivalProgress":null,"totalSponsoredEgressBytes":0,"consumedSponsoredEgressBytes":0,"atSpendingLimit":false}'} + body: {string: !!python/unicode '{"id":"project-FPbY8pQ0Jfk9GXBB2vpY85K3","name":"TestCopyTree.test_clonetree_within_project_fail.366279d9","class":"project","created":1542141034000,"modified":1542141034000,"billTo":"org-counsyl","level":"ADMINISTER","dataUsage":0,"sponsoredDataUsage":0,"region":"aws:us-east-1","summary":"","description":"","protected":false,"restricted":false,"downloadRestricted":false,"containsPHI":false,"createdBy":{"user":"user-akumar_counsyl"},"version":0,"storageCost":0,"pendingTransfer":null,"tags":[],"defaultInstanceType":"mem2_hdd2_x2","archivalState":"live","archivalProgress":null,"totalSponsoredEgressBytes":0,"consumedSponsoredEgressBytes":0,"atSpendingLimit":false}'} headers: connection: [keep-alive] content-length: ['669'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:56:14 GMT'] + date: ['Tue, 13 Nov 2018 20:30:34 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540594574105-545225] + x-request-id: [1542141034535-442676] status: {code: 200, message: OK} - request: body: !!python/unicode '{"folder": "/temp_folder", "parents": true}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9kg3808X8yK8by4vpG2YZZ/newFolder + uri: https://api.dnanexus.com/project-FPbY8pQ0Jfk9GXBB2vpY85K3/newFolder response: - body: {string: !!python/unicode '{"id":"project-FP9kg3808X8yK8by4vpG2YZZ"}'} + body: {string: !!python/unicode '{"id":"project-FPbY8pQ0Jfk9GXBB2vpY85K3"}'} headers: connection: [keep-alive] content-length: ['41'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:56:14 GMT'] + date: ['Tue, 13 Nov 2018 20:30:34 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540594574238-203567] + x-request-id: [1542141034644-291938] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"folder": "/temp_folder", "nonce": "432f1ed058804ff2d2715e7d56a222a469e149dd9fbfc1feae3944620e8891be1540594574.307535", - "project": "project-FP9kg3808X8yK8by4vpG2YZZ", "name": "folder_file.txt"}' + body: !!python/unicode '{"project": "project-FPbY8pQ0Jfk9GXBB2vpY85K3", "nonce": + "3635e191b7b3b56ae0d4ee4caac53c2eb4b59b5342003be728c50206cb887ec91542141034.702863", + "folder": "/temp_folder", "name": "folder_file.txt"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/file/new response: - body: {string: !!python/unicode '{"id":"file-FP9kg3Q08X8kZYkF52JZ1VzQ"}'} + body: {string: !!python/unicode '{"id":"file-FPbY8pQ0Jfk9GXBB2vpY85K4"}'} headers: connection: [keep-alive] content-length: ['38'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:56:14 GMT'] + date: ['Tue, 13 Nov 2018 20:30:34 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540594574349-37256] + x-request-id: [1542141034746-712134] status: {code: 200, message: OK} - request: body: !!python/unicode '{"fields": {"fileUploadParameters": true}}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9kg3808X8yK8by4vpG2YZZ/describe + uri: https://api.dnanexus.com/project-FPbY8pQ0Jfk9GXBB2vpY85K3/describe response: - body: {string: !!python/unicode '{"id":"project-FP9kg3808X8yK8by4vpG2YZZ","fileUploadParameters":{"maximumPartSize":5368709120,"minimumPartSize":5242880,"maximumFileSize":5497558138880,"maximumNumParts":10000,"emptyLastPartAllowed":true}}'} + body: {string: !!python/unicode '{"id":"project-FPbY8pQ0Jfk9GXBB2vpY85K3","fileUploadParameters":{"maximumPartSize":5368709120,"minimumPartSize":5242880,"maximumFileSize":5497558138880,"maximumNumParts":10000,"emptyLastPartAllowed":true}}'} headers: connection: [keep-alive] content-length: ['205'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:56:14 GMT'] + date: ['Tue, 13 Nov 2018 20:30:34 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540594574513-751951] + x-request-id: [1542141034880-259928] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"size": 4, "md5": "8d777f385d3dfec8815d20f7496026dc", - "index": 1}' + body: !!python/unicode '{"index": 1, "size": 4, "md5": "8d777f385d3dfec8815d20f7496026dc"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9kg3Q08X8kZYkF52JZ1VzQ/upload + uri: https://api.dnanexus.com/file-FPbY8pQ0Jfk9GXBB2vpY85K4/upload response: - body: {string: !!python/unicode '{"url":"https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/8c9d/file/open/file-FP9kg3Q08X8kZYkF52JZ1VzQ/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181026%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181026T225614Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=b44cf4889c0ed15dc8c72c617fb721cef45d0e7e42a47cb8a1839a5a7cdbd194","headers":{"host":"dnanexus-platform-upload-prod.s3.amazonaws.com","content-type":"binary/octet-stream","x-amz-server-side-encryption":"AES256","content-md5":"jXd/OF09/siBXSD3SWAm3A==","content-length":"4"},"expires":1540594694675}'} + body: {string: !!python/unicode '{"url":"https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/be3f/file/open/file-FPbY8pQ0Jfk9GXBB2vpY85K4/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181113%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181113T203035Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=97410c664e07dde0e18ca700b61618817c91601a1585b5c890cebb98c63710c3","headers":{"host":"dnanexus-platform-upload-prod.s3.amazonaws.com","content-type":"binary/octet-stream","x-amz-server-side-encryption":"AES256","content-md5":"jXd/OF09/siBXSD3SWAm3A==","content-length":"4"},"expires":1542141155001}'} headers: connection: [keep-alive] content-length: ['692'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:56:14 GMT'] + date: ['Tue, 13 Nov 2018 20:30:35 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540594574662-650168] + x-request-id: [1542141034979-57464] status: {code: 200, message: OK} - request: body: !!python/unicode data headers: DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] content-length: ['4'] content-md5: [jXd/OF09/siBXSD3SWAm3A==] content-type: [binary/octet-stream] host: [dnanexus-platform-upload-prod.s3.amazonaws.com] x-amz-server-side-encryption: [AES256] method: PUT - uri: https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/8c9d/file/open/file-FP9kg3Q08X8kZYkF52JZ1VzQ/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181026%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181026T225614Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=b44cf4889c0ed15dc8c72c617fb721cef45d0e7e42a47cb8a1839a5a7cdbd194 + uri: https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/be3f/file/open/file-FPbY8pQ0Jfk9GXBB2vpY85K4/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181113%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181113T203035Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=97410c664e07dde0e18ca700b61618817c91601a1585b5c890cebb98c63710c3 response: body: {string: !!python/unicode ''} headers: content-length: ['0'] - date: ['Fri, 26 Oct 2018 22:56:16 GMT'] + date: ['Tue, 13 Nov 2018 20:30:36 GMT'] etag: ['"8d777f385d3dfec8815d20f7496026dc"'] server: [AmazonS3] - x-amz-expiration: ['expiry-date="Sat, 17 Nov 2018 00:00:00 GMT", rule-id="3weekpurge"'] - x-amz-id-2: [ebTdYmEouK4xOgsqJ+fSsx4wC/Y+QyeUh3Rg0eTyXe3MMZIwA0lznXLf/YomnutY35gdRVu7anw=] - x-amz-request-id: [3FDB3206ACB59297] + x-amz-expiration: ['expiry-date="Wed, 05 Dec 2018 00:00:00 GMT", rule-id="3weekpurge"'] + x-amz-id-2: [s3ksWR3g6pdhumM4V17UoNCo807rixKNT1txNogorVn/5mZW5LKNMudjx85w9lIIT9C5VnETCuU=] + x-amz-request-id: [AA936D0E90A4D7B7] x-amz-server-side-encryption: [AES256] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"fields": {"state": true}, "project": "project-FP9kg3808X8yK8by4vpG2YZZ"}' + body: !!python/unicode '{"project": "project-FPbY8pQ0Jfk9GXBB2vpY85K3", "fields": + {"state": true}}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9kg3Q08X8kZYkF52JZ1VzQ/describe + uri: https://api.dnanexus.com/file-FPbY8pQ0Jfk9GXBB2vpY85K4/describe response: - body: {string: !!python/unicode '{"id":"file-FP9kg3Q08X8kZYkF52JZ1VzQ","state":"open"}'} + body: {string: !!python/unicode '{"id":"file-FPbY8pQ0Jfk9GXBB2vpY85K4","state":"open"}'} headers: connection: [keep-alive] content-length: ['53'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:56:15 GMT'] + date: ['Tue, 13 Nov 2018 20:30:35 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540594575314-394792] + x-request-id: [1542141035572-651623] status: {code: 200, message: OK} - request: body: !!python/unicode '{}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9kg3Q08X8kZYkF52JZ1VzQ/close + uri: https://api.dnanexus.com/file-FPbY8pQ0Jfk9GXBB2vpY85K4/close response: - body: {string: !!python/unicode '{"id":"file-FP9kg3Q08X8kZYkF52JZ1VzQ"}'} + body: {string: !!python/unicode '{"id":"file-FPbY8pQ0Jfk9GXBB2vpY85K4"}'} headers: connection: [keep-alive] content-length: ['38'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:56:15 GMT'] + date: ['Tue, 13 Nov 2018 20:30:35 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540594575426-886405] + x-request-id: [1542141035666-149505] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"fields": {"state": true}, "project": "project-FP9kg3808X8yK8by4vpG2YZZ"}' + body: !!python/unicode '{"project": "project-FPbY8pQ0Jfk9GXBB2vpY85K3", "fields": + {"state": true}}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9kg3Q08X8kZYkF52JZ1VzQ/describe + uri: https://api.dnanexus.com/file-FPbY8pQ0Jfk9GXBB2vpY85K4/describe response: - body: {string: !!python/unicode '{"id":"file-FP9kg3Q08X8kZYkF52JZ1VzQ","state":"closing"}'} + body: {string: !!python/unicode '{"id":"file-FPbY8pQ0Jfk9GXBB2vpY85K4","state":"closing"}'} headers: connection: [keep-alive] content-length: ['56'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:56:15 GMT'] + date: ['Tue, 13 Nov 2018 20:30:35 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540594575584-485460] + x-request-id: [1542141035778-443983] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"fields": {"state": true}, "project": "project-FP9kg3808X8yK8by4vpG2YZZ"}' + body: !!python/unicode '{"project": "project-FPbY8pQ0Jfk9GXBB2vpY85K3", "fields": + {"state": true}}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9kg3Q08X8kZYkF52JZ1VzQ/describe + uri: https://api.dnanexus.com/file-FPbY8pQ0Jfk9GXBB2vpY85K4/describe response: - body: {string: !!python/unicode '{"id":"file-FP9kg3Q08X8kZYkF52JZ1VzQ","state":"closed"}'} + body: {string: !!python/unicode '{"id":"file-FPbY8pQ0Jfk9GXBB2vpY85K4","state":"closed"}'} headers: connection: [keep-alive] content-length: ['55'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:56:17 GMT'] + date: ['Tue, 13 Nov 2018 20:30:37 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540594577702-614826] + x-request-id: [1542141037883-881748] status: {code: 200, message: OK} - request: body: !!python/unicode '{"folder": "/temp_folder2", "parents": true}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9kg3808X8yK8by4vpG2YZZ/newFolder + uri: https://api.dnanexus.com/project-FPbY8pQ0Jfk9GXBB2vpY85K3/newFolder response: - body: {string: !!python/unicode '{"id":"project-FP9kg3808X8yK8by4vpG2YZZ"}'} + body: {string: !!python/unicode '{"id":"project-FPbY8pQ0Jfk9GXBB2vpY85K3"}'} headers: connection: [keep-alive] content-length: ['41'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:56:17 GMT'] + date: ['Tue, 13 Nov 2018 20:30:38 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540594577822-124204] + x-request-id: [1542141037983-613625] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"folder": "/temp_folder2", "nonce": "bb67f0b97529a409569047c2e0941da54c85621a13fef2753559e5e00b7d3dc31540594577.893275", - "project": "project-FP9kg3808X8yK8by4vpG2YZZ", "name": "folder_file.txt"}' + body: !!python/unicode '{"project": "project-FPbY8pQ0Jfk9GXBB2vpY85K3", "nonce": + "a594388449d226814e283e5219edab45562cf40da55974881dad24c5e41946d61542141038.040361", + "folder": "/temp_folder2", "name": "folder_file.txt"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/file/new response: - body: {string: !!python/unicode '{"id":"file-FP9kg4808X8bx561KQVQ9pXP"}'} + body: {string: !!python/unicode '{"id":"file-FPbY8qQ0Jfk1X71F8q6pKGx1"}'} headers: connection: [keep-alive] content-length: ['38'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:56:18 GMT'] + date: ['Tue, 13 Nov 2018 20:30:38 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540594577936-389978] + x-request-id: [1542141038086-384561] status: {code: 200, message: OK} - request: body: !!python/unicode '{"fields": {"fileUploadParameters": true}}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9kg3808X8yK8by4vpG2YZZ/describe + uri: https://api.dnanexus.com/project-FPbY8pQ0Jfk9GXBB2vpY85K3/describe response: - body: {string: !!python/unicode '{"id":"project-FP9kg3808X8yK8by4vpG2YZZ","fileUploadParameters":{"maximumPartSize":5368709120,"minimumPartSize":5242880,"maximumFileSize":5497558138880,"maximumNumParts":10000,"emptyLastPartAllowed":true}}'} + body: {string: !!python/unicode '{"id":"project-FPbY8pQ0Jfk9GXBB2vpY85K3","fileUploadParameters":{"maximumPartSize":5368709120,"minimumPartSize":5242880,"maximumFileSize":5497558138880,"maximumNumParts":10000,"emptyLastPartAllowed":true}}'} headers: connection: [keep-alive] content-length: ['205'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:56:18 GMT'] + date: ['Tue, 13 Nov 2018 20:30:38 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540594578098-395126] + x-request-id: [1542141038227-775483] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"size": 4, "md5": "8d777f385d3dfec8815d20f7496026dc", - "index": 1}' + body: !!python/unicode '{"index": 1, "size": 4, "md5": "8d777f385d3dfec8815d20f7496026dc"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9kg4808X8bx561KQVQ9pXP/upload + uri: https://api.dnanexus.com/file-FPbY8qQ0Jfk1X71F8q6pKGx1/upload response: - body: {string: !!python/unicode '{"url":"https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/981b/file/open/file-FP9kg4808X8bx561KQVQ9pXP/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181026%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181026T225618Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=e3b9f05c7b6f8baca23c5432fd0524c7bb004624edb42e02916bf4d936c41393","headers":{"host":"dnanexus-platform-upload-prod.s3.amazonaws.com","content-type":"binary/octet-stream","x-amz-server-side-encryption":"AES256","content-md5":"jXd/OF09/siBXSD3SWAm3A==","content-length":"4"},"expires":1540594698228}'} + body: {string: !!python/unicode '{"url":"https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/42dc/file/open/file-FPbY8qQ0Jfk1X71F8q6pKGx1/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181113%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181113T203038Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=dd69501c4348a9162cb8a112ebd650a83ec143dcb4f4933431f51ae24a3f1916","headers":{"host":"dnanexus-platform-upload-prod.s3.amazonaws.com","content-type":"binary/octet-stream","x-amz-server-side-encryption":"AES256","content-md5":"jXd/OF09/siBXSD3SWAm3A==","content-length":"4"},"expires":1542141158400}'} headers: connection: [keep-alive] content-length: ['692'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:56:18 GMT'] + date: ['Tue, 13 Nov 2018 20:30:38 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540594578214-765089] + x-request-id: [1542141038368-653125] status: {code: 200, message: OK} - request: body: !!python/unicode data headers: DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] content-length: ['4'] content-md5: [jXd/OF09/siBXSD3SWAm3A==] content-type: [binary/octet-stream] host: [dnanexus-platform-upload-prod.s3.amazonaws.com] x-amz-server-side-encryption: [AES256] method: PUT - uri: https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/981b/file/open/file-FP9kg4808X8bx561KQVQ9pXP/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181026%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181026T225618Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=e3b9f05c7b6f8baca23c5432fd0524c7bb004624edb42e02916bf4d936c41393 + uri: https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/42dc/file/open/file-FPbY8qQ0Jfk1X71F8q6pKGx1/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181113%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181113T203038Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=dd69501c4348a9162cb8a112ebd650a83ec143dcb4f4933431f51ae24a3f1916 response: body: {string: !!python/unicode ''} headers: content-length: ['0'] - date: ['Fri, 26 Oct 2018 22:56:19 GMT'] + date: ['Tue, 13 Nov 2018 20:30:39 GMT'] etag: ['"8d777f385d3dfec8815d20f7496026dc"'] server: [AmazonS3] - x-amz-expiration: ['expiry-date="Sat, 17 Nov 2018 00:00:00 GMT", rule-id="3weekpurge"'] - x-amz-id-2: [jQWD5KqxJ9y4uBQ6Q6I+zcU5GWMZWmA7aapsXKuBC1xENbxX0ZHTkNXr5xsKYAoD14+QdJsYPsM=] - x-amz-request-id: [DDA91737A6FE63D0] + x-amz-expiration: ['expiry-date="Wed, 05 Dec 2018 00:00:00 GMT", rule-id="3weekpurge"'] + x-amz-id-2: [Ziq+CnNpomAfNSrsZ77JvezbiKk0bfH56va/h+gGbF0PHrWsN7nDm3NdHE+HUvSzceOY4q4yghY=] + x-amz-request-id: [6F60FDDE1577540F] x-amz-server-side-encryption: [AES256] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"fields": {"state": true}, "project": "project-FP9kg3808X8yK8by4vpG2YZZ"}' + body: !!python/unicode '{"project": "project-FPbY8pQ0Jfk9GXBB2vpY85K3", "fields": + {"state": true}}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9kg4808X8bx561KQVQ9pXP/describe + uri: https://api.dnanexus.com/file-FPbY8qQ0Jfk1X71F8q6pKGx1/describe response: - body: {string: !!python/unicode '{"id":"file-FP9kg4808X8bx561KQVQ9pXP","state":"open"}'} + body: {string: !!python/unicode '{"id":"file-FPbY8qQ0Jfk1X71F8q6pKGx1","state":"open"}'} headers: connection: [keep-alive] content-length: ['53'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:56:18 GMT'] + date: ['Tue, 13 Nov 2018 20:30:38 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540594578502-342824] + x-request-id: [1542141038599-141205] status: {code: 200, message: OK} - request: body: !!python/unicode '{}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9kg4808X8bx561KQVQ9pXP/close + uri: https://api.dnanexus.com/file-FPbY8qQ0Jfk1X71F8q6pKGx1/close response: - body: {string: !!python/unicode '{"id":"file-FP9kg4808X8bx561KQVQ9pXP"}'} + body: {string: !!python/unicode '{"id":"file-FPbY8qQ0Jfk1X71F8q6pKGx1"}'} headers: connection: [keep-alive] content-length: ['38'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:56:18 GMT'] + date: ['Tue, 13 Nov 2018 20:30:38 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540594578614-82362] + x-request-id: [1542141038693-857486] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"fields": {"state": true}, "project": "project-FP9kg3808X8yK8by4vpG2YZZ"}' + body: !!python/unicode '{"project": "project-FPbY8pQ0Jfk9GXBB2vpY85K3", "fields": + {"state": true}}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9kg4808X8bx561KQVQ9pXP/describe + uri: https://api.dnanexus.com/file-FPbY8qQ0Jfk1X71F8q6pKGx1/describe response: - body: {string: !!python/unicode '{"id":"file-FP9kg4808X8bx561KQVQ9pXP","state":"closing"}'} + body: {string: !!python/unicode '{"id":"file-FPbY8qQ0Jfk1X71F8q6pKGx1","state":"closing"}'} headers: connection: [keep-alive] content-length: ['56'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:56:18 GMT'] + date: ['Tue, 13 Nov 2018 20:30:38 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540594578748-808883] + x-request-id: [1542141038821-177445] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"fields": {"state": true}, "project": "project-FP9kg3808X8yK8by4vpG2YZZ"}' + body: !!python/unicode '{"project": "project-FPbY8pQ0Jfk9GXBB2vpY85K3", "fields": + {"state": true}}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9kg4808X8bx561KQVQ9pXP/describe + uri: https://api.dnanexus.com/file-FPbY8qQ0Jfk1X71F8q6pKGx1/describe response: - body: {string: !!python/unicode '{"id":"file-FP9kg4808X8bx561KQVQ9pXP","state":"closed"}'} + body: {string: !!python/unicode '{"id":"file-FPbY8qQ0Jfk1X71F8q6pKGx1","state":"closed"}'} headers: connection: [keep-alive] content-length: ['55'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:56:20 GMT'] + date: ['Tue, 13 Nov 2018 20:30:40 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540594580868-237524] + x-request-id: [1542141040926-12945] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"limit": 2, "level": "VIEW", "name": "TestCopyTree.test_clonetree_within_project_fail.2617387f"}' + body: !!python/unicode '{"limit": 2, "name": "TestCopyTree.test_clonetree_within_project_fail.366279d9", + "level": "VIEW"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/system/findProjects response: - body: {string: !!python/unicode '{"results":[{"id":"project-FP9kg3808X8yK8by4vpG2YZZ","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} + body: {string: !!python/unicode '{"results":[{"id":"project-FPbY8pQ0Jfk9GXBB2vpY85K3","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} headers: connection: [keep-alive] content-length: ['147'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:56:21 GMT'] + date: ['Tue, 13 Nov 2018 20:30:41 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540594580980-362240] + x-request-id: [1542141041040-792731] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"limit": 2, "level": "VIEW", "name": "TestCopyTree.test_clonetree_within_project_fail.2617387f"}' + body: !!python/unicode '{"limit": 2, "name": "TestCopyTree.test_clonetree_within_project_fail.366279d9", + "level": "VIEW"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/system/findProjects response: - body: {string: !!python/unicode '{"results":[{"id":"project-FP9kg3808X8yK8by4vpG2YZZ","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} + body: {string: !!python/unicode '{"results":[{"id":"project-FPbY8pQ0Jfk9GXBB2vpY85K3","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} headers: connection: [keep-alive] content-length: ['147'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:56:21 GMT'] + date: ['Tue, 13 Nov 2018 20:30:41 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540594581108-422026] + x-request-id: [1542141041163-667124] status: {code: 200, message: OK} - request: body: !!python/unicode '{}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9kg3808X8yK8by4vpG2YZZ/destroy + uri: https://api.dnanexus.com/project-FPbY8pQ0Jfk9GXBB2vpY85K3/destroy response: - body: {string: !!python/unicode '{"id":"project-FP9kg3808X8yK8by4vpG2YZZ"}'} + body: {string: !!python/unicode '{"id":"project-FPbY8pQ0Jfk9GXBB2vpY85K3"}'} headers: connection: [keep-alive] content-length: ['41'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:56:24 GMT'] + date: ['Tue, 13 Nov 2018 20:30:43 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540594581230-913150] + x-request-id: [1542141041293-484874] status: {code: 200, message: OK} version: 1 diff --git a/stor/tests/cassettes_py2/TestCopyTree/test_dx_dir_to_dx_dir.yaml b/stor_dx/stor_dx/tests/cassettes_py2/TestCopyTree/test_dx_dir_to_dx_dir.yaml similarity index 56% rename from stor/tests/cassettes_py2/TestCopyTree/test_dx_dir_to_dx_dir.yaml rename to stor_dx/stor_dx/tests/cassettes_py2/TestCopyTree/test_dx_dir_to_dx_dir.yaml index 086cedc3..34a0339c 100644 --- a/stor/tests/cassettes_py2/TestCopyTree/test_dx_dir_to_dx_dir.yaml +++ b/stor_dx/stor_dx/tests/cassettes_py2/TestCopyTree/test_dx_dir_to_dx_dir.yaml @@ -1,483 +1,483 @@ interactions: - request: - body: !!python/unicode '{"name": "TestCopyTree.test_dx_dir_to_dx_dir.73ae4154"}' + body: !!python/unicode '{"name": "TestCopyTree.test_dx_dir_to_dx_dir.2a8d564f"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/project/new response: - body: {string: !!python/unicode '{"id":"project-FP9k7Vj0fB7vf62VJp1k8p9z"}'} + body: {string: !!python/unicode '{"id":"project-FPbY8x00z5FxQKK224Gky3Jg"}'} headers: connection: [keep-alive] content-length: ['41'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:23:03 GMT'] + date: ['Tue, 13 Nov 2018 20:30:44 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592583776-655190] + x-request-id: [1542141044098-767021] status: {code: 200, message: OK} - request: body: !!python/unicode '{}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k7Vj0fB7vf62VJp1k8p9z/describe + uri: https://api.dnanexus.com/project-FPbY8x00z5FxQKK224Gky3Jg/describe response: - body: {string: !!python/unicode '{"id":"project-FP9k7Vj0fB7vf62VJp1k8p9z","name":"TestCopyTree.test_dx_dir_to_dx_dir.73ae4154","class":"project","created":1540592583000,"modified":1540592583000,"billTo":"org-counsyl","level":"ADMINISTER","dataUsage":0,"sponsoredDataUsage":0,"region":"aws:us-east-1","summary":"","description":"","protected":false,"restricted":false,"downloadRestricted":false,"containsPHI":false,"createdBy":{"user":"user-akumar_counsyl"},"version":0,"storageCost":0,"pendingTransfer":null,"tags":[],"defaultInstanceType":"mem2_hdd2_x2","archivalState":"live","archivalProgress":null,"totalSponsoredEgressBytes":0,"consumedSponsoredEgressBytes":0,"atSpendingLimit":false}'} + body: {string: !!python/unicode '{"id":"project-FPbY8x00z5FxQKK224Gky3Jg","name":"TestCopyTree.test_dx_dir_to_dx_dir.2a8d564f","class":"project","created":1542141044000,"modified":1542141044000,"billTo":"org-counsyl","level":"ADMINISTER","dataUsage":0,"sponsoredDataUsage":0,"region":"aws:us-east-1","summary":"","description":"","protected":false,"restricted":false,"downloadRestricted":false,"containsPHI":false,"createdBy":{"user":"user-akumar_counsyl"},"version":0,"storageCost":0,"pendingTransfer":null,"tags":[],"defaultInstanceType":"mem2_hdd2_x2","archivalState":"live","archivalProgress":null,"totalSponsoredEgressBytes":0,"consumedSponsoredEgressBytes":0,"atSpendingLimit":false}'} headers: connection: [keep-alive] content-length: ['656'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:23:04 GMT'] + date: ['Tue, 13 Nov 2018 20:30:44 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592583920-783384] + x-request-id: [1542141044423-762380] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"parents": true, "folder": "/temp_folder"}' + body: !!python/unicode '{"folder": "/temp_folder", "parents": true}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k7Vj0fB7vf62VJp1k8p9z/newFolder + uri: https://api.dnanexus.com/project-FPbY8x00z5FxQKK224Gky3Jg/newFolder response: - body: {string: !!python/unicode '{"id":"project-FP9k7Vj0fB7vf62VJp1k8p9z"}'} + body: {string: !!python/unicode '{"id":"project-FPbY8x00z5FxQKK224Gky3Jg"}'} headers: connection: [keep-alive] content-length: ['41'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:23:04 GMT'] + date: ['Tue, 13 Nov 2018 20:30:44 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592584333-805342] + x-request-id: [1542141044700-333153] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"name": "folder_file", "project": "project-FP9k7Vj0fB7vf62VJp1k8p9z", - "folder": "/temp_folder", "nonce": "e1f3511bda0a670b57facedfcc057c5ab147d11fb78736699cf7e55aa0402c5b1540592584.443201"}' + body: !!python/unicode '{"project": "project-FPbY8x00z5FxQKK224Gky3Jg", "nonce": + "74baf7df37b43a8888553a5b966c2a659410aa7cca9b5b2528c49d77750d80051542141044.961329", + "folder": "/temp_folder", "name": "folder_file"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/file/new response: - body: {string: !!python/unicode '{"id":"file-FP9k7X00fB7bVJvpJkZZ2f71"}'} + body: {string: !!python/unicode '{"id":"file-FPbY8x80z5FxQKK224Gky3Jj"}'} headers: connection: [keep-alive] content-length: ['38'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:23:04 GMT'] + date: ['Tue, 13 Nov 2018 20:30:45 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592584493-287093] + x-request-id: [1542141045005-702603] status: {code: 200, message: OK} - request: body: !!python/unicode '{"fields": {"fileUploadParameters": true}}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k7Vj0fB7vf62VJp1k8p9z/describe + uri: https://api.dnanexus.com/project-FPbY8x00z5FxQKK224Gky3Jg/describe response: - body: {string: !!python/unicode '{"id":"project-FP9k7Vj0fB7vf62VJp1k8p9z","fileUploadParameters":{"maximumPartSize":5368709120,"minimumPartSize":5242880,"maximumFileSize":5497558138880,"maximumNumParts":10000,"emptyLastPartAllowed":true}}'} + body: {string: !!python/unicode '{"id":"project-FPbY8x00z5FxQKK224Gky3Jg","fileUploadParameters":{"maximumPartSize":5368709120,"minimumPartSize":5242880,"maximumFileSize":5497558138880,"maximumNumParts":10000,"emptyLastPartAllowed":true}}'} headers: connection: [keep-alive] content-length: ['205'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:23:05 GMT'] + date: ['Tue, 13 Nov 2018 20:30:45 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592584980-774141] + x-request-id: [1542141045219-890181] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"size": 4, "md5": "8d777f385d3dfec8815d20f7496026dc", - "index": 1}' + body: !!python/unicode '{"index": 1, "size": 4, "md5": "8d777f385d3dfec8815d20f7496026dc"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k7X00fB7bVJvpJkZZ2f71/upload + uri: https://api.dnanexus.com/file-FPbY8x80z5FxQKK224Gky3Jj/upload response: - body: {string: !!python/unicode '{"url":"https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/56a7/file/open/file-FP9k7X00fB7bVJvpJkZZ2f71/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181026%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181026T222305Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=0e988ef337e9ba9e0a7aa585f655e456793697b84f605c9cf480c1ecf6aad10c","headers":{"host":"dnanexus-platform-upload-prod.s3.amazonaws.com","content-type":"binary/octet-stream","x-amz-server-side-encryption":"AES256","content-md5":"jXd/OF09/siBXSD3SWAm3A==","content-length":"4"},"expires":1540592705169}'} + body: {string: !!python/unicode '{"url":"https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/8459/file/open/file-FPbY8x80z5FxQKK224Gky3Jj/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181113%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181113T203045Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=b985de80a97118fbf0009fb5c8136cf139ce74ea6163b64381e0f351a586479a","headers":{"host":"dnanexus-platform-upload-prod.s3.amazonaws.com","content-type":"binary/octet-stream","x-amz-server-side-encryption":"AES256","content-md5":"jXd/OF09/siBXSD3SWAm3A==","content-length":"4"},"expires":1542141165424}'} headers: connection: [keep-alive] content-length: ['692'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:23:05 GMT'] + date: ['Tue, 13 Nov 2018 20:30:45 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592585155-599678] + x-request-id: [1542141045365-481857] status: {code: 200, message: OK} - request: body: !!python/unicode data headers: DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] content-length: ['4'] content-md5: [jXd/OF09/siBXSD3SWAm3A==] content-type: [binary/octet-stream] host: [dnanexus-platform-upload-prod.s3.amazonaws.com] x-amz-server-side-encryption: [AES256] method: PUT - uri: https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/56a7/file/open/file-FP9k7X00fB7bVJvpJkZZ2f71/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181026%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181026T222305Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=0e988ef337e9ba9e0a7aa585f655e456793697b84f605c9cf480c1ecf6aad10c + uri: https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/8459/file/open/file-FPbY8x80z5FxQKK224Gky3Jj/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181113%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181113T203045Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=b985de80a97118fbf0009fb5c8136cf139ce74ea6163b64381e0f351a586479a response: body: {string: !!python/unicode ''} headers: content-length: ['0'] - date: ['Fri, 26 Oct 2018 22:23:06 GMT'] + date: ['Tue, 13 Nov 2018 20:30:47 GMT'] etag: ['"8d777f385d3dfec8815d20f7496026dc"'] server: [AmazonS3] - x-amz-expiration: ['expiry-date="Sat, 17 Nov 2018 00:00:00 GMT", rule-id="3weekpurge"'] - x-amz-id-2: [8BaQf//9v6DUqTUEJ3ME9gqRWzaASglO0dGOF9It3/vrKn3ttNuBvcxaZQQKxj3REXSV5QHui8A=] - x-amz-request-id: [9F80F40D20733A3C] + x-amz-expiration: ['expiry-date="Wed, 05 Dec 2018 00:00:00 GMT", rule-id="3weekpurge"'] + x-amz-id-2: [4Vdw7hlpjxHRk/w8OOHBu1WcViySE/EJgVFwC5qvzX0vJMozdgO7M9ruVRK9+vwVYzPZLAY2NEE=] + x-amz-request-id: [90459D23AB2D757A] x-amz-server-side-encryption: [AES256] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"project": "project-FP9k7Vj0fB7vf62VJp1k8p9z", "fields": + body: !!python/unicode '{"project": "project-FPbY8x00z5FxQKK224Gky3Jg", "fields": {"state": true}}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k7X00fB7bVJvpJkZZ2f71/describe + uri: https://api.dnanexus.com/file-FPbY8x80z5FxQKK224Gky3Jj/describe response: - body: {string: !!python/unicode '{"id":"file-FP9k7X00fB7bVJvpJkZZ2f71","state":"open"}'} + body: {string: !!python/unicode '{"id":"file-FPbY8x80z5FxQKK224Gky3Jj","state":"open"}'} headers: connection: [keep-alive] content-length: ['53'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:23:05 GMT'] + date: ['Tue, 13 Nov 2018 20:30:46 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592585708-292972] + x-request-id: [1542141046413-239853] status: {code: 200, message: OK} - request: body: !!python/unicode '{}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k7X00fB7bVJvpJkZZ2f71/close + uri: https://api.dnanexus.com/file-FPbY8x80z5FxQKK224Gky3Jj/close response: - body: {string: !!python/unicode '{"id":"file-FP9k7X00fB7bVJvpJkZZ2f71"}'} + body: {string: !!python/unicode '{"id":"file-FPbY8x80z5FxQKK224Gky3Jj"}'} headers: connection: [keep-alive] content-length: ['38'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:23:05 GMT'] + date: ['Tue, 13 Nov 2018 20:30:46 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592585844-554118] + x-request-id: [1542141046646-56120] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"project": "project-FP9k7Vj0fB7vf62VJp1k8p9z", "fields": + body: !!python/unicode '{"project": "project-FPbY8x00z5FxQKK224Gky3Jg", "fields": {"state": true}}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k7X00fB7bVJvpJkZZ2f71/describe + uri: https://api.dnanexus.com/file-FPbY8x80z5FxQKK224Gky3Jj/describe response: - body: {string: !!python/unicode '{"id":"file-FP9k7X00fB7bVJvpJkZZ2f71","state":"closing"}'} + body: {string: !!python/unicode '{"id":"file-FPbY8x80z5FxQKK224Gky3Jj","state":"closing"}'} headers: connection: [keep-alive] content-length: ['56'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:23:06 GMT'] + date: ['Tue, 13 Nov 2018 20:30:47 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592586015-625599] + x-request-id: [1542141047096-123419] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"project": "project-FP9k7Vj0fB7vf62VJp1k8p9z", "fields": + body: !!python/unicode '{"project": "project-FPbY8x00z5FxQKK224Gky3Jg", "fields": {"state": true}}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k7X00fB7bVJvpJkZZ2f71/describe + uri: https://api.dnanexus.com/file-FPbY8x80z5FxQKK224Gky3Jj/describe response: - body: {string: !!python/unicode '{"id":"file-FP9k7X00fB7bVJvpJkZZ2f71","state":"closed"}'} + body: {string: !!python/unicode '{"id":"file-FPbY8x80z5FxQKK224Gky3Jj","state":"closed"}'} headers: connection: [keep-alive] content-length: ['55'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:23:08 GMT'] + date: ['Tue, 13 Nov 2018 20:30:49 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592588221-954449] + x-request-id: [1542141049284-902173] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"parents": true, "folder": "/temp_folder/another_folder"}' + body: !!python/unicode '{"folder": "/temp_folder/another_folder", "parents": true}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k7Vj0fB7vf62VJp1k8p9z/newFolder + uri: https://api.dnanexus.com/project-FPbY8x00z5FxQKK224Gky3Jg/newFolder response: - body: {string: !!python/unicode '{"id":"project-FP9k7Vj0fB7vf62VJp1k8p9z"}'} + body: {string: !!python/unicode '{"id":"project-FPbY8x00z5FxQKK224Gky3Jg"}'} headers: connection: [keep-alive] content-length: ['41'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:23:08 GMT'] + date: ['Tue, 13 Nov 2018 20:30:49 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592588380-886245] + x-request-id: [1542141049448-312819] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"name": "temp_file.txt", "project": "project-FP9k7Vj0fB7vf62VJp1k8p9z", - "folder": "/temp_folder/another_folder", "nonce": "a53c0469c7a0a42a0dfa792069da13a6bcc7318ec16184066cd44ddb7313e5621540592588.944753"}' + body: !!python/unicode '{"project": "project-FPbY8x00z5FxQKK224Gky3Jg", "nonce": + "f4c2b9cfeff171b6e7043b0d7c45ae06a1b2ee934d05ae949b5767250c5033401542141049.540778", + "folder": "/temp_folder/another_folder", "name": "temp_file.txt"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/file/new response: - body: {string: !!python/unicode '{"id":"file-FP9k7Y80fB7zvv365P3k8ZvQ"}'} + body: {string: !!python/unicode '{"id":"file-FPbY8y80z5Ffy3B93bJvY5z6"}'} headers: connection: [keep-alive] content-length: ['38'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:23:09 GMT'] + date: ['Tue, 13 Nov 2018 20:30:49 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592588995-688269] + x-request-id: [1542141049588-688075] status: {code: 200, message: OK} - request: body: !!python/unicode '{"fields": {"fileUploadParameters": true}}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k7Vj0fB7vf62VJp1k8p9z/describe + uri: https://api.dnanexus.com/project-FPbY8x00z5FxQKK224Gky3Jg/describe response: - body: {string: !!python/unicode '{"id":"project-FP9k7Vj0fB7vf62VJp1k8p9z","fileUploadParameters":{"maximumPartSize":5368709120,"minimumPartSize":5242880,"maximumFileSize":5497558138880,"maximumNumParts":10000,"emptyLastPartAllowed":true}}'} + body: {string: !!python/unicode '{"id":"project-FPbY8x00z5FxQKK224Gky3Jg","fileUploadParameters":{"maximumPartSize":5368709120,"minimumPartSize":5242880,"maximumFileSize":5497558138880,"maximumNumParts":10000,"emptyLastPartAllowed":true}}'} headers: connection: [keep-alive] content-length: ['205'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:23:09 GMT'] + date: ['Tue, 13 Nov 2018 20:30:49 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592589611-387921] + x-request-id: [1542141049755-928075] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"size": 4, "md5": "8d777f385d3dfec8815d20f7496026dc", - "index": 1}' + body: !!python/unicode '{"index": 1, "size": 4, "md5": "8d777f385d3dfec8815d20f7496026dc"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k7Y80fB7zvv365P3k8ZvQ/upload + uri: https://api.dnanexus.com/file-FPbY8y80z5Ffy3B93bJvY5z6/upload response: - body: {string: !!python/unicode '{"url":"https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/3a66/file/open/file-FP9k7Y80fB7zvv365P3k8ZvQ/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181026%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181026T222309Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=60f3b0679dd485b841dea6ca1190b757a390ace0826463e049a4cd45c29966d5","headers":{"host":"dnanexus-platform-upload-prod.s3.amazonaws.com","content-type":"binary/octet-stream","x-amz-server-side-encryption":"AES256","content-md5":"jXd/OF09/siBXSD3SWAm3A==","content-length":"4"},"expires":1540592709897}'} + body: {string: !!python/unicode '{"url":"https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/0c8c/file/open/file-FPbY8y80z5Ffy3B93bJvY5z6/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181113%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181113T203050Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=54915f5ba8b2cf201e345fb669c456281a1e0fd4a4fcbbeb0bbf2460e30de410","headers":{"host":"dnanexus-platform-upload-prod.s3.amazonaws.com","content-type":"binary/octet-stream","x-amz-server-side-encryption":"AES256","content-md5":"jXd/OF09/siBXSD3SWAm3A==","content-length":"4"},"expires":1542141169991}'} headers: connection: [keep-alive] content-length: ['692'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:23:09 GMT'] + date: ['Tue, 13 Nov 2018 20:30:50 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592589822-816922] + x-request-id: [1542141049862-308479] status: {code: 200, message: OK} - request: body: !!python/unicode data headers: DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] content-length: ['4'] content-md5: [jXd/OF09/siBXSD3SWAm3A==] content-type: [binary/octet-stream] host: [dnanexus-platform-upload-prod.s3.amazonaws.com] x-amz-server-side-encryption: [AES256] method: PUT - uri: https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/3a66/file/open/file-FP9k7Y80fB7zvv365P3k8ZvQ/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181026%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181026T222309Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=60f3b0679dd485b841dea6ca1190b757a390ace0826463e049a4cd45c29966d5 + uri: https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/0c8c/file/open/file-FPbY8y80z5Ffy3B93bJvY5z6/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181113%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181113T203050Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=54915f5ba8b2cf201e345fb669c456281a1e0fd4a4fcbbeb0bbf2460e30de410 response: body: {string: !!python/unicode ''} headers: content-length: ['0'] - date: ['Fri, 26 Oct 2018 22:23:11 GMT'] + date: ['Tue, 13 Nov 2018 20:30:51 GMT'] etag: ['"8d777f385d3dfec8815d20f7496026dc"'] server: [AmazonS3] - x-amz-expiration: ['expiry-date="Sat, 17 Nov 2018 00:00:00 GMT", rule-id="3weekpurge"'] - x-amz-id-2: [UJrCJivsQ7W+ZLg2GVdNsZFJOW516Lfdxx7NIYS74FEnpoD8QVSC4fsiX6OPegNephTioqC9qHQ=] - x-amz-request-id: [8F0486CD03514415] + x-amz-expiration: ['expiry-date="Wed, 05 Dec 2018 00:00:00 GMT", rule-id="3weekpurge"'] + x-amz-id-2: [e3Iakosb5lD1O7L/TCOCB42GM/5QD6JyixwJz0Hb+sSEZH6wFvqkkHr0fVCMGslV015JEPYl+CE=] + x-amz-request-id: [AEA2F2CC9A27FDE7] x-amz-server-side-encryption: [AES256] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"project": "project-FP9k7Vj0fB7vf62VJp1k8p9z", "fields": + body: !!python/unicode '{"project": "project-FPbY8x00z5FxQKK224Gky3Jg", "fields": {"state": true}}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k7Y80fB7zvv365P3k8ZvQ/describe + uri: https://api.dnanexus.com/file-FPbY8y80z5Ffy3B93bJvY5z6/describe response: - body: {string: !!python/unicode '{"id":"file-FP9k7Y80fB7zvv365P3k8ZvQ","state":"open"}'} + body: {string: !!python/unicode '{"id":"file-FPbY8y80z5Ffy3B93bJvY5z6","state":"open"}'} headers: connection: [keep-alive] content-length: ['53'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:23:10 GMT'] + date: ['Tue, 13 Nov 2018 20:30:50 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592590173-204275] + x-request-id: [1542141050258-320410] status: {code: 200, message: OK} - request: body: !!python/unicode '{}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k7Y80fB7zvv365P3k8ZvQ/close + uri: https://api.dnanexus.com/file-FPbY8y80z5Ffy3B93bJvY5z6/close response: - body: {string: !!python/unicode '{"id":"file-FP9k7Y80fB7zvv365P3k8ZvQ"}'} + body: {string: !!python/unicode '{"id":"file-FPbY8y80z5Ffy3B93bJvY5z6"}'} headers: connection: [keep-alive] content-length: ['38'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:23:10 GMT'] + date: ['Tue, 13 Nov 2018 20:30:50 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592590345-500992] + x-request-id: [1542141050448-760354] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"project": "project-FP9k7Vj0fB7vf62VJp1k8p9z", "fields": + body: !!python/unicode '{"project": "project-FPbY8x00z5FxQKK224Gky3Jg", "fields": {"state": true}}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k7Y80fB7zvv365P3k8ZvQ/describe + uri: https://api.dnanexus.com/file-FPbY8y80z5Ffy3B93bJvY5z6/describe response: - body: {string: !!python/unicode '{"id":"file-FP9k7Y80fB7zvv365P3k8ZvQ","state":"closing"}'} + body: {string: !!python/unicode '{"id":"file-FPbY8y80z5Ffy3B93bJvY5z6","state":"closing"}'} headers: connection: [keep-alive] content-length: ['56'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:23:10 GMT'] + date: ['Tue, 13 Nov 2018 20:30:50 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592590649-331187] + x-request-id: [1542141050618-539976] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"project": "project-FP9k7Vj0fB7vf62VJp1k8p9z", "fields": + body: !!python/unicode '{"project": "project-FPbY8x00z5FxQKK224Gky3Jg", "fields": {"state": true}}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k7Y80fB7zvv365P3k8ZvQ/describe + uri: https://api.dnanexus.com/file-FPbY8y80z5Ffy3B93bJvY5z6/describe response: - body: {string: !!python/unicode '{"id":"file-FP9k7Y80fB7zvv365P3k8ZvQ","state":"closed"}'} + body: {string: !!python/unicode '{"id":"file-FPbY8y80z5Ffy3B93bJvY5z6","state":"closed"}'} headers: connection: [keep-alive] content-length: ['55'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:23:13 GMT'] + date: ['Tue, 13 Nov 2018 20:30:52 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592592957-708107] + x-request-id: [1542141052757-253050] status: {code: 200, message: OK} - request: body: !!python/unicode '{"name": "test_dx_dir_to_dx_dir.TempProj"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/project/new response: - body: {string: !!python/unicode '{"id":"project-FP9k7Z80701bVJvpJkZZ2f73"}'} + body: {string: !!python/unicode '{"id":"project-FPbY8z00g9kfy3B93bJvY5zB"}'} headers: connection: [keep-alive] content-length: ['41'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:23:13 GMT'] + date: ['Tue, 13 Nov 2018 20:30:52 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592593149-979341] + x-request-id: [1542141052854-309912] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"limit": 2, "name": "TestCopyTree.test_dx_dir_to_dx_dir.73ae4154", + body: !!python/unicode '{"limit": 2, "name": "TestCopyTree.test_dx_dir_to_dx_dir.2a8d564f", "level": "VIEW"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/system/findProjects response: - body: {string: !!python/unicode '{"results":[{"id":"project-FP9k7Vj0fB7vf62VJp1k8p9z","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} + body: {string: !!python/unicode '{"results":[{"id":"project-FPbY8x00z5FxQKK224Gky3Jg","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} headers: connection: [keep-alive] content-length: ['147'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:23:13 GMT'] + date: ['Tue, 13 Nov 2018 20:30:53 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592593303-366230] + x-request-id: [1542141052997-107439] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"includeHidden": false, "only": "folders", "folder": - "/temp_folder", "describe": {"fields": {"name": true, "folder": true}}}' + body: !!python/unicode '{"folder": "/temp_folder", "describe": {"fields": {"folder": + true, "name": true}}, "only": "folders", "includeHidden": false}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k7Vj0fB7vf62VJp1k8p9z/listFolder + uri: https://api.dnanexus.com/project-FPbY8x00z5FxQKK224Gky3Jg/listFolder response: body: {string: !!python/unicode '{"folders":["/temp_folder/another_folder"]}'} headers: connection: [keep-alive] content-length: ['43'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:23:13 GMT'] + date: ['Tue, 13 Nov 2018 20:30:53 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592593493-25439] + x-request-id: [1542141053118-417606] status: {code: 200, message: OK} - request: body: !!python/unicode '{"limit": 2, "name": "test_dx_dir_to_dx_dir.TempProj", @@ -485,84 +485,84 @@ interactions: headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/system/findProjects response: - body: {string: !!python/unicode '{"results":[{"id":"project-FP9k7Z80701bVJvpJkZZ2f73","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} + body: {string: !!python/unicode '{"results":[{"id":"project-FPbY8z00g9kfy3B93bJvY5zB","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} headers: connection: [keep-alive] content-length: ['147'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:23:14 GMT'] + date: ['Tue, 13 Nov 2018 20:30:53 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592593788-571936] + x-request-id: [1542141053226-273525] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"includeHidden": false, "only": "folders", "folder": - "/random.txt", "describe": {"fields": {"name": true, "folder": true}}}' + body: !!python/unicode '{"folder": "/random.txt", "describe": {"fields": {"folder": + true, "name": true}}, "only": "folders", "includeHidden": false}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k7Z80701bVJvpJkZZ2f73/listFolder + uri: https://api.dnanexus.com/project-FPbY8z00g9kfy3B93bJvY5zB/listFolder response: body: {string: !!python/unicode '{"error":{"type":"ResourceNotFound","message":"The - specified folder could not be found in project-FP9k7Z80701bVJvpJkZZ2f73"}}'} + specified folder could not be found in project-FPbY8z00g9kfy3B93bJvY5zB"}}'} headers: connection: [keep-alive] content-type: [application/json] - date: ['Fri, 26 Oct 2018 22:23:14 GMT'] + date: ['Tue, 13 Nov 2018 20:30:53 GMT'] server: [nginx] transfer-encoding: [chunked] vary: [Accept-Encoding] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592594507-764694] + x-request-id: [1542141053439-582829] status: {code: 404, message: Not Found} - request: - body: !!python/unicode '{"parents": false, "project": "project-FP9k7Z80701bVJvpJkZZ2f73", - "destination": "/", "folders": ["/temp_folder"], "objects": []}' + body: !!python/unicode '{"folders": ["/temp_folder"], "project": "project-FPbY8z00g9kfy3B93bJvY5zB", + "destination": "/", "objects": [], "parents": false}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k7Vj0fB7vf62VJp1k8p9z/clone + uri: https://api.dnanexus.com/project-FPbY8x00z5FxQKK224Gky3Jg/clone response: - body: {string: !!python/unicode '{"id":"project-FP9k7Vj0fB7vf62VJp1k8p9z","project":"project-FP9k7Z80701bVJvpJkZZ2f73","exists":[]}'} + body: {string: !!python/unicode '{"id":"project-FPbY8x00z5FxQKK224Gky3Jg","project":"project-FPbY8z00g9kfy3B93bJvY5zB","exists":[]}'} headers: connection: [keep-alive] content-length: ['98'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:23:15 GMT'] + date: ['Tue, 13 Nov 2018 20:30:54 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592594970-242124] + x-request-id: [1542141053879-949521] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"name": "random.txt", "folder": "/temp_folder"}' + body: !!python/unicode '{"folder": "/temp_folder", "name": "random.txt"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k7Z80701bVJvpJkZZ2f73/renameFolder + uri: https://api.dnanexus.com/project-FPbY8z00g9kfy3B93bJvY5zB/renameFolder response: - body: {string: !!python/unicode '{"id":"project-FP9k7Z80701bVJvpJkZZ2f73"}'} + body: {string: !!python/unicode '{"id":"project-FPbY8z00g9kfy3B93bJvY5zB"}'} headers: connection: [keep-alive] content-length: ['41'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:23:16 GMT'] + date: ['Tue, 13 Nov 2018 20:30:54 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592595867-167791] + x-request-id: [1542141054085-259449] status: {code: 200, message: OK} - request: body: !!python/unicode '{"limit": 2, "name": "test_dx_dir_to_dx_dir.TempProj", @@ -570,41 +570,41 @@ interactions: headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/system/findProjects response: - body: {string: !!python/unicode '{"results":[{"id":"project-FP9k7Z80701bVJvpJkZZ2f73","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} + body: {string: !!python/unicode '{"results":[{"id":"project-FPbY8z00g9kfy3B93bJvY5zB","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} headers: connection: [keep-alive] content-length: ['147'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:23:16 GMT'] + date: ['Tue, 13 Nov 2018 20:30:54 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592596390-832917] + x-request-id: [1542141054231-236702] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"includeHidden": false, "only": "folders", "folder": - "/random.txt", "describe": {"fields": {"name": true, "folder": true}}}' + body: !!python/unicode '{"folder": "/random.txt", "describe": {"fields": {"folder": + true, "name": true}}, "only": "folders", "includeHidden": false}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k7Z80701bVJvpJkZZ2f73/listFolder + uri: https://api.dnanexus.com/project-FPbY8z00g9kfy3B93bJvY5zB/listFolder response: body: {string: !!python/unicode '{"folders":["/random.txt/another_folder"]}'} headers: connection: [keep-alive] content-length: ['42'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:23:16 GMT'] + date: ['Tue, 13 Nov 2018 20:30:54 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592596775-783563] + x-request-id: [1542141054363-160564] status: {code: 200, message: OK} - request: body: !!python/unicode '{"limit": 2, "name": "test_dx_dir_to_dx_dir.TempProj", @@ -612,100 +612,100 @@ interactions: headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/system/findProjects response: - body: {string: !!python/unicode '{"results":[{"id":"project-FP9k7Z80701bVJvpJkZZ2f73","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} + body: {string: !!python/unicode '{"results":[{"id":"project-FPbY8z00g9kfy3B93bJvY5zB","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} headers: connection: [keep-alive] content-length: ['147'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:23:17 GMT'] + date: ['Tue, 13 Nov 2018 20:30:54 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592596978-800867] + x-request-id: [1542141054481-31495] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"objects": [{"name": "folder_file", "project": "project-FP9k7Z80701bVJvpJkZZ2f73", - "batchsize": 2, "folder": "/random.txt"}]}' + body: !!python/unicode '{"objects": [{"project": "project-FPbY8z00g9kfy3B93bJvY5zB", + "folder": "/random.txt", "name": "folder_file", "batchsize": 2}]}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/system/resolveDataObjects response: - body: {string: !!python/unicode '{"results":[[{"project":"project-FP9k7Z80701bVJvpJkZZ2f73","id":"file-FP9k7X00fB7bVJvpJkZZ2f71"}]]}'} + body: {string: !!python/unicode '{"results":[[{"project":"project-FPbY8z00g9kfy3B93bJvY5zB","id":"file-FPbY8x80z5FxQKK224Gky3Jj"}]]}'} headers: connection: [keep-alive] content-length: ['99'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:23:17 GMT'] + date: ['Tue, 13 Nov 2018 20:30:54 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592597234-710162] + x-request-id: [1542141054596-83246] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"project": "project-FP9k7Z80701bVJvpJkZZ2f73"}' + body: !!python/unicode '{"project": "project-FPbY8z00g9kfy3B93bJvY5zB"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k7X00fB7bVJvpJkZZ2f71/describe + uri: https://api.dnanexus.com/file-FPbY8x80z5FxQKK224Gky3Jj/describe response: - body: {string: !!python/unicode '{"id":"file-FP9k7X00fB7bVJvpJkZZ2f71","project":"project-FP9k7Z80701bVJvpJkZZ2f73","class":"file","sponsored":false,"name":"folder_file","types":[],"state":"closed","hidden":false,"links":[],"folder":"/random.txt","tags":[],"created":1540592584000,"modified":1540592595623,"createdBy":{"user":"user-akumar_counsyl"},"media":"text/plain","archivalState":"live","size":4}'} + body: {string: !!python/unicode '{"id":"file-FPbY8x80z5FxQKK224Gky3Jj","project":"project-FPbY8z00g9kfy3B93bJvY5zB","class":"file","sponsored":false,"name":"folder_file","types":[],"state":"closed","hidden":false,"links":[],"folder":"/random.txt","tags":[],"created":1542141045000,"modified":1542141053985,"createdBy":{"user":"user-akumar_counsyl"},"media":"text/plain","archivalState":"live","size":4}'} headers: connection: [keep-alive] content-length: ['369'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:23:17 GMT'] + date: ['Tue, 13 Nov 2018 20:30:54 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592597599-336505] + x-request-id: [1542141054685-697826] status: {code: 200, message: OK} - request: body: !!python/unicode '{}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k7Z80701bVJvpJkZZ2f73/destroy + uri: https://api.dnanexus.com/project-FPbY8z00g9kfy3B93bJvY5zB/destroy response: - body: {string: !!python/unicode '{"id":"project-FP9k7Z80701bVJvpJkZZ2f73"}'} + body: {string: !!python/unicode '{"id":"project-FPbY8z00g9kfy3B93bJvY5zB"}'} headers: connection: [keep-alive] content-length: ['41'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:23:21 GMT'] + date: ['Tue, 13 Nov 2018 20:30:57 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592597869-337491] + x-request-id: [1542141054799-61312] status: {code: 200, message: OK} - request: body: !!python/unicode '{}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k7Vj0fB7vf62VJp1k8p9z/destroy + uri: https://api.dnanexus.com/project-FPbY8x00z5FxQKK224Gky3Jg/destroy response: - body: {string: !!python/unicode '{"id":"project-FP9k7Vj0fB7vf62VJp1k8p9z"}'} + body: {string: !!python/unicode '{"id":"project-FPbY8x00z5FxQKK224Gky3Jg"}'} headers: connection: [keep-alive] content-length: ['41'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:23:24 GMT'] + date: ['Tue, 13 Nov 2018 20:30:59 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592601355-81729] + x-request-id: [1542141057417-903934] status: {code: 200, message: OK} version: 1 diff --git a/stor/tests/cassettes_py2/TestCopyTree/test_dx_dir_to_dx_dir_same_project.yaml b/stor_dx/stor_dx/tests/cassettes_py2/TestCopyTree/test_dx_dir_to_dx_dir_same_project.yaml similarity index 58% rename from stor/tests/cassettes_py2/TestCopyTree/test_dx_dir_to_dx_dir_same_project.yaml rename to stor_dx/stor_dx/tests/cassettes_py2/TestCopyTree/test_dx_dir_to_dx_dir_same_project.yaml index f63e91e2..669e74cb 100644 --- a/stor/tests/cassettes_py2/TestCopyTree/test_dx_dir_to_dx_dir_same_project.yaml +++ b/stor_dx/stor_dx/tests/cassettes_py2/TestCopyTree/test_dx_dir_to_dx_dir_same_project.yaml @@ -1,480 +1,480 @@ interactions: - request: - body: !!python/unicode '{"name": "TestCopyTree.test_dx_dir_to_dx_dir_same_project.7b6954c6"}' + body: !!python/unicode '{"name": "TestCopyTree.test_dx_dir_to_dx_dir_same_project.31c7195e"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/project/new response: - body: {string: !!python/unicode '{"id":"project-FP9k7g80xX0PxYfQJq0Qq9Pb"}'} + body: {string: !!python/unicode '{"id":"project-FPbY91004P31X71F8q6pKGx3"}'} headers: connection: [keep-alive] content-length: ['41'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:23:25 GMT'] + date: ['Tue, 13 Nov 2018 20:31:00 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592605289-301235] + x-request-id: [1542141060122-799325] status: {code: 200, message: OK} - request: body: !!python/unicode '{}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k7g80xX0PxYfQJq0Qq9Pb/describe + uri: https://api.dnanexus.com/project-FPbY91004P31X71F8q6pKGx3/describe response: - body: {string: !!python/unicode '{"id":"project-FP9k7g80xX0PxYfQJq0Qq9Pb","name":"TestCopyTree.test_dx_dir_to_dx_dir_same_project.7b6954c6","class":"project","created":1540592605000,"modified":1540592605000,"billTo":"org-counsyl","level":"ADMINISTER","dataUsage":0,"sponsoredDataUsage":0,"region":"aws:us-east-1","summary":"","description":"","protected":false,"restricted":false,"downloadRestricted":false,"containsPHI":false,"createdBy":{"user":"user-akumar_counsyl"},"version":0,"storageCost":0,"pendingTransfer":null,"tags":[],"defaultInstanceType":"mem2_hdd2_x2","archivalState":"live","archivalProgress":null,"totalSponsoredEgressBytes":0,"consumedSponsoredEgressBytes":0,"atSpendingLimit":false}'} + body: {string: !!python/unicode '{"id":"project-FPbY91004P31X71F8q6pKGx3","name":"TestCopyTree.test_dx_dir_to_dx_dir_same_project.31c7195e","class":"project","created":1542141060000,"modified":1542141060000,"billTo":"org-counsyl","level":"ADMINISTER","dataUsage":0,"sponsoredDataUsage":0,"region":"aws:us-east-1","summary":"","description":"","protected":false,"restricted":false,"downloadRestricted":false,"containsPHI":false,"createdBy":{"user":"user-akumar_counsyl"},"version":0,"storageCost":0,"pendingTransfer":null,"tags":[],"defaultInstanceType":"mem2_hdd2_x2","archivalState":"live","archivalProgress":null,"totalSponsoredEgressBytes":0,"consumedSponsoredEgressBytes":0,"atSpendingLimit":false}'} headers: connection: [keep-alive] content-length: ['669'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:23:25 GMT'] + date: ['Tue, 13 Nov 2018 20:31:00 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592605485-523091] + x-request-id: [1542141060236-68361] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"parents": true, "folder": "/temp_folder"}' + body: !!python/unicode '{"folder": "/temp_folder", "parents": true}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k7g80xX0PxYfQJq0Qq9Pb/newFolder + uri: https://api.dnanexus.com/project-FPbY91004P31X71F8q6pKGx3/newFolder response: - body: {string: !!python/unicode '{"id":"project-FP9k7g80xX0PxYfQJq0Qq9Pb"}'} + body: {string: !!python/unicode '{"id":"project-FPbY91004P31X71F8q6pKGx3"}'} headers: connection: [keep-alive] content-length: ['41'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:23:25 GMT'] + date: ['Tue, 13 Nov 2018 20:31:00 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592605636-526848] + x-request-id: [1542141060356-149169] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"name": "folder_file", "project": "project-FP9k7g80xX0PxYfQJq0Qq9Pb", - "folder": "/temp_folder", "nonce": "b9590ad0fb22c8c99eb500e057446f662ec738c6c8632396fa227999384fe0e21540592605.763678"}' + body: !!python/unicode '{"project": "project-FPbY91004P31X71F8q6pKGx3", "nonce": + "a26a04fe2c43013b4e33ba322648c0a7c61deafe5867c61b33a38534a54103cf1542141060.406436", + "folder": "/temp_folder", "name": "folder_file"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/file/new response: - body: {string: !!python/unicode '{"id":"file-FP9k7g80xX05VJvpJkZZ2f74"}'} + body: {string: !!python/unicode '{"id":"file-FPbY91004P39GXBB2vpY85K6"}'} headers: connection: [keep-alive] content-length: ['38'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:23:26 GMT'] + date: ['Tue, 13 Nov 2018 20:31:00 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592605819-968150] + x-request-id: [1542141060450-834399] status: {code: 200, message: OK} - request: body: !!python/unicode '{"fields": {"fileUploadParameters": true}}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k7g80xX0PxYfQJq0Qq9Pb/describe + uri: https://api.dnanexus.com/project-FPbY91004P31X71F8q6pKGx3/describe response: - body: {string: !!python/unicode '{"id":"project-FP9k7g80xX0PxYfQJq0Qq9Pb","fileUploadParameters":{"maximumPartSize":5368709120,"minimumPartSize":5242880,"maximumFileSize":5497558138880,"maximumNumParts":10000,"emptyLastPartAllowed":true}}'} + body: {string: !!python/unicode '{"id":"project-FPbY91004P31X71F8q6pKGx3","fileUploadParameters":{"maximumPartSize":5368709120,"minimumPartSize":5242880,"maximumFileSize":5497558138880,"maximumNumParts":10000,"emptyLastPartAllowed":true}}'} headers: connection: [keep-alive] content-length: ['205'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:23:26 GMT'] + date: ['Tue, 13 Nov 2018 20:31:00 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592606140-198389] + x-request-id: [1542141060582-448509] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"size": 5, "md5": "73dfff57fe24e807bd4fb1bc4e07cd73", - "index": 1}' + body: !!python/unicode '{"index": 1, "size": 5, "md5": "73dfff57fe24e807bd4fb1bc4e07cd73"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k7g80xX05VJvpJkZZ2f74/upload + uri: https://api.dnanexus.com/file-FPbY91004P39GXBB2vpY85K6/upload response: - body: {string: !!python/unicode '{"url":"https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/1f79/file/open/file-FP9k7g80xX05VJvpJkZZ2f74/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181026%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181026T222326Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=e1ec75bb19ac11d56e52319a1630313e0e2ea47ab70da0662d1281c376ab61f6","headers":{"host":"dnanexus-platform-upload-prod.s3.amazonaws.com","content-type":"binary/octet-stream","x-amz-server-side-encryption":"AES256","content-md5":"c9//V/4k6Ae9T7G8TgfNcw==","content-length":"5"},"expires":1540592726522}'} + body: {string: !!python/unicode '{"url":"https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/2d1c/file/open/file-FPbY91004P39GXBB2vpY85K6/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181113%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181113T203100Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=33f8cf7de47b5e391670998f2eded4824961c6ef823120f10c3b7f51d3667a1b","headers":{"host":"dnanexus-platform-upload-prod.s3.amazonaws.com","content-type":"binary/octet-stream","x-amz-server-side-encryption":"AES256","content-md5":"c9//V/4k6Ae9T7G8TgfNcw==","content-length":"5"},"expires":1542141180696}'} headers: connection: [keep-alive] content-length: ['692'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:23:26 GMT'] + date: ['Tue, 13 Nov 2018 20:31:00 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592606503-433979] + x-request-id: [1542141060678-662262] status: {code: 200, message: OK} - request: body: !!python/unicode data0 headers: DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] content-length: ['5'] content-md5: [c9//V/4k6Ae9T7G8TgfNcw==] content-type: [binary/octet-stream] host: [dnanexus-platform-upload-prod.s3.amazonaws.com] x-amz-server-side-encryption: [AES256] method: PUT - uri: https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/1f79/file/open/file-FP9k7g80xX05VJvpJkZZ2f74/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181026%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181026T222326Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=e1ec75bb19ac11d56e52319a1630313e0e2ea47ab70da0662d1281c376ab61f6 + uri: https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/2d1c/file/open/file-FPbY91004P39GXBB2vpY85K6/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181113%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181113T203100Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=33f8cf7de47b5e391670998f2eded4824961c6ef823120f10c3b7f51d3667a1b response: body: {string: !!python/unicode ''} headers: content-length: ['0'] - date: ['Fri, 26 Oct 2018 22:23:27 GMT'] + date: ['Tue, 13 Nov 2018 20:31:02 GMT'] etag: ['"73dfff57fe24e807bd4fb1bc4e07cd73"'] server: [AmazonS3] - x-amz-expiration: ['expiry-date="Sat, 17 Nov 2018 00:00:00 GMT", rule-id="3weekpurge"'] - x-amz-id-2: [krMxS7q/GWGB+GdQ9WYEdoE1QhXA4OLnh1RhLgTYj5Y5U4TezU6vwBj3FyIh2OrWvkxKlEFDfQI=] - x-amz-request-id: [B6882D511BB7C55D] + x-amz-expiration: ['expiry-date="Wed, 05 Dec 2018 00:00:00 GMT", rule-id="3weekpurge"'] + x-amz-id-2: [ndZVUEaiDNiEx+EP02cXY4EyNqTIKmJrNHdexrbD7LZNGO9oVyRXCobcOTFvBJKeYoXMUQ0WtXk=] + x-amz-request-id: [CEEAC779F8112753] x-amz-server-side-encryption: [AES256] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"project": "project-FP9k7g80xX0PxYfQJq0Qq9Pb", "fields": + body: !!python/unicode '{"project": "project-FPbY91004P31X71F8q6pKGx3", "fields": {"state": true}}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k7g80xX05VJvpJkZZ2f74/describe + uri: https://api.dnanexus.com/file-FPbY91004P39GXBB2vpY85K6/describe response: - body: {string: !!python/unicode '{"id":"file-FP9k7g80xX05VJvpJkZZ2f74","state":"open"}'} + body: {string: !!python/unicode '{"id":"file-FPbY91004P39GXBB2vpY85K6","state":"open"}'} headers: connection: [keep-alive] content-length: ['53'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:23:27 GMT'] + date: ['Tue, 13 Nov 2018 20:31:01 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592607115-45025] + x-request-id: [1542141061179-958594] status: {code: 200, message: OK} - request: body: !!python/unicode '{}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k7g80xX05VJvpJkZZ2f74/close + uri: https://api.dnanexus.com/file-FPbY91004P39GXBB2vpY85K6/close response: - body: {string: !!python/unicode '{"id":"file-FP9k7g80xX05VJvpJkZZ2f74"}'} + body: {string: !!python/unicode '{"id":"file-FPbY91004P39GXBB2vpY85K6"}'} headers: connection: [keep-alive] content-length: ['38'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:23:27 GMT'] + date: ['Tue, 13 Nov 2018 20:31:01 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592607250-361420] + x-request-id: [1542141061275-986014] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"limit": 2, "name": "TestCopyTree.test_dx_dir_to_dx_dir_same_project.7b6954c6", + body: !!python/unicode '{"limit": 2, "name": "TestCopyTree.test_dx_dir_to_dx_dir_same_project.31c7195e", "level": "VIEW"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/system/findProjects response: - body: {string: !!python/unicode '{"results":[{"id":"project-FP9k7g80xX0PxYfQJq0Qq9Pb","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} + body: {string: !!python/unicode '{"results":[{"id":"project-FPbY91004P31X71F8q6pKGx3","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} headers: connection: [keep-alive] content-length: ['147'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:23:27 GMT'] + date: ['Tue, 13 Nov 2018 20:31:01 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592607418-95618] + x-request-id: [1542141061431-775133] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"includeHidden": false, "only": "folders", "folder": - "/temp_folder", "describe": {"fields": {"name": true, "folder": true}}}' + body: !!python/unicode '{"folder": "/temp_folder", "describe": {"fields": {"folder": + true, "name": true}}, "only": "folders", "includeHidden": false}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k7g80xX0PxYfQJq0Qq9Pb/listFolder + uri: https://api.dnanexus.com/project-FPbY91004P31X71F8q6pKGx3/listFolder response: body: {string: !!python/unicode '{"folders":[]}'} headers: connection: [keep-alive] content-length: ['14'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:23:27 GMT'] + date: ['Tue, 13 Nov 2018 20:31:01 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592607585-975687] + x-request-id: [1542141061571-226530] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"limit": 2, "name": "TestCopyTree.test_dx_dir_to_dx_dir_same_project.7b6954c6", + body: !!python/unicode '{"limit": 2, "name": "TestCopyTree.test_dx_dir_to_dx_dir_same_project.31c7195e", "level": "VIEW"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/system/findProjects response: - body: {string: !!python/unicode '{"results":[{"id":"project-FP9k7g80xX0PxYfQJq0Qq9Pb","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} + body: {string: !!python/unicode '{"results":[{"id":"project-FPbY91004P31X71F8q6pKGx3","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} headers: connection: [keep-alive] content-length: ['147'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:23:27 GMT'] + date: ['Tue, 13 Nov 2018 20:31:01 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592607694-757643] + x-request-id: [1542141061665-690035] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"includeHidden": false, "only": "folders", "folder": - "/new_folder/folder2", "describe": {"fields": {"name": true, "folder": true}}}' + body: !!python/unicode '{"folder": "/new_folder/folder2", "describe": {"fields": + {"folder": true, "name": true}}, "only": "folders", "includeHidden": false}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k7g80xX0PxYfQJq0Qq9Pb/listFolder + uri: https://api.dnanexus.com/project-FPbY91004P31X71F8q6pKGx3/listFolder response: body: {string: !!python/unicode '{"error":{"type":"ResourceNotFound","message":"The - specified folder could not be found in project-FP9k7g80xX0PxYfQJq0Qq9Pb"}}'} + specified folder could not be found in project-FPbY91004P31X71F8q6pKGx3"}}'} headers: connection: [keep-alive] content-type: [application/json] - date: ['Fri, 26 Oct 2018 22:23:27 GMT'] + date: ['Tue, 13 Nov 2018 20:31:01 GMT'] server: [nginx] transfer-encoding: [chunked] vary: [Accept-Encoding] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592607878-440457] + x-request-id: [1542141061785-953970] status: {code: 404, message: Not Found} - request: - body: !!python/unicode '{"limit": 2, "name": "TestCopyTree.test_dx_dir_to_dx_dir_same_project.7b6954c6", + body: !!python/unicode '{"limit": 2, "name": "TestCopyTree.test_dx_dir_to_dx_dir_same_project.31c7195e", "level": "VIEW"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/system/findProjects response: - body: {string: !!python/unicode '{"results":[{"id":"project-FP9k7g80xX0PxYfQJq0Qq9Pb","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} + body: {string: !!python/unicode '{"results":[{"id":"project-FPbY91004P31X71F8q6pKGx3","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} headers: connection: [keep-alive] content-length: ['147'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:23:28 GMT'] + date: ['Tue, 13 Nov 2018 20:31:02 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592608331-923496] + x-request-id: [1542141062123-629522] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"parents": true, "folder": "/new_folder"}' + body: !!python/unicode '{"folder": "/new_folder", "parents": true}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k7g80xX0PxYfQJq0Qq9Pb/newFolder + uri: https://api.dnanexus.com/project-FPbY91004P31X71F8q6pKGx3/newFolder response: - body: {string: !!python/unicode '{"id":"project-FP9k7g80xX0PxYfQJq0Qq9Pb"}'} + body: {string: !!python/unicode '{"id":"project-FPbY91004P31X71F8q6pKGx3"}'} headers: connection: [keep-alive] content-length: ['41'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:23:28 GMT'] + date: ['Tue, 13 Nov 2018 20:31:02 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592608517-137345] + x-request-id: [1542141062235-254467] status: {code: 200, message: OK} - request: body: !!python/unicode '{"folders": ["/temp_folder"], "destination": "/new_folder"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k7g80xX0PxYfQJq0Qq9Pb/move + uri: https://api.dnanexus.com/project-FPbY91004P31X71F8q6pKGx3/move response: - body: {string: !!python/unicode '{"id":"project-FP9k7g80xX0PxYfQJq0Qq9Pb"}'} + body: {string: !!python/unicode '{"id":"project-FPbY91004P31X71F8q6pKGx3"}'} headers: connection: [keep-alive] content-length: ['41'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:23:28 GMT'] + date: ['Tue, 13 Nov 2018 20:31:02 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592608642-339412] + x-request-id: [1542141062358-552845] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"name": "folder2", "folder": "/new_folder/temp_folder"}' + body: !!python/unicode '{"folder": "/new_folder/temp_folder", "name": "folder2"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k7g80xX0PxYfQJq0Qq9Pb/renameFolder + uri: https://api.dnanexus.com/project-FPbY91004P31X71F8q6pKGx3/renameFolder response: - body: {string: !!python/unicode '{"id":"project-FP9k7g80xX0PxYfQJq0Qq9Pb"}'} + body: {string: !!python/unicode '{"id":"project-FPbY91004P31X71F8q6pKGx3"}'} headers: connection: [keep-alive] content-length: ['41'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:23:28 GMT'] + date: ['Tue, 13 Nov 2018 20:31:02 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592608793-488408] + x-request-id: [1542141062483-539312] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"limit": 2, "name": "TestCopyTree.test_dx_dir_to_dx_dir_same_project.7b6954c6", + body: !!python/unicode '{"limit": 2, "name": "TestCopyTree.test_dx_dir_to_dx_dir_same_project.31c7195e", "level": "VIEW"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/system/findProjects response: - body: {string: !!python/unicode '{"results":[{"id":"project-FP9k7g80xX0PxYfQJq0Qq9Pb","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} + body: {string: !!python/unicode '{"results":[{"id":"project-FPbY91004P31X71F8q6pKGx3","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} headers: connection: [keep-alive] content-length: ['147'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:23:29 GMT'] + date: ['Tue, 13 Nov 2018 20:31:02 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592608963-70355] + x-request-id: [1542141062614-717215] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"includeHidden": false, "only": "folders", "folder": - "/new_folder/folder2", "describe": {"fields": {"name": true, "folder": true}}}' + body: !!python/unicode '{"folder": "/new_folder/folder2", "describe": {"fields": + {"folder": true, "name": true}}, "only": "folders", "includeHidden": false}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k7g80xX0PxYfQJq0Qq9Pb/listFolder + uri: https://api.dnanexus.com/project-FPbY91004P31X71F8q6pKGx3/listFolder response: body: {string: !!python/unicode '{"folders":[]}'} headers: connection: [keep-alive] content-length: ['14'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:23:29 GMT'] + date: ['Tue, 13 Nov 2018 20:31:02 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592609483-639220] + x-request-id: [1542141062729-448751] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"limit": 2, "name": "TestCopyTree.test_dx_dir_to_dx_dir_same_project.7b6954c6", + body: !!python/unicode '{"limit": 2, "name": "TestCopyTree.test_dx_dir_to_dx_dir_same_project.31c7195e", "level": "VIEW"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/system/findProjects response: - body: {string: !!python/unicode '{"results":[{"id":"project-FP9k7g80xX0PxYfQJq0Qq9Pb","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} + body: {string: !!python/unicode '{"results":[{"id":"project-FPbY91004P31X71F8q6pKGx3","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} headers: connection: [keep-alive] content-length: ['147'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:23:29 GMT'] + date: ['Tue, 13 Nov 2018 20:31:02 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592609597-639307] + x-request-id: [1542141062833-177411] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"objects": [{"name": "folder_file", "project": "project-FP9k7g80xX0PxYfQJq0Qq9Pb", - "batchsize": 2, "folder": "/new_folder/folder2"}]}' + body: !!python/unicode '{"objects": [{"project": "project-FPbY91004P31X71F8q6pKGx3", + "folder": "/new_folder/folder2", "name": "folder_file", "batchsize": 2}]}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/system/resolveDataObjects response: - body: {string: !!python/unicode '{"results":[[{"project":"project-FP9k7g80xX0PxYfQJq0Qq9Pb","id":"file-FP9k7g80xX05VJvpJkZZ2f74"}]]}'} + body: {string: !!python/unicode '{"results":[[{"project":"project-FPbY91004P31X71F8q6pKGx3","id":"file-FPbY91004P39GXBB2vpY85K6"}]]}'} headers: connection: [keep-alive] content-length: ['99'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:23:29 GMT'] + date: ['Tue, 13 Nov 2018 20:31:02 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592609744-660110] + x-request-id: [1542141062970-380558] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"project": "project-FP9k7g80xX0PxYfQJq0Qq9Pb"}' + body: !!python/unicode '{"project": "project-FPbY91004P31X71F8q6pKGx3"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k7g80xX05VJvpJkZZ2f74/describe + uri: https://api.dnanexus.com/file-FPbY91004P39GXBB2vpY85K6/describe response: - body: {string: !!python/unicode '{"id":"file-FP9k7g80xX05VJvpJkZZ2f74","project":"project-FP9k7g80xX0PxYfQJq0Qq9Pb","class":"file","sponsored":false,"name":"folder_file","types":[],"state":"closed","hidden":false,"links":[],"folder":"/new_folder/folder2","tags":[],"created":1540592605000,"modified":1540592608031,"createdBy":{"user":"user-akumar_counsyl"},"media":"text/plain","archivalState":"live","size":5}'} + body: {string: !!python/unicode '{"id":"file-FPbY91004P39GXBB2vpY85K6","project":"project-FPbY91004P31X71F8q6pKGx3","class":"file","sponsored":false,"name":"folder_file","types":[],"state":"closed","hidden":false,"links":[],"folder":"/new_folder/folder2","tags":[],"created":1542141060000,"modified":1542141061724,"createdBy":{"user":"user-akumar_counsyl"},"media":"text/plain","archivalState":"live","size":5}'} headers: connection: [keep-alive] content-length: ['377'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:23:30 GMT'] + date: ['Tue, 13 Nov 2018 20:31:03 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592609906-143176] + x-request-id: [1542141063062-125694] status: {code: 200, message: OK} - request: body: !!python/unicode '{}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k7g80xX0PxYfQJq0Qq9Pb/destroy + uri: https://api.dnanexus.com/project-FPbY91004P31X71F8q6pKGx3/destroy response: - body: {string: !!python/unicode '{"id":"project-FP9k7g80xX0PxYfQJq0Qq9Pb"}'} + body: {string: !!python/unicode '{"id":"project-FPbY91004P31X71F8q6pKGx3"}'} headers: connection: [keep-alive] content-length: ['41'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:23:32 GMT'] + date: ['Tue, 13 Nov 2018 20:31:05 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592610145-78956] + x-request-id: [1542141063157-959194] status: {code: 200, message: OK} version: 1 diff --git a/stor/tests/cassettes_py2/TestCopyTree/test_dx_dir_to_dx_dir_same_project_fail.yaml b/stor_dx/stor_dx/tests/cassettes_py2/TestCopyTree/test_dx_dir_to_dx_dir_same_project_fail.yaml similarity index 57% rename from stor/tests/cassettes_py2/TestCopyTree/test_dx_dir_to_dx_dir_same_project_fail.yaml rename to stor_dx/stor_dx/tests/cassettes_py2/TestCopyTree/test_dx_dir_to_dx_dir_same_project_fail.yaml index 5e01ccd6..2f28b17e 100644 --- a/stor/tests/cassettes_py2/TestCopyTree/test_dx_dir_to_dx_dir_same_project_fail.yaml +++ b/stor_dx/stor_dx/tests/cassettes_py2/TestCopyTree/test_dx_dir_to_dx_dir_same_project_fail.yaml @@ -1,525 +1,525 @@ interactions: - request: - body: !!python/unicode '{"name": "TestCopyTree.test_dx_dir_to_dx_dir_same_project_fail.adeefeb4"}' + body: !!python/unicode '{"name": "TestCopyTree.test_dx_dir_to_dx_dir_same_project_fail.ecae7196"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/project/new response: - body: {string: !!python/unicode '{"id":"project-FP9k7k80f55PxYfQJq0Qq9Pf"}'} + body: {string: !!python/unicode '{"id":"project-FPbY9280zZb9GXBB2vpY85K8"}'} headers: connection: [keep-alive] content-length: ['41'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:23:33 GMT'] + date: ['Tue, 13 Nov 2018 20:31:06 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592613263-598572] + x-request-id: [1542141065972-760897] status: {code: 200, message: OK} - request: body: !!python/unicode '{}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k7k80f55PxYfQJq0Qq9Pf/describe + uri: https://api.dnanexus.com/project-FPbY9280zZb9GXBB2vpY85K8/describe response: - body: {string: !!python/unicode '{"id":"project-FP9k7k80f55PxYfQJq0Qq9Pf","name":"TestCopyTree.test_dx_dir_to_dx_dir_same_project_fail.adeefeb4","class":"project","created":1540592613000,"modified":1540592613000,"billTo":"org-counsyl","level":"ADMINISTER","dataUsage":0,"sponsoredDataUsage":0,"region":"aws:us-east-1","summary":"","description":"","protected":false,"restricted":false,"downloadRestricted":false,"containsPHI":false,"createdBy":{"user":"user-akumar_counsyl"},"version":0,"storageCost":0,"pendingTransfer":null,"tags":[],"defaultInstanceType":"mem2_hdd2_x2","archivalState":"live","archivalProgress":null,"totalSponsoredEgressBytes":0,"consumedSponsoredEgressBytes":0,"atSpendingLimit":false}'} + body: {string: !!python/unicode '{"id":"project-FPbY9280zZb9GXBB2vpY85K8","name":"TestCopyTree.test_dx_dir_to_dx_dir_same_project_fail.ecae7196","class":"project","created":1542141065000,"modified":1542141065000,"billTo":"org-counsyl","level":"ADMINISTER","dataUsage":0,"sponsoredDataUsage":0,"region":"aws:us-east-1","summary":"","description":"","protected":false,"restricted":false,"downloadRestricted":false,"containsPHI":false,"createdBy":{"user":"user-akumar_counsyl"},"version":0,"storageCost":0,"pendingTransfer":null,"tags":[],"defaultInstanceType":"mem2_hdd2_x2","archivalState":"live","archivalProgress":null,"totalSponsoredEgressBytes":0,"consumedSponsoredEgressBytes":0,"atSpendingLimit":false}'} headers: connection: [keep-alive] content-length: ['674'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:23:33 GMT'] + date: ['Tue, 13 Nov 2018 20:31:06 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592613380-322989] + x-request-id: [1542141066084-245580] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"parents": true, "folder": "/temp_folder"}' + body: !!python/unicode '{"folder": "/temp_folder", "parents": true}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k7k80f55PxYfQJq0Qq9Pf/newFolder + uri: https://api.dnanexus.com/project-FPbY9280zZb9GXBB2vpY85K8/newFolder response: - body: {string: !!python/unicode '{"id":"project-FP9k7k80f55PxYfQJq0Qq9Pf"}'} + body: {string: !!python/unicode '{"id":"project-FPbY9280zZb9GXBB2vpY85K8"}'} headers: connection: [keep-alive] content-length: ['41'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:23:33 GMT'] + date: ['Tue, 13 Nov 2018 20:31:06 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592613521-874121] + x-request-id: [1542141066195-916359] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"name": "folder_file", "project": "project-FP9k7k80f55PxYfQJq0Qq9Pf", - "folder": "/temp_folder", "nonce": "c69a59aa58e232ee8b37b78192007af3678fcde30c44c981b2ae702b975210851540592613.588886"}' + body: !!python/unicode '{"project": "project-FPbY9280zZb9GXBB2vpY85K8", "nonce": + "c82eaf5179000ce4c066db7e866470135531fbf9c3f6e92b2e1349183f1a2b261542141066.248060", + "folder": "/temp_folder", "name": "folder_file"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/file/new response: - body: {string: !!python/unicode '{"id":"file-FP9k7k80f55Pvv365P3k8ZvZ"}'} + body: {string: !!python/unicode '{"id":"file-FPbY92Q0zZb1X71F8q6pKGx4"}'} headers: connection: [keep-alive] content-length: ['38'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:23:33 GMT'] + date: ['Tue, 13 Nov 2018 20:31:06 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592613635-78506] + x-request-id: [1542141066293-180436] status: {code: 200, message: OK} - request: body: !!python/unicode '{"fields": {"fileUploadParameters": true}}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k7k80f55PxYfQJq0Qq9Pf/describe + uri: https://api.dnanexus.com/project-FPbY9280zZb9GXBB2vpY85K8/describe response: - body: {string: !!python/unicode '{"id":"project-FP9k7k80f55PxYfQJq0Qq9Pf","fileUploadParameters":{"maximumPartSize":5368709120,"minimumPartSize":5242880,"maximumFileSize":5497558138880,"maximumNumParts":10000,"emptyLastPartAllowed":true}}'} + body: {string: !!python/unicode '{"id":"project-FPbY9280zZb9GXBB2vpY85K8","fileUploadParameters":{"maximumPartSize":5368709120,"minimumPartSize":5242880,"maximumFileSize":5497558138880,"maximumNumParts":10000,"emptyLastPartAllowed":true}}'} headers: connection: [keep-alive] content-length: ['205'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:23:33 GMT'] + date: ['Tue, 13 Nov 2018 20:31:06 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592613831-35608] + x-request-id: [1542141066436-887286] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"size": 5, "md5": "73dfff57fe24e807bd4fb1bc4e07cd73", - "index": 1}' + body: !!python/unicode '{"index": 1, "size": 5, "md5": "73dfff57fe24e807bd4fb1bc4e07cd73"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k7k80f55Pvv365P3k8ZvZ/upload + uri: https://api.dnanexus.com/file-FPbY92Q0zZb1X71F8q6pKGx4/upload response: - body: {string: !!python/unicode '{"url":"https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/9926/file/open/file-FP9k7k80f55Pvv365P3k8ZvZ/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181026%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181026T222333Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=198c6917c3a890fa1b6bc57f42729e3c45e36ff915cd7fd2d16d5aecfa15aafb","headers":{"host":"dnanexus-platform-upload-prod.s3.amazonaws.com","content-type":"binary/octet-stream","x-amz-server-side-encryption":"AES256","content-md5":"c9//V/4k6Ae9T7G8TgfNcw==","content-length":"5"},"expires":1540592733976}'} + body: {string: !!python/unicode '{"url":"https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/dba6/file/open/file-FPbY92Q0zZb1X71F8q6pKGx4/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181113%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181113T203106Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=03d927abce3d9e745a08cb97b1541cf8bd20caff146ff2225fc9e95018f88312","headers":{"host":"dnanexus-platform-upload-prod.s3.amazonaws.com","content-type":"binary/octet-stream","x-amz-server-side-encryption":"AES256","content-md5":"c9//V/4k6Ae9T7G8TgfNcw==","content-length":"5"},"expires":1542141186598}'} headers: connection: [keep-alive] content-length: ['692'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:23:33 GMT'] + date: ['Tue, 13 Nov 2018 20:31:06 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592613945-887027] + x-request-id: [1542141066582-28733] status: {code: 200, message: OK} - request: body: !!python/unicode data0 headers: DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] content-length: ['5'] content-md5: [c9//V/4k6Ae9T7G8TgfNcw==] content-type: [binary/octet-stream] host: [dnanexus-platform-upload-prod.s3.amazonaws.com] x-amz-server-side-encryption: [AES256] method: PUT - uri: https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/9926/file/open/file-FP9k7k80f55Pvv365P3k8ZvZ/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181026%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181026T222333Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=198c6917c3a890fa1b6bc57f42729e3c45e36ff915cd7fd2d16d5aecfa15aafb + uri: https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/dba6/file/open/file-FPbY92Q0zZb1X71F8q6pKGx4/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181113%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181113T203106Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=03d927abce3d9e745a08cb97b1541cf8bd20caff146ff2225fc9e95018f88312 response: body: {string: !!python/unicode ''} headers: content-length: ['0'] - date: ['Fri, 26 Oct 2018 22:23:35 GMT'] + date: ['Tue, 13 Nov 2018 20:31:07 GMT'] etag: ['"73dfff57fe24e807bd4fb1bc4e07cd73"'] server: [AmazonS3] - x-amz-expiration: ['expiry-date="Sat, 17 Nov 2018 00:00:00 GMT", rule-id="3weekpurge"'] - x-amz-id-2: [eV3/fc9fajJhcMke06H26fHl2JeFFUnIhWa05f8bq3qpFq2rVJsdPxw2s4PkXJUqrrytunVuZcU=] - x-amz-request-id: [D531D77F62C71E4C] + x-amz-expiration: ['expiry-date="Wed, 05 Dec 2018 00:00:00 GMT", rule-id="3weekpurge"'] + x-amz-id-2: [r8RThNWP25XuTLJYTb11tOQYa87/Ecm5pNfVwq+WaCeHt/1nBtvsAw+23X3p+FJLIhFYGwkcJ2s=] + x-amz-request-id: [73BE31EDD0DD35AD] x-amz-server-side-encryption: [AES256] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"project": "project-FP9k7k80f55PxYfQJq0Qq9Pf", "fields": + body: !!python/unicode '{"project": "project-FPbY9280zZb9GXBB2vpY85K8", "fields": {"state": true}}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k7k80f55Pvv365P3k8ZvZ/describe + uri: https://api.dnanexus.com/file-FPbY92Q0zZb1X71F8q6pKGx4/describe response: - body: {string: !!python/unicode '{"id":"file-FP9k7k80f55Pvv365P3k8ZvZ","state":"open"}'} + body: {string: !!python/unicode '{"id":"file-FPbY92Q0zZb1X71F8q6pKGx4","state":"open"}'} headers: connection: [keep-alive] content-length: ['53'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:23:34 GMT'] + date: ['Tue, 13 Nov 2018 20:31:07 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592614557-158271] + x-request-id: [1542141067066-713846] status: {code: 200, message: OK} - request: body: !!python/unicode '{}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k7k80f55Pvv365P3k8ZvZ/close + uri: https://api.dnanexus.com/file-FPbY92Q0zZb1X71F8q6pKGx4/close response: - body: {string: !!python/unicode '{"id":"file-FP9k7k80f55Pvv365P3k8ZvZ"}'} + body: {string: !!python/unicode '{"id":"file-FPbY92Q0zZb1X71F8q6pKGx4"}'} headers: connection: [keep-alive] content-length: ['38'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:23:34 GMT'] + date: ['Tue, 13 Nov 2018 20:31:07 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592614678-192715] + x-request-id: [1542141067159-184668] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"parents": true, "folder": "/another_folder/temp_folder"}' + body: !!python/unicode '{"folder": "/another_folder/temp_folder", "parents": true}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k7k80f55PxYfQJq0Qq9Pf/newFolder + uri: https://api.dnanexus.com/project-FPbY9280zZb9GXBB2vpY85K8/newFolder response: - body: {string: !!python/unicode '{"id":"project-FP9k7k80f55PxYfQJq0Qq9Pf"}'} + body: {string: !!python/unicode '{"id":"project-FPbY9280zZb9GXBB2vpY85K8"}'} headers: connection: [keep-alive] content-length: ['41'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:23:34 GMT'] + date: ['Tue, 13 Nov 2018 20:31:07 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592614820-413313] + x-request-id: [1542141067274-441983] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"name": "temp_file.txt", "project": "project-FP9k7k80f55PxYfQJq0Qq9Pf", - "folder": "/another_folder/temp_folder", "nonce": "317be989cbcbedb6e49cb8fe2bee69b8e6a8c92957dccfb9e5bd9808ff1e0ba31540592614.903848"}' + body: !!python/unicode '{"project": "project-FPbY9280zZb9GXBB2vpY85K8", "nonce": + "6767a3b70665788509328f446b0d17f42187fa25418e5be5eeed38cd49d198b11542141067.328632", + "folder": "/another_folder/temp_folder", "name": "temp_file.txt"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/file/new response: - body: {string: !!python/unicode '{"id":"file-FP9k7kQ0f55FPYg95F286zFz"}'} + body: {string: !!python/unicode '{"id":"file-FPbY92j0zZb6y3B93bJvY5zF"}'} headers: connection: [keep-alive] content-length: ['38'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:23:35 GMT'] + date: ['Tue, 13 Nov 2018 20:31:07 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592614949-417200] + x-request-id: [1542141067374-938246] status: {code: 200, message: OK} - request: body: !!python/unicode '{"fields": {"fileUploadParameters": true}}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k7k80f55PxYfQJq0Qq9Pf/describe + uri: https://api.dnanexus.com/project-FPbY9280zZb9GXBB2vpY85K8/describe response: - body: {string: !!python/unicode '{"id":"project-FP9k7k80f55PxYfQJq0Qq9Pf","fileUploadParameters":{"maximumPartSize":5368709120,"minimumPartSize":5242880,"maximumFileSize":5497558138880,"maximumNumParts":10000,"emptyLastPartAllowed":true}}'} + body: {string: !!python/unicode '{"id":"project-FPbY9280zZb9GXBB2vpY85K8","fileUploadParameters":{"maximumPartSize":5368709120,"minimumPartSize":5242880,"maximumFileSize":5497558138880,"maximumNumParts":10000,"emptyLastPartAllowed":true}}'} headers: connection: [keep-alive] content-length: ['205'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:23:35 GMT'] + date: ['Tue, 13 Nov 2018 20:31:07 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592615109-795870] + x-request-id: [1542141067496-303644] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"size": 5, "md5": "89d903bc35dede724fd52c51437ff5fd", - "index": 1}' + body: !!python/unicode '{"index": 1, "size": 5, "md5": "89d903bc35dede724fd52c51437ff5fd"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k7kQ0f55FPYg95F286zFz/upload + uri: https://api.dnanexus.com/file-FPbY92j0zZb6y3B93bJvY5zF/upload response: - body: {string: !!python/unicode '{"url":"https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/5585/file/open/file-FP9k7kQ0f55FPYg95F286zFz/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181026%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181026T222335Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=3b2e7a575a44a6ef3235566e74c37960d890ac5d571152119b77bee8115a47f7","headers":{"host":"dnanexus-platform-upload-prod.s3.amazonaws.com","content-type":"binary/octet-stream","x-amz-server-side-encryption":"AES256","content-md5":"idkDvDXe3nJP1SxRQ3/1/Q==","content-length":"5"},"expires":1540592735252}'} + body: {string: !!python/unicode '{"url":"https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/5371/file/open/file-FPbY92j0zZb6y3B93bJvY5zF/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181113%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181113T203107Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=183d198fadd9fd11ef28cf98c9bddb0b1fd77e83f57b7f5d37dca03cf2420535","headers":{"host":"dnanexus-platform-upload-prod.s3.amazonaws.com","content-type":"binary/octet-stream","x-amz-server-side-encryption":"AES256","content-md5":"idkDvDXe3nJP1SxRQ3/1/Q==","content-length":"5"},"expires":1542141187601}'} headers: connection: [keep-alive] content-length: ['692'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:23:35 GMT'] + date: ['Tue, 13 Nov 2018 20:31:07 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592615221-326549] + x-request-id: [1542141067589-481035] status: {code: 200, message: OK} - request: body: !!python/unicode data1 headers: DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] content-length: ['5'] content-md5: [idkDvDXe3nJP1SxRQ3/1/Q==] content-type: [binary/octet-stream] host: [dnanexus-platform-upload-prod.s3.amazonaws.com] x-amz-server-side-encryption: [AES256] method: PUT - uri: https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/5585/file/open/file-FP9k7kQ0f55FPYg95F286zFz/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181026%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181026T222335Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=3b2e7a575a44a6ef3235566e74c37960d890ac5d571152119b77bee8115a47f7 + uri: https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/5371/file/open/file-FPbY92j0zZb6y3B93bJvY5zF/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181113%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181113T203107Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=183d198fadd9fd11ef28cf98c9bddb0b1fd77e83f57b7f5d37dca03cf2420535 response: body: {string: !!python/unicode ''} headers: content-length: ['0'] - date: ['Fri, 26 Oct 2018 22:23:36 GMT'] + date: ['Tue, 13 Nov 2018 20:31:08 GMT'] etag: ['"89d903bc35dede724fd52c51437ff5fd"'] server: [AmazonS3] - x-amz-expiration: ['expiry-date="Sat, 17 Nov 2018 00:00:00 GMT", rule-id="3weekpurge"'] - x-amz-id-2: [zNBuUdX0i97bxJOz5bpUL0O3nXEXeWG9W3GbxwZJ8g6mG4/mV5LU0M4B0nwnLc7Jcdry+0Av+9o=] - x-amz-request-id: [DDBD47BFA1BC6303] + x-amz-expiration: ['expiry-date="Wed, 05 Dec 2018 00:00:00 GMT", rule-id="3weekpurge"'] + x-amz-id-2: [heJv3UMcq8+1MCc38LPU7VBRtbZjybrr4z7aU5jTvMjLD5zkJn2a6TZz0/xvTP8tFEUTvDRSAek=] + x-amz-request-id: [0271B212B445E759] x-amz-server-side-encryption: [AES256] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"project": "project-FP9k7k80f55PxYfQJq0Qq9Pf", "fields": + body: !!python/unicode '{"project": "project-FPbY9280zZb9GXBB2vpY85K8", "fields": {"state": true}}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k7kQ0f55FPYg95F286zFz/describe + uri: https://api.dnanexus.com/file-FPbY92j0zZb6y3B93bJvY5zF/describe response: - body: {string: !!python/unicode '{"id":"file-FP9k7kQ0f55FPYg95F286zFz","state":"open"}'} + body: {string: !!python/unicode '{"id":"file-FPbY92j0zZb6y3B93bJvY5zF","state":"open"}'} headers: connection: [keep-alive] content-length: ['53'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:23:35 GMT'] + date: ['Tue, 13 Nov 2018 20:31:07 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592615514-940948] + x-request-id: [1542141067813-971118] status: {code: 200, message: OK} - request: body: !!python/unicode '{}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k7kQ0f55FPYg95F286zFz/close + uri: https://api.dnanexus.com/file-FPbY92j0zZb6y3B93bJvY5zF/close response: - body: {string: !!python/unicode '{"id":"file-FP9k7kQ0f55FPYg95F286zFz"}'} + body: {string: !!python/unicode '{"id":"file-FPbY92j0zZb6y3B93bJvY5zF"}'} headers: connection: [keep-alive] content-length: ['38'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:23:35 GMT'] + date: ['Tue, 13 Nov 2018 20:31:07 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592615637-652300] + x-request-id: [1542141067929-859691] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"limit": 2, "name": "TestCopyTree.test_dx_dir_to_dx_dir_same_project_fail.adeefeb4", + body: !!python/unicode '{"limit": 2, "name": "TestCopyTree.test_dx_dir_to_dx_dir_same_project_fail.ecae7196", "level": "VIEW"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/system/findProjects response: - body: {string: !!python/unicode '{"results":[{"id":"project-FP9k7k80f55PxYfQJq0Qq9Pf","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} + body: {string: !!python/unicode '{"results":[{"id":"project-FPbY9280zZb9GXBB2vpY85K8","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} headers: connection: [keep-alive] content-length: ['147'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:23:35 GMT'] + date: ['Tue, 13 Nov 2018 20:31:08 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592615807-891527] + x-request-id: [1542141068056-834686] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"includeHidden": false, "only": "folders", "folder": - "/temp_folder", "describe": {"fields": {"name": true, "folder": true}}}' + body: !!python/unicode '{"folder": "/temp_folder", "describe": {"fields": {"folder": + true, "name": true}}, "only": "folders", "includeHidden": false}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k7k80f55PxYfQJq0Qq9Pf/listFolder + uri: https://api.dnanexus.com/project-FPbY9280zZb9GXBB2vpY85K8/listFolder response: body: {string: !!python/unicode '{"folders":[]}'} headers: connection: [keep-alive] content-length: ['14'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:23:35 GMT'] + date: ['Tue, 13 Nov 2018 20:31:08 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592615947-492107] + x-request-id: [1542141068186-739526] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"limit": 2, "name": "TestCopyTree.test_dx_dir_to_dx_dir_same_project_fail.adeefeb4", + body: !!python/unicode '{"limit": 2, "name": "TestCopyTree.test_dx_dir_to_dx_dir_same_project_fail.ecae7196", "level": "VIEW"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/system/findProjects response: - body: {string: !!python/unicode '{"results":[{"id":"project-FP9k7k80f55PxYfQJq0Qq9Pf","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} + body: {string: !!python/unicode '{"results":[{"id":"project-FPbY9280zZb9GXBB2vpY85K8","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} headers: connection: [keep-alive] content-length: ['147'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:23:36 GMT'] + date: ['Tue, 13 Nov 2018 20:31:08 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592616067-212308] + x-request-id: [1542141068289-875396] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"includeHidden": false, "only": "folders", "folder": - "/temp_folder", "describe": {"fields": {"name": true, "folder": true}}}' + body: !!python/unicode '{"folder": "/temp_folder", "describe": {"fields": {"folder": + true, "name": true}}, "only": "folders", "includeHidden": false}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k7k80f55PxYfQJq0Qq9Pf/listFolder + uri: https://api.dnanexus.com/project-FPbY9280zZb9GXBB2vpY85K8/listFolder response: body: {string: !!python/unicode '{"folders":[]}'} headers: connection: [keep-alive] content-length: ['14'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:23:36 GMT'] + date: ['Tue, 13 Nov 2018 20:31:08 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592616207-938953] + x-request-id: [1542141068413-80793] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"limit": 2, "name": "TestCopyTree.test_dx_dir_to_dx_dir_same_project_fail.adeefeb4", + body: !!python/unicode '{"limit": 2, "name": "TestCopyTree.test_dx_dir_to_dx_dir_same_project_fail.ecae7196", "level": "VIEW"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/system/findProjects response: - body: {string: !!python/unicode '{"results":[{"id":"project-FP9k7k80f55PxYfQJq0Qq9Pf","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} + body: {string: !!python/unicode '{"results":[{"id":"project-FPbY9280zZb9GXBB2vpY85K8","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} headers: connection: [keep-alive] content-length: ['147'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:23:36 GMT'] + date: ['Tue, 13 Nov 2018 20:31:08 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592616317-395042] + x-request-id: [1542141068512-464722] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"includeHidden": false, "only": "folders", "folder": - "/another_folder", "describe": {"fields": {"name": true, "folder": true}}}' + body: !!python/unicode '{"folder": "/another_folder", "describe": {"fields": {"folder": + true, "name": true}}, "only": "folders", "includeHidden": false}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k7k80f55PxYfQJq0Qq9Pf/listFolder + uri: https://api.dnanexus.com/project-FPbY9280zZb9GXBB2vpY85K8/listFolder response: body: {string: !!python/unicode '{"folders":["/another_folder/temp_folder"]}'} headers: connection: [keep-alive] content-length: ['43'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:23:36 GMT'] + date: ['Tue, 13 Nov 2018 20:31:08 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592616450-499097] + x-request-id: [1542141068691-696677] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"limit": 2, "name": "TestCopyTree.test_dx_dir_to_dx_dir_same_project_fail.adeefeb4", + body: !!python/unicode '{"limit": 2, "name": "TestCopyTree.test_dx_dir_to_dx_dir_same_project_fail.ecae7196", "level": "VIEW"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/system/findProjects response: - body: {string: !!python/unicode '{"results":[{"id":"project-FP9k7k80f55PxYfQJq0Qq9Pf","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} + body: {string: !!python/unicode '{"results":[{"id":"project-FPbY9280zZb9GXBB2vpY85K8","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} headers: connection: [keep-alive] content-length: ['147'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:23:36 GMT'] + date: ['Tue, 13 Nov 2018 20:31:08 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592616561-786866] + x-request-id: [1542141068800-734858] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"includeHidden": false, "only": "folders", "folder": - "/another_folder/temp_folder", "describe": {"fields": {"name": true, "folder": - true}}}' + body: !!python/unicode '{"folder": "/another_folder/temp_folder", "describe": + {"fields": {"folder": true, "name": true}}, "only": "folders", "includeHidden": + false}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k7k80f55PxYfQJq0Qq9Pf/listFolder + uri: https://api.dnanexus.com/project-FPbY9280zZb9GXBB2vpY85K8/listFolder response: body: {string: !!python/unicode '{"folders":[]}'} headers: connection: [keep-alive] content-length: ['14'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:23:36 GMT'] + date: ['Tue, 13 Nov 2018 20:31:08 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592616693-159057] + x-request-id: [1542141068912-284477] status: {code: 200, message: OK} - request: body: !!python/unicode '{}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k7k80f55PxYfQJq0Qq9Pf/destroy + uri: https://api.dnanexus.com/project-FPbY9280zZb9GXBB2vpY85K8/destroy response: - body: {string: !!python/unicode '{"id":"project-FP9k7k80f55PxYfQJq0Qq9Pf"}'} + body: {string: !!python/unicode '{"id":"project-FPbY9280zZb9GXBB2vpY85K8"}'} headers: connection: [keep-alive] content-length: ['41'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:23:39 GMT'] + date: ['Tue, 13 Nov 2018 20:31:11 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592616801-26899] + x-request-id: [1542141069011-906696] status: {code: 200, message: OK} version: 1 diff --git a/stor/tests/cassettes_py2/TestCopyTree/test_dx_dir_to_dx_dir_w_slash.yaml b/stor_dx/stor_dx/tests/cassettes_py2/TestCopyTree/test_dx_dir_to_dx_dir_w_slash.yaml similarity index 56% rename from stor/tests/cassettes_py2/TestCopyTree/test_dx_dir_to_dx_dir_w_slash.yaml rename to stor_dx/stor_dx/tests/cassettes_py2/TestCopyTree/test_dx_dir_to_dx_dir_w_slash.yaml index 4c388415..66c601dd 100644 --- a/stor/tests/cassettes_py2/TestCopyTree/test_dx_dir_to_dx_dir_w_slash.yaml +++ b/stor_dx/stor_dx/tests/cassettes_py2/TestCopyTree/test_dx_dir_to_dx_dir_w_slash.yaml @@ -1,483 +1,483 @@ interactions: - request: - body: !!python/unicode '{"name": "TestCopyTree.test_dx_dir_to_dx_dir_w_slash.be04929f"}' + body: !!python/unicode '{"name": "TestCopyTree.test_dx_dir_to_dx_dir_w_slash.41a899ca"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/project/new response: - body: {string: !!python/unicode '{"id":"project-FP9k7q009Gxbvgj6Jkpx4b1k"}'} + body: {string: !!python/unicode '{"id":"project-FPbY9400Q1kBY8FG2gJZPxBf"}'} headers: connection: [keep-alive] content-length: ['41'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:23:40 GMT'] + date: ['Tue, 13 Nov 2018 20:31:12 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592620221-291312] + x-request-id: [1542141072096-907433] status: {code: 200, message: OK} - request: body: !!python/unicode '{}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k7q009Gxbvgj6Jkpx4b1k/describe + uri: https://api.dnanexus.com/project-FPbY9400Q1kBY8FG2gJZPxBf/describe response: - body: {string: !!python/unicode '{"id":"project-FP9k7q009Gxbvgj6Jkpx4b1k","name":"TestCopyTree.test_dx_dir_to_dx_dir_w_slash.be04929f","class":"project","created":1540592620000,"modified":1540592620000,"billTo":"org-counsyl","level":"ADMINISTER","dataUsage":0,"sponsoredDataUsage":0,"region":"aws:us-east-1","summary":"","description":"","protected":false,"restricted":false,"downloadRestricted":false,"containsPHI":false,"createdBy":{"user":"user-akumar_counsyl"},"version":0,"storageCost":0,"pendingTransfer":null,"tags":[],"defaultInstanceType":"mem2_hdd2_x2","archivalState":"live","archivalProgress":null,"totalSponsoredEgressBytes":0,"consumedSponsoredEgressBytes":0,"atSpendingLimit":false}'} + body: {string: !!python/unicode '{"id":"project-FPbY9400Q1kBY8FG2gJZPxBf","name":"TestCopyTree.test_dx_dir_to_dx_dir_w_slash.41a899ca","class":"project","created":1542141072000,"modified":1542141072000,"billTo":"org-counsyl","level":"ADMINISTER","dataUsage":0,"sponsoredDataUsage":0,"region":"aws:us-east-1","summary":"","description":"","protected":false,"restricted":false,"downloadRestricted":false,"containsPHI":false,"createdBy":{"user":"user-akumar_counsyl"},"version":0,"storageCost":0,"pendingTransfer":null,"tags":[],"defaultInstanceType":"mem2_hdd2_x2","archivalState":"live","archivalProgress":null,"totalSponsoredEgressBytes":0,"consumedSponsoredEgressBytes":0,"atSpendingLimit":false}'} headers: connection: [keep-alive] content-length: ['664'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:23:40 GMT'] + date: ['Tue, 13 Nov 2018 20:31:12 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592620430-338162] + x-request-id: [1542141072197-71095] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"parents": true, "folder": "/temp_folder"}' + body: !!python/unicode '{"folder": "/temp_folder", "parents": true}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k7q009Gxbvgj6Jkpx4b1k/newFolder + uri: https://api.dnanexus.com/project-FPbY9400Q1kBY8FG2gJZPxBf/newFolder response: - body: {string: !!python/unicode '{"id":"project-FP9k7q009Gxbvgj6Jkpx4b1k"}'} + body: {string: !!python/unicode '{"id":"project-FPbY9400Q1kBY8FG2gJZPxBf"}'} headers: connection: [keep-alive] content-length: ['41'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:23:40 GMT'] + date: ['Tue, 13 Nov 2018 20:31:12 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592620571-556338] + x-request-id: [1542141072324-527302] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"name": "folder_file", "project": "project-FP9k7q009Gxbvgj6Jkpx4b1k", - "folder": "/temp_folder", "nonce": "09d32aecc2f3cb06559fb3026a46c7c8e52ffe430107e3938ed0dca8805684ea1540592620.673107"}' + body: !!python/unicode '{"project": "project-FPbY9400Q1kBY8FG2gJZPxBf", "nonce": + "98608840310440f7dda93f644c17df3fe32698619da39d348efaa2adaecf35fc1542141072.377796", + "folder": "/temp_folder", "name": "folder_file"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/file/new response: - body: {string: !!python/unicode '{"id":"file-FP9k7q009Gxvf62VJp1k8pB4"}'} + body: {string: !!python/unicode '{"id":"file-FPbY9400Q1kJQKK224Gky3Jv"}'} headers: connection: [keep-alive] content-length: ['38'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:23:40 GMT'] + date: ['Tue, 13 Nov 2018 20:31:12 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592620741-436845] + x-request-id: [1542141072424-820495] status: {code: 200, message: OK} - request: body: !!python/unicode '{"fields": {"fileUploadParameters": true}}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k7q009Gxbvgj6Jkpx4b1k/describe + uri: https://api.dnanexus.com/project-FPbY9400Q1kBY8FG2gJZPxBf/describe response: - body: {string: !!python/unicode '{"id":"project-FP9k7q009Gxbvgj6Jkpx4b1k","fileUploadParameters":{"maximumPartSize":5368709120,"minimumPartSize":5242880,"maximumFileSize":5497558138880,"maximumNumParts":10000,"emptyLastPartAllowed":true}}'} + body: {string: !!python/unicode '{"id":"project-FPbY9400Q1kBY8FG2gJZPxBf","fileUploadParameters":{"maximumPartSize":5368709120,"minimumPartSize":5242880,"maximumFileSize":5497558138880,"maximumNumParts":10000,"emptyLastPartAllowed":true}}'} headers: connection: [keep-alive] content-length: ['205'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:23:41 GMT'] + date: ['Tue, 13 Nov 2018 20:31:12 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592621146-974022] + x-request-id: [1542141072556-614402] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"size": 4, "md5": "8d777f385d3dfec8815d20f7496026dc", - "index": 1}' + body: !!python/unicode '{"index": 1, "size": 4, "md5": "8d777f385d3dfec8815d20f7496026dc"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k7q009Gxvf62VJp1k8pB4/upload + uri: https://api.dnanexus.com/file-FPbY9400Q1kJQKK224Gky3Jv/upload response: - body: {string: !!python/unicode '{"url":"https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/a893/file/open/file-FP9k7q009Gxvf62VJp1k8pB4/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181026%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181026T222341Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=c2a71b152e6493955a4ec0f1454fef80ccd16169415ca043b64a0dedae08d53f","headers":{"host":"dnanexus-platform-upload-prod.s3.amazonaws.com","content-type":"binary/octet-stream","x-amz-server-side-encryption":"AES256","content-md5":"jXd/OF09/siBXSD3SWAm3A==","content-length":"4"},"expires":1540592741302}'} + body: {string: !!python/unicode '{"url":"https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/7bdd/file/open/file-FPbY9400Q1kJQKK224Gky3Jv/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181113%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181113T203112Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=306acd058c99ed6fa440712983e7654988136d2fe1d134d1462944c82bb1181f","headers":{"host":"dnanexus-platform-upload-prod.s3.amazonaws.com","content-type":"binary/octet-stream","x-amz-server-side-encryption":"AES256","content-md5":"jXd/OF09/siBXSD3SWAm3A==","content-length":"4"},"expires":1542141192672}'} headers: connection: [keep-alive] content-length: ['692'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:23:41 GMT'] + date: ['Tue, 13 Nov 2018 20:31:12 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592621259-285742] + x-request-id: [1542141072651-785666] status: {code: 200, message: OK} - request: body: !!python/unicode data headers: DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] content-length: ['4'] content-md5: [jXd/OF09/siBXSD3SWAm3A==] content-type: [binary/octet-stream] host: [dnanexus-platform-upload-prod.s3.amazonaws.com] x-amz-server-side-encryption: [AES256] method: PUT - uri: https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/a893/file/open/file-FP9k7q009Gxvf62VJp1k8pB4/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181026%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181026T222341Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=c2a71b152e6493955a4ec0f1454fef80ccd16169415ca043b64a0dedae08d53f + uri: https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/7bdd/file/open/file-FPbY9400Q1kJQKK224Gky3Jv/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181113%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181113T203112Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=306acd058c99ed6fa440712983e7654988136d2fe1d134d1462944c82bb1181f response: body: {string: !!python/unicode ''} headers: content-length: ['0'] - date: ['Fri, 26 Oct 2018 22:23:42 GMT'] + date: ['Tue, 13 Nov 2018 20:31:14 GMT'] etag: ['"8d777f385d3dfec8815d20f7496026dc"'] server: [AmazonS3] - x-amz-expiration: ['expiry-date="Sat, 17 Nov 2018 00:00:00 GMT", rule-id="3weekpurge"'] - x-amz-id-2: [hlou0TkEFwIyz9Y5F5X45oq5jixvzzNKv1C46bNhTXInI93z2JLngc5E2eNBZnnfg12+gaBIv/k=] - x-amz-request-id: [CA264D42D508DA97] + x-amz-expiration: ['expiry-date="Wed, 05 Dec 2018 00:00:00 GMT", rule-id="3weekpurge"'] + x-amz-id-2: [fS4J+JaTH/QziM8ilje85qUZR7XswC1Pk9tp6rZRQ6GTLMO6KdLpe5sNGHOqppwJesjJ4RdSSD4=] + x-amz-request-id: [884AD9050AEF2AE1] x-amz-server-side-encryption: [AES256] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"project": "project-FP9k7q009Gxbvgj6Jkpx4b1k", "fields": + body: !!python/unicode '{"project": "project-FPbY9400Q1kBY8FG2gJZPxBf", "fields": {"state": true}}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k7q009Gxvf62VJp1k8pB4/describe + uri: https://api.dnanexus.com/file-FPbY9400Q1kJQKK224Gky3Jv/describe response: - body: {string: !!python/unicode '{"id":"file-FP9k7q009Gxvf62VJp1k8pB4","state":"open"}'} + body: {string: !!python/unicode '{"id":"file-FPbY9400Q1kJQKK224Gky3Jv","state":"open"}'} headers: connection: [keep-alive] content-length: ['53'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:23:41 GMT'] + date: ['Tue, 13 Nov 2018 20:31:13 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592621861-537270] + x-request-id: [1542141073199-660739] status: {code: 200, message: OK} - request: body: !!python/unicode '{}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k7q009Gxvf62VJp1k8pB4/close + uri: https://api.dnanexus.com/file-FPbY9400Q1kJQKK224Gky3Jv/close response: - body: {string: !!python/unicode '{"id":"file-FP9k7q009Gxvf62VJp1k8pB4"}'} + body: {string: !!python/unicode '{"id":"file-FPbY9400Q1kJQKK224Gky3Jv"}'} headers: connection: [keep-alive] content-length: ['38'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:23:42 GMT'] + date: ['Tue, 13 Nov 2018 20:31:13 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592621985-620415] + x-request-id: [1542141073301-848368] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"project": "project-FP9k7q009Gxbvgj6Jkpx4b1k", "fields": + body: !!python/unicode '{"project": "project-FPbY9400Q1kBY8FG2gJZPxBf", "fields": {"state": true}}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k7q009Gxvf62VJp1k8pB4/describe + uri: https://api.dnanexus.com/file-FPbY9400Q1kJQKK224Gky3Jv/describe response: - body: {string: !!python/unicode '{"id":"file-FP9k7q009Gxvf62VJp1k8pB4","state":"closing"}'} + body: {string: !!python/unicode '{"id":"file-FPbY9400Q1kJQKK224Gky3Jv","state":"closing"}'} headers: connection: [keep-alive] content-length: ['56'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:23:42 GMT'] + date: ['Tue, 13 Nov 2018 20:31:13 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592622147-312674] + x-request-id: [1542141073446-174625] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"project": "project-FP9k7q009Gxbvgj6Jkpx4b1k", "fields": + body: !!python/unicode '{"project": "project-FPbY9400Q1kBY8FG2gJZPxBf", "fields": {"state": true}}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k7q009Gxvf62VJp1k8pB4/describe + uri: https://api.dnanexus.com/file-FPbY9400Q1kJQKK224Gky3Jv/describe response: - body: {string: !!python/unicode '{"id":"file-FP9k7q009Gxvf62VJp1k8pB4","state":"closed"}'} + body: {string: !!python/unicode '{"id":"file-FPbY9400Q1kJQKK224Gky3Jv","state":"closed"}'} headers: connection: [keep-alive] content-length: ['55'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:23:44 GMT'] + date: ['Tue, 13 Nov 2018 20:31:15 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592624481-266155] + x-request-id: [1542141075546-989732] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"parents": true, "folder": "/temp_folder/another_folder"}' + body: !!python/unicode '{"folder": "/temp_folder/another_folder", "parents": true}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k7q009Gxbvgj6Jkpx4b1k/newFolder + uri: https://api.dnanexus.com/project-FPbY9400Q1kBY8FG2gJZPxBf/newFolder response: - body: {string: !!python/unicode '{"id":"project-FP9k7q009Gxbvgj6Jkpx4b1k"}'} + body: {string: !!python/unicode '{"id":"project-FPbY9400Q1kBY8FG2gJZPxBf"}'} headers: connection: [keep-alive] content-length: ['41'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:23:45 GMT'] + date: ['Tue, 13 Nov 2018 20:31:15 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592625065-529364] + x-request-id: [1542141075654-47464] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"name": "temp_file.txt", "project": "project-FP9k7q009Gxbvgj6Jkpx4b1k", - "folder": "/temp_folder/another_folder", "nonce": "f14c03f28acaf2ab018239243a7eb3676133670fa81d27c77959ec449807fc3b1540592625.400499"}' + body: !!python/unicode '{"project": "project-FPbY9400Q1kBY8FG2gJZPxBf", "nonce": + "86e0bee40697aa6b2c1d35e4ca039426764e1e29b81cb15f02cb8e500626f4831542141075.710227", + "folder": "/temp_folder/another_folder", "name": "temp_file.txt"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/file/new response: - body: {string: !!python/unicode '{"id":"file-FP9k7v809GxfzyV6JkV1p4P9"}'} + body: {string: !!python/unicode '{"id":"file-FPbY94j0Q1k5fv104VjK72X8"}'} headers: connection: [keep-alive] content-length: ['38'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:23:45 GMT'] + date: ['Tue, 13 Nov 2018 20:31:15 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592625459-711859] + x-request-id: [1542141075755-681059] status: {code: 200, message: OK} - request: body: !!python/unicode '{"fields": {"fileUploadParameters": true}}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k7q009Gxbvgj6Jkpx4b1k/describe + uri: https://api.dnanexus.com/project-FPbY9400Q1kBY8FG2gJZPxBf/describe response: - body: {string: !!python/unicode '{"id":"project-FP9k7q009Gxbvgj6Jkpx4b1k","fileUploadParameters":{"maximumPartSize":5368709120,"minimumPartSize":5242880,"maximumFileSize":5497558138880,"maximumNumParts":10000,"emptyLastPartAllowed":true}}'} + body: {string: !!python/unicode '{"id":"project-FPbY9400Q1kBY8FG2gJZPxBf","fileUploadParameters":{"maximumPartSize":5368709120,"minimumPartSize":5242880,"maximumFileSize":5497558138880,"maximumNumParts":10000,"emptyLastPartAllowed":true}}'} headers: connection: [keep-alive] content-length: ['205'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:23:45 GMT'] + date: ['Tue, 13 Nov 2018 20:31:15 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592625673-65901] + x-request-id: [1542141075925-620537] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"size": 4, "md5": "8d777f385d3dfec8815d20f7496026dc", - "index": 1}' + body: !!python/unicode '{"index": 1, "size": 4, "md5": "8d777f385d3dfec8815d20f7496026dc"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k7v809GxfzyV6JkV1p4P9/upload + uri: https://api.dnanexus.com/file-FPbY94j0Q1k5fv104VjK72X8/upload response: - body: {string: !!python/unicode '{"url":"https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/82d0/file/open/file-FP9k7v809GxfzyV6JkV1p4P9/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181026%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181026T222345Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=9b0ac6d2e1639386f8a50ccb4c556c76faf30acf60868806ff81769e1f4ee79b","headers":{"host":"dnanexus-platform-upload-prod.s3.amazonaws.com","content-type":"binary/octet-stream","x-amz-server-side-encryption":"AES256","content-md5":"jXd/OF09/siBXSD3SWAm3A==","content-length":"4"},"expires":1540592745836}'} + body: {string: !!python/unicode '{"url":"https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/c839/file/open/file-FPbY94j0Q1k5fv104VjK72X8/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181113%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181113T203116Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=f6c7b24e7450a70568ace2c8f4e67725c941425392a8a267522cdf7320a57d25","headers":{"host":"dnanexus-platform-upload-prod.s3.amazonaws.com","content-type":"binary/octet-stream","x-amz-server-side-encryption":"AES256","content-md5":"jXd/OF09/siBXSD3SWAm3A==","content-length":"4"},"expires":1542141196047}'} headers: connection: [keep-alive] content-length: ['692'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:23:45 GMT'] + date: ['Tue, 13 Nov 2018 20:31:16 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592625812-633977] + x-request-id: [1542141076028-502602] status: {code: 200, message: OK} - request: body: !!python/unicode data headers: DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] content-length: ['4'] content-md5: [jXd/OF09/siBXSD3SWAm3A==] content-type: [binary/octet-stream] host: [dnanexus-platform-upload-prod.s3.amazonaws.com] x-amz-server-side-encryption: [AES256] method: PUT - uri: https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/82d0/file/open/file-FP9k7v809GxfzyV6JkV1p4P9/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181026%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181026T222345Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=9b0ac6d2e1639386f8a50ccb4c556c76faf30acf60868806ff81769e1f4ee79b + uri: https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/c839/file/open/file-FPbY94j0Q1k5fv104VjK72X8/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181113%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181113T203116Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=f6c7b24e7450a70568ace2c8f4e67725c941425392a8a267522cdf7320a57d25 response: body: {string: !!python/unicode ''} headers: content-length: ['0'] - date: ['Fri, 26 Oct 2018 22:23:46 GMT'] + date: ['Tue, 13 Nov 2018 20:31:17 GMT'] etag: ['"8d777f385d3dfec8815d20f7496026dc"'] server: [AmazonS3] - x-amz-expiration: ['expiry-date="Sat, 17 Nov 2018 00:00:00 GMT", rule-id="3weekpurge"'] - x-amz-id-2: [bK293nL1XFbDebZaRUyrUjm2BmapUSjm2mEmwosM//gdEDOFB7qdVjkQ10y39mUYJ8yyO9J7KCQ=] - x-amz-request-id: [A919523440464A7D] + x-amz-expiration: ['expiry-date="Wed, 05 Dec 2018 00:00:00 GMT", rule-id="3weekpurge"'] + x-amz-id-2: [erHCIhWSwpG2hQjg8qFs9ccxfFhbeJAKdTLbdmOC0QDsCJM4ohdhyY/z8bmwtTDEhNDIGAAeeKI=] + x-amz-request-id: [8189254395E4E7BB] x-amz-server-side-encryption: [AES256] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"project": "project-FP9k7q009Gxbvgj6Jkpx4b1k", "fields": + body: !!python/unicode '{"project": "project-FPbY9400Q1kBY8FG2gJZPxBf", "fields": {"state": true}}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k7v809GxfzyV6JkV1p4P9/describe + uri: https://api.dnanexus.com/file-FPbY94j0Q1k5fv104VjK72X8/describe response: - body: {string: !!python/unicode '{"id":"file-FP9k7v809GxfzyV6JkV1p4P9","state":"open"}'} + body: {string: !!python/unicode '{"id":"file-FPbY94j0Q1k5fv104VjK72X8","state":"open"}'} headers: connection: [keep-alive] content-length: ['53'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:23:46 GMT'] + date: ['Tue, 13 Nov 2018 20:31:16 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592626148-983359] + x-request-id: [1542141076261-255692] status: {code: 200, message: OK} - request: body: !!python/unicode '{}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k7v809GxfzyV6JkV1p4P9/close + uri: https://api.dnanexus.com/file-FPbY94j0Q1k5fv104VjK72X8/close response: - body: {string: !!python/unicode '{"id":"file-FP9k7v809GxfzyV6JkV1p4P9"}'} + body: {string: !!python/unicode '{"id":"file-FPbY94j0Q1k5fv104VjK72X8"}'} headers: connection: [keep-alive] content-length: ['38'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:23:46 GMT'] + date: ['Tue, 13 Nov 2018 20:31:16 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592626281-88796] + x-request-id: [1542141076360-976175] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"project": "project-FP9k7q009Gxbvgj6Jkpx4b1k", "fields": + body: !!python/unicode '{"project": "project-FPbY9400Q1kBY8FG2gJZPxBf", "fields": {"state": true}}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k7v809GxfzyV6JkV1p4P9/describe + uri: https://api.dnanexus.com/file-FPbY94j0Q1k5fv104VjK72X8/describe response: - body: {string: !!python/unicode '{"id":"file-FP9k7v809GxfzyV6JkV1p4P9","state":"closing"}'} + body: {string: !!python/unicode '{"id":"file-FPbY94j0Q1k5fv104VjK72X8","state":"closing"}'} headers: connection: [keep-alive] content-length: ['56'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:23:46 GMT'] + date: ['Tue, 13 Nov 2018 20:31:16 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592626436-752267] + x-request-id: [1542141076474-993710] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"project": "project-FP9k7q009Gxbvgj6Jkpx4b1k", "fields": + body: !!python/unicode '{"project": "project-FPbY9400Q1kBY8FG2gJZPxBf", "fields": {"state": true}}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k7v809GxfzyV6JkV1p4P9/describe + uri: https://api.dnanexus.com/file-FPbY94j0Q1k5fv104VjK72X8/describe response: - body: {string: !!python/unicode '{"id":"file-FP9k7v809GxfzyV6JkV1p4P9","state":"closed"}'} + body: {string: !!python/unicode '{"id":"file-FPbY94j0Q1k5fv104VjK72X8","state":"closed"}'} headers: connection: [keep-alive] content-length: ['55'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:23:48 GMT'] + date: ['Tue, 13 Nov 2018 20:31:18 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592628564-654396] + x-request-id: [1542141078598-808053] status: {code: 200, message: OK} - request: body: !!python/unicode '{"name": "test_dx_dir_to_dx_dir_w_slash.TempProj"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/project/new response: - body: {string: !!python/unicode '{"id":"project-FP9k7x0087Fvf62VJp1k8pB6"}'} + body: {string: !!python/unicode '{"id":"project-FPbY95Q0BFyJQKK224Gky3K0"}'} headers: connection: [keep-alive] content-length: ['41'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:23:48 GMT'] + date: ['Tue, 13 Nov 2018 20:31:18 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592628681-202234] + x-request-id: [1542141078697-321390] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"limit": 2, "name": "TestCopyTree.test_dx_dir_to_dx_dir_w_slash.be04929f", + body: !!python/unicode '{"limit": 2, "name": "TestCopyTree.test_dx_dir_to_dx_dir_w_slash.41a899ca", "level": "VIEW"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/system/findProjects response: - body: {string: !!python/unicode '{"results":[{"id":"project-FP9k7q009Gxbvgj6Jkpx4b1k","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} + body: {string: !!python/unicode '{"results":[{"id":"project-FPbY9400Q1kBY8FG2gJZPxBf","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} headers: connection: [keep-alive] content-length: ['147'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:23:49 GMT'] + date: ['Tue, 13 Nov 2018 20:31:18 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592628816-373531] + x-request-id: [1542141078811-644430] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"includeHidden": false, "only": "folders", "folder": - "/temp_folder", "describe": {"fields": {"name": true, "folder": true}}}' + body: !!python/unicode '{"folder": "/temp_folder", "describe": {"fields": {"folder": + true, "name": true}}, "only": "folders", "includeHidden": false}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k7q009Gxbvgj6Jkpx4b1k/listFolder + uri: https://api.dnanexus.com/project-FPbY9400Q1kBY8FG2gJZPxBf/listFolder response: body: {string: !!python/unicode '{"folders":["/temp_folder/another_folder"]}'} headers: connection: [keep-alive] content-length: ['43'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:23:49 GMT'] + date: ['Tue, 13 Nov 2018 20:31:18 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592629339-366310] + x-request-id: [1542141078925-627639] status: {code: 200, message: OK} - request: body: !!python/unicode '{"limit": 2, "name": "test_dx_dir_to_dx_dir_w_slash.TempProj", @@ -485,43 +485,43 @@ interactions: headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/system/findProjects response: - body: {string: !!python/unicode '{"results":[{"id":"project-FP9k7x0087Fvf62VJp1k8pB6","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} + body: {string: !!python/unicode '{"results":[{"id":"project-FPbY95Q0BFyJQKK224Gky3K0","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} headers: connection: [keep-alive] content-length: ['147'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:23:50 GMT'] + date: ['Tue, 13 Nov 2018 20:31:19 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592629459-763429] + x-request-id: [1542141079023-735964] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"includeHidden": false, "only": "folders", "folder": - "/folder2/", "describe": {"fields": {"name": true, "folder": true}}}' + body: !!python/unicode '{"folder": "/folder2/", "describe": {"fields": {"folder": + true, "name": true}}, "only": "folders", "includeHidden": false}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k7x0087Fvf62VJp1k8pB6/listFolder + uri: https://api.dnanexus.com/project-FPbY95Q0BFyJQKK224Gky3K0/listFolder response: body: {string: !!python/unicode '{"error":{"type":"ResourceNotFound","message":"The - specified folder could not be found in project-FP9k7x0087Fvf62VJp1k8pB6"}}'} + specified folder could not be found in project-FPbY95Q0BFyJQKK224Gky3K0"}}'} headers: connection: [keep-alive] content-type: [application/json] - date: ['Fri, 26 Oct 2018 22:23:50 GMT'] + date: ['Tue, 13 Nov 2018 20:31:19 GMT'] server: [nginx] transfer-encoding: [chunked] vary: [Accept-Encoding] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592630131-818670] + x-request-id: [1542141079150-898478] status: {code: 404, message: Not Found} - request: body: !!python/unicode '{"limit": 2, "name": "test_dx_dir_to_dx_dir_w_slash.TempProj", @@ -529,43 +529,43 @@ interactions: headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/system/findProjects response: - body: {string: !!python/unicode '{"results":[{"id":"project-FP9k7x0087Fvf62VJp1k8pB6","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} + body: {string: !!python/unicode '{"results":[{"id":"project-FPbY95Q0BFyJQKK224Gky3K0","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} headers: connection: [keep-alive] content-length: ['147'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:23:50 GMT'] + date: ['Tue, 13 Nov 2018 20:31:19 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592630533-278795] + x-request-id: [1542141079485-381062] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"includeHidden": false, "only": "folders", "folder": - "/folder2/temp_folder", "describe": {"fields": {"name": true, "folder": true}}}' + body: !!python/unicode '{"folder": "/folder2/temp_folder", "describe": {"fields": + {"folder": true, "name": true}}, "only": "folders", "includeHidden": false}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k7x0087Fvf62VJp1k8pB6/listFolder + uri: https://api.dnanexus.com/project-FPbY95Q0BFyJQKK224Gky3K0/listFolder response: body: {string: !!python/unicode '{"error":{"type":"ResourceNotFound","message":"The - specified folder could not be found in project-FP9k7x0087Fvf62VJp1k8pB6"}}'} + specified folder could not be found in project-FPbY95Q0BFyJQKK224Gky3K0"}}'} headers: connection: [keep-alive] content-type: [application/json] - date: ['Fri, 26 Oct 2018 22:23:50 GMT'] + date: ['Tue, 13 Nov 2018 20:31:19 GMT'] server: [nginx] transfer-encoding: [chunked] vary: [Accept-Encoding] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592630703-401868] + x-request-id: [1542141079596-705994] status: {code: 404, message: Not Found} - request: body: !!python/unicode '{"limit": 2, "name": "test_dx_dir_to_dx_dir_w_slash.TempProj", @@ -573,61 +573,61 @@ interactions: headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/system/findProjects response: - body: {string: !!python/unicode '{"results":[{"id":"project-FP9k7x0087Fvf62VJp1k8pB6","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} + body: {string: !!python/unicode '{"results":[{"id":"project-FPbY95Q0BFyJQKK224Gky3K0","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} headers: connection: [keep-alive] content-length: ['147'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:23:51 GMT'] + date: ['Tue, 13 Nov 2018 20:31:19 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592631095-80580] + x-request-id: [1542141079939-43680] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"parents": true, "folder": "/folder2"}' + body: !!python/unicode '{"folder": "/folder2", "parents": true}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k7x0087Fvf62VJp1k8pB6/newFolder + uri: https://api.dnanexus.com/project-FPbY95Q0BFyJQKK224Gky3K0/newFolder response: - body: {string: !!python/unicode '{"id":"project-FP9k7x0087Fvf62VJp1k8pB6"}'} + body: {string: !!python/unicode '{"id":"project-FPbY95Q0BFyJQKK224Gky3K0"}'} headers: connection: [keep-alive] content-length: ['41'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:23:51 GMT'] + date: ['Tue, 13 Nov 2018 20:31:20 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592631243-956292] + x-request-id: [1542141080071-323954] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"parents": false, "project": "project-FP9k7x0087Fvf62VJp1k8pB6", - "destination": "/folder2", "folders": ["/temp_folder"], "objects": []}' + body: !!python/unicode '{"folders": ["/temp_folder"], "project": "project-FPbY95Q0BFyJQKK224Gky3K0", + "destination": "/folder2", "objects": [], "parents": false}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k7q009Gxbvgj6Jkpx4b1k/clone + uri: https://api.dnanexus.com/project-FPbY9400Q1kBY8FG2gJZPxBf/clone response: - body: {string: !!python/unicode '{"id":"project-FP9k7q009Gxbvgj6Jkpx4b1k","project":"project-FP9k7x0087Fvf62VJp1k8pB6","exists":[]}'} + body: {string: !!python/unicode '{"id":"project-FPbY9400Q1kBY8FG2gJZPxBf","project":"project-FPbY95Q0BFyJQKK224Gky3K0","exists":[]}'} headers: connection: [keep-alive] content-length: ['98'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:23:51 GMT'] + date: ['Tue, 13 Nov 2018 20:31:20 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592631357-874793] + x-request-id: [1542141080196-435145] status: {code: 200, message: OK} - request: body: !!python/unicode '{"limit": 2, "name": "test_dx_dir_to_dx_dir_w_slash.TempProj", @@ -635,100 +635,101 @@ interactions: headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/system/findProjects response: - body: {string: !!python/unicode '{"results":[{"id":"project-FP9k7x0087Fvf62VJp1k8pB6","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} + body: {string: !!python/unicode '{"results":[{"id":"project-FPbY95Q0BFyJQKK224Gky3K0","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} headers: connection: [keep-alive] content-length: ['147'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:23:51 GMT'] + date: ['Tue, 13 Nov 2018 20:31:20 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592631634-388848] + x-request-id: [1542141080408-472900] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"objects": [{"name": "temp_file.txt", "project": "project-FP9k7x0087Fvf62VJp1k8pB6", - "batchsize": 2, "folder": "/folder2/temp_folder/another_folder"}]}' + body: !!python/unicode '{"objects": [{"project": "project-FPbY95Q0BFyJQKK224Gky3K0", + "folder": "/folder2/temp_folder/another_folder", "name": "temp_file.txt", "batchsize": + 2}]}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/system/resolveDataObjects response: - body: {string: !!python/unicode '{"results":[[{"project":"project-FP9k7x0087Fvf62VJp1k8pB6","id":"file-FP9k7v809GxfzyV6JkV1p4P9"}]]}'} + body: {string: !!python/unicode '{"results":[[{"project":"project-FPbY95Q0BFyJQKK224Gky3K0","id":"file-FPbY94j0Q1k5fv104VjK72X8"}]]}'} headers: connection: [keep-alive] content-length: ['99'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:23:51 GMT'] + date: ['Tue, 13 Nov 2018 20:31:20 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592631771-894727] + x-request-id: [1542141080520-205902] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"project": "project-FP9k7x0087Fvf62VJp1k8pB6"}' + body: !!python/unicode '{"project": "project-FPbY95Q0BFyJQKK224Gky3K0"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k7v809GxfzyV6JkV1p4P9/describe + uri: https://api.dnanexus.com/file-FPbY94j0Q1k5fv104VjK72X8/describe response: - body: {string: !!python/unicode '{"id":"file-FP9k7v809GxfzyV6JkV1p4P9","project":"project-FP9k7x0087Fvf62VJp1k8pB6","class":"file","sponsored":false,"name":"temp_file.txt","types":[],"state":"closed","hidden":false,"links":[],"folder":"/folder2/temp_folder/another_folder","tags":[],"created":1540592625000,"modified":1540592631497,"createdBy":{"user":"user-akumar_counsyl"},"media":"text/plain","archivalState":"live","size":4}'} + body: {string: !!python/unicode '{"id":"file-FPbY94j0Q1k5fv104VjK72X8","project":"project-FPbY95Q0BFyJQKK224Gky3K0","class":"file","sponsored":false,"name":"temp_file.txt","types":[],"state":"closed","hidden":false,"links":[],"folder":"/folder2/temp_folder/another_folder","tags":[],"created":1542141075000,"modified":1542141080293,"createdBy":{"user":"user-akumar_counsyl"},"media":"text/plain","archivalState":"live","size":4}'} headers: connection: [keep-alive] content-length: ['395'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:23:51 GMT'] + date: ['Tue, 13 Nov 2018 20:31:20 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592631884-268560] + x-request-id: [1542141080608-878129] status: {code: 200, message: OK} - request: body: !!python/unicode '{}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k7x0087Fvf62VJp1k8pB6/destroy + uri: https://api.dnanexus.com/project-FPbY95Q0BFyJQKK224Gky3K0/destroy response: - body: {string: !!python/unicode '{"id":"project-FP9k7x0087Fvf62VJp1k8pB6"}'} + body: {string: !!python/unicode '{"id":"project-FPbY95Q0BFyJQKK224Gky3K0"}'} headers: connection: [keep-alive] content-length: ['41'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:23:54 GMT'] + date: ['Tue, 13 Nov 2018 20:31:23 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592632005-255943] + x-request-id: [1542141080701-995058] status: {code: 200, message: OK} - request: body: !!python/unicode '{}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k7q009Gxbvgj6Jkpx4b1k/destroy + uri: https://api.dnanexus.com/project-FPbY9400Q1kBY8FG2gJZPxBf/destroy response: - body: {string: !!python/unicode '{"id":"project-FP9k7q009Gxbvgj6Jkpx4b1k"}'} + body: {string: !!python/unicode '{"id":"project-FPbY9400Q1kBY8FG2gJZPxBf"}'} headers: connection: [keep-alive] content-length: ['41'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:23:57 GMT'] + date: ['Tue, 13 Nov 2018 20:31:26 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592634868-838617] + x-request-id: [1542141083518-852696] status: {code: 200, message: OK} version: 1 diff --git a/stor/tests/cassettes_py2/TestCopyTree/test_dx_dir_to_dx_existing_dir.yaml b/stor_dx/stor_dx/tests/cassettes_py2/TestCopyTree/test_dx_dir_to_dx_existing_dir.yaml similarity index 56% rename from stor/tests/cassettes_py2/TestCopyTree/test_dx_dir_to_dx_existing_dir.yaml rename to stor_dx/stor_dx/tests/cassettes_py2/TestCopyTree/test_dx_dir_to_dx_existing_dir.yaml index 22722941..f88ac98e 100644 --- a/stor/tests/cassettes_py2/TestCopyTree/test_dx_dir_to_dx_existing_dir.yaml +++ b/stor_dx/stor_dx/tests/cassettes_py2/TestCopyTree/test_dx_dir_to_dx_existing_dir.yaml @@ -1,503 +1,503 @@ interactions: - request: - body: !!python/unicode '{"name": "TestCopyTree.test_dx_dir_to_dx_existing_dir.9e379c25"}' + body: !!python/unicode '{"name": "TestCopyTree.test_dx_dir_to_dx_existing_dir.7cca2036"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/project/new response: - body: {string: !!python/unicode '{"id":"project-FP9k7zQ0YbVPxYfQJq0Qq9Pg"}'} + body: {string: !!python/unicode '{"id":"project-FPbY97j05155fv104VjK72XB"}'} headers: connection: [keep-alive] content-length: ['41'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:23:58 GMT'] + date: ['Tue, 13 Nov 2018 20:31:27 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592638283-770544] + x-request-id: [1542141087018-408226] status: {code: 200, message: OK} - request: body: !!python/unicode '{}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k7zQ0YbVPxYfQJq0Qq9Pg/describe + uri: https://api.dnanexus.com/project-FPbY97j05155fv104VjK72XB/describe response: - body: {string: !!python/unicode '{"id":"project-FP9k7zQ0YbVPxYfQJq0Qq9Pg","name":"TestCopyTree.test_dx_dir_to_dx_existing_dir.9e379c25","class":"project","created":1540592638000,"modified":1540592638000,"billTo":"org-counsyl","level":"ADMINISTER","dataUsage":0,"sponsoredDataUsage":0,"region":"aws:us-east-1","summary":"","description":"","protected":false,"restricted":false,"downloadRestricted":false,"containsPHI":false,"createdBy":{"user":"user-akumar_counsyl"},"version":0,"storageCost":0,"pendingTransfer":null,"tags":[],"defaultInstanceType":"mem2_hdd2_x2","archivalState":"live","archivalProgress":null,"totalSponsoredEgressBytes":0,"consumedSponsoredEgressBytes":0,"atSpendingLimit":false}'} + body: {string: !!python/unicode '{"id":"project-FPbY97j05155fv104VjK72XB","name":"TestCopyTree.test_dx_dir_to_dx_existing_dir.7cca2036","class":"project","created":1542141087000,"modified":1542141087000,"billTo":"org-counsyl","level":"ADMINISTER","dataUsage":0,"sponsoredDataUsage":0,"region":"aws:us-east-1","summary":"","description":"","protected":false,"restricted":false,"downloadRestricted":false,"containsPHI":false,"createdBy":{"user":"user-akumar_counsyl"},"version":0,"storageCost":0,"pendingTransfer":null,"tags":[],"defaultInstanceType":"mem2_hdd2_x2","archivalState":"live","archivalProgress":null,"totalSponsoredEgressBytes":0,"consumedSponsoredEgressBytes":0,"atSpendingLimit":false}'} headers: connection: [keep-alive] content-length: ['665'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:23:58 GMT'] + date: ['Tue, 13 Nov 2018 20:31:27 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592638423-335083] + x-request-id: [1542141087209-450910] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"parents": true, "folder": "/temp_folder"}' + body: !!python/unicode '{"folder": "/temp_folder", "parents": true}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k7zQ0YbVPxYfQJq0Qq9Pg/newFolder + uri: https://api.dnanexus.com/project-FPbY97j05155fv104VjK72XB/newFolder response: - body: {string: !!python/unicode '{"id":"project-FP9k7zQ0YbVPxYfQJq0Qq9Pg"}'} + body: {string: !!python/unicode '{"id":"project-FPbY97j05155fv104VjK72XB"}'} headers: connection: [keep-alive] content-length: ['41'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:23:58 GMT'] + date: ['Tue, 13 Nov 2018 20:31:27 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592638547-731110] + x-request-id: [1542141087378-293505] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"name": "folder_file", "project": "project-FP9k7zQ0YbVPxYfQJq0Qq9Pg", - "folder": "/temp_folder", "nonce": "6b00a88bf441225eeb72da7d293c0b5a49e4b26a22b75b62d764788bc70f7cca1540592638.617763"}' + body: !!python/unicode '{"project": "project-FPbY97j05155fv104VjK72XB", "nonce": + "8a09039ef5cbf32eded2968453257acf68b66b7608793d9142c889504505551e1542141087.504861", + "folder": "/temp_folder", "name": "folder_file"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/file/new response: - body: {string: !!python/unicode '{"id":"file-FP9k7zQ0YbVGf62VJp1k8pB7"}'} + body: {string: !!python/unicode '{"id":"file-FPbY97j05155fv104VjK72XF"}'} headers: connection: [keep-alive] content-length: ['38'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:23:58 GMT'] + date: ['Tue, 13 Nov 2018 20:31:27 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592638661-517883] + x-request-id: [1542141087549-933136] status: {code: 200, message: OK} - request: body: !!python/unicode '{"fields": {"fileUploadParameters": true}}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k7zQ0YbVPxYfQJq0Qq9Pg/describe + uri: https://api.dnanexus.com/project-FPbY97j05155fv104VjK72XB/describe response: - body: {string: !!python/unicode '{"id":"project-FP9k7zQ0YbVPxYfQJq0Qq9Pg","fileUploadParameters":{"maximumPartSize":5368709120,"minimumPartSize":5242880,"maximumFileSize":5497558138880,"maximumNumParts":10000,"emptyLastPartAllowed":true}}'} + body: {string: !!python/unicode '{"id":"project-FPbY97j05155fv104VjK72XB","fileUploadParameters":{"maximumPartSize":5368709120,"minimumPartSize":5242880,"maximumFileSize":5497558138880,"maximumNumParts":10000,"emptyLastPartAllowed":true}}'} headers: connection: [keep-alive] content-length: ['205'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:23:58 GMT'] + date: ['Tue, 13 Nov 2018 20:31:27 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592638807-608117] + x-request-id: [1542141087732-997611] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"size": 4, "md5": "8d777f385d3dfec8815d20f7496026dc", - "index": 1}' + body: !!python/unicode '{"index": 1, "size": 4, "md5": "8d777f385d3dfec8815d20f7496026dc"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k7zQ0YbVGf62VJp1k8pB7/upload + uri: https://api.dnanexus.com/file-FPbY97j05155fv104VjK72XF/upload response: - body: {string: !!python/unicode '{"url":"https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/d067/file/open/file-FP9k7zQ0YbVGf62VJp1k8pB7/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181026%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181026T222358Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=5b0a341aeb496f8b6e097e237b7001941d7b4a5e6939ae4b16abd415c5771fe6","headers":{"host":"dnanexus-platform-upload-prod.s3.amazonaws.com","content-type":"binary/octet-stream","x-amz-server-side-encryption":"AES256","content-md5":"jXd/OF09/siBXSD3SWAm3A==","content-length":"4"},"expires":1540592758940}'} + body: {string: !!python/unicode '{"url":"https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/0e4a/file/open/file-FPbY97j05155fv104VjK72XF/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181113%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181113T203128Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=cb1d37704679bb86b7b5322ee0f9ff7fc3172824dc6ba671c28a1088c6b3de34","headers":{"host":"dnanexus-platform-upload-prod.s3.amazonaws.com","content-type":"binary/octet-stream","x-amz-server-side-encryption":"AES256","content-md5":"jXd/OF09/siBXSD3SWAm3A==","content-length":"4"},"expires":1542141208068}'} headers: connection: [keep-alive] content-length: ['692'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:23:58 GMT'] + date: ['Tue, 13 Nov 2018 20:31:28 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592638925-194318] + x-request-id: [1542141088048-272978] status: {code: 200, message: OK} - request: body: !!python/unicode data headers: DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] content-length: ['4'] content-md5: [jXd/OF09/siBXSD3SWAm3A==] content-type: [binary/octet-stream] host: [dnanexus-platform-upload-prod.s3.amazonaws.com] x-amz-server-side-encryption: [AES256] method: PUT - uri: https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/d067/file/open/file-FP9k7zQ0YbVGf62VJp1k8pB7/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181026%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181026T222358Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=5b0a341aeb496f8b6e097e237b7001941d7b4a5e6939ae4b16abd415c5771fe6 + uri: https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/0e4a/file/open/file-FPbY97j05155fv104VjK72XF/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181113%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181113T203128Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=cb1d37704679bb86b7b5322ee0f9ff7fc3172824dc6ba671c28a1088c6b3de34 response: body: {string: !!python/unicode ''} headers: content-length: ['0'] - date: ['Fri, 26 Oct 2018 22:24:00 GMT'] + date: ['Tue, 13 Nov 2018 20:31:29 GMT'] etag: ['"8d777f385d3dfec8815d20f7496026dc"'] server: [AmazonS3] - x-amz-expiration: ['expiry-date="Sat, 17 Nov 2018 00:00:00 GMT", rule-id="3weekpurge"'] - x-amz-id-2: [yXIhobMQSworJdAjRmROF6poeV34/MYiWcpEpoKYWa7NJw/M7hmyq5q8Q1HqHuq9A4BUe26no+8=] - x-amz-request-id: [8DF43A750653BB5C] + x-amz-expiration: ['expiry-date="Wed, 05 Dec 2018 00:00:00 GMT", rule-id="3weekpurge"'] + x-amz-id-2: [QHb9lb4gd1WptIIhxb9dYYzNDnLLDDGT6jYCqstqF8ENhfjhHYbcmxrzxWi50fpR4UprdjDI++8=] + x-amz-request-id: [C89BD009BE31F5D7] x-amz-server-side-encryption: [AES256] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"project": "project-FP9k7zQ0YbVPxYfQJq0Qq9Pg", "fields": + body: !!python/unicode '{"project": "project-FPbY97j05155fv104VjK72XB", "fields": {"state": true}}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k7zQ0YbVGf62VJp1k8pB7/describe + uri: https://api.dnanexus.com/file-FPbY97j05155fv104VjK72XF/describe response: - body: {string: !!python/unicode '{"id":"file-FP9k7zQ0YbVGf62VJp1k8pB7","state":"open"}'} + body: {string: !!python/unicode '{"id":"file-FPbY97j05155fv104VjK72XF","state":"open"}'} headers: connection: [keep-alive] content-length: ['53'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:23:59 GMT'] + date: ['Tue, 13 Nov 2018 20:31:29 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592639604-314890] + x-request-id: [1542141089095-288361] status: {code: 200, message: OK} - request: body: !!python/unicode '{}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k7zQ0YbVGf62VJp1k8pB7/close + uri: https://api.dnanexus.com/file-FPbY97j05155fv104VjK72XF/close response: - body: {string: !!python/unicode '{"id":"file-FP9k7zQ0YbVGf62VJp1k8pB7"}'} + body: {string: !!python/unicode '{"id":"file-FPbY97j05155fv104VjK72XF"}'} headers: connection: [keep-alive] content-length: ['38'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:23:59 GMT'] + date: ['Tue, 13 Nov 2018 20:31:29 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592639732-234342] + x-request-id: [1542141089283-65085] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"project": "project-FP9k7zQ0YbVPxYfQJq0Qq9Pg", "fields": + body: !!python/unicode '{"project": "project-FPbY97j05155fv104VjK72XB", "fields": {"state": true}}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k7zQ0YbVGf62VJp1k8pB7/describe + uri: https://api.dnanexus.com/file-FPbY97j05155fv104VjK72XF/describe response: - body: {string: !!python/unicode '{"id":"file-FP9k7zQ0YbVGf62VJp1k8pB7","state":"closing"}'} + body: {string: !!python/unicode '{"id":"file-FPbY97j05155fv104VjK72XF","state":"closing"}'} headers: connection: [keep-alive] content-length: ['56'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:23:59 GMT'] + date: ['Tue, 13 Nov 2018 20:31:29 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592639866-634091] + x-request-id: [1542141089463-792538] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"project": "project-FP9k7zQ0YbVPxYfQJq0Qq9Pg", "fields": + body: !!python/unicode '{"project": "project-FPbY97j05155fv104VjK72XB", "fields": {"state": true}}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k7zQ0YbVGf62VJp1k8pB7/describe + uri: https://api.dnanexus.com/file-FPbY97j05155fv104VjK72XF/describe response: - body: {string: !!python/unicode '{"id":"file-FP9k7zQ0YbVGf62VJp1k8pB7","state":"closed"}'} + body: {string: !!python/unicode '{"id":"file-FPbY97j05155fv104VjK72XF","state":"closed"}'} headers: connection: [keep-alive] content-length: ['55'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:24:02 GMT'] + date: ['Tue, 13 Nov 2018 20:31:31 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592641990-897658] + x-request-id: [1542141091646-155466] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"parents": true, "folder": "/temp_folder/another_folder"}' + body: !!python/unicode '{"folder": "/temp_folder/another_folder", "parents": true}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k7zQ0YbVPxYfQJq0Qq9Pg/newFolder + uri: https://api.dnanexus.com/project-FPbY97j05155fv104VjK72XB/newFolder response: - body: {string: !!python/unicode '{"id":"project-FP9k7zQ0YbVPxYfQJq0Qq9Pg"}'} + body: {string: !!python/unicode '{"id":"project-FPbY97j05155fv104VjK72XB"}'} headers: connection: [keep-alive] content-length: ['41'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:24:02 GMT'] + date: ['Tue, 13 Nov 2018 20:31:31 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592642102-439239] + x-request-id: [1542141091749-19733] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"name": "temp_file.txt", "project": "project-FP9k7zQ0YbVPxYfQJq0Qq9Pg", - "folder": "/temp_folder/another_folder", "nonce": "4261ce51fbdbc32e5870520428da895c8b26bafa2251ec3c3e88e9cbb772b63b1540592642.195591"}' + body: !!python/unicode '{"project": "project-FPbY97j05155fv104VjK72XB", "nonce": + "6e9966c13da67d4005ce6da15d88e56489b6cc8a7b0d10e76c97b25bdca464c01542141091.800861", + "folder": "/temp_folder/another_folder", "name": "temp_file.txt"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/file/new response: - body: {string: !!python/unicode '{"id":"file-FP9k80Q0YbVFPYg95F286zG1"}'} + body: {string: !!python/unicode '{"id":"file-FPbY98j05158B942900j3yYK"}'} headers: connection: [keep-alive] content-length: ['38'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:24:02 GMT'] + date: ['Tue, 13 Nov 2018 20:31:31 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592642241-896745] + x-request-id: [1542141091846-238828] status: {code: 200, message: OK} - request: body: !!python/unicode '{"fields": {"fileUploadParameters": true}}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k7zQ0YbVPxYfQJq0Qq9Pg/describe + uri: https://api.dnanexus.com/project-FPbY97j05155fv104VjK72XB/describe response: - body: {string: !!python/unicode '{"id":"project-FP9k7zQ0YbVPxYfQJq0Qq9Pg","fileUploadParameters":{"maximumPartSize":5368709120,"minimumPartSize":5242880,"maximumFileSize":5497558138880,"maximumNumParts":10000,"emptyLastPartAllowed":true}}'} + body: {string: !!python/unicode '{"id":"project-FPbY97j05155fv104VjK72XB","fileUploadParameters":{"maximumPartSize":5368709120,"minimumPartSize":5242880,"maximumFileSize":5497558138880,"maximumNumParts":10000,"emptyLastPartAllowed":true}}'} headers: connection: [keep-alive] content-length: ['205'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:24:02 GMT'] + date: ['Tue, 13 Nov 2018 20:31:31 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592642379-495409] + x-request-id: [1542141091973-595381] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"size": 4, "md5": "8d777f385d3dfec8815d20f7496026dc", - "index": 1}' + body: !!python/unicode '{"index": 1, "size": 4, "md5": "8d777f385d3dfec8815d20f7496026dc"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k80Q0YbVFPYg95F286zG1/upload + uri: https://api.dnanexus.com/file-FPbY98j05158B942900j3yYK/upload response: - body: {string: !!python/unicode '{"url":"https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/6f49/file/open/file-FP9k80Q0YbVFPYg95F286zG1/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181026%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181026T222402Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=5f09039592ae117443c4f069bcebf4d4613aeb21f182ac1b49eca9f1d7710da3","headers":{"host":"dnanexus-platform-upload-prod.s3.amazonaws.com","content-type":"binary/octet-stream","x-amz-server-side-encryption":"AES256","content-md5":"jXd/OF09/siBXSD3SWAm3A==","content-length":"4"},"expires":1540592762512}'} + body: {string: !!python/unicode '{"url":"https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/f4c6/file/open/file-FPbY98j05158B942900j3yYK/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181113%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181113T203132Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=c448e776c5fad1276423c4b0c408f0dd94bd73170c141f57042effb4aa9cdd63","headers":{"host":"dnanexus-platform-upload-prod.s3.amazonaws.com","content-type":"binary/octet-stream","x-amz-server-side-encryption":"AES256","content-md5":"jXd/OF09/siBXSD3SWAm3A==","content-length":"4"},"expires":1542141212091}'} headers: connection: [keep-alive] content-length: ['692'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:24:02 GMT'] + date: ['Tue, 13 Nov 2018 20:31:32 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592642489-586768] + x-request-id: [1542141092071-121759] status: {code: 200, message: OK} - request: body: !!python/unicode data headers: DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] content-length: ['4'] content-md5: [jXd/OF09/siBXSD3SWAm3A==] content-type: [binary/octet-stream] host: [dnanexus-platform-upload-prod.s3.amazonaws.com] x-amz-server-side-encryption: [AES256] method: PUT - uri: https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/6f49/file/open/file-FP9k80Q0YbVFPYg95F286zG1/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181026%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181026T222402Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=5f09039592ae117443c4f069bcebf4d4613aeb21f182ac1b49eca9f1d7710da3 + uri: https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/f4c6/file/open/file-FPbY98j05158B942900j3yYK/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181113%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181113T203132Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=c448e776c5fad1276423c4b0c408f0dd94bd73170c141f57042effb4aa9cdd63 response: body: {string: !!python/unicode ''} headers: content-length: ['0'] - date: ['Fri, 26 Oct 2018 22:24:03 GMT'] + date: ['Tue, 13 Nov 2018 20:31:33 GMT'] etag: ['"8d777f385d3dfec8815d20f7496026dc"'] server: [AmazonS3] - x-amz-expiration: ['expiry-date="Sat, 17 Nov 2018 00:00:00 GMT", rule-id="3weekpurge"'] - x-amz-id-2: [8HqOLIi75U8dsuuwkxtXncovtuTB+EFE4kU7lGjld+Un56ylVRgasJyyltKhHGt59iDnWWuaNh4=] - x-amz-request-id: [2396CAC316F4AD86] + x-amz-expiration: ['expiry-date="Wed, 05 Dec 2018 00:00:00 GMT", rule-id="3weekpurge"'] + x-amz-id-2: [4W6v5/qXavfe2bEsH6nMZ3QiBQU2IWgKW0p4wWNhKo+/MopPcp6kDD7DmwiPV43JnrOIQ+ANdGI=] + x-amz-request-id: [6BE99E68639451EC] x-amz-server-side-encryption: [AES256] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"project": "project-FP9k7zQ0YbVPxYfQJq0Qq9Pg", "fields": + body: !!python/unicode '{"project": "project-FPbY97j05155fv104VjK72XB", "fields": {"state": true}}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k80Q0YbVFPYg95F286zG1/describe + uri: https://api.dnanexus.com/file-FPbY98j05158B942900j3yYK/describe response: - body: {string: !!python/unicode '{"id":"file-FP9k80Q0YbVFPYg95F286zG1","state":"open"}'} + body: {string: !!python/unicode '{"id":"file-FPbY98j05158B942900j3yYK","state":"open"}'} headers: connection: [keep-alive] content-length: ['53'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:24:02 GMT'] + date: ['Tue, 13 Nov 2018 20:31:32 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592642733-794189] + x-request-id: [1542141092307-476063] status: {code: 200, message: OK} - request: body: !!python/unicode '{}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k80Q0YbVFPYg95F286zG1/close + uri: https://api.dnanexus.com/file-FPbY98j05158B942900j3yYK/close response: - body: {string: !!python/unicode '{"id":"file-FP9k80Q0YbVFPYg95F286zG1"}'} + body: {string: !!python/unicode '{"id":"file-FPbY98j05158B942900j3yYK"}'} headers: connection: [keep-alive] content-length: ['38'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:24:02 GMT'] + date: ['Tue, 13 Nov 2018 20:31:32 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592642882-571041] + x-request-id: [1542141092464-521023] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"project": "project-FP9k7zQ0YbVPxYfQJq0Qq9Pg", "fields": + body: !!python/unicode '{"project": "project-FPbY97j05155fv104VjK72XB", "fields": {"state": true}}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k80Q0YbVFPYg95F286zG1/describe + uri: https://api.dnanexus.com/file-FPbY98j05158B942900j3yYK/describe response: - body: {string: !!python/unicode '{"id":"file-FP9k80Q0YbVFPYg95F286zG1","state":"closing"}'} + body: {string: !!python/unicode '{"id":"file-FPbY98j05158B942900j3yYK","state":"closing"}'} headers: connection: [keep-alive] content-length: ['56'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:24:03 GMT'] + date: ['Tue, 13 Nov 2018 20:31:32 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592643050-25352] + x-request-id: [1542141092581-116055] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"project": "project-FP9k7zQ0YbVPxYfQJq0Qq9Pg", "fields": + body: !!python/unicode '{"project": "project-FPbY97j05155fv104VjK72XB", "fields": {"state": true}}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k80Q0YbVFPYg95F286zG1/describe + uri: https://api.dnanexus.com/file-FPbY98j05158B942900j3yYK/describe response: - body: {string: !!python/unicode '{"id":"file-FP9k80Q0YbVFPYg95F286zG1","state":"closed"}'} + body: {string: !!python/unicode '{"id":"file-FPbY98j05158B942900j3yYK","state":"closed"}'} headers: connection: [keep-alive] content-length: ['55'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:24:05 GMT'] + date: ['Tue, 13 Nov 2018 20:31:34 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592645236-341346] + x-request-id: [1542141094689-826897] status: {code: 200, message: OK} - request: body: !!python/unicode '{"name": "test_dx_dir_to_dx_existing_dir.TempProj"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/project/new response: - body: {string: !!python/unicode '{"id":"project-FP9k81801gpfzyV6JkV1p4PJ"}'} + body: {string: !!python/unicode '{"id":"project-FPbY99Q0V1V1X71F8q6pKGx8"}'} headers: connection: [keep-alive] content-length: ['41'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:24:05 GMT'] + date: ['Tue, 13 Nov 2018 20:31:34 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592645347-962378] + x-request-id: [1542141094784-630034] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"parents": false, "folder": "/folder2"}' + body: !!python/unicode '{"folder": "/folder2", "parents": false}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k81801gpfzyV6JkV1p4PJ/newFolder + uri: https://api.dnanexus.com/project-FPbY99Q0V1V1X71F8q6pKGx8/newFolder response: - body: {string: !!python/unicode '{"id":"project-FP9k81801gpfzyV6JkV1p4PJ"}'} + body: {string: !!python/unicode '{"id":"project-FPbY99Q0V1V1X71F8q6pKGx8"}'} headers: connection: [keep-alive] content-length: ['41'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:24:05 GMT'] + date: ['Tue, 13 Nov 2018 20:31:34 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592645485-228466] + x-request-id: [1542141094892-190973] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"limit": 2, "name": "TestCopyTree.test_dx_dir_to_dx_existing_dir.9e379c25", + body: !!python/unicode '{"limit": 2, "name": "TestCopyTree.test_dx_dir_to_dx_existing_dir.7cca2036", "level": "VIEW"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/system/findProjects response: - body: {string: !!python/unicode '{"results":[{"id":"project-FP9k7zQ0YbVPxYfQJq0Qq9Pg","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} + body: {string: !!python/unicode '{"results":[{"id":"project-FPbY97j05155fv104VjK72XB","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} headers: connection: [keep-alive] content-length: ['147'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:24:05 GMT'] + date: ['Tue, 13 Nov 2018 20:31:35 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592645665-563900] + x-request-id: [1542141095004-767597] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"includeHidden": false, "only": "folders", "folder": - "/temp_folder", "describe": {"fields": {"name": true, "folder": true}}}' + body: !!python/unicode '{"folder": "/temp_folder", "describe": {"fields": {"folder": + true, "name": true}}, "only": "folders", "includeHidden": false}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k7zQ0YbVPxYfQJq0Qq9Pg/listFolder + uri: https://api.dnanexus.com/project-FPbY97j05155fv104VjK72XB/listFolder response: body: {string: !!python/unicode '{"folders":["/temp_folder/another_folder"]}'} headers: connection: [keep-alive] content-length: ['43'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:24:05 GMT'] + date: ['Tue, 13 Nov 2018 20:31:35 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592645797-586539] + x-request-id: [1542141095115-681197] status: {code: 200, message: OK} - request: body: !!python/unicode '{"limit": 2, "name": "test_dx_dir_to_dx_existing_dir.TempProj", @@ -505,41 +505,41 @@ interactions: headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/system/findProjects response: - body: {string: !!python/unicode '{"results":[{"id":"project-FP9k81801gpfzyV6JkV1p4PJ","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} + body: {string: !!python/unicode '{"results":[{"id":"project-FPbY99Q0V1V1X71F8q6pKGx8","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} headers: connection: [keep-alive] content-length: ['147'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:24:06 GMT'] + date: ['Tue, 13 Nov 2018 20:31:35 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592645928-312582] + x-request-id: [1542141095214-688216] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"includeHidden": false, "only": "folders", "folder": - "/folder2", "describe": {"fields": {"name": true, "folder": true}}}' + body: !!python/unicode '{"folder": "/folder2", "describe": {"fields": {"folder": + true, "name": true}}, "only": "folders", "includeHidden": false}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k81801gpfzyV6JkV1p4PJ/listFolder + uri: https://api.dnanexus.com/project-FPbY99Q0V1V1X71F8q6pKGx8/listFolder response: body: {string: !!python/unicode '{"folders":[]}'} headers: connection: [keep-alive] content-length: ['14'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:24:06 GMT'] + date: ['Tue, 13 Nov 2018 20:31:35 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592646098-950645] + x-request-id: [1542141095331-881280] status: {code: 200, message: OK} - request: body: !!python/unicode '{"limit": 2, "name": "test_dx_dir_to_dx_existing_dir.TempProj", @@ -547,64 +547,64 @@ interactions: headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/system/findProjects response: - body: {string: !!python/unicode '{"results":[{"id":"project-FP9k81801gpfzyV6JkV1p4PJ","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} + body: {string: !!python/unicode '{"results":[{"id":"project-FPbY99Q0V1V1X71F8q6pKGx8","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} headers: connection: [keep-alive] content-length: ['147'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:24:06 GMT'] + date: ['Tue, 13 Nov 2018 20:31:35 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592646231-318503] + x-request-id: [1542141095436-543382] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"includeHidden": false, "only": "folders", "folder": - "/folder2/temp_folder", "describe": {"fields": {"name": true, "folder": true}}}' + body: !!python/unicode '{"folder": "/folder2/temp_folder", "describe": {"fields": + {"folder": true, "name": true}}, "only": "folders", "includeHidden": false}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k81801gpfzyV6JkV1p4PJ/listFolder + uri: https://api.dnanexus.com/project-FPbY99Q0V1V1X71F8q6pKGx8/listFolder response: body: {string: !!python/unicode '{"error":{"type":"ResourceNotFound","message":"The - specified folder could not be found in project-FP9k81801gpfzyV6JkV1p4PJ"}}'} + specified folder could not be found in project-FPbY99Q0V1V1X71F8q6pKGx8"}}'} headers: connection: [keep-alive] content-type: [application/json] - date: ['Fri, 26 Oct 2018 22:24:06 GMT'] + date: ['Tue, 13 Nov 2018 20:31:35 GMT'] server: [nginx] transfer-encoding: [chunked] vary: [Accept-Encoding] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592646377-314870] + x-request-id: [1542141095548-584848] status: {code: 404, message: Not Found} - request: - body: !!python/unicode '{"parents": false, "project": "project-FP9k81801gpfzyV6JkV1p4PJ", - "destination": "/folder2", "folders": ["/temp_folder"], "objects": []}' + body: !!python/unicode '{"folders": ["/temp_folder"], "project": "project-FPbY99Q0V1V1X71F8q6pKGx8", + "destination": "/folder2", "objects": [], "parents": false}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k7zQ0YbVPxYfQJq0Qq9Pg/clone + uri: https://api.dnanexus.com/project-FPbY97j05155fv104VjK72XB/clone response: - body: {string: !!python/unicode '{"id":"project-FP9k7zQ0YbVPxYfQJq0Qq9Pg","project":"project-FP9k81801gpfzyV6JkV1p4PJ","exists":[]}'} + body: {string: !!python/unicode '{"id":"project-FPbY97j05155fv104VjK72XB","project":"project-FPbY99Q0V1V1X71F8q6pKGx8","exists":[]}'} headers: connection: [keep-alive] content-length: ['98'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:24:06 GMT'] + date: ['Tue, 13 Nov 2018 20:31:36 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592646803-86211] + x-request-id: [1542141095934-737136] status: {code: 200, message: OK} - request: body: !!python/unicode '{"limit": 2, "name": "test_dx_dir_to_dx_existing_dir.TempProj", @@ -612,100 +612,101 @@ interactions: headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/system/findProjects response: - body: {string: !!python/unicode '{"results":[{"id":"project-FP9k81801gpfzyV6JkV1p4PJ","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} + body: {string: !!python/unicode '{"results":[{"id":"project-FPbY99Q0V1V1X71F8q6pKGx8","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} headers: connection: [keep-alive] content-length: ['147'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:24:07 GMT'] + date: ['Tue, 13 Nov 2018 20:31:36 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592647081-309072] + x-request-id: [1542141096140-447605] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"objects": [{"name": "temp_file.txt", "project": "project-FP9k81801gpfzyV6JkV1p4PJ", - "batchsize": 2, "folder": "/folder2/temp_folder/another_folder"}]}' + body: !!python/unicode '{"objects": [{"project": "project-FPbY99Q0V1V1X71F8q6pKGx8", + "folder": "/folder2/temp_folder/another_folder", "name": "temp_file.txt", "batchsize": + 2}]}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/system/resolveDataObjects response: - body: {string: !!python/unicode '{"results":[[{"project":"project-FP9k81801gpfzyV6JkV1p4PJ","id":"file-FP9k80Q0YbVFPYg95F286zG1"}]]}'} + body: {string: !!python/unicode '{"results":[[{"project":"project-FPbY99Q0V1V1X71F8q6pKGx8","id":"file-FPbY98j05158B942900j3yYK"}]]}'} headers: connection: [keep-alive] content-length: ['99'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:24:07 GMT'] + date: ['Tue, 13 Nov 2018 20:31:36 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592647210-783653] + x-request-id: [1542141096266-897541] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"project": "project-FP9k81801gpfzyV6JkV1p4PJ"}' + body: !!python/unicode '{"project": "project-FPbY99Q0V1V1X71F8q6pKGx8"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k80Q0YbVFPYg95F286zG1/describe + uri: https://api.dnanexus.com/file-FPbY98j05158B942900j3yYK/describe response: - body: {string: !!python/unicode '{"id":"file-FP9k80Q0YbVFPYg95F286zG1","project":"project-FP9k81801gpfzyV6JkV1p4PJ","class":"file","sponsored":false,"name":"temp_file.txt","types":[],"state":"closed","hidden":false,"links":[],"folder":"/folder2/temp_folder/another_folder","tags":[],"created":1540592642000,"modified":1540592646949,"createdBy":{"user":"user-akumar_counsyl"},"media":"text/plain","archivalState":"live","size":4}'} + body: {string: !!python/unicode '{"id":"file-FPbY98j05158B942900j3yYK","project":"project-FPbY99Q0V1V1X71F8q6pKGx8","class":"file","sponsored":false,"name":"temp_file.txt","types":[],"state":"closed","hidden":false,"links":[],"folder":"/folder2/temp_folder/another_folder","tags":[],"created":1542141091000,"modified":1542141096030,"createdBy":{"user":"user-akumar_counsyl"},"media":"text/plain","archivalState":"live","size":4}'} headers: connection: [keep-alive] content-length: ['395'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:24:07 GMT'] + date: ['Tue, 13 Nov 2018 20:31:36 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592647335-348734] + x-request-id: [1542141096371-511701] status: {code: 200, message: OK} - request: body: !!python/unicode '{}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k81801gpfzyV6JkV1p4PJ/destroy + uri: https://api.dnanexus.com/project-FPbY99Q0V1V1X71F8q6pKGx8/destroy response: - body: {string: !!python/unicode '{"id":"project-FP9k81801gpfzyV6JkV1p4PJ"}'} + body: {string: !!python/unicode '{"id":"project-FPbY99Q0V1V1X71F8q6pKGx8"}'} headers: connection: [keep-alive] content-length: ['41'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:24:11 GMT'] + date: ['Tue, 13 Nov 2018 20:31:39 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592647456-759274] + x-request-id: [1542141096489-645561] status: {code: 200, message: OK} - request: body: !!python/unicode '{}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k7zQ0YbVPxYfQJq0Qq9Pg/destroy + uri: https://api.dnanexus.com/project-FPbY97j05155fv104VjK72XB/destroy response: - body: {string: !!python/unicode '{"id":"project-FP9k7zQ0YbVPxYfQJq0Qq9Pg"}'} + body: {string: !!python/unicode '{"id":"project-FPbY97j05155fv104VjK72XB"}'} headers: connection: [keep-alive] content-length: ['41'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:24:14 GMT'] + date: ['Tue, 13 Nov 2018 20:31:41 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592651549-155809] + x-request-id: [1542141099119-858243] status: {code: 200, message: OK} version: 1 diff --git a/stor/tests/cassettes_py2/TestCopyTree/test_dx_dir_to_dx_root.yaml b/stor_dx/stor_dx/tests/cassettes_py2/TestCopyTree/test_dx_dir_to_dx_root.yaml similarity index 59% rename from stor/tests/cassettes_py2/TestCopyTree/test_dx_dir_to_dx_root.yaml rename to stor_dx/stor_dx/tests/cassettes_py2/TestCopyTree/test_dx_dir_to_dx_root.yaml index a1927ba2..d5752ed6 100644 --- a/stor/tests/cassettes_py2/TestCopyTree/test_dx_dir_to_dx_root.yaml +++ b/stor_dx/stor_dx/tests/cassettes_py2/TestCopyTree/test_dx_dir_to_dx_root.yaml @@ -1,294 +1,294 @@ interactions: - request: - body: !!python/unicode '{"name": "TestCopyTree.test_dx_dir_to_dx_root.3a5bff7c"}' + body: !!python/unicode '{"name": "TestCopyTree.test_dx_dir_to_dx_root.d468a508"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/project/new response: - body: {string: !!python/unicode '{"id":"project-FP9k83j060X5vgj6Jkpx4b1v"}'} + body: {string: !!python/unicode '{"id":"project-FPbY9F80xk28B942900j3yYQ"}'} headers: connection: [keep-alive] content-length: ['41'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:24:15 GMT'] + date: ['Tue, 13 Nov 2018 20:31:41 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592655053-745333] + x-request-id: [1542141101893-66569] status: {code: 200, message: OK} - request: body: !!python/unicode '{}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k83j060X5vgj6Jkpx4b1v/describe + uri: https://api.dnanexus.com/project-FPbY9F80xk28B942900j3yYQ/describe response: - body: {string: !!python/unicode '{"id":"project-FP9k83j060X5vgj6Jkpx4b1v","name":"TestCopyTree.test_dx_dir_to_dx_root.3a5bff7c","class":"project","created":1540592655000,"modified":1540592655000,"billTo":"org-counsyl","level":"ADMINISTER","dataUsage":0,"sponsoredDataUsage":0,"region":"aws:us-east-1","summary":"","description":"","protected":false,"restricted":false,"downloadRestricted":false,"containsPHI":false,"createdBy":{"user":"user-akumar_counsyl"},"version":0,"storageCost":0,"pendingTransfer":null,"tags":[],"defaultInstanceType":"mem2_hdd2_x2","archivalState":"live","archivalProgress":null,"totalSponsoredEgressBytes":0,"consumedSponsoredEgressBytes":0,"atSpendingLimit":false}'} + body: {string: !!python/unicode '{"id":"project-FPbY9F80xk28B942900j3yYQ","name":"TestCopyTree.test_dx_dir_to_dx_root.d468a508","class":"project","created":1542141101000,"modified":1542141101000,"billTo":"org-counsyl","level":"ADMINISTER","dataUsage":0,"sponsoredDataUsage":0,"region":"aws:us-east-1","summary":"","description":"","protected":false,"restricted":false,"downloadRestricted":false,"containsPHI":false,"createdBy":{"user":"user-akumar_counsyl"},"version":0,"storageCost":0,"pendingTransfer":null,"tags":[],"defaultInstanceType":"mem2_hdd2_x2","archivalState":"live","archivalProgress":null,"totalSponsoredEgressBytes":0,"consumedSponsoredEgressBytes":0,"atSpendingLimit":false}'} headers: connection: [keep-alive] content-length: ['657'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:24:15 GMT'] + date: ['Tue, 13 Nov 2018 20:31:42 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592655183-737577] + x-request-id: [1542141101992-7063] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"parents": true, "folder": "/temp_folder/another_folder"}' + body: !!python/unicode '{"folder": "/temp_folder/another_folder", "parents": true}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k83j060X5vgj6Jkpx4b1v/newFolder + uri: https://api.dnanexus.com/project-FPbY9F80xk28B942900j3yYQ/newFolder response: - body: {string: !!python/unicode '{"id":"project-FP9k83j060X5vgj6Jkpx4b1v"}'} + body: {string: !!python/unicode '{"id":"project-FPbY9F80xk28B942900j3yYQ"}'} headers: connection: [keep-alive] content-length: ['41'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:24:15 GMT'] + date: ['Tue, 13 Nov 2018 20:31:42 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592655300-125741] + x-request-id: [1542141102104-957069] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"name": "temp_file.txt", "project": "project-FP9k83j060X5vgj6Jkpx4b1v", - "folder": "/temp_folder/another_folder", "nonce": "026909229dd9e0af01558ace4c1d16db870285ae0f9972d721bf5bbffc0a22251540592655.363829"}' + body: !!python/unicode '{"project": "project-FPbY9F80xk28B942900j3yYQ", "nonce": + "a7f4e5afeda875e9a884ff7eb315a54a9d66116206d52d5e8e5c9fbe0326b4b51542141102.162111", + "folder": "/temp_folder/another_folder", "name": "temp_file.txt"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/file/new response: - body: {string: !!python/unicode '{"id":"file-FP9k83j060XGf62VJp1k8pBF"}'} + body: {string: !!python/unicode '{"id":"file-FPbY9FQ0xk2JQKK224Gky3K3"}'} headers: connection: [keep-alive] content-length: ['38'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:24:15 GMT'] + date: ['Tue, 13 Nov 2018 20:31:42 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592655409-146505] + x-request-id: [1542141102208-874771] status: {code: 200, message: OK} - request: body: !!python/unicode '{"fields": {"fileUploadParameters": true}}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k83j060X5vgj6Jkpx4b1v/describe + uri: https://api.dnanexus.com/project-FPbY9F80xk28B942900j3yYQ/describe response: - body: {string: !!python/unicode '{"id":"project-FP9k83j060X5vgj6Jkpx4b1v","fileUploadParameters":{"maximumPartSize":5368709120,"minimumPartSize":5242880,"maximumFileSize":5497558138880,"maximumNumParts":10000,"emptyLastPartAllowed":true}}'} + body: {string: !!python/unicode '{"id":"project-FPbY9F80xk28B942900j3yYQ","fileUploadParameters":{"maximumPartSize":5368709120,"minimumPartSize":5242880,"maximumFileSize":5497558138880,"maximumNumParts":10000,"emptyLastPartAllowed":true}}'} headers: connection: [keep-alive] content-length: ['205'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:24:15 GMT'] + date: ['Tue, 13 Nov 2018 20:31:42 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592655540-600504] + x-request-id: [1542141102384-630756] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"size": 4, "md5": "8d777f385d3dfec8815d20f7496026dc", - "index": 1}' + body: !!python/unicode '{"index": 1, "size": 4, "md5": "8d777f385d3dfec8815d20f7496026dc"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k83j060XGf62VJp1k8pBF/upload + uri: https://api.dnanexus.com/file-FPbY9FQ0xk2JQKK224Gky3K3/upload response: - body: {string: !!python/unicode '{"url":"https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/baff/file/open/file-FP9k83j060XGf62VJp1k8pBF/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181026%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181026T222415Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=ba9700283d7fcfce010b86a0c07a94bd42d10fa5cc758b2b7b46763e3f2fd984","headers":{"host":"dnanexus-platform-upload-prod.s3.amazonaws.com","content-type":"binary/octet-stream","x-amz-server-side-encryption":"AES256","content-md5":"jXd/OF09/siBXSD3SWAm3A==","content-length":"4"},"expires":1540592775659}'} + body: {string: !!python/unicode '{"url":"https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/821c/file/open/file-FPbY9FQ0xk2JQKK224Gky3K3/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181113%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181113T203142Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=3ab448ffe02c5acb4eeab8331f644c142efb13623a568873775d9d7baaaf9039","headers":{"host":"dnanexus-platform-upload-prod.s3.amazonaws.com","content-type":"binary/octet-stream","x-amz-server-side-encryption":"AES256","content-md5":"jXd/OF09/siBXSD3SWAm3A==","content-length":"4"},"expires":1542141222494}'} headers: connection: [keep-alive] content-length: ['692'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:24:15 GMT'] + date: ['Tue, 13 Nov 2018 20:31:42 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592655646-874618] + x-request-id: [1542141102476-581555] status: {code: 200, message: OK} - request: body: !!python/unicode data headers: DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] content-length: ['4'] content-md5: [jXd/OF09/siBXSD3SWAm3A==] content-type: [binary/octet-stream] host: [dnanexus-platform-upload-prod.s3.amazonaws.com] x-amz-server-side-encryption: [AES256] method: PUT - uri: https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/baff/file/open/file-FP9k83j060XGf62VJp1k8pBF/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181026%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181026T222415Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=ba9700283d7fcfce010b86a0c07a94bd42d10fa5cc758b2b7b46763e3f2fd984 + uri: https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/821c/file/open/file-FPbY9FQ0xk2JQKK224Gky3K3/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181113%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181113T203142Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=3ab448ffe02c5acb4eeab8331f644c142efb13623a568873775d9d7baaaf9039 response: body: {string: !!python/unicode ''} headers: content-length: ['0'] - date: ['Fri, 26 Oct 2018 22:24:17 GMT'] + date: ['Tue, 13 Nov 2018 20:31:43 GMT'] etag: ['"8d777f385d3dfec8815d20f7496026dc"'] server: [AmazonS3] - x-amz-expiration: ['expiry-date="Sat, 17 Nov 2018 00:00:00 GMT", rule-id="3weekpurge"'] - x-amz-id-2: [d1aslikqYowTWmkN2WlL7iliXuUlQPU54dp9KfM/Xgqs4lr2Wh1NJZGLAI5yVtw0o1hDv596ako=] - x-amz-request-id: [B040A5B63270EF85] + x-amz-expiration: ['expiry-date="Wed, 05 Dec 2018 00:00:00 GMT", rule-id="3weekpurge"'] + x-amz-id-2: [9UykRKj9KzDFvGMOIFD5jnDVty9whhtXAKNtEAh93k/Fkd4sgQ9dqHxgqHRgVlPmzjKRsoTUi54=] + x-amz-request-id: [B7F5001AD27CE4F4] x-amz-server-side-encryption: [AES256] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"project": "project-FP9k83j060X5vgj6Jkpx4b1v", "fields": + body: !!python/unicode '{"project": "project-FPbY9F80xk28B942900j3yYQ", "fields": {"state": true}}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k83j060XGf62VJp1k8pBF/describe + uri: https://api.dnanexus.com/file-FPbY9FQ0xk2JQKK224Gky3K3/describe response: - body: {string: !!python/unicode '{"id":"file-FP9k83j060XGf62VJp1k8pBF","state":"open"}'} + body: {string: !!python/unicode '{"id":"file-FPbY9FQ0xk2JQKK224Gky3K3","state":"open"}'} headers: connection: [keep-alive] content-length: ['53'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:24:16 GMT'] + date: ['Tue, 13 Nov 2018 20:31:42 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592656306-489503] + x-request-id: [1542141102953-289444] status: {code: 200, message: OK} - request: body: !!python/unicode '{}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k83j060XGf62VJp1k8pBF/close + uri: https://api.dnanexus.com/file-FPbY9FQ0xk2JQKK224Gky3K3/close response: - body: {string: !!python/unicode '{"id":"file-FP9k83j060XGf62VJp1k8pBF"}'} + body: {string: !!python/unicode '{"id":"file-FPbY9FQ0xk2JQKK224Gky3K3"}'} headers: connection: [keep-alive] content-length: ['38'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:24:16 GMT'] + date: ['Tue, 13 Nov 2018 20:31:43 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592656560-778415] + x-request-id: [1542141103044-98778] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"project": "project-FP9k83j060X5vgj6Jkpx4b1v", "fields": + body: !!python/unicode '{"project": "project-FPbY9F80xk28B942900j3yYQ", "fields": {"state": true}}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k83j060XGf62VJp1k8pBF/describe + uri: https://api.dnanexus.com/file-FPbY9FQ0xk2JQKK224Gky3K3/describe response: - body: {string: !!python/unicode '{"id":"file-FP9k83j060XGf62VJp1k8pBF","state":"closing"}'} + body: {string: !!python/unicode '{"id":"file-FPbY9FQ0xk2JQKK224Gky3K3","state":"closing"}'} headers: connection: [keep-alive] content-length: ['56'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:24:16 GMT'] + date: ['Tue, 13 Nov 2018 20:31:43 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592656875-658409] + x-request-id: [1542141103155-360539] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"project": "project-FP9k83j060X5vgj6Jkpx4b1v", "fields": + body: !!python/unicode '{"project": "project-FPbY9F80xk28B942900j3yYQ", "fields": {"state": true}}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k83j060XGf62VJp1k8pBF/describe + uri: https://api.dnanexus.com/file-FPbY9FQ0xk2JQKK224Gky3K3/describe response: - body: {string: !!python/unicode '{"id":"file-FP9k83j060XGf62VJp1k8pBF","state":"closed"}'} + body: {string: !!python/unicode '{"id":"file-FPbY9FQ0xk2JQKK224Gky3K3","state":"closed"}'} headers: connection: [keep-alive] content-length: ['55'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:24:19 GMT'] + date: ['Tue, 13 Nov 2018 20:31:45 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592659135-830522] + x-request-id: [1542141105259-217312] status: {code: 200, message: OK} - request: body: !!python/unicode '{"name": "test_dx_dir_to_dx_root.TempProj"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/project/new response: - body: {string: !!python/unicode '{"id":"project-FP9k84j09b0f8GXkJpbYfZz6"}'} + body: {string: !!python/unicode '{"id":"project-FPbY9G80gBZJQKK224Gky3K5"}'} headers: connection: [keep-alive] content-length: ['41'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:24:19 GMT'] + date: ['Tue, 13 Nov 2018 20:31:45 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592659324-896758] + x-request-id: [1542141105353-911004] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"limit": 2, "name": "TestCopyTree.test_dx_dir_to_dx_root.3a5bff7c", + body: !!python/unicode '{"limit": 2, "name": "TestCopyTree.test_dx_dir_to_dx_root.d468a508", "level": "VIEW"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/system/findProjects response: - body: {string: !!python/unicode '{"results":[{"id":"project-FP9k83j060X5vgj6Jkpx4b1v","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} + body: {string: !!python/unicode '{"results":[{"id":"project-FPbY9F80xk28B942900j3yYQ","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} headers: connection: [keep-alive] content-length: ['147'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:24:19 GMT'] + date: ['Tue, 13 Nov 2018 20:31:45 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592659506-943298] + x-request-id: [1542141105467-926264] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"includeHidden": false, "only": "folders", "folder": - "/temp_folder", "describe": {"fields": {"name": true, "folder": true}}}' + body: !!python/unicode '{"folder": "/temp_folder", "describe": {"fields": {"folder": + true, "name": true}}, "only": "folders", "includeHidden": false}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k83j060X5vgj6Jkpx4b1v/listFolder + uri: https://api.dnanexus.com/project-FPbY9F80xk28B942900j3yYQ/listFolder response: body: {string: !!python/unicode '{"folders":["/temp_folder/another_folder"]}'} headers: connection: [keep-alive] content-length: ['43'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:24:19 GMT'] + date: ['Tue, 13 Nov 2018 20:31:45 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592659687-395645] + x-request-id: [1542141105598-315964] status: {code: 200, message: OK} - request: body: !!python/unicode '{"limit": 2, "name": "test_dx_dir_to_dx_root.TempProj", @@ -296,20 +296,20 @@ interactions: headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/system/findProjects response: - body: {string: !!python/unicode '{"results":[{"id":"project-FP9k84j09b0f8GXkJpbYfZz6","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} + body: {string: !!python/unicode '{"results":[{"id":"project-FPbY9G80gBZJQKK224Gky3K5","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} headers: connection: [keep-alive] content-length: ['147'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:24:20 GMT'] + date: ['Tue, 13 Nov 2018 20:31:45 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592659998-938001] + x-request-id: [1542141105698-421570] status: {code: 200, message: OK} - request: body: !!python/unicode '{"limit": 2, "name": "test_dx_dir_to_dx_root.TempProj", @@ -317,40 +317,40 @@ interactions: headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/system/findProjects response: - body: {string: !!python/unicode '{"results":[{"id":"project-FP9k84j09b0f8GXkJpbYfZz6","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} + body: {string: !!python/unicode '{"results":[{"id":"project-FPbY9G80gBZJQKK224Gky3K5","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} headers: connection: [keep-alive] content-length: ['147'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:24:20 GMT'] + date: ['Tue, 13 Nov 2018 20:31:45 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592660201-297725] + x-request-id: [1542141105825-881408] status: {code: 200, message: OK} - request: body: !!python/unicode '{}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k84j09b0f8GXkJpbYfZz6/describe + uri: https://api.dnanexus.com/project-FPbY9G80gBZJQKK224Gky3K5/describe response: - body: {string: !!python/unicode '{"id":"project-FP9k84j09b0f8GXkJpbYfZz6","name":"test_dx_dir_to_dx_root.TempProj","class":"project","created":1540592659000,"modified":1540592659000,"billTo":"org-counsyl","level":"ADMINISTER","dataUsage":0,"sponsoredDataUsage":0,"region":"aws:us-east-1","summary":"","description":"","protected":false,"restricted":false,"downloadRestricted":false,"containsPHI":false,"createdBy":{"user":"user-akumar_counsyl"},"version":0,"storageCost":0,"pendingTransfer":null,"tags":[],"defaultInstanceType":"mem2_hdd2_x2","archivalState":"live","archivalProgress":null,"totalSponsoredEgressBytes":0,"consumedSponsoredEgressBytes":0,"atSpendingLimit":false}'} + body: {string: !!python/unicode '{"id":"project-FPbY9G80gBZJQKK224Gky3K5","name":"test_dx_dir_to_dx_root.TempProj","class":"project","created":1542141105000,"modified":1542141105000,"billTo":"org-counsyl","level":"ADMINISTER","dataUsage":0,"sponsoredDataUsage":0,"region":"aws:us-east-1","summary":"","description":"","protected":false,"restricted":false,"downloadRestricted":false,"containsPHI":false,"createdBy":{"user":"user-akumar_counsyl"},"version":0,"storageCost":0,"pendingTransfer":null,"tags":[],"defaultInstanceType":"mem2_hdd2_x2","archivalState":"live","archivalProgress":null,"totalSponsoredEgressBytes":0,"consumedSponsoredEgressBytes":0,"atSpendingLimit":false}'} headers: connection: [keep-alive] content-length: ['644'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:24:20 GMT'] + date: ['Tue, 13 Nov 2018 20:31:45 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592660353-240283] + x-request-id: [1542141105948-30765] status: {code: 200, message: OK} - request: body: !!python/unicode '{"limit": 2, "name": "test_dx_dir_to_dx_root.TempProj", @@ -358,64 +358,64 @@ interactions: headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/system/findProjects response: - body: {string: !!python/unicode '{"results":[{"id":"project-FP9k84j09b0f8GXkJpbYfZz6","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} + body: {string: !!python/unicode '{"results":[{"id":"project-FPbY9G80gBZJQKK224Gky3K5","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} headers: connection: [keep-alive] content-length: ['147'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:24:20 GMT'] + date: ['Tue, 13 Nov 2018 20:31:46 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592660502-803665] + x-request-id: [1542141106059-520688] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"includeHidden": false, "only": "folders", "folder": - "/temp_folder", "describe": {"fields": {"name": true, "folder": true}}}' + body: !!python/unicode '{"folder": "/temp_folder", "describe": {"fields": {"folder": + true, "name": true}}, "only": "folders", "includeHidden": false}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k84j09b0f8GXkJpbYfZz6/listFolder + uri: https://api.dnanexus.com/project-FPbY9G80gBZJQKK224Gky3K5/listFolder response: body: {string: !!python/unicode '{"error":{"type":"ResourceNotFound","message":"The - specified folder could not be found in project-FP9k84j09b0f8GXkJpbYfZz6"}}'} + specified folder could not be found in project-FPbY9G80gBZJQKK224Gky3K5"}}'} headers: connection: [keep-alive] content-type: [application/json] - date: ['Fri, 26 Oct 2018 22:24:20 GMT'] + date: ['Tue, 13 Nov 2018 20:31:46 GMT'] server: [nginx] transfer-encoding: [chunked] vary: [Accept-Encoding] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592660681-479837] + x-request-id: [1542141106172-642543] status: {code: 404, message: Not Found} - request: - body: !!python/unicode '{"parents": false, "project": "project-FP9k84j09b0f8GXkJpbYfZz6", - "destination": "/", "folders": ["/temp_folder"], "objects": []}' + body: !!python/unicode '{"folders": ["/temp_folder"], "project": "project-FPbY9G80gBZJQKK224Gky3K5", + "destination": "/", "objects": [], "parents": false}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k83j060X5vgj6Jkpx4b1v/clone + uri: https://api.dnanexus.com/project-FPbY9F80xk28B942900j3yYQ/clone response: - body: {string: !!python/unicode '{"id":"project-FP9k83j060X5vgj6Jkpx4b1v","project":"project-FP9k84j09b0f8GXkJpbYfZz6","exists":[]}'} + body: {string: !!python/unicode '{"id":"project-FPbY9F80xk28B942900j3yYQ","project":"project-FPbY9G80gBZJQKK224Gky3K5","exists":[]}'} headers: connection: [keep-alive] content-length: ['98'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:24:21 GMT'] + date: ['Tue, 13 Nov 2018 20:31:46 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592661094-24571] + x-request-id: [1542141106515-273723] status: {code: 200, message: OK} - request: body: !!python/unicode '{"limit": 2, "name": "test_dx_dir_to_dx_root.TempProj", @@ -423,100 +423,101 @@ interactions: headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/system/findProjects response: - body: {string: !!python/unicode '{"results":[{"id":"project-FP9k84j09b0f8GXkJpbYfZz6","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} + body: {string: !!python/unicode '{"results":[{"id":"project-FPbY9G80gBZJQKK224Gky3K5","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} headers: connection: [keep-alive] content-length: ['147'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:24:21 GMT'] + date: ['Tue, 13 Nov 2018 20:31:46 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592661336-586211] + x-request-id: [1542141106748-861346] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"objects": [{"name": "temp_file.txt", "project": "project-FP9k84j09b0f8GXkJpbYfZz6", - "batchsize": 2, "folder": "/temp_folder/another_folder"}]}' + body: !!python/unicode '{"objects": [{"project": "project-FPbY9G80gBZJQKK224Gky3K5", + "folder": "/temp_folder/another_folder", "name": "temp_file.txt", "batchsize": + 2}]}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/system/resolveDataObjects response: - body: {string: !!python/unicode '{"results":[[{"project":"project-FP9k84j09b0f8GXkJpbYfZz6","id":"file-FP9k83j060XGf62VJp1k8pBF"}]]}'} + body: {string: !!python/unicode '{"results":[[{"project":"project-FPbY9G80gBZJQKK224Gky3K5","id":"file-FPbY9FQ0xk2JQKK224Gky3K3"}]]}'} headers: connection: [keep-alive] content-length: ['99'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:24:21 GMT'] + date: ['Tue, 13 Nov 2018 20:31:46 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592661497-963259] + x-request-id: [1542141106906-910643] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"project": "project-FP9k84j09b0f8GXkJpbYfZz6"}' + body: !!python/unicode '{"project": "project-FPbY9G80gBZJQKK224Gky3K5"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k83j060XGf62VJp1k8pBF/describe + uri: https://api.dnanexus.com/file-FPbY9FQ0xk2JQKK224Gky3K3/describe response: - body: {string: !!python/unicode '{"id":"file-FP9k83j060XGf62VJp1k8pBF","project":"project-FP9k84j09b0f8GXkJpbYfZz6","class":"file","sponsored":false,"name":"temp_file.txt","types":[],"state":"closed","hidden":false,"links":[],"folder":"/temp_folder/another_folder","tags":[],"created":1540592655000,"modified":1540592661209,"createdBy":{"user":"user-akumar_counsyl"},"media":"text/plain","archivalState":"live","size":4}'} + body: {string: !!python/unicode '{"id":"file-FPbY9FQ0xk2JQKK224Gky3K3","project":"project-FPbY9G80gBZJQKK224Gky3K5","class":"file","sponsored":false,"name":"temp_file.txt","types":[],"state":"closed","hidden":false,"links":[],"folder":"/temp_folder/another_folder","tags":[],"created":1542141102000,"modified":1542141106629,"createdBy":{"user":"user-akumar_counsyl"},"media":"text/plain","archivalState":"live","size":4}'} headers: connection: [keep-alive] content-length: ['387'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:24:21 GMT'] + date: ['Tue, 13 Nov 2018 20:31:47 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592661611-302965] + x-request-id: [1542141107004-74691] status: {code: 200, message: OK} - request: body: !!python/unicode '{}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k84j09b0f8GXkJpbYfZz6/destroy + uri: https://api.dnanexus.com/project-FPbY9G80gBZJQKK224Gky3K5/destroy response: - body: {string: !!python/unicode '{"id":"project-FP9k84j09b0f8GXkJpbYfZz6"}'} + body: {string: !!python/unicode '{"id":"project-FPbY9G80gBZJQKK224Gky3K5"}'} headers: connection: [keep-alive] content-length: ['41'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:24:24 GMT'] + date: ['Tue, 13 Nov 2018 20:31:49 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592661742-727327] + x-request-id: [1542141107099-555719] status: {code: 200, message: OK} - request: body: !!python/unicode '{}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k83j060X5vgj6Jkpx4b1v/destroy + uri: https://api.dnanexus.com/project-FPbY9F80xk28B942900j3yYQ/destroy response: - body: {string: !!python/unicode '{"id":"project-FP9k83j060X5vgj6Jkpx4b1v"}'} + body: {string: !!python/unicode '{"id":"project-FPbY9F80xk28B942900j3yYQ"}'} headers: connection: [keep-alive] content-length: ['41'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:24:28 GMT'] + date: ['Tue, 13 Nov 2018 20:31:53 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592665079-778460] + x-request-id: [1542141109731-758353] status: {code: 200, message: OK} version: 1 diff --git a/stor/tests/cassettes_py2/TestCopyTree/test_dx_dir_to_dx_root_same_project.yaml b/stor_dx/stor_dx/tests/cassettes_py2/TestCopyTree/test_dx_dir_to_dx_root_same_project.yaml similarity index 59% rename from stor/tests/cassettes_py2/TestCopyTree/test_dx_dir_to_dx_root_same_project.yaml rename to stor_dx/stor_dx/tests/cassettes_py2/TestCopyTree/test_dx_dir_to_dx_root_same_project.yaml index 0bd804c9..c6eba2aa 100644 --- a/stor/tests/cassettes_py2/TestCopyTree/test_dx_dir_to_dx_root_same_project.yaml +++ b/stor_dx/stor_dx/tests/cassettes_py2/TestCopyTree/test_dx_dir_to_dx_root_same_project.yaml @@ -1,339 +1,339 @@ interactions: - request: - body: !!python/unicode '{"name": "TestCopyTree.test_dx_dir_to_dx_root_same_project.d811c5c1"}' + body: !!python/unicode '{"name": "TestCopyTree.test_dx_dir_to_dx_root_same_project.109777d0"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/project/new response: - body: {string: !!python/unicode '{"id":"project-FP9k8700Px1Pvv365P3k8Zvp"}'} + body: {string: !!python/unicode '{"id":"project-FPbY9K8017XVX71F8q6pKGx9"}'} headers: connection: [keep-alive] content-length: ['41'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:24:28 GMT'] + date: ['Tue, 13 Nov 2018 20:31:53 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592668665-968728] + x-request-id: [1542141113904-940941] status: {code: 200, message: OK} - request: body: !!python/unicode '{}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k8700Px1Pvv365P3k8Zvp/describe + uri: https://api.dnanexus.com/project-FPbY9K8017XVX71F8q6pKGx9/describe response: - body: {string: !!python/unicode '{"id":"project-FP9k8700Px1Pvv365P3k8Zvp","name":"TestCopyTree.test_dx_dir_to_dx_root_same_project.d811c5c1","class":"project","created":1540592668000,"modified":1540592668000,"billTo":"org-counsyl","level":"ADMINISTER","dataUsage":0,"sponsoredDataUsage":0,"region":"aws:us-east-1","summary":"","description":"","protected":false,"restricted":false,"downloadRestricted":false,"containsPHI":false,"createdBy":{"user":"user-akumar_counsyl"},"version":0,"storageCost":0,"pendingTransfer":null,"tags":[],"defaultInstanceType":"mem2_hdd2_x2","archivalState":"live","archivalProgress":null,"totalSponsoredEgressBytes":0,"consumedSponsoredEgressBytes":0,"atSpendingLimit":false}'} + body: {string: !!python/unicode '{"id":"project-FPbY9K8017XVX71F8q6pKGx9","name":"TestCopyTree.test_dx_dir_to_dx_root_same_project.109777d0","class":"project","created":1542141113000,"modified":1542141113000,"billTo":"org-counsyl","level":"ADMINISTER","dataUsage":0,"sponsoredDataUsage":0,"region":"aws:us-east-1","summary":"","description":"","protected":false,"restricted":false,"downloadRestricted":false,"containsPHI":false,"createdBy":{"user":"user-akumar_counsyl"},"version":0,"storageCost":0,"pendingTransfer":null,"tags":[],"defaultInstanceType":"mem2_hdd2_x2","archivalState":"live","archivalProgress":null,"totalSponsoredEgressBytes":0,"consumedSponsoredEgressBytes":0,"atSpendingLimit":false}'} headers: connection: [keep-alive] content-length: ['670'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:24:28 GMT'] + date: ['Tue, 13 Nov 2018 20:31:54 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592668800-145586] + x-request-id: [1542141114011-274057] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"parents": true, "folder": "/temp_folder/another_folder"}' + body: !!python/unicode '{"folder": "/temp_folder/another_folder", "parents": true}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k8700Px1Pvv365P3k8Zvp/newFolder + uri: https://api.dnanexus.com/project-FPbY9K8017XVX71F8q6pKGx9/newFolder response: - body: {string: !!python/unicode '{"id":"project-FP9k8700Px1Pvv365P3k8Zvp"}'} + body: {string: !!python/unicode '{"id":"project-FPbY9K8017XVX71F8q6pKGx9"}'} headers: connection: [keep-alive] content-length: ['41'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:24:29 GMT'] + date: ['Tue, 13 Nov 2018 20:31:54 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592668993-770181] + x-request-id: [1542141114143-783228] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"name": "temp_file.txt", "project": "project-FP9k8700Px1Pvv365P3k8Zvp", - "folder": "/temp_folder/another_folder", "nonce": "9bfe30a6b9c739c68e3ebbb4f13f91e03435a7d0fb7c936f721c15ea676b406b1540592669.074498"}' + body: !!python/unicode '{"project": "project-FPbY9K8017XVX71F8q6pKGx9", "nonce": + "89ae0eff133900f355e076403bcdcd523cef0e146ccd0edd88934f7f53e55b7f1542141114.196575", + "folder": "/temp_folder/another_folder", "name": "temp_file.txt"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/file/new response: - body: {string: !!python/unicode '{"id":"file-FP9k8780Px15vgj6Jkpx4b1x"}'} + body: {string: !!python/unicode '{"id":"file-FPbY9KQ017Xjq8VK339v26QP"}'} headers: connection: [keep-alive] content-length: ['38'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:24:29 GMT'] + date: ['Tue, 13 Nov 2018 20:31:54 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592669118-464113] + x-request-id: [1542141114241-585024] status: {code: 200, message: OK} - request: body: !!python/unicode '{"fields": {"fileUploadParameters": true}}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k8700Px1Pvv365P3k8Zvp/describe + uri: https://api.dnanexus.com/project-FPbY9K8017XVX71F8q6pKGx9/describe response: - body: {string: !!python/unicode '{"id":"project-FP9k8700Px1Pvv365P3k8Zvp","fileUploadParameters":{"maximumPartSize":5368709120,"minimumPartSize":5242880,"maximumFileSize":5497558138880,"maximumNumParts":10000,"emptyLastPartAllowed":true}}'} + body: {string: !!python/unicode '{"id":"project-FPbY9K8017XVX71F8q6pKGx9","fileUploadParameters":{"maximumPartSize":5368709120,"minimumPartSize":5242880,"maximumFileSize":5497558138880,"maximumNumParts":10000,"emptyLastPartAllowed":true}}'} headers: connection: [keep-alive] content-length: ['205'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:24:29 GMT'] + date: ['Tue, 13 Nov 2018 20:31:54 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592669332-419812] + x-request-id: [1542141114368-633603] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"size": 5, "md5": "73dfff57fe24e807bd4fb1bc4e07cd73", - "index": 1}' + body: !!python/unicode '{"index": 1, "size": 5, "md5": "73dfff57fe24e807bd4fb1bc4e07cd73"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k8780Px15vgj6Jkpx4b1x/upload + uri: https://api.dnanexus.com/file-FPbY9KQ017Xjq8VK339v26QP/upload response: - body: {string: !!python/unicode '{"url":"https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/1014/file/open/file-FP9k8780Px15vgj6Jkpx4b1x/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181026%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181026T222429Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=cea1e9b63dca2eb7775c65009898c65077445ae898fc201a1ca636895e29472b","headers":{"host":"dnanexus-platform-upload-prod.s3.amazonaws.com","content-type":"binary/octet-stream","x-amz-server-side-encryption":"AES256","content-md5":"c9//V/4k6Ae9T7G8TgfNcw==","content-length":"5"},"expires":1540592789534}'} + body: {string: !!python/unicode '{"url":"https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/a152/file/open/file-FPbY9KQ017Xjq8VK339v26QP/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181113%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181113T203154Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=235339db6ada2b7cda09d904070afd8861a9580a83f044ff271fae121de63928","headers":{"host":"dnanexus-platform-upload-prod.s3.amazonaws.com","content-type":"binary/octet-stream","x-amz-server-side-encryption":"AES256","content-md5":"c9//V/4k6Ae9T7G8TgfNcw==","content-length":"5"},"expires":1542141234501}'} headers: connection: [keep-alive] content-length: ['692'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:24:29 GMT'] + date: ['Tue, 13 Nov 2018 20:31:54 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592669503-441128] + x-request-id: [1542141114458-608991] status: {code: 200, message: OK} - request: body: !!python/unicode data0 headers: DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] content-length: ['5'] content-md5: [c9//V/4k6Ae9T7G8TgfNcw==] content-type: [binary/octet-stream] host: [dnanexus-platform-upload-prod.s3.amazonaws.com] x-amz-server-side-encryption: [AES256] method: PUT - uri: https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/1014/file/open/file-FP9k8780Px15vgj6Jkpx4b1x/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181026%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181026T222429Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=cea1e9b63dca2eb7775c65009898c65077445ae898fc201a1ca636895e29472b + uri: https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/a152/file/open/file-FPbY9KQ017Xjq8VK339v26QP/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181113%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181113T203154Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=235339db6ada2b7cda09d904070afd8861a9580a83f044ff271fae121de63928 response: body: {string: !!python/unicode ''} headers: content-length: ['0'] - date: ['Fri, 26 Oct 2018 22:24:30 GMT'] + date: ['Tue, 13 Nov 2018 20:31:55 GMT'] etag: ['"73dfff57fe24e807bd4fb1bc4e07cd73"'] server: [AmazonS3] - x-amz-expiration: ['expiry-date="Sat, 17 Nov 2018 00:00:00 GMT", rule-id="3weekpurge"'] - x-amz-id-2: [0nUXWmfAMhGSq/Hu9/nqJZ0VtUkDD4hA1Wlac0ol2jcJ4jfsLnq9jn5hy278eI4tRMxmc5ASpJs=] - x-amz-request-id: [9BCEC8A843828672] + x-amz-expiration: ['expiry-date="Wed, 05 Dec 2018 00:00:00 GMT", rule-id="3weekpurge"'] + x-amz-id-2: [I6yMyz7EfDVrYbSJhu2boMWK5x26uC2RhC6w2DEeQ7NwYSeCihUapF4rJngcekQDlvE2lBCZPFQ=] + x-amz-request-id: [8A3A5A9C7E3DADAB] x-amz-server-side-encryption: [AES256] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"project": "project-FP9k8700Px1Pvv365P3k8Zvp", "fields": + body: !!python/unicode '{"project": "project-FPbY9K8017XVX71F8q6pKGx9", "fields": {"state": true}}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k8780Px15vgj6Jkpx4b1x/describe + uri: https://api.dnanexus.com/file-FPbY9KQ017Xjq8VK339v26QP/describe response: - body: {string: !!python/unicode '{"id":"file-FP9k8780Px15vgj6Jkpx4b1x","state":"open"}'} + body: {string: !!python/unicode '{"id":"file-FPbY9KQ017Xjq8VK339v26QP","state":"open"}'} headers: connection: [keep-alive] content-length: ['53'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:24:30 GMT'] + date: ['Tue, 13 Nov 2018 20:31:55 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592670216-445197] + x-request-id: [1542141114998-110810] status: {code: 200, message: OK} - request: body: !!python/unicode '{}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k8780Px15vgj6Jkpx4b1x/close + uri: https://api.dnanexus.com/file-FPbY9KQ017Xjq8VK339v26QP/close response: - body: {string: !!python/unicode '{"id":"file-FP9k8780Px15vgj6Jkpx4b1x"}'} + body: {string: !!python/unicode '{"id":"file-FPbY9KQ017Xjq8VK339v26QP"}'} headers: connection: [keep-alive] content-length: ['38'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:24:30 GMT'] + date: ['Tue, 13 Nov 2018 20:31:55 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592670332-326335] + x-request-id: [1542141115091-32746] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"limit": 2, "name": "TestCopyTree.test_dx_dir_to_dx_root_same_project.d811c5c1", + body: !!python/unicode '{"limit": 2, "name": "TestCopyTree.test_dx_dir_to_dx_root_same_project.109777d0", "level": "VIEW"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/system/findProjects response: - body: {string: !!python/unicode '{"results":[{"id":"project-FP9k8700Px1Pvv365P3k8Zvp","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} + body: {string: !!python/unicode '{"results":[{"id":"project-FPbY9K8017XVX71F8q6pKGx9","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} headers: connection: [keep-alive] content-length: ['147'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:24:30 GMT'] + date: ['Tue, 13 Nov 2018 20:31:55 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592670460-520416] + x-request-id: [1542141115214-736559] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"includeHidden": false, "only": "folders", "folder": - "/temp_folder/another_folder", "describe": {"fields": {"name": true, "folder": - true}}}' + body: !!python/unicode '{"folder": "/temp_folder/another_folder", "describe": + {"fields": {"folder": true, "name": true}}, "only": "folders", "includeHidden": + false}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k8700Px1Pvv365P3k8Zvp/listFolder + uri: https://api.dnanexus.com/project-FPbY9K8017XVX71F8q6pKGx9/listFolder response: body: {string: !!python/unicode '{"folders":[]}'} headers: connection: [keep-alive] content-length: ['14'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:24:30 GMT'] + date: ['Tue, 13 Nov 2018 20:31:55 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592670600-543589] + x-request-id: [1542141115357-207179] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"limit": 2, "name": "TestCopyTree.test_dx_dir_to_dx_root_same_project.d811c5c1", + body: !!python/unicode '{"limit": 2, "name": "TestCopyTree.test_dx_dir_to_dx_root_same_project.109777d0", "level": "VIEW"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/system/findProjects response: - body: {string: !!python/unicode '{"results":[{"id":"project-FP9k8700Px1Pvv365P3k8Zvp","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} + body: {string: !!python/unicode '{"results":[{"id":"project-FPbY9K8017XVX71F8q6pKGx9","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} headers: connection: [keep-alive] content-length: ['147'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:24:30 GMT'] + date: ['Tue, 13 Nov 2018 20:31:55 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592670712-826545] + x-request-id: [1542141115489-538198] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"limit": 2, "name": "TestCopyTree.test_dx_dir_to_dx_root_same_project.d811c5c1", + body: !!python/unicode '{"limit": 2, "name": "TestCopyTree.test_dx_dir_to_dx_root_same_project.109777d0", "level": "VIEW"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/system/findProjects response: - body: {string: !!python/unicode '{"results":[{"id":"project-FP9k8700Px1Pvv365P3k8Zvp","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} + body: {string: !!python/unicode '{"results":[{"id":"project-FPbY9K8017XVX71F8q6pKGx9","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} headers: connection: [keep-alive] content-length: ['147'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:24:30 GMT'] + date: ['Tue, 13 Nov 2018 20:31:55 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592670861-584427] + x-request-id: [1542141115611-461687] status: {code: 200, message: OK} - request: body: !!python/unicode '{}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k8700Px1Pvv365P3k8Zvp/describe + uri: https://api.dnanexus.com/project-FPbY9K8017XVX71F8q6pKGx9/describe response: - body: {string: !!python/unicode '{"id":"project-FP9k8700Px1Pvv365P3k8Zvp","name":"TestCopyTree.test_dx_dir_to_dx_root_same_project.d811c5c1","class":"project","created":1540592668000,"modified":1540592670849,"billTo":"org-counsyl","level":"ADMINISTER","dataUsage":4.6566128730773926e-9,"sponsoredDataUsage":0,"region":"aws:us-east-1","summary":"","description":"","protected":false,"restricted":false,"downloadRestricted":false,"containsPHI":false,"createdBy":{"user":"user-akumar_counsyl"},"version":0,"storageCost":1.0244548320770262e-10,"pendingTransfer":null,"tags":[],"defaultInstanceType":"mem2_hdd2_x2","archivalState":"live","archivalProgress":null,"totalSponsoredEgressBytes":0,"consumedSponsoredEgressBytes":0,"atSpendingLimit":false}'} + body: {string: !!python/unicode '{"id":"project-FPbY9K8017XVX71F8q6pKGx9","name":"TestCopyTree.test_dx_dir_to_dx_root_same_project.109777d0","class":"project","created":1542141113000,"modified":1542141115627,"billTo":"org-counsyl","level":"ADMINISTER","dataUsage":4.6566128730773926e-9,"sponsoredDataUsage":0,"region":"aws:us-east-1","summary":"","description":"","protected":false,"restricted":false,"downloadRestricted":false,"containsPHI":false,"createdBy":{"user":"user-akumar_counsyl"},"version":0,"storageCost":1.0244548320770262e-10,"pendingTransfer":null,"tags":[],"defaultInstanceType":"mem2_hdd2_x2","archivalState":"live","archivalProgress":null,"totalSponsoredEgressBytes":0,"consumedSponsoredEgressBytes":0,"atSpendingLimit":false}'} headers: connection: [keep-alive] content-length: ['711'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:24:31 GMT'] + date: ['Tue, 13 Nov 2018 20:31:55 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592670999-368754] + x-request-id: [1542141115718-168883] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"limit": 2, "name": "TestCopyTree.test_dx_dir_to_dx_root_same_project.d811c5c1", + body: !!python/unicode '{"limit": 2, "name": "TestCopyTree.test_dx_dir_to_dx_root_same_project.109777d0", "level": "VIEW"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/system/findProjects response: - body: {string: !!python/unicode '{"results":[{"id":"project-FP9k8700Px1Pvv365P3k8Zvp","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} + body: {string: !!python/unicode '{"results":[{"id":"project-FPbY9K8017XVX71F8q6pKGx9","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} headers: connection: [keep-alive] content-length: ['147'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:24:31 GMT'] + date: ['Tue, 13 Nov 2018 20:31:55 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592671117-903456] + x-request-id: [1542141115828-515642] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"includeHidden": false, "only": "folders", "folder": - "/another_folder", "describe": {"fields": {"name": true, "folder": true}}}' + body: !!python/unicode '{"folder": "/another_folder", "describe": {"fields": {"folder": + true, "name": true}}, "only": "folders", "includeHidden": false}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k8700Px1Pvv365P3k8Zvp/listFolder + uri: https://api.dnanexus.com/project-FPbY9K8017XVX71F8q6pKGx9/listFolder response: body: {string: !!python/unicode '{"error":{"type":"ResourceNotFound","message":"The - specified folder could not be found in project-FP9k8700Px1Pvv365P3k8Zvp"}}'} + specified folder could not be found in project-FPbY9K8017XVX71F8q6pKGx9"}}'} headers: connection: [keep-alive] content-type: [application/json] - date: ['Fri, 26 Oct 2018 22:24:31 GMT'] + date: ['Tue, 13 Nov 2018 20:31:55 GMT'] server: [nginx] transfer-encoding: [chunked] vary: [Accept-Encoding] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592671294-71535] + x-request-id: [1542141115934-613443] status: {code: 404, message: Not Found} - request: body: !!python/unicode '{"folders": ["/temp_folder/another_folder"], "destination": @@ -341,101 +341,101 @@ interactions: headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k8700Px1Pvv365P3k8Zvp/move + uri: https://api.dnanexus.com/project-FPbY9K8017XVX71F8q6pKGx9/move response: - body: {string: !!python/unicode '{"id":"project-FP9k8700Px1Pvv365P3k8Zvp"}'} + body: {string: !!python/unicode '{"id":"project-FPbY9K8017XVX71F8q6pKGx9"}'} headers: connection: [keep-alive] content-length: ['41'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:24:31 GMT'] + date: ['Tue, 13 Nov 2018 20:31:56 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592671692-630675] + x-request-id: [1542141116283-562758] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"limit": 2, "name": "TestCopyTree.test_dx_dir_to_dx_root_same_project.d811c5c1", + body: !!python/unicode '{"limit": 2, "name": "TestCopyTree.test_dx_dir_to_dx_root_same_project.109777d0", "level": "VIEW"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/system/findProjects response: - body: {string: !!python/unicode '{"results":[{"id":"project-FP9k8700Px1Pvv365P3k8Zvp","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} + body: {string: !!python/unicode '{"results":[{"id":"project-FPbY9K8017XVX71F8q6pKGx9","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} headers: connection: [keep-alive] content-length: ['147'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:24:31 GMT'] + date: ['Tue, 13 Nov 2018 20:31:56 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592671834-118320] + x-request-id: [1542141116423-252766] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"objects": [{"name": "temp_file.txt", "project": "project-FP9k8700Px1Pvv365P3k8Zvp", - "batchsize": 2, "folder": "/another_folder"}]}' + body: !!python/unicode '{"objects": [{"project": "project-FPbY9K8017XVX71F8q6pKGx9", + "folder": "/another_folder", "name": "temp_file.txt", "batchsize": 2}]}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/system/resolveDataObjects response: - body: {string: !!python/unicode '{"results":[[{"project":"project-FP9k8700Px1Pvv365P3k8Zvp","id":"file-FP9k8780Px15vgj6Jkpx4b1x"}]]}'} + body: {string: !!python/unicode '{"results":[[{"project":"project-FPbY9K8017XVX71F8q6pKGx9","id":"file-FPbY9KQ017Xjq8VK339v26QP"}]]}'} headers: connection: [keep-alive] content-length: ['99'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:24:31 GMT'] + date: ['Tue, 13 Nov 2018 20:31:56 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592671967-289199] + x-request-id: [1542141116539-679943] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"project": "project-FP9k8700Px1Pvv365P3k8Zvp"}' + body: !!python/unicode '{"project": "project-FPbY9K8017XVX71F8q6pKGx9"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k8780Px15vgj6Jkpx4b1x/describe + uri: https://api.dnanexus.com/file-FPbY9KQ017Xjq8VK339v26QP/describe response: - body: {string: !!python/unicode '{"id":"file-FP9k8780Px15vgj6Jkpx4b1x","project":"project-FP9k8700Px1Pvv365P3k8Zvp","class":"file","sponsored":false,"name":"temp_file.txt","types":[],"state":"closed","hidden":false,"links":[],"folder":"/another_folder","tags":[],"created":1540592669000,"modified":1540592670849,"createdBy":{"user":"user-akumar_counsyl"},"media":"text/plain","archivalState":"live","size":5}'} + body: {string: !!python/unicode '{"id":"file-FPbY9KQ017Xjq8VK339v26QP","project":"project-FPbY9K8017XVX71F8q6pKGx9","class":"file","sponsored":false,"name":"temp_file.txt","types":[],"state":"closed","hidden":false,"links":[],"folder":"/another_folder","tags":[],"created":1542141114000,"modified":1542141115627,"createdBy":{"user":"user-akumar_counsyl"},"media":"text/plain","archivalState":"live","size":5}'} headers: connection: [keep-alive] content-length: ['375'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:24:32 GMT'] + date: ['Tue, 13 Nov 2018 20:31:56 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592672076-577916] + x-request-id: [1542141116626-296796] status: {code: 200, message: OK} - request: body: !!python/unicode '{}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k8700Px1Pvv365P3k8Zvp/destroy + uri: https://api.dnanexus.com/project-FPbY9K8017XVX71F8q6pKGx9/destroy response: - body: {string: !!python/unicode '{"id":"project-FP9k8700Px1Pvv365P3k8Zvp"}'} + body: {string: !!python/unicode '{"id":"project-FPbY9K8017XVX71F8q6pKGx9"}'} headers: connection: [keep-alive] content-length: ['41'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:24:34 GMT'] + date: ['Tue, 13 Nov 2018 20:31:59 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592672186-47136] + x-request-id: [1542141116720-216497] status: {code: 200, message: OK} version: 1 diff --git a/stor/tests/cassettes_py2/TestCopyTree/test_dx_dir_to_posix.yaml b/stor_dx/stor_dx/tests/cassettes_py2/TestCopyTree/test_dx_dir_to_posix.yaml similarity index 56% rename from stor/tests/cassettes_py2/TestCopyTree/test_dx_dir_to_posix.yaml rename to stor_dx/stor_dx/tests/cassettes_py2/TestCopyTree/test_dx_dir_to_posix.yaml index dbeb6672..a210a0cb 100644 --- a/stor/tests/cassettes_py2/TestCopyTree/test_dx_dir_to_posix.yaml +++ b/stor_dx/stor_dx/tests/cassettes_py2/TestCopyTree/test_dx_dir_to_posix.yaml @@ -1,538 +1,539 @@ interactions: - request: - body: !!python/unicode '{"name": "TestCopyTree.test_dx_dir_to_posix.af9249e2"}' + body: !!python/unicode '{"name": "TestCopyTree.test_dx_dir_to_posix.ef7d6e8b"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/project/new response: - body: {string: !!python/unicode '{"id":"project-FP9k88j0qpVPvv365P3k8Zvq"}'} + body: {string: !!python/unicode '{"id":"project-FPbY9Pj0GBXVX71F8q6pKGxB"}'} headers: connection: [keep-alive] content-length: ['41'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:24:35 GMT'] + date: ['Tue, 13 Nov 2018 20:31:59 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592675113-782495] + x-request-id: [1542141119538-645127] status: {code: 200, message: OK} - request: body: !!python/unicode '{}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k88j0qpVPvv365P3k8Zvq/describe + uri: https://api.dnanexus.com/project-FPbY9Pj0GBXVX71F8q6pKGxB/describe response: - body: {string: !!python/unicode '{"id":"project-FP9k88j0qpVPvv365P3k8Zvq","name":"TestCopyTree.test_dx_dir_to_posix.af9249e2","class":"project","created":1540592675000,"modified":1540592675000,"billTo":"org-counsyl","level":"ADMINISTER","dataUsage":0,"sponsoredDataUsage":0,"region":"aws:us-east-1","summary":"","description":"","protected":false,"restricted":false,"downloadRestricted":false,"containsPHI":false,"createdBy":{"user":"user-akumar_counsyl"},"version":0,"storageCost":0,"pendingTransfer":null,"tags":[],"defaultInstanceType":"mem2_hdd2_x2","archivalState":"live","archivalProgress":null,"totalSponsoredEgressBytes":0,"consumedSponsoredEgressBytes":0,"atSpendingLimit":false}'} + body: {string: !!python/unicode '{"id":"project-FPbY9Pj0GBXVX71F8q6pKGxB","name":"TestCopyTree.test_dx_dir_to_posix.ef7d6e8b","class":"project","created":1542141119000,"modified":1542141119000,"billTo":"org-counsyl","level":"ADMINISTER","dataUsage":0,"sponsoredDataUsage":0,"region":"aws:us-east-1","summary":"","description":"","protected":false,"restricted":false,"downloadRestricted":false,"containsPHI":false,"createdBy":{"user":"user-akumar_counsyl"},"version":0,"storageCost":0,"pendingTransfer":null,"tags":[],"defaultInstanceType":"mem2_hdd2_x2","archivalState":"live","archivalProgress":null,"totalSponsoredEgressBytes":0,"consumedSponsoredEgressBytes":0,"atSpendingLimit":false}'} headers: connection: [keep-alive] content-length: ['655'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:24:35 GMT'] + date: ['Tue, 13 Nov 2018 20:31:59 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592675230-444667] + x-request-id: [1542141119637-895925] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"parents": true, "folder": "/temp_folder"}' + body: !!python/unicode '{"folder": "/temp_folder", "parents": true}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k88j0qpVPvv365P3k8Zvq/newFolder + uri: https://api.dnanexus.com/project-FPbY9Pj0GBXVX71F8q6pKGxB/newFolder response: - body: {string: !!python/unicode '{"id":"project-FP9k88j0qpVPvv365P3k8Zvq"}'} + body: {string: !!python/unicode '{"id":"project-FPbY9Pj0GBXVX71F8q6pKGxB"}'} headers: connection: [keep-alive] content-length: ['41'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:24:35 GMT'] + date: ['Tue, 13 Nov 2018 20:31:59 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592675359-338049] + x-request-id: [1542141119742-523921] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"name": "folder_file.txt", "project": "project-FP9k88j0qpVPvv365P3k8Zvq", - "folder": "/temp_folder", "nonce": "17acba77c1d9a5d048beabbf24cec97879f79f1a0a66be1d2e7b92385c477fd11540592675.427081"}' + body: !!python/unicode '{"project": "project-FPbY9Pj0GBXVX71F8q6pKGxB", "nonce": + "0aa9e3450f0a4ee77ac1b31021f92c552a1069cb6cd754c2c17674d000d804ca1542141119.791134", + "folder": "/temp_folder", "name": "folder_file.txt"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/file/new response: - body: {string: !!python/unicode '{"id":"file-FP9k88j0qpVGf62VJp1k8pBJ"}'} + body: {string: !!python/unicode '{"id":"file-FPbY9Pj0GBXpY8FG2gJZPxBk"}'} headers: connection: [keep-alive] content-length: ['38'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:24:35 GMT'] + date: ['Tue, 13 Nov 2018 20:31:59 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592675471-445172] + x-request-id: [1542141119836-449554] status: {code: 200, message: OK} - request: body: !!python/unicode '{"fields": {"fileUploadParameters": true}}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k88j0qpVPvv365P3k8Zvq/describe + uri: https://api.dnanexus.com/project-FPbY9Pj0GBXVX71F8q6pKGxB/describe response: - body: {string: !!python/unicode '{"id":"project-FP9k88j0qpVPvv365P3k8Zvq","fileUploadParameters":{"maximumPartSize":5368709120,"minimumPartSize":5242880,"maximumFileSize":5497558138880,"maximumNumParts":10000,"emptyLastPartAllowed":true}}'} + body: {string: !!python/unicode '{"id":"project-FPbY9Pj0GBXVX71F8q6pKGxB","fileUploadParameters":{"maximumPartSize":5368709120,"minimumPartSize":5242880,"maximumFileSize":5497558138880,"maximumNumParts":10000,"emptyLastPartAllowed":true}}'} headers: connection: [keep-alive] content-length: ['205'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:24:35 GMT'] + date: ['Tue, 13 Nov 2018 20:32:00 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592675622-208853] + x-request-id: [1542141119983-36237] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"size": 4, "md5": "8d777f385d3dfec8815d20f7496026dc", - "index": 1}' + body: !!python/unicode '{"index": 1, "size": 4, "md5": "8d777f385d3dfec8815d20f7496026dc"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k88j0qpVGf62VJp1k8pBJ/upload + uri: https://api.dnanexus.com/file-FPbY9Pj0GBXpY8FG2gJZPxBk/upload response: - body: {string: !!python/unicode '{"url":"https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/44dd/file/open/file-FP9k88j0qpVGf62VJp1k8pBJ/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181026%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181026T222435Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=d056ed2986e8b6d67900561e89411d2903c77ce3165752d180f7a80a522359a5","headers":{"host":"dnanexus-platform-upload-prod.s3.amazonaws.com","content-type":"binary/octet-stream","x-amz-server-side-encryption":"AES256","content-md5":"jXd/OF09/siBXSD3SWAm3A==","content-length":"4"},"expires":1540592795745}'} + body: {string: !!python/unicode '{"url":"https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/67af/file/open/file-FPbY9Pj0GBXpY8FG2gJZPxBk/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181113%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181113T203200Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=6e14f0124db5d8b811d33f8d4d93bcec797dfddc9f8ee6bcdf9afc1c3bc402cf","headers":{"host":"dnanexus-platform-upload-prod.s3.amazonaws.com","content-type":"binary/octet-stream","x-amz-server-side-encryption":"AES256","content-md5":"jXd/OF09/siBXSD3SWAm3A==","content-length":"4"},"expires":1542141240114}'} headers: connection: [keep-alive] content-length: ['692'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:24:35 GMT'] + date: ['Tue, 13 Nov 2018 20:32:00 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592675732-716697] + x-request-id: [1542141120100-298407] status: {code: 200, message: OK} - request: body: !!python/unicode data headers: DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] content-length: ['4'] content-md5: [jXd/OF09/siBXSD3SWAm3A==] content-type: [binary/octet-stream] host: [dnanexus-platform-upload-prod.s3.amazonaws.com] x-amz-server-side-encryption: [AES256] method: PUT - uri: https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/44dd/file/open/file-FP9k88j0qpVGf62VJp1k8pBJ/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181026%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181026T222435Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=d056ed2986e8b6d67900561e89411d2903c77ce3165752d180f7a80a522359a5 + uri: https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/67af/file/open/file-FPbY9Pj0GBXpY8FG2gJZPxBk/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181113%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181113T203200Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=6e14f0124db5d8b811d33f8d4d93bcec797dfddc9f8ee6bcdf9afc1c3bc402cf response: body: {string: !!python/unicode ''} headers: content-length: ['0'] - date: ['Fri, 26 Oct 2018 22:24:37 GMT'] + date: ['Tue, 13 Nov 2018 20:32:01 GMT'] etag: ['"8d777f385d3dfec8815d20f7496026dc"'] server: [AmazonS3] - x-amz-expiration: ['expiry-date="Sat, 17 Nov 2018 00:00:00 GMT", rule-id="3weekpurge"'] - x-amz-id-2: [xWPBqnkLZJs7Bs+pNxKqHbLja4bQiSJlreB6rLW8i+BCSkbSHJgYL/7wPogOaAQ9R2tQU0WSv0c=] - x-amz-request-id: [27C541725CE35C60] + x-amz-expiration: ['expiry-date="Wed, 05 Dec 2018 00:00:00 GMT", rule-id="3weekpurge"'] + x-amz-id-2: [UmEL3oPZLaZcsEjBYSrSy3OH7Fx7lZTM0WL0aLngarujAClLWq2599Oym1Ex3iuZmNFj24MM0bA=] + x-amz-request-id: [57DA6BE7D9EB5111] x-amz-server-side-encryption: [AES256] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"project": "project-FP9k88j0qpVPvv365P3k8Zvq", "fields": + body: !!python/unicode '{"project": "project-FPbY9Pj0GBXVX71F8q6pKGxB", "fields": {"state": true}}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k88j0qpVGf62VJp1k8pBJ/describe + uri: https://api.dnanexus.com/file-FPbY9Pj0GBXpY8FG2gJZPxBk/describe response: - body: {string: !!python/unicode '{"id":"file-FP9k88j0qpVGf62VJp1k8pBJ","state":"open"}'} + body: {string: !!python/unicode '{"id":"file-FPbY9Pj0GBXpY8FG2gJZPxBk","state":"open"}'} headers: connection: [keep-alive] content-length: ['53'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:24:36 GMT'] + date: ['Tue, 13 Nov 2018 20:32:00 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592676288-911498] + x-request-id: [1542141120592-108564] status: {code: 200, message: OK} - request: body: !!python/unicode '{}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k88j0qpVGf62VJp1k8pBJ/close + uri: https://api.dnanexus.com/file-FPbY9Pj0GBXpY8FG2gJZPxBk/close response: - body: {string: !!python/unicode '{"id":"file-FP9k88j0qpVGf62VJp1k8pBJ"}'} + body: {string: !!python/unicode '{"id":"file-FPbY9Pj0GBXpY8FG2gJZPxBk"}'} headers: connection: [keep-alive] content-length: ['38'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:24:36 GMT'] + date: ['Tue, 13 Nov 2018 20:32:00 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592676402-45204] + x-request-id: [1542141120689-35339] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"project": "project-FP9k88j0qpVPvv365P3k8Zvq", "fields": + body: !!python/unicode '{"project": "project-FPbY9Pj0GBXVX71F8q6pKGxB", "fields": {"state": true}}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k88j0qpVGf62VJp1k8pBJ/describe + uri: https://api.dnanexus.com/file-FPbY9Pj0GBXpY8FG2gJZPxBk/describe response: - body: {string: !!python/unicode '{"id":"file-FP9k88j0qpVGf62VJp1k8pBJ","state":"closing"}'} + body: {string: !!python/unicode '{"id":"file-FPbY9Pj0GBXpY8FG2gJZPxBk","state":"closing"}'} headers: connection: [keep-alive] content-length: ['56'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:24:36 GMT'] + date: ['Tue, 13 Nov 2018 20:32:00 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592676542-878098] + x-request-id: [1542141120796-167057] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"project": "project-FP9k88j0qpVPvv365P3k8Zvq", "fields": + body: !!python/unicode '{"project": "project-FPbY9Pj0GBXVX71F8q6pKGxB", "fields": {"state": true}}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k88j0qpVGf62VJp1k8pBJ/describe + uri: https://api.dnanexus.com/file-FPbY9Pj0GBXpY8FG2gJZPxBk/describe response: - body: {string: !!python/unicode '{"id":"file-FP9k88j0qpVGf62VJp1k8pBJ","state":"closed"}'} + body: {string: !!python/unicode '{"id":"file-FPbY9Pj0GBXpY8FG2gJZPxBk","state":"closed"}'} headers: connection: [keep-alive] content-length: ['55'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:24:38 GMT'] + date: ['Tue, 13 Nov 2018 20:32:02 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592678661-260540] + x-request-id: [1542141122889-727620] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"parents": true, "folder": "/temp_folder/another_folder"}' + body: !!python/unicode '{"folder": "/temp_folder/another_folder", "parents": true}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k88j0qpVPvv365P3k8Zvq/newFolder + uri: https://api.dnanexus.com/project-FPbY9Pj0GBXVX71F8q6pKGxB/newFolder response: - body: {string: !!python/unicode '{"id":"project-FP9k88j0qpVPvv365P3k8Zvq"}'} + body: {string: !!python/unicode '{"id":"project-FPbY9Pj0GBXVX71F8q6pKGxB"}'} headers: connection: [keep-alive] content-length: ['41'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:24:38 GMT'] + date: ['Tue, 13 Nov 2018 20:32:03 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592678774-757550] + x-request-id: [1542141122987-146341] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"name": "temp_file.txt", "project": "project-FP9k88j0qpVPvv365P3k8Zvq", - "folder": "/temp_folder/another_folder", "nonce": "ca7c67477719223b0f2bad95359b81a697e7f60ff52febe8421e108000da765a1540592678.842272"}' + body: !!python/unicode '{"project": "project-FPbY9Pj0GBXVX71F8q6pKGxB", "nonce": + "e5907c4466ca60983049f269e6a37babf98b7507af45a01214e16814adb147ea1542141123.039334", + "folder": "/temp_folder/another_folder", "name": "temp_file.txt"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/file/new response: - body: {string: !!python/unicode '{"id":"file-FP9k89Q0qpVPvv365P3k8Zvv"}'} + body: {string: !!python/unicode '{"id":"file-FPbY9Qj0GBXkGXBB2vpY85KF"}'} headers: connection: [keep-alive] content-length: ['38'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:24:38 GMT'] + date: ['Tue, 13 Nov 2018 20:32:03 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592678886-56132] + x-request-id: [1542141123084-943120] status: {code: 200, message: OK} - request: body: !!python/unicode '{"fields": {"fileUploadParameters": true}}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k88j0qpVPvv365P3k8Zvq/describe + uri: https://api.dnanexus.com/project-FPbY9Pj0GBXVX71F8q6pKGxB/describe response: - body: {string: !!python/unicode '{"id":"project-FP9k88j0qpVPvv365P3k8Zvq","fileUploadParameters":{"maximumPartSize":5368709120,"minimumPartSize":5242880,"maximumFileSize":5497558138880,"maximumNumParts":10000,"emptyLastPartAllowed":true}}'} + body: {string: !!python/unicode '{"id":"project-FPbY9Pj0GBXVX71F8q6pKGxB","fileUploadParameters":{"maximumPartSize":5368709120,"minimumPartSize":5242880,"maximumFileSize":5497558138880,"maximumNumParts":10000,"emptyLastPartAllowed":true}}'} headers: connection: [keep-alive] content-length: ['205'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:24:39 GMT'] + date: ['Tue, 13 Nov 2018 20:32:03 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592679022-423305] + x-request-id: [1542141123216-125801] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"size": 4, "md5": "8d777f385d3dfec8815d20f7496026dc", - "index": 1}' + body: !!python/unicode '{"index": 1, "size": 4, "md5": "8d777f385d3dfec8815d20f7496026dc"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k89Q0qpVPvv365P3k8Zvv/upload + uri: https://api.dnanexus.com/file-FPbY9Qj0GBXkGXBB2vpY85KF/upload response: - body: {string: !!python/unicode '{"url":"https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/0078/file/open/file-FP9k89Q0qpVPvv365P3k8Zvv/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181026%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181026T222439Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=87e2ef518174d43d38be90ac36b4d7bdeeef3dd896368be55b93e2e10d2d1a10","headers":{"host":"dnanexus-platform-upload-prod.s3.amazonaws.com","content-type":"binary/octet-stream","x-amz-server-side-encryption":"AES256","content-md5":"jXd/OF09/siBXSD3SWAm3A==","content-length":"4"},"expires":1540592799149}'} + body: {string: !!python/unicode '{"url":"https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/714c/file/open/file-FPbY9Qj0GBXkGXBB2vpY85KF/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181113%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181113T203203Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=4da1913383ea733e0f7037341d4505f9d76a0813cd43bfee73460a7c97498f32","headers":{"host":"dnanexus-platform-upload-prod.s3.amazonaws.com","content-type":"binary/octet-stream","x-amz-server-side-encryption":"AES256","content-md5":"jXd/OF09/siBXSD3SWAm3A==","content-length":"4"},"expires":1542141243324}'} headers: connection: [keep-alive] content-length: ['692'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:24:39 GMT'] + date: ['Tue, 13 Nov 2018 20:32:03 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592679132-398827] + x-request-id: [1542141123308-742103] status: {code: 200, message: OK} - request: body: !!python/unicode data headers: DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] content-length: ['4'] content-md5: [jXd/OF09/siBXSD3SWAm3A==] content-type: [binary/octet-stream] host: [dnanexus-platform-upload-prod.s3.amazonaws.com] x-amz-server-side-encryption: [AES256] method: PUT - uri: https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/0078/file/open/file-FP9k89Q0qpVPvv365P3k8Zvv/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181026%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181026T222439Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=87e2ef518174d43d38be90ac36b4d7bdeeef3dd896368be55b93e2e10d2d1a10 + uri: https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/714c/file/open/file-FPbY9Qj0GBXkGXBB2vpY85KF/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181113%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181113T203203Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=4da1913383ea733e0f7037341d4505f9d76a0813cd43bfee73460a7c97498f32 response: body: {string: !!python/unicode ''} headers: content-length: ['0'] - date: ['Fri, 26 Oct 2018 22:24:40 GMT'] + date: ['Tue, 13 Nov 2018 20:32:04 GMT'] etag: ['"8d777f385d3dfec8815d20f7496026dc"'] server: [AmazonS3] - x-amz-expiration: ['expiry-date="Sat, 17 Nov 2018 00:00:00 GMT", rule-id="3weekpurge"'] - x-amz-id-2: [ylyN9XLfhdwPRhb4++kgzCbLCSPKS9Ra3E5wrAhVBUbx6wWcuFQIKUU5KVLI2eJ5f8+xIfCvBv8=] - x-amz-request-id: [CFD09AA357531BA7] + x-amz-expiration: ['expiry-date="Wed, 05 Dec 2018 00:00:00 GMT", rule-id="3weekpurge"'] + x-amz-id-2: [kuBYyMOxgXPyq0b57v/jdeC9wfjMvhOXxgHWIxhjzW0opt/i4wfEe6IOGMvPmRKwoBg1qlr4/9k=] + x-amz-request-id: [D8068375C8015208] x-amz-server-side-encryption: [AES256] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"project": "project-FP9k88j0qpVPvv365P3k8Zvq", "fields": + body: !!python/unicode '{"project": "project-FPbY9Pj0GBXVX71F8q6pKGxB", "fields": {"state": true}}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k89Q0qpVPvv365P3k8Zvv/describe + uri: https://api.dnanexus.com/file-FPbY9Qj0GBXkGXBB2vpY85KF/describe response: - body: {string: !!python/unicode '{"id":"file-FP9k89Q0qpVPvv365P3k8Zvv","state":"open"}'} + body: {string: !!python/unicode '{"id":"file-FPbY9Qj0GBXkGXBB2vpY85KF","state":"open"}'} headers: connection: [keep-alive] content-length: ['53'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:24:39 GMT'] + date: ['Tue, 13 Nov 2018 20:32:03 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592679420-54979] + x-request-id: [1542141123536-512639] status: {code: 200, message: OK} - request: body: !!python/unicode '{}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k89Q0qpVPvv365P3k8Zvv/close + uri: https://api.dnanexus.com/file-FPbY9Qj0GBXkGXBB2vpY85KF/close response: - body: {string: !!python/unicode '{"id":"file-FP9k89Q0qpVPvv365P3k8Zvv"}'} + body: {string: !!python/unicode '{"id":"file-FPbY9Qj0GBXkGXBB2vpY85KF"}'} headers: connection: [keep-alive] content-length: ['38'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:24:39 GMT'] + date: ['Tue, 13 Nov 2018 20:32:03 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592679535-560754] + x-request-id: [1542141123636-824795] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"project": "project-FP9k88j0qpVPvv365P3k8Zvq", "fields": + body: !!python/unicode '{"project": "project-FPbY9Pj0GBXVX71F8q6pKGxB", "fields": {"state": true}}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k89Q0qpVPvv365P3k8Zvv/describe + uri: https://api.dnanexus.com/file-FPbY9Qj0GBXkGXBB2vpY85KF/describe response: - body: {string: !!python/unicode '{"id":"file-FP9k89Q0qpVPvv365P3k8Zvv","state":"closing"}'} + body: {string: !!python/unicode '{"id":"file-FPbY9Qj0GBXkGXBB2vpY85KF","state":"closing"}'} headers: connection: [keep-alive] content-length: ['56'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:24:39 GMT'] + date: ['Tue, 13 Nov 2018 20:32:03 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592679668-376729] + x-request-id: [1542141123747-395838] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"project": "project-FP9k88j0qpVPvv365P3k8Zvq", "fields": + body: !!python/unicode '{"project": "project-FPbY9Pj0GBXVX71F8q6pKGxB", "fields": {"state": true}}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k89Q0qpVPvv365P3k8Zvv/describe + uri: https://api.dnanexus.com/file-FPbY9Qj0GBXkGXBB2vpY85KF/describe response: - body: {string: !!python/unicode '{"id":"file-FP9k89Q0qpVPvv365P3k8Zvv","state":"closed"}'} + body: {string: !!python/unicode '{"id":"file-FPbY9Qj0GBXkGXBB2vpY85KF","state":"closed"}'} headers: connection: [keep-alive] content-length: ['55'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:24:41 GMT'] + date: ['Tue, 13 Nov 2018 20:32:06 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592681795-398330] + x-request-id: [1542141126567-539907] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"limit": 2, "name": "TestCopyTree.test_dx_dir_to_posix.af9249e2", + body: !!python/unicode '{"limit": 2, "name": "TestCopyTree.test_dx_dir_to_posix.ef7d6e8b", "level": "VIEW"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/system/findProjects response: - body: {string: !!python/unicode '{"results":[{"id":"project-FP9k88j0qpVPvv365P3k8Zvq","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} + body: {string: !!python/unicode '{"results":[{"id":"project-FPbY9Pj0GBXVX71F8q6pKGxB","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} headers: connection: [keep-alive] content-length: ['147'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:24:42 GMT'] + date: ['Tue, 13 Nov 2018 20:32:07 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592681909-132181] + x-request-id: [1542141127009-96786] status: {code: 200, message: OK} - request: body: !!python/unicode '{"folders": true}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k88j0qpVPvv365P3k8Zvq/describe + uri: https://api.dnanexus.com/project-FPbY9Pj0GBXVX71F8q6pKGxB/describe response: - body: {string: !!python/unicode '{"id":"project-FP9k88j0qpVPvv365P3k8Zvq","name":"TestCopyTree.test_dx_dir_to_posix.af9249e2","class":"project","created":1540592675000,"modified":1540592679957,"billTo":"org-counsyl","level":"ADMINISTER","folders":["/","/temp_folder","/temp_folder/another_folder"],"dataUsage":7.450580596923828e-9,"sponsoredDataUsage":0,"region":"aws:us-east-1","summary":"","description":"","protected":false,"restricted":false,"downloadRestricted":false,"containsPHI":false,"createdBy":{"user":"user-akumar_counsyl"},"version":0,"storageCost":1.639127731323242e-10,"pendingTransfer":null,"tags":[],"defaultInstanceType":"mem2_hdd2_x2","archivalState":"live","archivalProgress":null,"totalSponsoredEgressBytes":0,"consumedSponsoredEgressBytes":0,"atSpendingLimit":false}'} + body: {string: !!python/unicode '{"id":"project-FPbY9Pj0GBXVX71F8q6pKGxB","name":"TestCopyTree.test_dx_dir_to_posix.ef7d6e8b","class":"project","created":1542141119000,"modified":1542141124801,"billTo":"org-counsyl","level":"ADMINISTER","folders":["/","/temp_folder","/temp_folder/another_folder"],"dataUsage":7.450580596923828e-9,"sponsoredDataUsage":0,"region":"aws:us-east-1","summary":"","description":"","protected":false,"restricted":false,"downloadRestricted":false,"containsPHI":false,"createdBy":{"user":"user-akumar_counsyl"},"version":0,"storageCost":1.639127731323242e-10,"pendingTransfer":null,"tags":[],"defaultInstanceType":"mem2_hdd2_x2","archivalState":"live","archivalProgress":null,"totalSponsoredEgressBytes":0,"consumedSponsoredEgressBytes":0,"atSpendingLimit":false}'} headers: connection: [keep-alive] content-length: ['755'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:24:42 GMT'] + date: ['Tue, 13 Nov 2018 20:32:07 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592682120-376758] + x-request-id: [1542141127344-581500] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"limit": 100, "class": "file", "scope": {"recurse": true, - "project": "project-FP9k88j0qpVPvv365P3k8Zvq", "folder": "/temp_folder"}, "state": - "closed", "describe": {"fields": {"id": true, "folder": true, "name": true}}}' + body: !!python/unicode '{"scope": {"project": "project-FPbY9Pj0GBXVX71F8q6pKGxB", + "folder": "/temp_folder", "recurse": true}, "state": "closed", "describe": {"fields": + {"folder": true, "id": true, "name": true}}, "limit": 100, "class": "file"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/system/findDataObjects response: - body: {string: !!python/unicode '{"next":null,"results":[{"project":"project-FP9k88j0qpVPvv365P3k8Zvq","id":"file-FP9k89Q0qpVPvv365P3k8Zvv","describe":{"id":"file-FP9k89Q0qpVPvv365P3k8Zvv","name":"temp_file.txt","folder":"/temp_folder/another_folder"}},{"project":"project-FP9k88j0qpVPvv365P3k8Zvq","id":"file-FP9k88j0qpVGf62VJp1k8pBJ","describe":{"id":"file-FP9k88j0qpVGf62VJp1k8pBJ","name":"folder_file.txt","folder":"/temp_folder"}}]}'} + body: {string: !!python/unicode '{"next":null,"results":[{"project":"project-FPbY9Pj0GBXVX71F8q6pKGxB","id":"file-FPbY9Qj0GBXkGXBB2vpY85KF","describe":{"id":"file-FPbY9Qj0GBXkGXBB2vpY85KF","name":"temp_file.txt","folder":"/temp_folder/another_folder"}},{"project":"project-FPbY9Pj0GBXVX71F8q6pKGxB","id":"file-FPbY9Pj0GBXpY8FG2gJZPxBk","describe":{"id":"file-FPbY9Pj0GBXpY8FG2gJZPxBk","name":"folder_file.txt","folder":"/temp_folder"}}]}'} headers: connection: [keep-alive] content-length: ['404'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:24:42 GMT'] + date: ['Tue, 13 Nov 2018 20:32:07 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592682239-134988] + x-request-id: [1542141127531-365909] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"project": "project-FP9k88j0qpVPvv365P3k8Zvq", "defaultFields": + body: !!python/unicode '{"project": "project-FPbY9Pj0GBXVX71F8q6pKGxB", "defaultFields": true, "fields": {"parts": true}}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k89Q0qpVPvv365P3k8Zvv/describe + uri: https://api.dnanexus.com/file-FPbY9Qj0GBXkGXBB2vpY85KF/describe response: - body: {string: !!python/unicode '{"id":"file-FP9k89Q0qpVPvv365P3k8Zvv","project":"project-FP9k88j0qpVPvv365P3k8Zvq","class":"file","sponsored":false,"name":"temp_file.txt","types":[],"state":"closed","hidden":false,"links":[],"folder":"/temp_folder/another_folder","tags":[],"created":1540592678000,"modified":1540592679957,"createdBy":{"user":"user-akumar_counsyl"},"media":"text/plain","archivalState":"live","parts":{"1":{"state":"complete","size":4,"md5":"8d777f385d3dfec8815d20f7496026dc"}},"size":4}'} + body: {string: !!python/unicode '{"id":"file-FPbY9Qj0GBXkGXBB2vpY85KF","project":"project-FPbY9Pj0GBXVX71F8q6pKGxB","class":"file","sponsored":false,"name":"temp_file.txt","types":[],"state":"closed","hidden":false,"links":[],"folder":"/temp_folder/another_folder","tags":[],"created":1542141123000,"modified":1542141124801,"createdBy":{"user":"user-akumar_counsyl"},"media":"text/plain","archivalState":"live","parts":{"1":{"state":"complete","size":4,"md5":"8d777f385d3dfec8815d20f7496026dc"}},"size":4}'} headers: connection: [keep-alive] content-length: ['472'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:24:42 GMT'] + date: ['Tue, 13 Nov 2018 20:32:07 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592682350-39980] + x-request-id: [1542141127713-236105] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"preauthenticated": false, "project": "project-FP9k88j0qpVPvv365P3k8Zvq"}' + body: !!python/unicode '{"project": "project-FPbY9Pj0GBXVX71F8q6pKGxB", "preauthenticated": + false}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k89Q0qpVPvv365P3k8Zvv/download + uri: https://api.dnanexus.com/file-FPbY9Qj0GBXkGXBB2vpY85KF/download response: - body: {string: !!python/unicode '{"url":"https://dl.dnanex.us/F/D2PRJ/file-FP9k89Q0qpVPvv365P3k8Zvv/project-FP9k88j0qpVPvv365P3k8Zvq","headers":{"X-Authorization":"xvikWJf5EfyoFK7ts58Kg01M23eflOAq"}}'} + body: {string: !!python/unicode '{"url":"https://dl.dnanex.us/F/D2PRJ/file-FPbY9Qj0GBXkGXBB2vpY85KF/project-FPbY9Pj0GBXVX71F8q6pKGxB","headers":{"X-Authorization":"xvikWJf5EfyoFK7ts58Kg01M23eflOAq"}}'} headers: access-control-allow-credentials: ['true'] connection: [keep-alive] content-length: ['166'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:24:42 GMT'] + date: ['Tue, 13 Nov 2018 20:32:07 GMT'] server: [nginx] set-cookie: [authorization=xvikWJf5EfyoFK7ts58Kg01M23eflOAq; Domain=dl.dnanex.us; - Path=/F/D2PRJ/file-FP9k89Q0qpVPvv365P3k8Zvv/project-FP9k88j0qpVPvv365P3k8Zvq; + Path=/F/D2PRJ/file-FPbY9Qj0GBXkGXBB2vpY85KF/project-FPbY9Pj0GBXVX71F8q6pKGxB; Max-Age=86400; HttpOnly; Secure] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592682474-151531] + x-request-id: [1542141127899-210532] status: {code: 200, message: OK} - request: body: !!python/unicode headers: DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] X-Authorization: [xvikWJf5EfyoFK7ts58Kg01M23eflOAq] method: GET - uri: https://dl.dnanex.us/F/D2PRJ/file-FP9k89Q0qpVPvv365P3k8Zvv/project-FP9k88j0qpVPvv365P3k8Zvq + uri: https://dl.dnanex.us/F/D2PRJ/file-FPbY9Qj0GBXkGXBB2vpY85KF/project-FPbY9Pj0GBXVX71F8q6pKGxB response: body: {string: !!python/unicode data} headers: @@ -543,62 +544,63 @@ interactions: content-disposition: [attachment] content-length: ['4'] content-type: [text/plain] - date: ['Fri, 26 Oct 2018 22:24:42 GMT'] - last-modified: ['Fri, 26 Oct 2018 22:24:40 GMT'] + date: ['Tue, 13 Nov 2018 20:32:08 GMT'] + last-modified: ['Tue, 13 Nov 2018 20:32:05 GMT'] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"project": "project-FP9k88j0qpVPvv365P3k8Zvq", "defaultFields": + body: !!python/unicode '{"project": "project-FPbY9Pj0GBXVX71F8q6pKGxB", "defaultFields": true, "fields": {"parts": true}}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k88j0qpVGf62VJp1k8pBJ/describe + uri: https://api.dnanexus.com/file-FPbY9Pj0GBXpY8FG2gJZPxBk/describe response: - body: {string: !!python/unicode '{"id":"file-FP9k88j0qpVGf62VJp1k8pBJ","project":"project-FP9k88j0qpVPvv365P3k8Zvq","class":"file","sponsored":false,"name":"folder_file.txt","types":[],"state":"closed","hidden":false,"links":[],"folder":"/temp_folder","tags":[],"created":1540592675000,"modified":1540592676962,"createdBy":{"user":"user-akumar_counsyl"},"media":"text/plain","archivalState":"live","parts":{"1":{"state":"complete","size":4,"md5":"8d777f385d3dfec8815d20f7496026dc"}},"size":4}'} + body: {string: !!python/unicode '{"id":"file-FPbY9Pj0GBXpY8FG2gJZPxBk","project":"project-FPbY9Pj0GBXVX71F8q6pKGxB","class":"file","sponsored":false,"name":"folder_file.txt","types":[],"state":"closed","hidden":false,"links":[],"folder":"/temp_folder","tags":[],"created":1542141119000,"modified":1542141121377,"createdBy":{"user":"user-akumar_counsyl"},"media":"text/plain","archivalState":"live","parts":{"1":{"state":"complete","size":4,"md5":"8d777f385d3dfec8815d20f7496026dc"}},"size":4}'} headers: connection: [keep-alive] content-length: ['459'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:24:43 GMT'] + date: ['Tue, 13 Nov 2018 20:32:08 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592683075-995321] + x-request-id: [1542141128971-358346] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"preauthenticated": false, "project": "project-FP9k88j0qpVPvv365P3k8Zvq"}' + body: !!python/unicode '{"project": "project-FPbY9Pj0GBXVX71F8q6pKGxB", "preauthenticated": + false}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k88j0qpVGf62VJp1k8pBJ/download + uri: https://api.dnanexus.com/file-FPbY9Pj0GBXpY8FG2gJZPxBk/download response: - body: {string: !!python/unicode '{"url":"https://dl.dnanex.us/F/D2PRJ/file-FP9k88j0qpVGf62VJp1k8pBJ/project-FP9k88j0qpVPvv365P3k8Zvq","headers":{"X-Authorization":"xvikWJf5EfyoFK7ts58Kg01M23eflOAq"}}'} + body: {string: !!python/unicode '{"url":"https://dl.dnanex.us/F/D2PRJ/file-FPbY9Pj0GBXpY8FG2gJZPxBk/project-FPbY9Pj0GBXVX71F8q6pKGxB","headers":{"X-Authorization":"xvikWJf5EfyoFK7ts58Kg01M23eflOAq"}}'} headers: access-control-allow-credentials: ['true'] connection: [keep-alive] content-length: ['166'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:24:43 GMT'] + date: ['Tue, 13 Nov 2018 20:32:09 GMT'] server: [nginx] set-cookie: [authorization=xvikWJf5EfyoFK7ts58Kg01M23eflOAq; Domain=dl.dnanex.us; - Path=/F/D2PRJ/file-FP9k88j0qpVGf62VJp1k8pBJ/project-FP9k88j0qpVPvv365P3k8Zvq; + Path=/F/D2PRJ/file-FPbY9Pj0GBXpY8FG2gJZPxBk/project-FPbY9Pj0GBXVX71F8q6pKGxB; Max-Age=86400; HttpOnly; Secure] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592683237-551415] + x-request-id: [1542141129128-122121] status: {code: 200, message: OK} - request: body: !!python/unicode headers: DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] X-Authorization: [xvikWJf5EfyoFK7ts58Kg01M23eflOAq] method: GET - uri: https://dl.dnanex.us/F/D2PRJ/file-FP9k88j0qpVGf62VJp1k8pBJ/project-FP9k88j0qpVPvv365P3k8Zvq + uri: https://dl.dnanex.us/F/D2PRJ/file-FPbY9Pj0GBXpY8FG2gJZPxBk/project-FPbY9Pj0GBXVX71F8q6pKGxB response: body: {string: !!python/unicode data} headers: @@ -609,125 +611,126 @@ interactions: content-disposition: [attachment] content-length: ['4'] content-type: [text/plain] - date: ['Fri, 26 Oct 2018 22:24:43 GMT'] - last-modified: ['Fri, 26 Oct 2018 22:24:37 GMT'] + date: ['Tue, 13 Nov 2018 20:32:09 GMT'] + last-modified: ['Tue, 13 Nov 2018 20:32:01 GMT'] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"limit": 2, "name": "TestCopyTree.test_dx_dir_to_posix.af9249e2", + body: !!python/unicode '{"limit": 2, "name": "TestCopyTree.test_dx_dir_to_posix.ef7d6e8b", "level": "VIEW"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/system/findProjects response: - body: {string: !!python/unicode '{"results":[{"id":"project-FP9k88j0qpVPvv365P3k8Zvq","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} + body: {string: !!python/unicode '{"results":[{"id":"project-FPbY9Pj0GBXVX71F8q6pKGxB","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} headers: connection: [keep-alive] content-length: ['147'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:24:43 GMT'] + date: ['Tue, 13 Nov 2018 20:32:09 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592683545-919374] + x-request-id: [1542141129712-306130] status: {code: 200, message: OK} - request: body: !!python/unicode '{"folders": true}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k88j0qpVPvv365P3k8Zvq/describe + uri: https://api.dnanexus.com/project-FPbY9Pj0GBXVX71F8q6pKGxB/describe response: - body: {string: !!python/unicode '{"id":"project-FP9k88j0qpVPvv365P3k8Zvq","name":"TestCopyTree.test_dx_dir_to_posix.af9249e2","class":"project","created":1540592675000,"modified":1540592679957,"billTo":"org-counsyl","level":"ADMINISTER","folders":["/","/temp_folder","/temp_folder/another_folder"],"dataUsage":7.450580596923828e-9,"sponsoredDataUsage":0,"region":"aws:us-east-1","summary":"","description":"","protected":false,"restricted":false,"downloadRestricted":false,"containsPHI":false,"createdBy":{"user":"user-akumar_counsyl"},"version":0,"storageCost":1.639127731323242e-10,"pendingTransfer":null,"tags":[],"defaultInstanceType":"mem2_hdd2_x2","archivalState":"live","archivalProgress":null,"totalSponsoredEgressBytes":0,"consumedSponsoredEgressBytes":0,"atSpendingLimit":false}'} + body: {string: !!python/unicode '{"id":"project-FPbY9Pj0GBXVX71F8q6pKGxB","name":"TestCopyTree.test_dx_dir_to_posix.ef7d6e8b","class":"project","created":1542141119000,"modified":1542141124801,"billTo":"org-counsyl","level":"ADMINISTER","folders":["/","/temp_folder","/temp_folder/another_folder"],"dataUsage":7.450580596923828e-9,"sponsoredDataUsage":0,"region":"aws:us-east-1","summary":"","description":"","protected":false,"restricted":false,"downloadRestricted":false,"containsPHI":false,"createdBy":{"user":"user-akumar_counsyl"},"version":0,"storageCost":1.639127731323242e-10,"pendingTransfer":null,"tags":[],"defaultInstanceType":"mem2_hdd2_x2","archivalState":"live","archivalProgress":null,"totalSponsoredEgressBytes":0,"consumedSponsoredEgressBytes":0,"atSpendingLimit":false}'} headers: connection: [keep-alive] content-length: ['755'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:24:43 GMT'] + date: ['Tue, 13 Nov 2018 20:32:09 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592683670-42979] + x-request-id: [1542141129835-991079] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"limit": 100, "class": "file", "scope": {"recurse": true, - "project": "project-FP9k88j0qpVPvv365P3k8Zvq", "folder": "/temp_folder"}, "state": - "closed", "describe": {"fields": {"id": true, "folder": true, "name": true}}}' + body: !!python/unicode '{"scope": {"project": "project-FPbY9Pj0GBXVX71F8q6pKGxB", + "folder": "/temp_folder", "recurse": true}, "state": "closed", "describe": {"fields": + {"folder": true, "id": true, "name": true}}, "limit": 100, "class": "file"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/system/findDataObjects response: - body: {string: !!python/unicode '{"next":null,"results":[{"project":"project-FP9k88j0qpVPvv365P3k8Zvq","id":"file-FP9k89Q0qpVPvv365P3k8Zvv","describe":{"id":"file-FP9k89Q0qpVPvv365P3k8Zvv","name":"temp_file.txt","folder":"/temp_folder/another_folder"}},{"project":"project-FP9k88j0qpVPvv365P3k8Zvq","id":"file-FP9k88j0qpVGf62VJp1k8pBJ","describe":{"id":"file-FP9k88j0qpVGf62VJp1k8pBJ","name":"folder_file.txt","folder":"/temp_folder"}}]}'} + body: {string: !!python/unicode '{"next":null,"results":[{"project":"project-FPbY9Pj0GBXVX71F8q6pKGxB","id":"file-FPbY9Qj0GBXkGXBB2vpY85KF","describe":{"id":"file-FPbY9Qj0GBXkGXBB2vpY85KF","name":"temp_file.txt","folder":"/temp_folder/another_folder"}},{"project":"project-FPbY9Pj0GBXVX71F8q6pKGxB","id":"file-FPbY9Pj0GBXpY8FG2gJZPxBk","describe":{"id":"file-FPbY9Pj0GBXpY8FG2gJZPxBk","name":"folder_file.txt","folder":"/temp_folder"}}]}'} headers: connection: [keep-alive] content-length: ['404'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:24:43 GMT'] + date: ['Tue, 13 Nov 2018 20:32:09 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592683804-488601] + x-request-id: [1542141129938-820854] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"project": "project-FP9k88j0qpVPvv365P3k8Zvq", "defaultFields": + body: !!python/unicode '{"project": "project-FPbY9Pj0GBXVX71F8q6pKGxB", "defaultFields": true, "fields": {"parts": true}}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k89Q0qpVPvv365P3k8Zvv/describe + uri: https://api.dnanexus.com/file-FPbY9Qj0GBXkGXBB2vpY85KF/describe response: - body: {string: !!python/unicode '{"id":"file-FP9k89Q0qpVPvv365P3k8Zvv","project":"project-FP9k88j0qpVPvv365P3k8Zvq","class":"file","sponsored":false,"name":"temp_file.txt","types":[],"state":"closed","hidden":false,"links":[],"folder":"/temp_folder/another_folder","tags":[],"created":1540592678000,"modified":1540592679957,"createdBy":{"user":"user-akumar_counsyl"},"media":"text/plain","archivalState":"live","parts":{"1":{"state":"complete","size":4,"md5":"8d777f385d3dfec8815d20f7496026dc"}},"size":4}'} + body: {string: !!python/unicode '{"id":"file-FPbY9Qj0GBXkGXBB2vpY85KF","project":"project-FPbY9Pj0GBXVX71F8q6pKGxB","class":"file","sponsored":false,"name":"temp_file.txt","types":[],"state":"closed","hidden":false,"links":[],"folder":"/temp_folder/another_folder","tags":[],"created":1542141123000,"modified":1542141124801,"createdBy":{"user":"user-akumar_counsyl"},"media":"text/plain","archivalState":"live","parts":{"1":{"state":"complete","size":4,"md5":"8d777f385d3dfec8815d20f7496026dc"}},"size":4}'} headers: connection: [keep-alive] content-length: ['472'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:24:43 GMT'] + date: ['Tue, 13 Nov 2018 20:32:10 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592683918-612194] + x-request-id: [1542141130038-714389] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"preauthenticated": false, "project": "project-FP9k88j0qpVPvv365P3k8Zvq"}' + body: !!python/unicode '{"project": "project-FPbY9Pj0GBXVX71F8q6pKGxB", "preauthenticated": + false}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k89Q0qpVPvv365P3k8Zvv/download + uri: https://api.dnanexus.com/file-FPbY9Qj0GBXkGXBB2vpY85KF/download response: - body: {string: !!python/unicode '{"url":"https://dl.dnanex.us/F/D2PRJ/file-FP9k89Q0qpVPvv365P3k8Zvv/project-FP9k88j0qpVPvv365P3k8Zvq","headers":{"X-Authorization":"xvikWJf5EfyoFK7ts58Kg01M23eflOAq"}}'} + body: {string: !!python/unicode '{"url":"https://dl.dnanex.us/F/D2PRJ/file-FPbY9Qj0GBXkGXBB2vpY85KF/project-FPbY9Pj0GBXVX71F8q6pKGxB","headers":{"X-Authorization":"xvikWJf5EfyoFK7ts58Kg01M23eflOAq"}}'} headers: access-control-allow-credentials: ['true'] connection: [keep-alive] content-length: ['166'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:24:44 GMT'] + date: ['Tue, 13 Nov 2018 20:32:10 GMT'] server: [nginx] set-cookie: [authorization=xvikWJf5EfyoFK7ts58Kg01M23eflOAq; Domain=dl.dnanex.us; - Path=/F/D2PRJ/file-FP9k89Q0qpVPvv365P3k8Zvv/project-FP9k88j0qpVPvv365P3k8Zvq; + Path=/F/D2PRJ/file-FPbY9Qj0GBXkGXBB2vpY85KF/project-FPbY9Pj0GBXVX71F8q6pKGxB; Max-Age=86400; HttpOnly; Secure] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592684038-804161] + x-request-id: [1542141130139-528368] status: {code: 200, message: OK} - request: body: !!python/unicode headers: DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] X-Authorization: [xvikWJf5EfyoFK7ts58Kg01M23eflOAq] method: GET - uri: https://dl.dnanex.us/F/D2PRJ/file-FP9k89Q0qpVPvv365P3k8Zvv/project-FP9k88j0qpVPvv365P3k8Zvq + uri: https://dl.dnanex.us/F/D2PRJ/file-FPbY9Qj0GBXkGXBB2vpY85KF/project-FPbY9Pj0GBXVX71F8q6pKGxB response: body: {string: !!python/unicode data} headers: @@ -738,62 +741,63 @@ interactions: content-disposition: [attachment] content-length: ['4'] content-type: [text/plain] - date: ['Fri, 26 Oct 2018 22:24:44 GMT'] - last-modified: ['Fri, 26 Oct 2018 22:24:40 GMT'] + date: ['Tue, 13 Nov 2018 20:32:10 GMT'] + last-modified: ['Tue, 13 Nov 2018 20:32:05 GMT'] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"project": "project-FP9k88j0qpVPvv365P3k8Zvq", "defaultFields": + body: !!python/unicode '{"project": "project-FPbY9Pj0GBXVX71F8q6pKGxB", "defaultFields": true, "fields": {"parts": true}}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k88j0qpVGf62VJp1k8pBJ/describe + uri: https://api.dnanexus.com/file-FPbY9Pj0GBXpY8FG2gJZPxBk/describe response: - body: {string: !!python/unicode '{"id":"file-FP9k88j0qpVGf62VJp1k8pBJ","project":"project-FP9k88j0qpVPvv365P3k8Zvq","class":"file","sponsored":false,"name":"folder_file.txt","types":[],"state":"closed","hidden":false,"links":[],"folder":"/temp_folder","tags":[],"created":1540592675000,"modified":1540592676962,"createdBy":{"user":"user-akumar_counsyl"},"media":"text/plain","archivalState":"live","parts":{"1":{"state":"complete","size":4,"md5":"8d777f385d3dfec8815d20f7496026dc"}},"size":4}'} + body: {string: !!python/unicode '{"id":"file-FPbY9Pj0GBXpY8FG2gJZPxBk","project":"project-FPbY9Pj0GBXVX71F8q6pKGxB","class":"file","sponsored":false,"name":"folder_file.txt","types":[],"state":"closed","hidden":false,"links":[],"folder":"/temp_folder","tags":[],"created":1542141119000,"modified":1542141121377,"createdBy":{"user":"user-akumar_counsyl"},"media":"text/plain","archivalState":"live","parts":{"1":{"state":"complete","size":4,"md5":"8d777f385d3dfec8815d20f7496026dc"}},"size":4}'} headers: connection: [keep-alive] content-length: ['459'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:24:44 GMT'] + date: ['Tue, 13 Nov 2018 20:32:10 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592684324-608748] + x-request-id: [1542141130375-968056] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"preauthenticated": false, "project": "project-FP9k88j0qpVPvv365P3k8Zvq"}' + body: !!python/unicode '{"project": "project-FPbY9Pj0GBXVX71F8q6pKGxB", "preauthenticated": + false}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k88j0qpVGf62VJp1k8pBJ/download + uri: https://api.dnanexus.com/file-FPbY9Pj0GBXpY8FG2gJZPxBk/download response: - body: {string: !!python/unicode '{"url":"https://dl.dnanex.us/F/D2PRJ/file-FP9k88j0qpVGf62VJp1k8pBJ/project-FP9k88j0qpVPvv365P3k8Zvq","headers":{"X-Authorization":"xvikWJf5EfyoFK7ts58Kg01M23eflOAq"}}'} + body: {string: !!python/unicode '{"url":"https://dl.dnanex.us/F/D2PRJ/file-FPbY9Pj0GBXpY8FG2gJZPxBk/project-FPbY9Pj0GBXVX71F8q6pKGxB","headers":{"X-Authorization":"xvikWJf5EfyoFK7ts58Kg01M23eflOAq"}}'} headers: access-control-allow-credentials: ['true'] connection: [keep-alive] content-length: ['166'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:24:44 GMT'] + date: ['Tue, 13 Nov 2018 20:32:10 GMT'] server: [nginx] set-cookie: [authorization=xvikWJf5EfyoFK7ts58Kg01M23eflOAq; Domain=dl.dnanex.us; - Path=/F/D2PRJ/file-FP9k88j0qpVGf62VJp1k8pBJ/project-FP9k88j0qpVPvv365P3k8Zvq; + Path=/F/D2PRJ/file-FPbY9Pj0GBXpY8FG2gJZPxBk/project-FPbY9Pj0GBXVX71F8q6pKGxB; Max-Age=86400; HttpOnly; Secure] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592684443-880350] + x-request-id: [1542141130479-866215] status: {code: 200, message: OK} - request: body: !!python/unicode headers: DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] X-Authorization: [xvikWJf5EfyoFK7ts58Kg01M23eflOAq] method: GET - uri: https://dl.dnanex.us/F/D2PRJ/file-FP9k88j0qpVGf62VJp1k8pBJ/project-FP9k88j0qpVPvv365P3k8Zvq + uri: https://dl.dnanex.us/F/D2PRJ/file-FPbY9Pj0GBXpY8FG2gJZPxBk/project-FPbY9Pj0GBXVX71F8q6pKGxB response: body: {string: !!python/unicode data} headers: @@ -804,90 +808,90 @@ interactions: content-disposition: [attachment] content-length: ['4'] content-type: [text/plain] - date: ['Fri, 26 Oct 2018 22:24:44 GMT'] - last-modified: ['Fri, 26 Oct 2018 22:24:37 GMT'] + date: ['Tue, 13 Nov 2018 20:32:10 GMT'] + last-modified: ['Tue, 13 Nov 2018 20:32:01 GMT'] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"limit": 2, "name": "TestCopyTree.test_dx_dir_to_posix.af9249e2", + body: !!python/unicode '{"limit": 2, "name": "TestCopyTree.test_dx_dir_to_posix.ef7d6e8b", "level": "VIEW"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/system/findProjects response: - body: {string: !!python/unicode '{"results":[{"id":"project-FP9k88j0qpVPvv365P3k8Zvq","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} + body: {string: !!python/unicode '{"results":[{"id":"project-FPbY9Pj0GBXVX71F8q6pKGxB","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} headers: connection: [keep-alive] content-length: ['147'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:24:44 GMT'] + date: ['Tue, 13 Nov 2018 20:32:10 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592684681-505662] + x-request-id: [1542141130745-495552] status: {code: 200, message: OK} - request: body: !!python/unicode '{"folders": true}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k88j0qpVPvv365P3k8Zvq/describe + uri: https://api.dnanexus.com/project-FPbY9Pj0GBXVX71F8q6pKGxB/describe response: - body: {string: !!python/unicode '{"id":"project-FP9k88j0qpVPvv365P3k8Zvq","name":"TestCopyTree.test_dx_dir_to_posix.af9249e2","class":"project","created":1540592675000,"modified":1540592679957,"billTo":"org-counsyl","level":"ADMINISTER","folders":["/","/temp_folder","/temp_folder/another_folder"],"dataUsage":7.450580596923828e-9,"sponsoredDataUsage":0,"region":"aws:us-east-1","summary":"","description":"","protected":false,"restricted":false,"downloadRestricted":false,"containsPHI":false,"createdBy":{"user":"user-akumar_counsyl"},"version":0,"storageCost":1.639127731323242e-10,"pendingTransfer":null,"tags":[],"defaultInstanceType":"mem2_hdd2_x2","archivalState":"live","archivalProgress":null,"totalSponsoredEgressBytes":0,"consumedSponsoredEgressBytes":0,"atSpendingLimit":false}'} + body: {string: !!python/unicode '{"id":"project-FPbY9Pj0GBXVX71F8q6pKGxB","name":"TestCopyTree.test_dx_dir_to_posix.ef7d6e8b","class":"project","created":1542141119000,"modified":1542141124801,"billTo":"org-counsyl","level":"ADMINISTER","folders":["/","/temp_folder","/temp_folder/another_folder"],"dataUsage":7.450580596923828e-9,"sponsoredDataUsage":0,"region":"aws:us-east-1","summary":"","description":"","protected":false,"restricted":false,"downloadRestricted":false,"containsPHI":false,"createdBy":{"user":"user-akumar_counsyl"},"version":0,"storageCost":1.639127731323242e-10,"pendingTransfer":null,"tags":[],"defaultInstanceType":"mem2_hdd2_x2","archivalState":"live","archivalProgress":null,"totalSponsoredEgressBytes":0,"consumedSponsoredEgressBytes":0,"atSpendingLimit":false}'} headers: connection: [keep-alive] content-length: ['755'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:24:44 GMT'] + date: ['Tue, 13 Nov 2018 20:32:10 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592684830-810578] + x-request-id: [1542141130849-198070] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"limit": 100, "class": "file", "scope": {"recurse": true, - "project": "project-FP9k88j0qpVPvv365P3k8Zvq", "folder": "/temp_folder"}, "state": - "closed", "describe": {"fields": {"id": true, "folder": true, "name": true}}}' + body: !!python/unicode '{"scope": {"project": "project-FPbY9Pj0GBXVX71F8q6pKGxB", + "folder": "/temp_folder", "recurse": true}, "state": "closed", "describe": {"fields": + {"folder": true, "id": true, "name": true}}, "limit": 100, "class": "file"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/system/findDataObjects response: - body: {string: !!python/unicode '{"next":null,"results":[{"project":"project-FP9k88j0qpVPvv365P3k8Zvq","id":"file-FP9k89Q0qpVPvv365P3k8Zvv","describe":{"id":"file-FP9k89Q0qpVPvv365P3k8Zvv","name":"temp_file.txt","folder":"/temp_folder/another_folder"}},{"project":"project-FP9k88j0qpVPvv365P3k8Zvq","id":"file-FP9k88j0qpVGf62VJp1k8pBJ","describe":{"id":"file-FP9k88j0qpVGf62VJp1k8pBJ","name":"folder_file.txt","folder":"/temp_folder"}}]}'} + body: {string: !!python/unicode '{"next":null,"results":[{"project":"project-FPbY9Pj0GBXVX71F8q6pKGxB","id":"file-FPbY9Qj0GBXkGXBB2vpY85KF","describe":{"id":"file-FPbY9Qj0GBXkGXBB2vpY85KF","name":"temp_file.txt","folder":"/temp_folder/another_folder"}},{"project":"project-FPbY9Pj0GBXVX71F8q6pKGxB","id":"file-FPbY9Pj0GBXpY8FG2gJZPxBk","describe":{"id":"file-FPbY9Pj0GBXpY8FG2gJZPxBk","name":"folder_file.txt","folder":"/temp_folder"}}]}'} headers: connection: [keep-alive] content-length: ['404'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:24:44 GMT'] + date: ['Tue, 13 Nov 2018 20:32:10 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592684972-857332] + x-request-id: [1542141130966-926165] status: {code: 200, message: OK} - request: body: !!python/unicode '{}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k88j0qpVPvv365P3k8Zvq/destroy + uri: https://api.dnanexus.com/project-FPbY9Pj0GBXVX71F8q6pKGxB/destroy response: - body: {string: !!python/unicode '{"id":"project-FP9k88j0qpVPvv365P3k8Zvq"}'} + body: {string: !!python/unicode '{"id":"project-FPbY9Pj0GBXVX71F8q6pKGxB"}'} headers: connection: [keep-alive] content-length: ['41'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:24:49 GMT'] + date: ['Tue, 13 Nov 2018 20:32:13 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592685091-901453] + x-request-id: [1542141131067-464567] status: {code: 200, message: OK} version: 1 diff --git a/stor/tests/cassettes_py2/TestCopyTree/test_dx_file_to_posix.yaml b/stor_dx/stor_dx/tests/cassettes_py2/TestCopyTree/test_dx_file_to_posix.yaml similarity index 54% rename from stor/tests/cassettes_py2/TestCopyTree/test_dx_file_to_posix.yaml rename to stor_dx/stor_dx/tests/cassettes_py2/TestCopyTree/test_dx_file_to_posix.yaml index 812a3ad7..bc4c9f9d 100644 --- a/stor/tests/cassettes_py2/TestCopyTree/test_dx_file_to_posix.yaml +++ b/stor_dx/stor_dx/tests/cassettes_py2/TestCopyTree/test_dx_file_to_posix.yaml @@ -1,250 +1,250 @@ interactions: - request: - body: !!python/unicode '{"name": "TestCopyTree.test_dx_file_to_posix.30454d51"}' + body: !!python/unicode '{"name": "TestCopyTree.test_dx_file_to_posix.ffcc3810"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/project/new response: - body: {string: !!python/unicode '{"id":"project-FP9k8G80PgYf67Vq40v4Ppy7"}'} + body: {string: !!python/unicode '{"id":"project-FPbY9YQ0Yv89GXBB2vpY85KJ"}'} headers: connection: [keep-alive] content-length: ['41'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:24:49 GMT'] + date: ['Tue, 13 Nov 2018 20:32:14 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592689564-804509] + x-request-id: [1542141134100-906472] status: {code: 200, message: OK} - request: body: !!python/unicode '{}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k8G80PgYf67Vq40v4Ppy7/describe + uri: https://api.dnanexus.com/project-FPbY9YQ0Yv89GXBB2vpY85KJ/describe response: - body: {string: !!python/unicode '{"id":"project-FP9k8G80PgYf67Vq40v4Ppy7","name":"TestCopyTree.test_dx_file_to_posix.30454d51","class":"project","created":1540592689000,"modified":1540592689000,"billTo":"org-counsyl","level":"ADMINISTER","dataUsage":0,"sponsoredDataUsage":0,"region":"aws:us-east-1","summary":"","description":"","protected":false,"restricted":false,"downloadRestricted":false,"containsPHI":false,"createdBy":{"user":"user-akumar_counsyl"},"version":0,"storageCost":0,"pendingTransfer":null,"tags":[],"defaultInstanceType":"mem2_hdd2_x2","archivalState":"live","archivalProgress":null,"totalSponsoredEgressBytes":0,"consumedSponsoredEgressBytes":0,"atSpendingLimit":false}'} + body: {string: !!python/unicode '{"id":"project-FPbY9YQ0Yv89GXBB2vpY85KJ","name":"TestCopyTree.test_dx_file_to_posix.ffcc3810","class":"project","created":1542141134000,"modified":1542141134000,"billTo":"org-counsyl","level":"ADMINISTER","dataUsage":0,"sponsoredDataUsage":0,"region":"aws:us-east-1","summary":"","description":"","protected":false,"restricted":false,"downloadRestricted":false,"containsPHI":false,"createdBy":{"user":"user-akumar_counsyl"},"version":0,"storageCost":0,"pendingTransfer":null,"tags":[],"defaultInstanceType":"mem2_hdd2_x2","archivalState":"live","archivalProgress":null,"totalSponsoredEgressBytes":0,"consumedSponsoredEgressBytes":0,"atSpendingLimit":false}'} headers: connection: [keep-alive] content-length: ['656'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:24:49 GMT'] + date: ['Tue, 13 Nov 2018 20:32:14 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592689700-276090] + x-request-id: [1542141134216-108142] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"parents": true, "folder": "/temp_folder"}' + body: !!python/unicode '{"folder": "/temp_folder", "parents": true}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k8G80PgYf67Vq40v4Ppy7/newFolder + uri: https://api.dnanexus.com/project-FPbY9YQ0Yv89GXBB2vpY85KJ/newFolder response: - body: {string: !!python/unicode '{"id":"project-FP9k8G80PgYf67Vq40v4Ppy7"}'} + body: {string: !!python/unicode '{"id":"project-FPbY9YQ0Yv89GXBB2vpY85KJ"}'} headers: connection: [keep-alive] content-length: ['41'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:24:49 GMT'] + date: ['Tue, 13 Nov 2018 20:32:14 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592689822-989395] + x-request-id: [1542141134339-539979] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"name": "folder_file.txt", "project": "project-FP9k8G80PgYf67Vq40v4Ppy7", - "folder": "/temp_folder", "nonce": "54b77ac1edeba1b6655bf1d8fa1b40781933b8104ebd76ae0abc0a34065e091e1540592689.958302"}' + body: !!python/unicode '{"project": "project-FPbY9YQ0Yv89GXBB2vpY85KJ", "nonce": + "0b7aaca43ed1a89c785b0f364481ee10de032e1240c5711dafda3100ea3457c71542141134.390521", + "folder": "/temp_folder", "name": "folder_file.txt"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/file/new response: - body: {string: !!python/unicode '{"id":"file-FP9k8GQ0PgYbYj5j40f25Z03"}'} + body: {string: !!python/unicode '{"id":"file-FPbY9YQ0Yv81X71F8q6pKGxF"}'} headers: connection: [keep-alive] content-length: ['38'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:24:50 GMT'] + date: ['Tue, 13 Nov 2018 20:32:14 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592690002-224730] + x-request-id: [1542141134434-26876] status: {code: 200, message: OK} - request: body: !!python/unicode '{"fields": {"fileUploadParameters": true}}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k8G80PgYf67Vq40v4Ppy7/describe + uri: https://api.dnanexus.com/project-FPbY9YQ0Yv89GXBB2vpY85KJ/describe response: - body: {string: !!python/unicode '{"id":"project-FP9k8G80PgYf67Vq40v4Ppy7","fileUploadParameters":{"maximumPartSize":5368709120,"minimumPartSize":5242880,"maximumFileSize":5497558138880,"maximumNumParts":10000,"emptyLastPartAllowed":true}}'} + body: {string: !!python/unicode '{"id":"project-FPbY9YQ0Yv89GXBB2vpY85KJ","fileUploadParameters":{"maximumPartSize":5368709120,"minimumPartSize":5242880,"maximumFileSize":5497558138880,"maximumNumParts":10000,"emptyLastPartAllowed":true}}'} headers: connection: [keep-alive] content-length: ['205'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:24:50 GMT'] + date: ['Tue, 13 Nov 2018 20:32:14 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592690150-797539] + x-request-id: [1542141134603-817111] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"size": 5, "md5": "73dfff57fe24e807bd4fb1bc4e07cd73", - "index": 1}' + body: !!python/unicode '{"index": 1, "size": 5, "md5": "73dfff57fe24e807bd4fb1bc4e07cd73"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k8GQ0PgYbYj5j40f25Z03/upload + uri: https://api.dnanexus.com/file-FPbY9YQ0Yv81X71F8q6pKGxF/upload response: - body: {string: !!python/unicode '{"url":"https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/c526/file/open/file-FP9k8GQ0PgYbYj5j40f25Z03/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181026%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181026T222450Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=880d334f76d06421486bb2918f01d91cc2f2c9671be39af72b7fa4a9659a7640","headers":{"host":"dnanexus-platform-upload-prod.s3.amazonaws.com","content-type":"binary/octet-stream","x-amz-server-side-encryption":"AES256","content-md5":"c9//V/4k6Ae9T7G8TgfNcw==","content-length":"5"},"expires":1540592810270}'} + body: {string: !!python/unicode '{"url":"https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/5178/file/open/file-FPbY9YQ0Yv81X71F8q6pKGxF/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181113%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181113T203214Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=0d99af812c74122b5e8f36eb8b4b31be1febb5cb8a9c9fbaaa40d113b37de693","headers":{"host":"dnanexus-platform-upload-prod.s3.amazonaws.com","content-type":"binary/octet-stream","x-amz-server-side-encryption":"AES256","content-md5":"c9//V/4k6Ae9T7G8TgfNcw==","content-length":"5"},"expires":1542141254715}'} headers: connection: [keep-alive] content-length: ['692'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:24:50 GMT'] + date: ['Tue, 13 Nov 2018 20:32:14 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592690255-855865] + x-request-id: [1542141134700-368135] status: {code: 200, message: OK} - request: body: !!python/unicode data0 headers: DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] content-length: ['5'] content-md5: [c9//V/4k6Ae9T7G8TgfNcw==] content-type: [binary/octet-stream] host: [dnanexus-platform-upload-prod.s3.amazonaws.com] x-amz-server-side-encryption: [AES256] method: PUT - uri: https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/c526/file/open/file-FP9k8GQ0PgYbYj5j40f25Z03/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181026%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181026T222450Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=880d334f76d06421486bb2918f01d91cc2f2c9671be39af72b7fa4a9659a7640 + uri: https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/5178/file/open/file-FPbY9YQ0Yv81X71F8q6pKGxF/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181113%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181113T203214Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=0d99af812c74122b5e8f36eb8b4b31be1febb5cb8a9c9fbaaa40d113b37de693 response: body: {string: !!python/unicode ''} headers: content-length: ['0'] - date: ['Fri, 26 Oct 2018 22:24:51 GMT'] + date: ['Tue, 13 Nov 2018 20:32:16 GMT'] etag: ['"73dfff57fe24e807bd4fb1bc4e07cd73"'] server: [AmazonS3] - x-amz-expiration: ['expiry-date="Sat, 17 Nov 2018 00:00:00 GMT", rule-id="3weekpurge"'] - x-amz-id-2: [JWEtq4GPujwL7cDuu4khKbio5Km2f3UyXqIQ/HWsHvKKP5Tw902fGlYsRjkLC4iyheTo0SRuinc=] - x-amz-request-id: [56D09DD457A2101B] + x-amz-expiration: ['expiry-date="Wed, 05 Dec 2018 00:00:00 GMT", rule-id="3weekpurge"'] + x-amz-id-2: [Olia/ShRMcg/keSHY4d796ggmjaRNgm0pNmCXOCccKiNHH84czqL8JIhxo0vHiTvFAULThsMdgI=] + x-amz-request-id: [2B59E8DC0F675FDD] x-amz-server-side-encryption: [AES256] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"project": "project-FP9k8G80PgYf67Vq40v4Ppy7", "fields": + body: !!python/unicode '{"project": "project-FPbY9YQ0Yv89GXBB2vpY85KJ", "fields": {"state": true}}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k8GQ0PgYbYj5j40f25Z03/describe + uri: https://api.dnanexus.com/file-FPbY9YQ0Yv81X71F8q6pKGxF/describe response: - body: {string: !!python/unicode '{"id":"file-FP9k8GQ0PgYbYj5j40f25Z03","state":"open"}'} + body: {string: !!python/unicode '{"id":"file-FPbY9YQ0Yv81X71F8q6pKGxF","state":"open"}'} headers: connection: [keep-alive] content-length: ['53'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:24:50 GMT'] + date: ['Tue, 13 Nov 2018 20:32:15 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592690800-438874] + x-request-id: [1542141135150-816022] status: {code: 200, message: OK} - request: body: !!python/unicode '{}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k8GQ0PgYbYj5j40f25Z03/close + uri: https://api.dnanexus.com/file-FPbY9YQ0Yv81X71F8q6pKGxF/close response: - body: {string: !!python/unicode '{"id":"file-FP9k8GQ0PgYbYj5j40f25Z03"}'} + body: {string: !!python/unicode '{"id":"file-FPbY9YQ0Yv81X71F8q6pKGxF"}'} headers: connection: [keep-alive] content-length: ['38'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:24:50 GMT'] + date: ['Tue, 13 Nov 2018 20:32:15 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592690906-742918] + x-request-id: [1542141135258-832928] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"limit": 2, "name": "TestCopyTree.test_dx_file_to_posix.30454d51", + body: !!python/unicode '{"limit": 2, "name": "TestCopyTree.test_dx_file_to_posix.ffcc3810", "level": "VIEW"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/system/findProjects response: - body: {string: !!python/unicode '{"results":[{"id":"project-FP9k8G80PgYf67Vq40v4Ppy7","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} + body: {string: !!python/unicode '{"results":[{"id":"project-FPbY9YQ0Yv89GXBB2vpY85KJ","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} headers: connection: [keep-alive] content-length: ['147'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:24:51 GMT'] + date: ['Tue, 13 Nov 2018 20:32:15 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592691028-222984] + x-request-id: [1542141135448-739846] status: {code: 200, message: OK} - request: body: !!python/unicode '{"folders": true}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k8G80PgYf67Vq40v4Ppy7/describe + uri: https://api.dnanexus.com/project-FPbY9YQ0Yv89GXBB2vpY85KJ/describe response: - body: {string: !!python/unicode '{"id":"project-FP9k8G80PgYf67Vq40v4Ppy7","name":"TestCopyTree.test_dx_file_to_posix.30454d51","class":"project","created":1540592689000,"modified":1540592690919,"billTo":"org-counsyl","level":"ADMINISTER","folders":["/","/temp_folder"],"dataUsage":0,"sponsoredDataUsage":0,"region":"aws:us-east-1","summary":"","description":"","protected":false,"restricted":false,"downloadRestricted":false,"containsPHI":false,"createdBy":{"user":"user-akumar_counsyl"},"version":0,"storageCost":0,"pendingTransfer":null,"tags":[],"defaultInstanceType":"mem2_hdd2_x2","archivalState":"live","archivalProgress":null,"totalSponsoredEgressBytes":0,"consumedSponsoredEgressBytes":0,"atSpendingLimit":false}'} + body: {string: !!python/unicode '{"id":"project-FPbY9YQ0Yv89GXBB2vpY85KJ","name":"TestCopyTree.test_dx_file_to_posix.ffcc3810","class":"project","created":1542141134000,"modified":1542141135398,"billTo":"org-counsyl","level":"ADMINISTER","folders":["/","/temp_folder"],"dataUsage":4.6566128730773926e-9,"sponsoredDataUsage":0,"region":"aws:us-east-1","summary":"","description":"","protected":false,"restricted":false,"downloadRestricted":false,"containsPHI":false,"createdBy":{"user":"user-akumar_counsyl"},"version":0,"storageCost":1.0244548320770262e-10,"pendingTransfer":null,"tags":[],"defaultInstanceType":"mem2_hdd2_x2","archivalState":"live","archivalProgress":null,"totalSponsoredEgressBytes":0,"consumedSponsoredEgressBytes":0,"atSpendingLimit":false}'} headers: connection: [keep-alive] - content-length: ['687'] + content-length: ['728'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:24:51 GMT'] + date: ['Tue, 13 Nov 2018 20:32:15 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592691320-224913] + x-request-id: [1542141135565-898571] status: {code: 200, message: OK} - request: body: !!python/unicode '{}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k8G80PgYf67Vq40v4Ppy7/destroy + uri: https://api.dnanexus.com/project-FPbY9YQ0Yv89GXBB2vpY85KJ/destroy response: - body: {string: !!python/unicode '{"id":"project-FP9k8G80PgYf67Vq40v4Ppy7"}'} + body: {string: !!python/unicode '{"id":"project-FPbY9YQ0Yv89GXBB2vpY85KJ"}'} headers: connection: [keep-alive] content-length: ['41'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:24:53 GMT'] + date: ['Tue, 13 Nov 2018 20:32:18 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592691433-562369] + x-request-id: [1542141135679-123712] status: {code: 200, message: OK} version: 1 diff --git a/stor/tests/cassettes_py2/TestCopyTree/test_dx_root_to_dx_dir.yaml b/stor_dx/stor_dx/tests/cassettes_py2/TestCopyTree/test_dx_root_to_dx_dir.yaml similarity index 56% rename from stor/tests/cassettes_py2/TestCopyTree/test_dx_root_to_dx_dir.yaml rename to stor_dx/stor_dx/tests/cassettes_py2/TestCopyTree/test_dx_root_to_dx_dir.yaml index e125e222..a67e2ef0 100644 --- a/stor/tests/cassettes_py2/TestCopyTree/test_dx_root_to_dx_dir.yaml +++ b/stor_dx/stor_dx/tests/cassettes_py2/TestCopyTree/test_dx_root_to_dx_dir.yaml @@ -1,482 +1,482 @@ interactions: - request: - body: !!python/unicode '{"name": "TestCopyTree.test_dx_root_to_dx_dir.3b19b67b"}' + body: !!python/unicode '{"name": "TestCopyTree.test_dx_root_to_dx_dir.c72eb00d"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/project/new response: - body: {string: !!python/unicode '{"id":"project-FP9k8JQ0v6GxgPpv68VQGGgV"}'} + body: {string: !!python/unicode '{"id":"project-FPbY9Zj0xqbBY8FG2gJZPxBx"}'} headers: connection: [keep-alive] content-length: ['41'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:24:54 GMT'] + date: ['Tue, 13 Nov 2018 20:32:19 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592694356-345809] + x-request-id: [1542141139018-927207] status: {code: 200, message: OK} - request: body: !!python/unicode '{}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k8JQ0v6GxgPpv68VQGGgV/describe + uri: https://api.dnanexus.com/project-FPbY9Zj0xqbBY8FG2gJZPxBx/describe response: - body: {string: !!python/unicode '{"id":"project-FP9k8JQ0v6GxgPpv68VQGGgV","name":"TestCopyTree.test_dx_root_to_dx_dir.3b19b67b","class":"project","created":1540592694000,"modified":1540592694000,"billTo":"org-counsyl","level":"ADMINISTER","dataUsage":0,"sponsoredDataUsage":0,"region":"aws:us-east-1","summary":"","description":"","protected":false,"restricted":false,"downloadRestricted":false,"containsPHI":false,"createdBy":{"user":"user-akumar_counsyl"},"version":0,"storageCost":0,"pendingTransfer":null,"tags":[],"defaultInstanceType":"mem2_hdd2_x2","archivalState":"live","archivalProgress":null,"totalSponsoredEgressBytes":0,"consumedSponsoredEgressBytes":0,"atSpendingLimit":false}'} + body: {string: !!python/unicode '{"id":"project-FPbY9Zj0xqbBY8FG2gJZPxBx","name":"TestCopyTree.test_dx_root_to_dx_dir.c72eb00d","class":"project","created":1542141139000,"modified":1542141139000,"billTo":"org-counsyl","level":"ADMINISTER","dataUsage":0,"sponsoredDataUsage":0,"region":"aws:us-east-1","summary":"","description":"","protected":false,"restricted":false,"downloadRestricted":false,"containsPHI":false,"createdBy":{"user":"user-akumar_counsyl"},"version":0,"storageCost":0,"pendingTransfer":null,"tags":[],"defaultInstanceType":"mem2_hdd2_x2","archivalState":"live","archivalProgress":null,"totalSponsoredEgressBytes":0,"consumedSponsoredEgressBytes":0,"atSpendingLimit":false}'} headers: connection: [keep-alive] content-length: ['657'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:24:54 GMT'] + date: ['Tue, 13 Nov 2018 20:32:19 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592694487-419711] + x-request-id: [1542141139134-127146] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"parents": true, "folder": "/temp_folder"}' + body: !!python/unicode '{"folder": "/temp_folder", "parents": true}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k8JQ0v6GxgPpv68VQGGgV/newFolder + uri: https://api.dnanexus.com/project-FPbY9Zj0xqbBY8FG2gJZPxBx/newFolder response: - body: {string: !!python/unicode '{"id":"project-FP9k8JQ0v6GxgPpv68VQGGgV"}'} + body: {string: !!python/unicode '{"id":"project-FPbY9Zj0xqbBY8FG2gJZPxBx"}'} headers: connection: [keep-alive] content-length: ['41'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:24:54 GMT'] + date: ['Tue, 13 Nov 2018 20:32:19 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592694614-12146] + x-request-id: [1542141139248-592725] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"name": "folder_file", "project": "project-FP9k8JQ0v6GxgPpv68VQGGgV", - "folder": "/temp_folder", "nonce": "faebec758f0cd3b896ef808b26a4e3e204e6725882d5a79738e5a11268906eaf1540592694.676412"}' + body: !!python/unicode '{"project": "project-FPbY9Zj0xqbBY8FG2gJZPxBx", "nonce": + "69d1b49c508aee94f5184b97eca348de59681e43d70fab2323680f4646e60ce91542141139.300709", + "folder": "/temp_folder", "name": "folder_file"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/file/new response: - body: {string: !!python/unicode '{"id":"file-FP9k8JQ0v6Gf8ZBP51xK284Y"}'} + body: {string: !!python/unicode '{"id":"file-FPbY9Zj0xqb8q8VK339v26QV"}'} headers: connection: [keep-alive] content-length: ['38'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:24:54 GMT'] + date: ['Tue, 13 Nov 2018 20:32:19 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592694721-922328] + x-request-id: [1542141139351-275038] status: {code: 200, message: OK} - request: body: !!python/unicode '{"fields": {"fileUploadParameters": true}}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k8JQ0v6GxgPpv68VQGGgV/describe + uri: https://api.dnanexus.com/project-FPbY9Zj0xqbBY8FG2gJZPxBx/describe response: - body: {string: !!python/unicode '{"id":"project-FP9k8JQ0v6GxgPpv68VQGGgV","fileUploadParameters":{"maximumPartSize":5368709120,"minimumPartSize":5242880,"maximumFileSize":5497558138880,"maximumNumParts":10000,"emptyLastPartAllowed":true}}'} + body: {string: !!python/unicode '{"id":"project-FPbY9Zj0xqbBY8FG2gJZPxBx","fileUploadParameters":{"maximumPartSize":5368709120,"minimumPartSize":5242880,"maximumFileSize":5497558138880,"maximumNumParts":10000,"emptyLastPartAllowed":true}}'} headers: connection: [keep-alive] content-length: ['205'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:24:54 GMT'] + date: ['Tue, 13 Nov 2018 20:32:19 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592694865-857101] + x-request-id: [1542141139556-506424] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"size": 4, "md5": "8d777f385d3dfec8815d20f7496026dc", - "index": 1}' + body: !!python/unicode '{"index": 1, "size": 4, "md5": "8d777f385d3dfec8815d20f7496026dc"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k8JQ0v6Gf8ZBP51xK284Y/upload + uri: https://api.dnanexus.com/file-FPbY9Zj0xqb8q8VK339v26QV/upload response: - body: {string: !!python/unicode '{"url":"https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/4feb/file/open/file-FP9k8JQ0v6Gf8ZBP51xK284Y/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181026%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181026T222454Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=95b9bd792e16a52af45f8cdbdf2ef6ea0ad3c6e4eacc0f488d0c1d70499e3f10","headers":{"host":"dnanexus-platform-upload-prod.s3.amazonaws.com","content-type":"binary/octet-stream","x-amz-server-side-encryption":"AES256","content-md5":"jXd/OF09/siBXSD3SWAm3A==","content-length":"4"},"expires":1540592814987}'} + body: {string: !!python/unicode '{"url":"https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/5182/file/open/file-FPbY9Zj0xqb8q8VK339v26QV/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181113%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181113T203219Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=8214af8abee11a7df752197817edda577078501a81c7e96d7f4327b144212471","headers":{"host":"dnanexus-platform-upload-prod.s3.amazonaws.com","content-type":"binary/octet-stream","x-amz-server-side-encryption":"AES256","content-md5":"jXd/OF09/siBXSD3SWAm3A==","content-length":"4"},"expires":1542141259659}'} headers: connection: [keep-alive] content-length: ['692'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:24:54 GMT'] + date: ['Tue, 13 Nov 2018 20:32:19 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592694976-791209] + x-request-id: [1542141139647-736887] status: {code: 200, message: OK} - request: body: !!python/unicode data headers: DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] content-length: ['4'] content-md5: [jXd/OF09/siBXSD3SWAm3A==] content-type: [binary/octet-stream] host: [dnanexus-platform-upload-prod.s3.amazonaws.com] x-amz-server-side-encryption: [AES256] method: PUT - uri: https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/4feb/file/open/file-FP9k8JQ0v6Gf8ZBP51xK284Y/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181026%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181026T222454Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=95b9bd792e16a52af45f8cdbdf2ef6ea0ad3c6e4eacc0f488d0c1d70499e3f10 + uri: https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/5182/file/open/file-FPbY9Zj0xqb8q8VK339v26QV/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181113%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181113T203219Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=8214af8abee11a7df752197817edda577078501a81c7e96d7f4327b144212471 response: body: {string: !!python/unicode ''} headers: content-length: ['0'] - date: ['Fri, 26 Oct 2018 22:24:56 GMT'] + date: ['Tue, 13 Nov 2018 20:32:20 GMT'] etag: ['"8d777f385d3dfec8815d20f7496026dc"'] server: [AmazonS3] - x-amz-expiration: ['expiry-date="Sat, 17 Nov 2018 00:00:00 GMT", rule-id="3weekpurge"'] - x-amz-id-2: [0uc5ay4VZLd6Z42Gf0Q0RQH7kJ9r5ivplZebO7V1sYYzgalKd2BT5sQNLg18Muy3lPIZRCWic7A=] - x-amz-request-id: [10B28C25AC4CA003] + x-amz-expiration: ['expiry-date="Wed, 05 Dec 2018 00:00:00 GMT", rule-id="3weekpurge"'] + x-amz-id-2: [jaeDfQuiDhukjLKtH3WIRvFCXXSrRK5ON5ooXZvsdaLCptDvXM4HpEwzvnD6c/a5SmrWnEHimOY=] + x-amz-request-id: [729282AB4815FD58] x-amz-server-side-encryption: [AES256] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"project": "project-FP9k8JQ0v6GxgPpv68VQGGgV", "fields": + body: !!python/unicode '{"project": "project-FPbY9Zj0xqbBY8FG2gJZPxBx", "fields": {"state": true}}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k8JQ0v6Gf8ZBP51xK284Y/describe + uri: https://api.dnanexus.com/file-FPbY9Zj0xqb8q8VK339v26QV/describe response: - body: {string: !!python/unicode '{"id":"file-FP9k8JQ0v6Gf8ZBP51xK284Y","state":"open"}'} + body: {string: !!python/unicode '{"id":"file-FPbY9Zj0xqb8q8VK339v26QV","state":"open"}'} headers: connection: [keep-alive] content-length: ['53'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:24:55 GMT'] + date: ['Tue, 13 Nov 2018 20:32:20 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592695582-288660] + x-request-id: [1542141140144-413687] status: {code: 200, message: OK} - request: body: !!python/unicode '{}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k8JQ0v6Gf8ZBP51xK284Y/close + uri: https://api.dnanexus.com/file-FPbY9Zj0xqb8q8VK339v26QV/close response: - body: {string: !!python/unicode '{"id":"file-FP9k8JQ0v6Gf8ZBP51xK284Y"}'} + body: {string: !!python/unicode '{"id":"file-FPbY9Zj0xqb8q8VK339v26QV"}'} headers: connection: [keep-alive] content-length: ['38'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:24:55 GMT'] + date: ['Tue, 13 Nov 2018 20:32:20 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592695695-237115] + x-request-id: [1542141140287-428815] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"project": "project-FP9k8JQ0v6GxgPpv68VQGGgV", "fields": + body: !!python/unicode '{"project": "project-FPbY9Zj0xqbBY8FG2gJZPxBx", "fields": {"state": true}}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k8JQ0v6Gf8ZBP51xK284Y/describe + uri: https://api.dnanexus.com/file-FPbY9Zj0xqb8q8VK339v26QV/describe response: - body: {string: !!python/unicode '{"id":"file-FP9k8JQ0v6Gf8ZBP51xK284Y","state":"closing"}'} + body: {string: !!python/unicode '{"id":"file-FPbY9Zj0xqb8q8VK339v26QV","state":"closing"}'} headers: connection: [keep-alive] content-length: ['56'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:24:55 GMT'] + date: ['Tue, 13 Nov 2018 20:32:20 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592695852-349195] + x-request-id: [1542141140435-304120] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"project": "project-FP9k8JQ0v6GxgPpv68VQGGgV", "fields": + body: !!python/unicode '{"project": "project-FPbY9Zj0xqbBY8FG2gJZPxBx", "fields": {"state": true}}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k8JQ0v6Gf8ZBP51xK284Y/describe + uri: https://api.dnanexus.com/file-FPbY9Zj0xqb8q8VK339v26QV/describe response: - body: {string: !!python/unicode '{"id":"file-FP9k8JQ0v6Gf8ZBP51xK284Y","state":"closed"}'} + body: {string: !!python/unicode '{"id":"file-FPbY9Zj0xqb8q8VK339v26QV","state":"closed"}'} headers: connection: [keep-alive] content-length: ['55'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:24:58 GMT'] + date: ['Tue, 13 Nov 2018 20:32:22 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592697981-88090] + x-request-id: [1542141142533-77314] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"parents": true, "folder": "/temp_folder/another_folder"}' + body: !!python/unicode '{"folder": "/temp_folder/another_folder", "parents": true}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k8JQ0v6GxgPpv68VQGGgV/newFolder + uri: https://api.dnanexus.com/project-FPbY9Zj0xqbBY8FG2gJZPxBx/newFolder response: - body: {string: !!python/unicode '{"id":"project-FP9k8JQ0v6GxgPpv68VQGGgV"}'} + body: {string: !!python/unicode '{"id":"project-FPbY9Zj0xqbBY8FG2gJZPxBx"}'} headers: connection: [keep-alive] content-length: ['41'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:24:58 GMT'] + date: ['Tue, 13 Nov 2018 20:32:22 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592698111-445730] + x-request-id: [1542141142634-507599] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"name": "temp_file.txt", "project": "project-FP9k8JQ0v6GxgPpv68VQGGgV", - "folder": "/temp_folder/another_folder", "nonce": "5eab48abf46ba5f9d9def893adde0254abc21cab85fa2c6f70153f67b0180de71540592698.184701"}' + body: !!python/unicode '{"project": "project-FPbY9Zj0xqbBY8FG2gJZPxBx", "nonce": + "fcf35eda7a19c3bebbb5a14e8b324fa25a649e5b3c1524d7dd9893c2ae461fff1542141142.685249", + "folder": "/temp_folder/another_folder", "name": "temp_file.txt"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/file/new response: - body: {string: !!python/unicode '{"id":"file-FP9k8KQ0v6Gf8ZBP51xK284b"}'} + body: {string: !!python/unicode '{"id":"file-FPbY9bQ0xqb8B942900j3yYY"}'} headers: connection: [keep-alive] content-length: ['38'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:24:58 GMT'] + date: ['Tue, 13 Nov 2018 20:32:22 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592698234-141299] + x-request-id: [1542141142728-657436] status: {code: 200, message: OK} - request: body: !!python/unicode '{"fields": {"fileUploadParameters": true}}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k8JQ0v6GxgPpv68VQGGgV/describe + uri: https://api.dnanexus.com/project-FPbY9Zj0xqbBY8FG2gJZPxBx/describe response: - body: {string: !!python/unicode '{"id":"project-FP9k8JQ0v6GxgPpv68VQGGgV","fileUploadParameters":{"maximumPartSize":5368709120,"minimumPartSize":5242880,"maximumFileSize":5497558138880,"maximumNumParts":10000,"emptyLastPartAllowed":true}}'} + body: {string: !!python/unicode '{"id":"project-FPbY9Zj0xqbBY8FG2gJZPxBx","fileUploadParameters":{"maximumPartSize":5368709120,"minimumPartSize":5242880,"maximumFileSize":5497558138880,"maximumNumParts":10000,"emptyLastPartAllowed":true}}'} headers: connection: [keep-alive] content-length: ['205'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:24:58 GMT'] + date: ['Tue, 13 Nov 2018 20:32:22 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592698392-920949] + x-request-id: [1542141142853-934429] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"size": 4, "md5": "8d777f385d3dfec8815d20f7496026dc", - "index": 1}' + body: !!python/unicode '{"index": 1, "size": 4, "md5": "8d777f385d3dfec8815d20f7496026dc"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k8KQ0v6Gf8ZBP51xK284b/upload + uri: https://api.dnanexus.com/file-FPbY9bQ0xqb8B942900j3yYY/upload response: - body: {string: !!python/unicode '{"url":"https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/384a/file/open/file-FP9k8KQ0v6Gf8ZBP51xK284b/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181026%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181026T222458Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=f194c3c7f38cca11dacacf3f6a1eef898dbe34d936a7c69715b7bc2a5f7db37f","headers":{"host":"dnanexus-platform-upload-prod.s3.amazonaws.com","content-type":"binary/octet-stream","x-amz-server-side-encryption":"AES256","content-md5":"jXd/OF09/siBXSD3SWAm3A==","content-length":"4"},"expires":1540592818518}'} + body: {string: !!python/unicode '{"url":"https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/4247/file/open/file-FPbY9bQ0xqb8B942900j3yYY/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181113%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181113T203222Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=b2f781d0a68905644dc6ddcfb3cf63d54da5ee23a2abc2fe966833fc6bdec928","headers":{"host":"dnanexus-platform-upload-prod.s3.amazonaws.com","content-type":"binary/octet-stream","x-amz-server-side-encryption":"AES256","content-md5":"jXd/OF09/siBXSD3SWAm3A==","content-length":"4"},"expires":1542141262958}'} headers: connection: [keep-alive] content-length: ['692'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:24:58 GMT'] + date: ['Tue, 13 Nov 2018 20:32:22 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592698502-411507] + x-request-id: [1542141142941-794919] status: {code: 200, message: OK} - request: body: !!python/unicode data headers: DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] content-length: ['4'] content-md5: [jXd/OF09/siBXSD3SWAm3A==] content-type: [binary/octet-stream] host: [dnanexus-platform-upload-prod.s3.amazonaws.com] x-amz-server-side-encryption: [AES256] method: PUT - uri: https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/384a/file/open/file-FP9k8KQ0v6Gf8ZBP51xK284b/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181026%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181026T222458Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=f194c3c7f38cca11dacacf3f6a1eef898dbe34d936a7c69715b7bc2a5f7db37f + uri: https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/4247/file/open/file-FPbY9bQ0xqb8B942900j3yYY/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181113%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181113T203222Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=b2f781d0a68905644dc6ddcfb3cf63d54da5ee23a2abc2fe966833fc6bdec928 response: body: {string: !!python/unicode ''} headers: content-length: ['0'] - date: ['Fri, 26 Oct 2018 22:24:59 GMT'] + date: ['Tue, 13 Nov 2018 20:32:24 GMT'] etag: ['"8d777f385d3dfec8815d20f7496026dc"'] server: [AmazonS3] - x-amz-expiration: ['expiry-date="Sat, 17 Nov 2018 00:00:00 GMT", rule-id="3weekpurge"'] - x-amz-id-2: [anFD5cghN3kSG4YMJATfMO8S1kfguOHj7z8sZO/VzxKNMaUFQSWX3kjyeIuuT4IThI2dYvx/QYE=] - x-amz-request-id: [82AE0A93E5AE3020] + x-amz-expiration: ['expiry-date="Wed, 05 Dec 2018 00:00:00 GMT", rule-id="3weekpurge"'] + x-amz-id-2: [UEVEc/jVQLOBt6ETgP7KtCEG5rNuopsVLpUglFgQx6aKiBp5KLgIjnXWHk5uCkxiUJ35uLMLX8Y=] + x-amz-request-id: [392C5F30E3F35011] x-amz-server-side-encryption: [AES256] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"project": "project-FP9k8JQ0v6GxgPpv68VQGGgV", "fields": + body: !!python/unicode '{"project": "project-FPbY9Zj0xqbBY8FG2gJZPxBx", "fields": {"state": true}}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k8KQ0v6Gf8ZBP51xK284b/describe + uri: https://api.dnanexus.com/file-FPbY9bQ0xqb8B942900j3yYY/describe response: - body: {string: !!python/unicode '{"id":"file-FP9k8KQ0v6Gf8ZBP51xK284b","state":"open"}'} + body: {string: !!python/unicode '{"id":"file-FPbY9bQ0xqb8B942900j3yYY","state":"open"}'} headers: connection: [keep-alive] content-length: ['53'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:24:58 GMT'] + date: ['Tue, 13 Nov 2018 20:32:23 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592698817-483331] + x-request-id: [1542141143167-786778] status: {code: 200, message: OK} - request: body: !!python/unicode '{}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k8KQ0v6Gf8ZBP51xK284b/close + uri: https://api.dnanexus.com/file-FPbY9bQ0xqb8B942900j3yYY/close response: - body: {string: !!python/unicode '{"id":"file-FP9k8KQ0v6Gf8ZBP51xK284b"}'} + body: {string: !!python/unicode '{"id":"file-FPbY9bQ0xqb8B942900j3yYY"}'} headers: connection: [keep-alive] content-length: ['38'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:24:59 GMT'] + date: ['Tue, 13 Nov 2018 20:32:23 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592699018-219023] + x-request-id: [1542141143257-374228] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"project": "project-FP9k8JQ0v6GxgPpv68VQGGgV", "fields": + body: !!python/unicode '{"project": "project-FPbY9Zj0xqbBY8FG2gJZPxBx", "fields": {"state": true}}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k8KQ0v6Gf8ZBP51xK284b/describe + uri: https://api.dnanexus.com/file-FPbY9bQ0xqb8B942900j3yYY/describe response: - body: {string: !!python/unicode '{"id":"file-FP9k8KQ0v6Gf8ZBP51xK284b","state":"closing"}'} + body: {string: !!python/unicode '{"id":"file-FPbY9bQ0xqb8B942900j3yYY","state":"closing"}'} headers: connection: [keep-alive] content-length: ['56'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:24:59 GMT'] + date: ['Tue, 13 Nov 2018 20:32:23 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592699146-929607] + x-request-id: [1542141143361-438967] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"project": "project-FP9k8JQ0v6GxgPpv68VQGGgV", "fields": + body: !!python/unicode '{"project": "project-FPbY9Zj0xqbBY8FG2gJZPxBx", "fields": {"state": true}}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k8KQ0v6Gf8ZBP51xK284b/describe + uri: https://api.dnanexus.com/file-FPbY9bQ0xqb8B942900j3yYY/describe response: - body: {string: !!python/unicode '{"id":"file-FP9k8KQ0v6Gf8ZBP51xK284b","state":"closed"}'} + body: {string: !!python/unicode '{"id":"file-FPbY9bQ0xqb8B942900j3yYY","state":"closed"}'} headers: connection: [keep-alive] content-length: ['55'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:25:01 GMT'] + date: ['Tue, 13 Nov 2018 20:32:25 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592701307-62639] + x-request-id: [1542141145462-151033] status: {code: 200, message: OK} - request: body: !!python/unicode '{"name": "test_dx_root_to_dx_dir.TempProj"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/project/new response: - body: {string: !!python/unicode '{"id":"project-FP9k8P80k3bkZYkF52JZ1Vkb"}'} + body: {string: !!python/unicode '{"id":"project-FPbY9f80Y6JJQKK224Gky3KF"}'} headers: connection: [keep-alive] content-length: ['41'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:25:01 GMT'] + date: ['Tue, 13 Nov 2018 20:32:25 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592701438-190035] + x-request-id: [1542141145560-948593] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"limit": 2, "name": "TestCopyTree.test_dx_root_to_dx_dir.3b19b67b", + body: !!python/unicode '{"limit": 2, "name": "TestCopyTree.test_dx_root_to_dx_dir.c72eb00d", "level": "VIEW"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/system/findProjects response: - body: {string: !!python/unicode '{"results":[{"id":"project-FP9k8JQ0v6GxgPpv68VQGGgV","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} + body: {string: !!python/unicode '{"results":[{"id":"project-FPbY9Zj0xqbBY8FG2gJZPxBx","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} headers: connection: [keep-alive] content-length: ['147'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:25:01 GMT'] + date: ['Tue, 13 Nov 2018 20:32:25 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592701575-31984] + x-request-id: [1542141145691-177851] status: {code: 200, message: OK} - request: body: !!python/unicode '{}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k8JQ0v6GxgPpv68VQGGgV/describe + uri: https://api.dnanexus.com/project-FPbY9Zj0xqbBY8FG2gJZPxBx/describe response: - body: {string: !!python/unicode '{"id":"project-FP9k8JQ0v6GxgPpv68VQGGgV","name":"TestCopyTree.test_dx_root_to_dx_dir.3b19b67b","class":"project","created":1540592694000,"modified":1540592700156,"billTo":"org-counsyl","level":"ADMINISTER","dataUsage":7.450580596923828e-9,"sponsoredDataUsage":0,"region":"aws:us-east-1","summary":"","description":"","protected":false,"restricted":false,"downloadRestricted":false,"containsPHI":false,"createdBy":{"user":"user-akumar_counsyl"},"version":0,"storageCost":1.639127731323242e-10,"pendingTransfer":null,"tags":[],"defaultInstanceType":"mem2_hdd2_x2","archivalState":"live","archivalProgress":null,"totalSponsoredEgressBytes":0,"consumedSponsoredEgressBytes":0,"atSpendingLimit":false}'} + body: {string: !!python/unicode '{"id":"project-FPbY9Zj0xqbBY8FG2gJZPxBx","name":"TestCopyTree.test_dx_root_to_dx_dir.c72eb00d","class":"project","created":1542141139000,"modified":1542141143679,"billTo":"org-counsyl","level":"ADMINISTER","dataUsage":7.450580596923828e-9,"sponsoredDataUsage":0,"region":"aws:us-east-1","summary":"","description":"","protected":false,"restricted":false,"downloadRestricted":false,"containsPHI":false,"createdBy":{"user":"user-akumar_counsyl"},"version":0,"storageCost":1.639127731323242e-10,"pendingTransfer":null,"tags":[],"defaultInstanceType":"mem2_hdd2_x2","archivalState":"live","archivalProgress":null,"totalSponsoredEgressBytes":0,"consumedSponsoredEgressBytes":0,"atSpendingLimit":false}'} headers: connection: [keep-alive] content-length: ['696'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:25:01 GMT'] + date: ['Tue, 13 Nov 2018 20:32:25 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592701737-134633] + x-request-id: [1542141145800-254207] status: {code: 200, message: OK} - request: body: !!python/unicode '{"limit": 2, "name": "test_dx_root_to_dx_dir.TempProj", @@ -484,84 +484,84 @@ interactions: headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/system/findProjects response: - body: {string: !!python/unicode '{"results":[{"id":"project-FP9k8P80k3bkZYkF52JZ1Vkb","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} + body: {string: !!python/unicode '{"results":[{"id":"project-FPbY9f80Y6JJQKK224Gky3KF","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} headers: connection: [keep-alive] content-length: ['147'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:25:02 GMT'] + date: ['Tue, 13 Nov 2018 20:32:26 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592701925-542249] + x-request-id: [1542141145948-414813] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"includeHidden": false, "only": "folders", "folder": - "/folder", "describe": {"fields": {"name": true, "folder": true}}}' + body: !!python/unicode '{"folder": "/folder", "describe": {"fields": {"folder": + true, "name": true}}, "only": "folders", "includeHidden": false}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k8P80k3bkZYkF52JZ1Vkb/listFolder + uri: https://api.dnanexus.com/project-FPbY9f80Y6JJQKK224Gky3KF/listFolder response: body: {string: !!python/unicode '{"error":{"type":"ResourceNotFound","message":"The - specified folder could not be found in project-FP9k8P80k3bkZYkF52JZ1Vkb"}}'} + specified folder could not be found in project-FPbY9f80Y6JJQKK224Gky3KF"}}'} headers: connection: [keep-alive] content-type: [application/json] - date: ['Fri, 26 Oct 2018 22:25:02 GMT'] + date: ['Tue, 13 Nov 2018 20:32:26 GMT'] server: [nginx] transfer-encoding: [chunked] vary: [Accept-Encoding] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592702116-147573] + x-request-id: [1542141146098-837576] status: {code: 404, message: Not Found} - request: - body: !!python/unicode '{"parents": true, "folder": "/folder"}' + body: !!python/unicode '{"folder": "/folder", "parents": true}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k8P80k3bkZYkF52JZ1Vkb/newFolder + uri: https://api.dnanexus.com/project-FPbY9f80Y6JJQKK224Gky3KF/newFolder response: - body: {string: !!python/unicode '{"id":"project-FP9k8P80k3bkZYkF52JZ1Vkb"}'} + body: {string: !!python/unicode '{"id":"project-FPbY9f80Y6JJQKK224Gky3KF"}'} headers: connection: [keep-alive] content-length: ['41'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:25:02 GMT'] + date: ['Tue, 13 Nov 2018 20:32:26 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592702547-20548] + x-request-id: [1542141146437-331943] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"parents": false, "project": "project-FP9k8P80k3bkZYkF52JZ1Vkb", - "destination": "/folder", "folders": ["/"], "objects": []}' + body: !!python/unicode '{"folders": ["/"], "project": "project-FPbY9f80Y6JJQKK224Gky3KF", + "destination": "/folder", "objects": [], "parents": false}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k8JQ0v6GxgPpv68VQGGgV/clone + uri: https://api.dnanexus.com/project-FPbY9Zj0xqbBY8FG2gJZPxBx/clone response: - body: {string: !!python/unicode '{"id":"project-FP9k8JQ0v6GxgPpv68VQGGgV","project":"project-FP9k8P80k3bkZYkF52JZ1Vkb","exists":[]}'} + body: {string: !!python/unicode '{"id":"project-FPbY9Zj0xqbBY8FG2gJZPxBx","project":"project-FPbY9f80Y6JJQKK224Gky3KF","exists":[]}'} headers: connection: [keep-alive] content-length: ['98'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:25:02 GMT'] + date: ['Tue, 13 Nov 2018 20:32:26 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592702660-935576] + x-request-id: [1542141146577-408989] status: {code: 200, message: OK} - request: body: !!python/unicode '{"limit": 2, "name": "test_dx_root_to_dx_dir.TempProj", @@ -569,100 +569,100 @@ interactions: headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/system/findProjects response: - body: {string: !!python/unicode '{"results":[{"id":"project-FP9k8P80k3bkZYkF52JZ1Vkb","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} + body: {string: !!python/unicode '{"results":[{"id":"project-FPbY9f80Y6JJQKK224Gky3KF","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} headers: connection: [keep-alive] content-length: ['147'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:25:02 GMT'] + date: ['Tue, 13 Nov 2018 20:32:26 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592702871-613687] + x-request-id: [1542141146816-273189] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"objects": [{"name": "folder_file", "project": "project-FP9k8P80k3bkZYkF52JZ1Vkb", - "batchsize": 2, "folder": "/folder/temp_folder"}]}' + body: !!python/unicode '{"objects": [{"project": "project-FPbY9f80Y6JJQKK224Gky3KF", + "folder": "/folder/temp_folder", "name": "folder_file", "batchsize": 2}]}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/system/resolveDataObjects response: - body: {string: !!python/unicode '{"results":[[{"project":"project-FP9k8P80k3bkZYkF52JZ1Vkb","id":"file-FP9k8JQ0v6Gf8ZBP51xK284Y"}]]}'} + body: {string: !!python/unicode '{"results":[[{"project":"project-FPbY9f80Y6JJQKK224Gky3KF","id":"file-FPbY9Zj0xqb8q8VK339v26QV"}]]}'} headers: connection: [keep-alive] content-length: ['99'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:25:03 GMT'] + date: ['Tue, 13 Nov 2018 20:32:26 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592703001-978284] + x-request-id: [1542141146972-791287] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"project": "project-FP9k8P80k3bkZYkF52JZ1Vkb"}' + body: !!python/unicode '{"project": "project-FPbY9f80Y6JJQKK224Gky3KF"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k8JQ0v6Gf8ZBP51xK284Y/describe + uri: https://api.dnanexus.com/file-FPbY9Zj0xqb8q8VK339v26QV/describe response: - body: {string: !!python/unicode '{"id":"file-FP9k8JQ0v6Gf8ZBP51xK284Y","project":"project-FP9k8P80k3bkZYkF52JZ1Vkb","class":"file","sponsored":false,"name":"folder_file","types":[],"state":"closed","hidden":false,"links":[],"folder":"/folder/temp_folder","tags":[],"created":1540592694000,"modified":1540592702749,"createdBy":{"user":"user-akumar_counsyl"},"media":"text/plain","archivalState":"live","size":4}'} + body: {string: !!python/unicode '{"id":"file-FPbY9Zj0xqb8q8VK339v26QV","project":"project-FPbY9f80Y6JJQKK224Gky3KF","class":"file","sponsored":false,"name":"folder_file","types":[],"state":"closed","hidden":false,"links":[],"folder":"/folder/temp_folder","tags":[],"created":1542141139000,"modified":1542141146685,"createdBy":{"user":"user-akumar_counsyl"},"media":"text/plain","archivalState":"live","size":4}'} headers: connection: [keep-alive] content-length: ['377'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:25:03 GMT'] + date: ['Tue, 13 Nov 2018 20:32:27 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592703108-370235] + x-request-id: [1542141147073-950220] status: {code: 200, message: OK} - request: body: !!python/unicode '{}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k8P80k3bkZYkF52JZ1Vkb/destroy + uri: https://api.dnanexus.com/project-FPbY9f80Y6JJQKK224Gky3KF/destroy response: - body: {string: !!python/unicode '{"id":"project-FP9k8P80k3bkZYkF52JZ1Vkb"}'} + body: {string: !!python/unicode '{"id":"project-FPbY9f80Y6JJQKK224Gky3KF"}'} headers: connection: [keep-alive] content-length: ['41'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:25:06 GMT'] + date: ['Tue, 13 Nov 2018 20:32:30 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592703222-284669] + x-request-id: [1542141147204-641634] status: {code: 200, message: OK} - request: body: !!python/unicode '{}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k8JQ0v6GxgPpv68VQGGgV/destroy + uri: https://api.dnanexus.com/project-FPbY9Zj0xqbBY8FG2gJZPxBx/destroy response: - body: {string: !!python/unicode '{"id":"project-FP9k8JQ0v6GxgPpv68VQGGgV"}'} + body: {string: !!python/unicode '{"id":"project-FPbY9Zj0xqbBY8FG2gJZPxBx"}'} headers: connection: [keep-alive] content-length: ['41'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:25:09 GMT'] + date: ['Tue, 13 Nov 2018 20:32:32 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592707063-341098] + x-request-id: [1542141150121-224454] status: {code: 200, message: OK} version: 1 diff --git a/stor/tests/cassettes_py2/TestCopyTree/test_dx_root_to_dx_dir_same_project.yaml b/stor_dx/stor_dx/tests/cassettes_py2/TestCopyTree/test_dx_root_to_dx_dir_same_project.yaml similarity index 55% rename from stor/tests/cassettes_py2/TestCopyTree/test_dx_root_to_dx_dir_same_project.yaml rename to stor_dx/stor_dx/tests/cassettes_py2/TestCopyTree/test_dx_root_to_dx_dir_same_project.yaml index 51cad60a..a960b25b 100644 --- a/stor/tests/cassettes_py2/TestCopyTree/test_dx_root_to_dx_dir_same_project.yaml +++ b/stor_dx/stor_dx/tests/cassettes_py2/TestCopyTree/test_dx_root_to_dx_dir_same_project.yaml @@ -1,271 +1,271 @@ interactions: - request: - body: !!python/unicode '{"name": "TestCopyTree.test_dx_root_to_dx_dir_same_project.39b85262"}' + body: !!python/unicode '{"name": "TestCopyTree.test_dx_root_to_dx_dir_same_project.42f79938"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/project/new response: - body: {string: !!python/unicode '{"id":"project-FP9k8VQ03zXfzyV6JkV1p4PP"}'} + body: {string: !!python/unicode '{"id":"project-FPbY9j00qvv1X71F8q6pKGxJ"}'} headers: connection: [keep-alive] content-length: ['41'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:25:10 GMT'] + date: ['Tue, 13 Nov 2018 20:32:32 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592710435-930156] + x-request-id: [1542141152927-657818] status: {code: 200, message: OK} - request: body: !!python/unicode '{}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k8VQ03zXfzyV6JkV1p4PP/describe + uri: https://api.dnanexus.com/project-FPbY9j00qvv1X71F8q6pKGxJ/describe response: - body: {string: !!python/unicode '{"id":"project-FP9k8VQ03zXfzyV6JkV1p4PP","name":"TestCopyTree.test_dx_root_to_dx_dir_same_project.39b85262","class":"project","created":1540592710000,"modified":1540592710000,"billTo":"org-counsyl","level":"ADMINISTER","dataUsage":0,"sponsoredDataUsage":0,"region":"aws:us-east-1","summary":"","description":"","protected":false,"restricted":false,"downloadRestricted":false,"containsPHI":false,"createdBy":{"user":"user-akumar_counsyl"},"version":0,"storageCost":0,"pendingTransfer":null,"tags":[],"defaultInstanceType":"mem2_hdd2_x2","archivalState":"live","archivalProgress":null,"totalSponsoredEgressBytes":0,"consumedSponsoredEgressBytes":0,"atSpendingLimit":false}'} + body: {string: !!python/unicode '{"id":"project-FPbY9j00qvv1X71F8q6pKGxJ","name":"TestCopyTree.test_dx_root_to_dx_dir_same_project.42f79938","class":"project","created":1542141152000,"modified":1542141152000,"billTo":"org-counsyl","level":"ADMINISTER","dataUsage":0,"sponsoredDataUsage":0,"region":"aws:us-east-1","summary":"","description":"","protected":false,"restricted":false,"downloadRestricted":false,"containsPHI":false,"createdBy":{"user":"user-akumar_counsyl"},"version":0,"storageCost":0,"pendingTransfer":null,"tags":[],"defaultInstanceType":"mem2_hdd2_x2","archivalState":"live","archivalProgress":null,"totalSponsoredEgressBytes":0,"consumedSponsoredEgressBytes":0,"atSpendingLimit":false}'} headers: connection: [keep-alive] content-length: ['670'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:25:10 GMT'] + date: ['Tue, 13 Nov 2018 20:32:33 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592710548-370230] + x-request-id: [1542141153041-140634] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"parents": true, "folder": "/temp_folder"}' + body: !!python/unicode '{"folder": "/temp_folder", "parents": true}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k8VQ03zXfzyV6JkV1p4PP/newFolder + uri: https://api.dnanexus.com/project-FPbY9j00qvv1X71F8q6pKGxJ/newFolder response: - body: {string: !!python/unicode '{"id":"project-FP9k8VQ03zXfzyV6JkV1p4PP"}'} + body: {string: !!python/unicode '{"id":"project-FPbY9j00qvv1X71F8q6pKGxJ"}'} headers: connection: [keep-alive] content-length: ['41'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:25:10 GMT'] + date: ['Tue, 13 Nov 2018 20:32:33 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592710662-17548] + x-request-id: [1542141153182-549592] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"name": "folder_file", "project": "project-FP9k8VQ03zXfzyV6JkV1p4PP", - "folder": "/temp_folder", "nonce": "b34d09c7c28fffcac4bc85ad6f9b4b486172ece8fc4ea40b3b7e133b4e78dd301540592710.729573"}' + body: !!python/unicode '{"project": "project-FPbY9j00qvv1X71F8q6pKGxJ", "nonce": + "644ac22890e33962015202e3d32874d8aadde6b03cd9de4f966053166fd3f4ea1542141153.238428", + "folder": "/temp_folder", "name": "folder_file"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/file/new response: - body: {string: !!python/unicode '{"id":"file-FP9k8VQ03zXbVJvpJkZZ2f78"}'} + body: {string: !!python/unicode '{"id":"file-FPbY9j80qvvBY8FG2gJZPxF0"}'} headers: connection: [keep-alive] content-length: ['38'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:25:10 GMT'] + date: ['Tue, 13 Nov 2018 20:32:33 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592710776-597313] + x-request-id: [1542141153284-170546] status: {code: 200, message: OK} - request: body: !!python/unicode '{"fields": {"fileUploadParameters": true}}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k8VQ03zXfzyV6JkV1p4PP/describe + uri: https://api.dnanexus.com/project-FPbY9j00qvv1X71F8q6pKGxJ/describe response: - body: {string: !!python/unicode '{"id":"project-FP9k8VQ03zXfzyV6JkV1p4PP","fileUploadParameters":{"maximumPartSize":5368709120,"minimumPartSize":5242880,"maximumFileSize":5497558138880,"maximumNumParts":10000,"emptyLastPartAllowed":true}}'} + body: {string: !!python/unicode '{"id":"project-FPbY9j00qvv1X71F8q6pKGxJ","fileUploadParameters":{"maximumPartSize":5368709120,"minimumPartSize":5242880,"maximumFileSize":5497558138880,"maximumNumParts":10000,"emptyLastPartAllowed":true}}'} headers: connection: [keep-alive] content-length: ['205'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:25:10 GMT'] + date: ['Tue, 13 Nov 2018 20:32:33 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592710938-423749] + x-request-id: [1542141153433-400901] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"size": 5, "md5": "73dfff57fe24e807bd4fb1bc4e07cd73", - "index": 1}' + body: !!python/unicode '{"index": 1, "size": 5, "md5": "73dfff57fe24e807bd4fb1bc4e07cd73"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k8VQ03zXbVJvpJkZZ2f78/upload + uri: https://api.dnanexus.com/file-FPbY9j80qvvBY8FG2gJZPxF0/upload response: - body: {string: !!python/unicode '{"url":"https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/8cb8/file/open/file-FP9k8VQ03zXbVJvpJkZZ2f78/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181026%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181026T222511Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=c306deee5df9a3f9ed8cad9f964933f8bd33d161919e4768995703d9a5d781e8","headers":{"host":"dnanexus-platform-upload-prod.s3.amazonaws.com","content-type":"binary/octet-stream","x-amz-server-side-encryption":"AES256","content-md5":"c9//V/4k6Ae9T7G8TgfNcw==","content-length":"5"},"expires":1540592831056}'} + body: {string: !!python/unicode '{"url":"https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/b790/file/open/file-FPbY9j80qvvBY8FG2gJZPxF0/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181113%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181113T203233Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=567918953181f794755c39fd07bd5a8c32ab3fc3fe6a54e18218bd17529e4d5b","headers":{"host":"dnanexus-platform-upload-prod.s3.amazonaws.com","content-type":"binary/octet-stream","x-amz-server-side-encryption":"AES256","content-md5":"c9//V/4k6Ae9T7G8TgfNcw==","content-length":"5"},"expires":1542141273543}'} headers: connection: [keep-alive] content-length: ['692'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:25:11 GMT'] + date: ['Tue, 13 Nov 2018 20:32:33 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592711044-690428] + x-request-id: [1542141153530-786037] status: {code: 200, message: OK} - request: body: !!python/unicode data0 headers: DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] content-length: ['5'] content-md5: [c9//V/4k6Ae9T7G8TgfNcw==] content-type: [binary/octet-stream] host: [dnanexus-platform-upload-prod.s3.amazonaws.com] x-amz-server-side-encryption: [AES256] method: PUT - uri: https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/8cb8/file/open/file-FP9k8VQ03zXbVJvpJkZZ2f78/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181026%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181026T222511Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=c306deee5df9a3f9ed8cad9f964933f8bd33d161919e4768995703d9a5d781e8 + uri: https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/b790/file/open/file-FPbY9j80qvvBY8FG2gJZPxF0/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181113%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181113T203233Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=567918953181f794755c39fd07bd5a8c32ab3fc3fe6a54e18218bd17529e4d5b response: body: {string: !!python/unicode ''} headers: content-length: ['0'] - date: ['Fri, 26 Oct 2018 22:25:12 GMT'] + date: ['Tue, 13 Nov 2018 20:32:34 GMT'] etag: ['"73dfff57fe24e807bd4fb1bc4e07cd73"'] server: [AmazonS3] - x-amz-expiration: ['expiry-date="Sat, 17 Nov 2018 00:00:00 GMT", rule-id="3weekpurge"'] - x-amz-id-2: [Uw8GUBBKDH+j+rDFVD615kiOqXaVKPkHV/WD0vTKJU3sxaFMcB6Z2qvnNPZ9Hc2FvIVXlCGVLw4=] - x-amz-request-id: [2C353579789D5949] + x-amz-expiration: ['expiry-date="Wed, 05 Dec 2018 00:00:00 GMT", rule-id="3weekpurge"'] + x-amz-id-2: [mtLufMeL8qtZ19RjPEqyMA4HK42JLfyqHK5J8jaDlfUJzLcVW5RjM4ShCaQBR9dKiaknbyYcNqI=] + x-amz-request-id: [81811BB7BD46650A] x-amz-server-side-encryption: [AES256] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"project": "project-FP9k8VQ03zXfzyV6JkV1p4PP", "fields": + body: !!python/unicode '{"project": "project-FPbY9j00qvv1X71F8q6pKGxJ", "fields": {"state": true}}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k8VQ03zXbVJvpJkZZ2f78/describe + uri: https://api.dnanexus.com/file-FPbY9j80qvvBY8FG2gJZPxF0/describe response: - body: {string: !!python/unicode '{"id":"file-FP9k8VQ03zXbVJvpJkZZ2f78","state":"open"}'} + body: {string: !!python/unicode '{"id":"file-FPbY9j80qvvBY8FG2gJZPxF0","state":"open"}'} headers: connection: [keep-alive] content-length: ['53'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:25:11 GMT'] + date: ['Tue, 13 Nov 2018 20:32:34 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592711650-294260] + x-request-id: [1542141154078-197753] status: {code: 200, message: OK} - request: body: !!python/unicode '{}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k8VQ03zXbVJvpJkZZ2f78/close + uri: https://api.dnanexus.com/file-FPbY9j80qvvBY8FG2gJZPxF0/close response: - body: {string: !!python/unicode '{"id":"file-FP9k8VQ03zXbVJvpJkZZ2f78"}'} + body: {string: !!python/unicode '{"id":"file-FPbY9j80qvvBY8FG2gJZPxF0"}'} headers: connection: [keep-alive] content-length: ['38'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:25:11 GMT'] + date: ['Tue, 13 Nov 2018 20:32:34 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592711757-633595] + x-request-id: [1542141154207-98554] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"limit": 2, "name": "TestCopyTree.test_dx_root_to_dx_dir_same_project.39b85262", + body: !!python/unicode '{"limit": 2, "name": "TestCopyTree.test_dx_root_to_dx_dir_same_project.42f79938", "level": "VIEW"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/system/findProjects response: - body: {string: !!python/unicode '{"results":[{"id":"project-FP9k8VQ03zXfzyV6JkV1p4PP","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} + body: {string: !!python/unicode '{"results":[{"id":"project-FPbY9j00qvv1X71F8q6pKGxJ","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} headers: connection: [keep-alive] content-length: ['147'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:25:11 GMT'] + date: ['Tue, 13 Nov 2018 20:32:34 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592711881-362079] + x-request-id: [1542141154339-960486] status: {code: 200, message: OK} - request: body: !!python/unicode '{}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k8VQ03zXfzyV6JkV1p4PP/describe + uri: https://api.dnanexus.com/project-FPbY9j00qvv1X71F8q6pKGxJ/describe response: - body: {string: !!python/unicode '{"id":"project-FP9k8VQ03zXfzyV6JkV1p4PP","name":"TestCopyTree.test_dx_root_to_dx_dir_same_project.39b85262","class":"project","created":1540592710000,"modified":1540592711769,"billTo":"org-counsyl","level":"ADMINISTER","dataUsage":0,"sponsoredDataUsage":0,"region":"aws:us-east-1","summary":"","description":"","protected":false,"restricted":false,"downloadRestricted":false,"containsPHI":false,"createdBy":{"user":"user-akumar_counsyl"},"version":0,"storageCost":0,"pendingTransfer":null,"tags":[],"defaultInstanceType":"mem2_hdd2_x2","archivalState":"live","archivalProgress":null,"totalSponsoredEgressBytes":0,"consumedSponsoredEgressBytes":0,"atSpendingLimit":false}'} + body: {string: !!python/unicode '{"id":"project-FPbY9j00qvv1X71F8q6pKGxJ","name":"TestCopyTree.test_dx_root_to_dx_dir_same_project.42f79938","class":"project","created":1542141152000,"modified":1542141154330,"billTo":"org-counsyl","level":"ADMINISTER","dataUsage":4.6566128730773926e-9,"sponsoredDataUsage":0,"region":"aws:us-east-1","summary":"","description":"","protected":false,"restricted":false,"downloadRestricted":false,"containsPHI":false,"createdBy":{"user":"user-akumar_counsyl"},"version":0,"storageCost":1.0244548320770262e-10,"pendingTransfer":null,"tags":[],"defaultInstanceType":"mem2_hdd2_x2","archivalState":"live","archivalProgress":null,"totalSponsoredEgressBytes":0,"consumedSponsoredEgressBytes":0,"atSpendingLimit":false}'} headers: connection: [keep-alive] - content-length: ['670'] + content-length: ['711'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:25:12 GMT'] + date: ['Tue, 13 Nov 2018 20:32:34 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592712006-176262] + x-request-id: [1542141154452-72154] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"limit": 2, "name": "TestCopyTree.test_dx_root_to_dx_dir_same_project.39b85262", + body: !!python/unicode '{"limit": 2, "name": "TestCopyTree.test_dx_root_to_dx_dir_same_project.42f79938", "level": "VIEW"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/system/findProjects response: - body: {string: !!python/unicode '{"results":[{"id":"project-FP9k8VQ03zXfzyV6JkV1p4PP","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} + body: {string: !!python/unicode '{"results":[{"id":"project-FPbY9j00qvv1X71F8q6pKGxJ","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} headers: connection: [keep-alive] content-length: ['147'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:25:12 GMT'] + date: ['Tue, 13 Nov 2018 20:32:34 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592712121-181473] + x-request-id: [1542141154551-180999] status: {code: 200, message: OK} - request: body: !!python/unicode '{}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k8VQ03zXfzyV6JkV1p4PP/destroy + uri: https://api.dnanexus.com/project-FPbY9j00qvv1X71F8q6pKGxJ/destroy response: - body: {string: !!python/unicode '{"id":"project-FP9k8VQ03zXfzyV6JkV1p4PP"}'} + body: {string: !!python/unicode '{"id":"project-FPbY9j00qvv1X71F8q6pKGxJ"}'} headers: connection: [keep-alive] content-length: ['41'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:25:14 GMT'] + date: ['Tue, 13 Nov 2018 20:32:36 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592712256-693712] + x-request-id: [1542141154679-827425] status: {code: 200, message: OK} version: 1 diff --git a/stor/tests/cassettes_py2/TestCopyTree/test_dx_root_to_dx_dir_w_slash.yaml b/stor_dx/stor_dx/tests/cassettes_py2/TestCopyTree/test_dx_root_to_dx_dir_w_slash.yaml similarity index 56% rename from stor/tests/cassettes_py2/TestCopyTree/test_dx_root_to_dx_dir_w_slash.yaml rename to stor_dx/stor_dx/tests/cassettes_py2/TestCopyTree/test_dx_root_to_dx_dir_w_slash.yaml index 5c3b715a..3d0b98d8 100644 --- a/stor/tests/cassettes_py2/TestCopyTree/test_dx_root_to_dx_dir_w_slash.yaml +++ b/stor_dx/stor_dx/tests/cassettes_py2/TestCopyTree/test_dx_root_to_dx_dir_w_slash.yaml @@ -1,482 +1,482 @@ interactions: - request: - body: !!python/unicode '{"name": "TestCopyTree.test_dx_root_to_dx_dir_w_slash.71aff4b0"}' + body: !!python/unicode '{"name": "TestCopyTree.test_dx_root_to_dx_dir_w_slash.f970a60e"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/project/new response: - body: {string: !!python/unicode '{"id":"project-FP9k8Xj0948bvgj6Jkpx4b1z"}'} + body: {string: !!python/unicode '{"id":"project-FPbY9k80zkJJQKK224Gky3KK"}'} headers: connection: [keep-alive] content-length: ['41'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:25:15 GMT'] + date: ['Tue, 13 Nov 2018 20:32:37 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592715257-197264] + x-request-id: [1542141157224-356117] status: {code: 200, message: OK} - request: body: !!python/unicode '{}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k8Xj0948bvgj6Jkpx4b1z/describe + uri: https://api.dnanexus.com/project-FPbY9k80zkJJQKK224Gky3KK/describe response: - body: {string: !!python/unicode '{"id":"project-FP9k8Xj0948bvgj6Jkpx4b1z","name":"TestCopyTree.test_dx_root_to_dx_dir_w_slash.71aff4b0","class":"project","created":1540592715000,"modified":1540592715000,"billTo":"org-counsyl","level":"ADMINISTER","dataUsage":0,"sponsoredDataUsage":0,"region":"aws:us-east-1","summary":"","description":"","protected":false,"restricted":false,"downloadRestricted":false,"containsPHI":false,"createdBy":{"user":"user-akumar_counsyl"},"version":0,"storageCost":0,"pendingTransfer":null,"tags":[],"defaultInstanceType":"mem2_hdd2_x2","archivalState":"live","archivalProgress":null,"totalSponsoredEgressBytes":0,"consumedSponsoredEgressBytes":0,"atSpendingLimit":false}'} + body: {string: !!python/unicode '{"id":"project-FPbY9k80zkJJQKK224Gky3KK","name":"TestCopyTree.test_dx_root_to_dx_dir_w_slash.f970a60e","class":"project","created":1542141157000,"modified":1542141157000,"billTo":"org-counsyl","level":"ADMINISTER","dataUsage":0,"sponsoredDataUsage":0,"region":"aws:us-east-1","summary":"","description":"","protected":false,"restricted":false,"downloadRestricted":false,"containsPHI":false,"createdBy":{"user":"user-akumar_counsyl"},"version":0,"storageCost":0,"pendingTransfer":null,"tags":[],"defaultInstanceType":"mem2_hdd2_x2","archivalState":"live","archivalProgress":null,"totalSponsoredEgressBytes":0,"consumedSponsoredEgressBytes":0,"atSpendingLimit":false}'} headers: connection: [keep-alive] content-length: ['665'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:25:15 GMT'] + date: ['Tue, 13 Nov 2018 20:32:37 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592715416-595426] + x-request-id: [1542141157348-108884] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"parents": true, "folder": "/temp_folder"}' + body: !!python/unicode '{"folder": "/temp_folder", "parents": true}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k8Xj0948bvgj6Jkpx4b1z/newFolder + uri: https://api.dnanexus.com/project-FPbY9k80zkJJQKK224Gky3KK/newFolder response: - body: {string: !!python/unicode '{"id":"project-FP9k8Xj0948bvgj6Jkpx4b1z"}'} + body: {string: !!python/unicode '{"id":"project-FPbY9k80zkJJQKK224Gky3KK"}'} headers: connection: [keep-alive] content-length: ['41'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:25:15 GMT'] + date: ['Tue, 13 Nov 2018 20:32:37 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592715535-705828] + x-request-id: [1542141157538-585438] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"name": "folder_file", "project": "project-FP9k8Xj0948bvgj6Jkpx4b1z", - "folder": "/temp_folder", "nonce": "9f7a6ebddfc17538c1e31bce3a13bbb9095875a22bc34b7b4f05ea11a31a60e31540592715.603083"}' + body: !!python/unicode '{"project": "project-FPbY9k80zkJJQKK224Gky3KK", "nonce": + "285445d82822982c5cdd9e9e3da532426f4b0a74b503dc1ce4f92d59897f21261542141157.599644", + "folder": "/temp_folder", "name": "folder_file"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/file/new response: - body: {string: !!python/unicode '{"id":"file-FP9k8Xj0948f8GXkJpbYfZz7"}'} + body: {string: !!python/unicode '{"id":"file-FPbY9k80zkJ9GXBB2vpY85KP"}'} headers: connection: [keep-alive] content-length: ['38'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:25:15 GMT'] + date: ['Tue, 13 Nov 2018 20:32:37 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592715651-260085] + x-request-id: [1542141157643-902090] status: {code: 200, message: OK} - request: body: !!python/unicode '{"fields": {"fileUploadParameters": true}}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k8Xj0948bvgj6Jkpx4b1z/describe + uri: https://api.dnanexus.com/project-FPbY9k80zkJJQKK224Gky3KK/describe response: - body: {string: !!python/unicode '{"id":"project-FP9k8Xj0948bvgj6Jkpx4b1z","fileUploadParameters":{"maximumPartSize":5368709120,"minimumPartSize":5242880,"maximumFileSize":5497558138880,"maximumNumParts":10000,"emptyLastPartAllowed":true}}'} + body: {string: !!python/unicode '{"id":"project-FPbY9k80zkJJQKK224Gky3KK","fileUploadParameters":{"maximumPartSize":5368709120,"minimumPartSize":5242880,"maximumFileSize":5497558138880,"maximumNumParts":10000,"emptyLastPartAllowed":true}}'} headers: connection: [keep-alive] content-length: ['205'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:25:15 GMT'] + date: ['Tue, 13 Nov 2018 20:32:37 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592715804-77656] + x-request-id: [1542141157784-340069] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"size": 4, "md5": "8d777f385d3dfec8815d20f7496026dc", - "index": 1}' + body: !!python/unicode '{"index": 1, "size": 4, "md5": "8d777f385d3dfec8815d20f7496026dc"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k8Xj0948f8GXkJpbYfZz7/upload + uri: https://api.dnanexus.com/file-FPbY9k80zkJ9GXBB2vpY85KP/upload response: - body: {string: !!python/unicode '{"url":"https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/fe61/file/open/file-FP9k8Xj0948f8GXkJpbYfZz7/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181026%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181026T222515Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=dfa0fcc41365a7557c81b35172d00b2b5f2e4412362ff23b49f98accacde096e","headers":{"host":"dnanexus-platform-upload-prod.s3.amazonaws.com","content-type":"binary/octet-stream","x-amz-server-side-encryption":"AES256","content-md5":"jXd/OF09/siBXSD3SWAm3A==","content-length":"4"},"expires":1540592835929}'} + body: {string: !!python/unicode '{"url":"https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/b74e/file/open/file-FPbY9k80zkJ9GXBB2vpY85KP/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181113%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181113T203237Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=55901f331ff527fcb7780ab4abbb33dbd5bf4770587399178d42531189514f5b","headers":{"host":"dnanexus-platform-upload-prod.s3.amazonaws.com","content-type":"binary/octet-stream","x-amz-server-side-encryption":"AES256","content-md5":"jXd/OF09/siBXSD3SWAm3A==","content-length":"4"},"expires":1542141277921}'} headers: connection: [keep-alive] content-length: ['692'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:25:15 GMT'] + date: ['Tue, 13 Nov 2018 20:32:37 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592715917-301304] + x-request-id: [1542141157895-372501] status: {code: 200, message: OK} - request: body: !!python/unicode data headers: DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] content-length: ['4'] content-md5: [jXd/OF09/siBXSD3SWAm3A==] content-type: [binary/octet-stream] host: [dnanexus-platform-upload-prod.s3.amazonaws.com] x-amz-server-side-encryption: [AES256] method: PUT - uri: https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/fe61/file/open/file-FP9k8Xj0948f8GXkJpbYfZz7/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181026%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181026T222515Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=dfa0fcc41365a7557c81b35172d00b2b5f2e4412362ff23b49f98accacde096e + uri: https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/b74e/file/open/file-FPbY9k80zkJ9GXBB2vpY85KP/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181113%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181113T203237Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=55901f331ff527fcb7780ab4abbb33dbd5bf4770587399178d42531189514f5b response: body: {string: !!python/unicode ''} headers: content-length: ['0'] - date: ['Fri, 26 Oct 2018 22:25:17 GMT'] + date: ['Tue, 13 Nov 2018 20:32:39 GMT'] etag: ['"8d777f385d3dfec8815d20f7496026dc"'] server: [AmazonS3] - x-amz-expiration: ['expiry-date="Sat, 17 Nov 2018 00:00:00 GMT", rule-id="3weekpurge"'] - x-amz-id-2: [jKIL7/o5btEW2HIeEw/KjAbGmtsuOUJrWVY0ct+Qa3xepZG9MHu1gr0g/lsck4BTBDi4NSu0lQ0=] - x-amz-request-id: [34E7B6EDC82103E3] + x-amz-expiration: ['expiry-date="Wed, 05 Dec 2018 00:00:00 GMT", rule-id="3weekpurge"'] + x-amz-id-2: [5mFclfNQ9BQaBK7ax96g/1jdWM4oCaFHUs3oOn087E4GkXT5XrBjvMb5zIIi/0yJQQrlLyXRSXI=] + x-amz-request-id: [3345B72E98A1F513] x-amz-server-side-encryption: [AES256] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"project": "project-FP9k8Xj0948bvgj6Jkpx4b1z", "fields": + body: !!python/unicode '{"project": "project-FPbY9k80zkJJQKK224Gky3KK", "fields": {"state": true}}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k8Xj0948f8GXkJpbYfZz7/describe + uri: https://api.dnanexus.com/file-FPbY9k80zkJ9GXBB2vpY85KP/describe response: - body: {string: !!python/unicode '{"id":"file-FP9k8Xj0948f8GXkJpbYfZz7","state":"open"}'} + body: {string: !!python/unicode '{"id":"file-FPbY9k80zkJ9GXBB2vpY85KP","state":"open"}'} headers: connection: [keep-alive] content-length: ['53'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:25:16 GMT'] + date: ['Tue, 13 Nov 2018 20:32:38 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592716568-844959] + x-request-id: [1542141158394-744449] status: {code: 200, message: OK} - request: body: !!python/unicode '{}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k8Xj0948f8GXkJpbYfZz7/close + uri: https://api.dnanexus.com/file-FPbY9k80zkJ9GXBB2vpY85KP/close response: - body: {string: !!python/unicode '{"id":"file-FP9k8Xj0948f8GXkJpbYfZz7"}'} + body: {string: !!python/unicode '{"id":"file-FPbY9k80zkJ9GXBB2vpY85KP"}'} headers: connection: [keep-alive] content-length: ['38'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:25:16 GMT'] + date: ['Tue, 13 Nov 2018 20:32:38 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592716678-593466] + x-request-id: [1542141158521-622867] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"project": "project-FP9k8Xj0948bvgj6Jkpx4b1z", "fields": + body: !!python/unicode '{"project": "project-FPbY9k80zkJJQKK224Gky3KK", "fields": {"state": true}}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k8Xj0948f8GXkJpbYfZz7/describe + uri: https://api.dnanexus.com/file-FPbY9k80zkJ9GXBB2vpY85KP/describe response: - body: {string: !!python/unicode '{"id":"file-FP9k8Xj0948f8GXkJpbYfZz7","state":"closing"}'} + body: {string: !!python/unicode '{"id":"file-FPbY9k80zkJ9GXBB2vpY85KP","state":"closing"}'} headers: connection: [keep-alive] content-length: ['56'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:25:16 GMT'] + date: ['Tue, 13 Nov 2018 20:32:38 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592716802-50412] + x-request-id: [1542141158739-603505] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"project": "project-FP9k8Xj0948bvgj6Jkpx4b1z", "fields": + body: !!python/unicode '{"project": "project-FPbY9k80zkJJQKK224Gky3KK", "fields": {"state": true}}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k8Xj0948f8GXkJpbYfZz7/describe + uri: https://api.dnanexus.com/file-FPbY9k80zkJ9GXBB2vpY85KP/describe response: - body: {string: !!python/unicode '{"id":"file-FP9k8Xj0948f8GXkJpbYfZz7","state":"closed"}'} + body: {string: !!python/unicode '{"id":"file-FPbY9k80zkJ9GXBB2vpY85KP","state":"closed"}'} headers: connection: [keep-alive] content-length: ['55'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:25:18 GMT'] + date: ['Tue, 13 Nov 2018 20:32:40 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592718917-898726] + x-request-id: [1542141160837-414754] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"parents": true, "folder": "/temp_folder/another_folder"}' + body: !!python/unicode '{"folder": "/temp_folder/another_folder", "parents": true}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k8Xj0948bvgj6Jkpx4b1z/newFolder + uri: https://api.dnanexus.com/project-FPbY9k80zkJJQKK224Gky3KK/newFolder response: - body: {string: !!python/unicode '{"id":"project-FP9k8Xj0948bvgj6Jkpx4b1z"}'} + body: {string: !!python/unicode '{"id":"project-FPbY9k80zkJJQKK224Gky3KK"}'} headers: connection: [keep-alive] content-length: ['41'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:25:19 GMT'] + date: ['Tue, 13 Nov 2018 20:32:40 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592719027-604045] + x-request-id: [1542141160965-958578] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"name": "temp_file.txt", "project": "project-FP9k8Xj0948bvgj6Jkpx4b1z", - "folder": "/temp_folder/another_folder", "nonce": "66301d0c79a48229cc3f043d1899bafb8b6e2050d8580eaf2edc4c45229c85f51540592719.092435"}' + body: !!python/unicode '{"project": "project-FPbY9k80zkJJQKK224Gky3KK", "nonce": + "31b7c59563f86077408ce4e9b9f3754288604f720344666f8b45a4f6abf057af1542141161.031740", + "folder": "/temp_folder/another_folder", "name": "temp_file.txt"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/file/new response: - body: {string: !!python/unicode '{"id":"file-FP9k8Yj0948f8GXkJpbYfZz9"}'} + body: {string: !!python/unicode '{"id":"file-FPbY9p80zkJ6y3B93bJvY5zg"}'} headers: connection: [keep-alive] content-length: ['38'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:25:19 GMT'] + date: ['Tue, 13 Nov 2018 20:32:41 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592719138-162067] + x-request-id: [1542141161076-788128] status: {code: 200, message: OK} - request: body: !!python/unicode '{"fields": {"fileUploadParameters": true}}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k8Xj0948bvgj6Jkpx4b1z/describe + uri: https://api.dnanexus.com/project-FPbY9k80zkJJQKK224Gky3KK/describe response: - body: {string: !!python/unicode '{"id":"project-FP9k8Xj0948bvgj6Jkpx4b1z","fileUploadParameters":{"maximumPartSize":5368709120,"minimumPartSize":5242880,"maximumFileSize":5497558138880,"maximumNumParts":10000,"emptyLastPartAllowed":true}}'} + body: {string: !!python/unicode '{"id":"project-FPbY9k80zkJJQKK224Gky3KK","fileUploadParameters":{"maximumPartSize":5368709120,"minimumPartSize":5242880,"maximumFileSize":5497558138880,"maximumNumParts":10000,"emptyLastPartAllowed":true}}'} headers: connection: [keep-alive] content-length: ['205'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:25:19 GMT'] + date: ['Tue, 13 Nov 2018 20:32:41 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592719272-703624] + x-request-id: [1542141161242-212560] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"size": 4, "md5": "8d777f385d3dfec8815d20f7496026dc", - "index": 1}' + body: !!python/unicode '{"index": 1, "size": 4, "md5": "8d777f385d3dfec8815d20f7496026dc"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k8Yj0948f8GXkJpbYfZz9/upload + uri: https://api.dnanexus.com/file-FPbY9p80zkJ6y3B93bJvY5zg/upload response: - body: {string: !!python/unicode '{"url":"https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/bcc3/file/open/file-FP9k8Yj0948f8GXkJpbYfZz9/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181026%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181026T222519Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=6694d8b27f2776e9114ba7bc53a25b512148e190db6df3f8870490a0e6a2ff52","headers":{"host":"dnanexus-platform-upload-prod.s3.amazonaws.com","content-type":"binary/octet-stream","x-amz-server-side-encryption":"AES256","content-md5":"jXd/OF09/siBXSD3SWAm3A==","content-length":"4"},"expires":1540592839401}'} + body: {string: !!python/unicode '{"url":"https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/78d7/file/open/file-FPbY9p80zkJ6y3B93bJvY5zg/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181113%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181113T203241Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=3f75d86f66c3243a3ab23a31e92c29d21a04a076690032623758c383807a75b2","headers":{"host":"dnanexus-platform-upload-prod.s3.amazonaws.com","content-type":"binary/octet-stream","x-amz-server-side-encryption":"AES256","content-md5":"jXd/OF09/siBXSD3SWAm3A==","content-length":"4"},"expires":1542141281376}'} headers: connection: [keep-alive] content-length: ['692'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:25:19 GMT'] + date: ['Tue, 13 Nov 2018 20:32:41 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592719376-520600] + x-request-id: [1542141161347-787157] status: {code: 200, message: OK} - request: body: !!python/unicode data headers: DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] content-length: ['4'] content-md5: [jXd/OF09/siBXSD3SWAm3A==] content-type: [binary/octet-stream] host: [dnanexus-platform-upload-prod.s3.amazonaws.com] x-amz-server-side-encryption: [AES256] method: PUT - uri: https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/bcc3/file/open/file-FP9k8Yj0948f8GXkJpbYfZz9/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181026%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181026T222519Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=6694d8b27f2776e9114ba7bc53a25b512148e190db6df3f8870490a0e6a2ff52 + uri: https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/78d7/file/open/file-FPbY9p80zkJ6y3B93bJvY5zg/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181113%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181113T203241Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=3f75d86f66c3243a3ab23a31e92c29d21a04a076690032623758c383807a75b2 response: body: {string: !!python/unicode ''} headers: content-length: ['0'] - date: ['Fri, 26 Oct 2018 22:25:20 GMT'] + date: ['Tue, 13 Nov 2018 20:32:42 GMT'] etag: ['"8d777f385d3dfec8815d20f7496026dc"'] server: [AmazonS3] - x-amz-expiration: ['expiry-date="Sat, 17 Nov 2018 00:00:00 GMT", rule-id="3weekpurge"'] - x-amz-id-2: [jVjooLxJe83bdzr1nhmnkO9UiTVFy+p9Ao1osRhl9AXAQy93Xjb+zpOLzE9mCMiJEnfS58tHtkw=] - x-amz-request-id: [56C2152398941198] + x-amz-expiration: ['expiry-date="Wed, 05 Dec 2018 00:00:00 GMT", rule-id="3weekpurge"'] + x-amz-id-2: [fg+X1dMVXoWjCwlszWj8xtCxwTRB6bj21XSpHdhs6mNvTtNl4uxP43TrV51PufTpRtpKhBHlb+k=] + x-amz-request-id: [8116C56D1212D510] x-amz-server-side-encryption: [AES256] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"project": "project-FP9k8Xj0948bvgj6Jkpx4b1z", "fields": + body: !!python/unicode '{"project": "project-FPbY9k80zkJJQKK224Gky3KK", "fields": {"state": true}}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k8Yj0948f8GXkJpbYfZz9/describe + uri: https://api.dnanexus.com/file-FPbY9p80zkJ6y3B93bJvY5zg/describe response: - body: {string: !!python/unicode '{"id":"file-FP9k8Yj0948f8GXkJpbYfZz9","state":"open"}'} + body: {string: !!python/unicode '{"id":"file-FPbY9p80zkJ6y3B93bJvY5zg","state":"open"}'} headers: connection: [keep-alive] content-length: ['53'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:25:19 GMT'] + date: ['Tue, 13 Nov 2018 20:32:41 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592719612-971338] + x-request-id: [1542141161576-155552] status: {code: 200, message: OK} - request: body: !!python/unicode '{}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k8Yj0948f8GXkJpbYfZz9/close + uri: https://api.dnanexus.com/file-FPbY9p80zkJ6y3B93bJvY5zg/close response: - body: {string: !!python/unicode '{"id":"file-FP9k8Yj0948f8GXkJpbYfZz9"}'} + body: {string: !!python/unicode '{"id":"file-FPbY9p80zkJ6y3B93bJvY5zg"}'} headers: connection: [keep-alive] content-length: ['38'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:25:19 GMT'] + date: ['Tue, 13 Nov 2018 20:32:41 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592719719-588450] + x-request-id: [1542141161674-136196] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"project": "project-FP9k8Xj0948bvgj6Jkpx4b1z", "fields": + body: !!python/unicode '{"project": "project-FPbY9k80zkJJQKK224Gky3KK", "fields": {"state": true}}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k8Yj0948f8GXkJpbYfZz9/describe + uri: https://api.dnanexus.com/file-FPbY9p80zkJ6y3B93bJvY5zg/describe response: - body: {string: !!python/unicode '{"id":"file-FP9k8Yj0948f8GXkJpbYfZz9","state":"closing"}'} + body: {string: !!python/unicode '{"id":"file-FPbY9p80zkJ6y3B93bJvY5zg","state":"closing"}'} headers: connection: [keep-alive] content-length: ['56'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:25:19 GMT'] + date: ['Tue, 13 Nov 2018 20:32:41 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592719875-242051] + x-request-id: [1542141161781-304723] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"project": "project-FP9k8Xj0948bvgj6Jkpx4b1z", "fields": + body: !!python/unicode '{"project": "project-FPbY9k80zkJJQKK224Gky3KK", "fields": {"state": true}}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k8Yj0948f8GXkJpbYfZz9/describe + uri: https://api.dnanexus.com/file-FPbY9p80zkJ6y3B93bJvY5zg/describe response: - body: {string: !!python/unicode '{"id":"file-FP9k8Yj0948f8GXkJpbYfZz9","state":"closed"}'} + body: {string: !!python/unicode '{"id":"file-FPbY9p80zkJ6y3B93bJvY5zg","state":"closed"}'} headers: connection: [keep-alive] content-length: ['55'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:25:22 GMT'] + date: ['Tue, 13 Nov 2018 20:32:43 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592721993-465524] + x-request-id: [1542141163882-533728] status: {code: 200, message: OK} - request: body: !!python/unicode '{"name": "test_dx_root_to_dx_dir_w_slash.TempProj"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/project/new response: - body: {string: !!python/unicode '{"id":"project-FP9k8ZQ088f5VJvpJkZZ2f7B"}'} + body: {string: !!python/unicode '{"id":"project-FPbY9pj0KQjJQKK224Gky3KP"}'} headers: connection: [keep-alive] content-length: ['41'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:25:22 GMT'] + date: ['Tue, 13 Nov 2018 20:32:44 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592722112-284965] + x-request-id: [1542141163981-440495] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"limit": 2, "name": "TestCopyTree.test_dx_root_to_dx_dir_w_slash.71aff4b0", + body: !!python/unicode '{"limit": 2, "name": "TestCopyTree.test_dx_root_to_dx_dir_w_slash.f970a60e", "level": "VIEW"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/system/findProjects response: - body: {string: !!python/unicode '{"results":[{"id":"project-FP9k8Xj0948bvgj6Jkpx4b1z","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} + body: {string: !!python/unicode '{"results":[{"id":"project-FPbY9k80zkJJQKK224Gky3KK","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} headers: connection: [keep-alive] content-length: ['147'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:25:22 GMT'] + date: ['Tue, 13 Nov 2018 20:32:44 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592722250-123163] + x-request-id: [1542141164115-362730] status: {code: 200, message: OK} - request: body: !!python/unicode '{}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k8Xj0948bvgj6Jkpx4b1z/describe + uri: https://api.dnanexus.com/project-FPbY9k80zkJJQKK224Gky3KK/describe response: - body: {string: !!python/unicode '{"id":"project-FP9k8Xj0948bvgj6Jkpx4b1z","name":"TestCopyTree.test_dx_root_to_dx_dir_w_slash.71aff4b0","class":"project","created":1540592715000,"modified":1540592720136,"billTo":"org-counsyl","level":"ADMINISTER","dataUsage":7.450580596923828e-9,"sponsoredDataUsage":0,"region":"aws:us-east-1","summary":"","description":"","protected":false,"restricted":false,"downloadRestricted":false,"containsPHI":false,"createdBy":{"user":"user-akumar_counsyl"},"version":0,"storageCost":1.639127731323242e-10,"pendingTransfer":null,"tags":[],"defaultInstanceType":"mem2_hdd2_x2","archivalState":"live","archivalProgress":null,"totalSponsoredEgressBytes":0,"consumedSponsoredEgressBytes":0,"atSpendingLimit":false}'} + body: {string: !!python/unicode '{"id":"project-FPbY9k80zkJJQKK224Gky3KK","name":"TestCopyTree.test_dx_root_to_dx_dir_w_slash.f970a60e","class":"project","created":1542141157000,"modified":1542141162941,"billTo":"org-counsyl","level":"ADMINISTER","dataUsage":7.450580596923828e-9,"sponsoredDataUsage":0,"region":"aws:us-east-1","summary":"","description":"","protected":false,"restricted":false,"downloadRestricted":false,"containsPHI":false,"createdBy":{"user":"user-akumar_counsyl"},"version":0,"storageCost":1.639127731323242e-10,"pendingTransfer":null,"tags":[],"defaultInstanceType":"mem2_hdd2_x2","archivalState":"live","archivalProgress":null,"totalSponsoredEgressBytes":0,"consumedSponsoredEgressBytes":0,"atSpendingLimit":false}'} headers: connection: [keep-alive] content-length: ['704'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:25:22 GMT'] + date: ['Tue, 13 Nov 2018 20:32:44 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592722375-821675] + x-request-id: [1542141164234-300342] status: {code: 200, message: OK} - request: body: !!python/unicode '{"limit": 2, "name": "test_dx_root_to_dx_dir_w_slash.TempProj", @@ -484,43 +484,43 @@ interactions: headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/system/findProjects response: - body: {string: !!python/unicode '{"results":[{"id":"project-FP9k8ZQ088f5VJvpJkZZ2f7B","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} + body: {string: !!python/unicode '{"results":[{"id":"project-FPbY9pj0KQjJQKK224Gky3KP","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} headers: connection: [keep-alive] content-length: ['147'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:25:22 GMT'] + date: ['Tue, 13 Nov 2018 20:32:44 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592722491-464178] + x-request-id: [1542141164340-185907] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"includeHidden": false, "only": "folders", "folder": - "/folder/", "describe": {"fields": {"name": true, "folder": true}}}' + body: !!python/unicode '{"folder": "/folder/", "describe": {"fields": {"folder": + true, "name": true}}, "only": "folders", "includeHidden": false}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k8ZQ088f5VJvpJkZZ2f7B/listFolder + uri: https://api.dnanexus.com/project-FPbY9pj0KQjJQKK224Gky3KP/listFolder response: body: {string: !!python/unicode '{"error":{"type":"ResourceNotFound","message":"The - specified folder could not be found in project-FP9k8ZQ088f5VJvpJkZZ2f7B"}}'} + specified folder could not be found in project-FPbY9pj0KQjJQKK224Gky3KP"}}'} headers: connection: [keep-alive] content-type: [application/json] - date: ['Fri, 26 Oct 2018 22:25:22 GMT'] + date: ['Tue, 13 Nov 2018 20:32:44 GMT'] server: [nginx] transfer-encoding: [chunked] vary: [Accept-Encoding] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592722618-686224] + x-request-id: [1542141164475-341204] status: {code: 404, message: Not Found} - request: body: !!python/unicode '{"limit": 2, "name": "test_dx_root_to_dx_dir_w_slash.TempProj", @@ -528,86 +528,87 @@ interactions: headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/system/findProjects response: - body: {string: !!python/unicode '{"results":[{"id":"project-FP9k8ZQ088f5VJvpJkZZ2f7B","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} + body: {string: !!python/unicode '{"results":[{"id":"project-FPbY9pj0KQjJQKK224Gky3KP","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} headers: connection: [keep-alive] content-length: ['147'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:25:23 GMT'] + date: ['Tue, 13 Nov 2018 20:32:44 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592723018-879121] + x-request-id: [1542141164821-831417] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"includeHidden": false, "only": "folders", "folder": - "/folder/TestCopyTree.test_dx_root_to_dx_dir_w_slash.71aff4b0", "describe": - {"fields": {"name": true, "folder": true}}}' + body: !!python/unicode '{"folder": "/folder/TestCopyTree.test_dx_root_to_dx_dir_w_slash.f970a60e", + "describe": {"fields": {"folder": true, "name": true}}, "only": "folders", "includeHidden": + false}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k8ZQ088f5VJvpJkZZ2f7B/listFolder + uri: https://api.dnanexus.com/project-FPbY9pj0KQjJQKK224Gky3KP/listFolder response: body: {string: !!python/unicode '{"error":{"type":"ResourceNotFound","message":"The - specified folder could not be found in project-FP9k8ZQ088f5VJvpJkZZ2f7B"}}'} + specified folder could not be found in project-FPbY9pj0KQjJQKK224Gky3KP"}}'} headers: connection: [keep-alive] content-type: [application/json] - date: ['Fri, 26 Oct 2018 22:25:23 GMT'] + date: ['Tue, 13 Nov 2018 20:32:44 GMT'] server: [nginx] transfer-encoding: [chunked] vary: [Accept-Encoding] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592723142-85075] + x-request-id: [1542141164936-323838] status: {code: 404, message: Not Found} - request: - body: !!python/unicode '{"parents": true, "folder": "/folder/TestCopyTree.test_dx_root_to_dx_dir_w_slash.71aff4b0"}' + body: !!python/unicode '{"folder": "/folder/TestCopyTree.test_dx_root_to_dx_dir_w_slash.f970a60e", + "parents": true}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k8ZQ088f5VJvpJkZZ2f7B/newFolder + uri: https://api.dnanexus.com/project-FPbY9pj0KQjJQKK224Gky3KP/newFolder response: - body: {string: !!python/unicode '{"id":"project-FP9k8ZQ088f5VJvpJkZZ2f7B"}'} + body: {string: !!python/unicode '{"id":"project-FPbY9pj0KQjJQKK224Gky3KP"}'} headers: connection: [keep-alive] content-length: ['41'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:25:23 GMT'] + date: ['Tue, 13 Nov 2018 20:32:45 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592723539-370618] + x-request-id: [1542141165264-252085] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"parents": false, "project": "project-FP9k8ZQ088f5VJvpJkZZ2f7B", - "destination": "/folder/TestCopyTree.test_dx_root_to_dx_dir_w_slash.71aff4b0", - "folders": ["/"], "objects": []}' + body: !!python/unicode '{"folders": ["/"], "project": "project-FPbY9pj0KQjJQKK224Gky3KP", + "destination": "/folder/TestCopyTree.test_dx_root_to_dx_dir_w_slash.f970a60e", + "objects": [], "parents": false}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k8Xj0948bvgj6Jkpx4b1z/clone + uri: https://api.dnanexus.com/project-FPbY9k80zkJJQKK224Gky3KK/clone response: - body: {string: !!python/unicode '{"id":"project-FP9k8Xj0948bvgj6Jkpx4b1z","project":"project-FP9k8ZQ088f5VJvpJkZZ2f7B","exists":[]}'} + body: {string: !!python/unicode '{"id":"project-FPbY9k80zkJJQKK224Gky3KK","project":"project-FPbY9pj0KQjJQKK224Gky3KP","exists":[]}'} headers: connection: [keep-alive] content-length: ['98'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:25:23 GMT'] + date: ['Tue, 13 Nov 2018 20:32:45 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592723650-302494] + x-request-id: [1542141165387-714347] status: {code: 200, message: OK} - request: body: !!python/unicode '{"limit": 2, "name": "test_dx_root_to_dx_dir_w_slash.TempProj", @@ -615,100 +616,101 @@ interactions: headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/system/findProjects response: - body: {string: !!python/unicode '{"results":[{"id":"project-FP9k8ZQ088f5VJvpJkZZ2f7B","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} + body: {string: !!python/unicode '{"results":[{"id":"project-FPbY9pj0KQjJQKK224Gky3KP","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} headers: connection: [keep-alive] content-length: ['147'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:25:23 GMT'] + date: ['Tue, 13 Nov 2018 20:32:45 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592723859-298809] + x-request-id: [1542141165638-974586] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"objects": [{"name": "folder_file", "project": "project-FP9k8ZQ088f5VJvpJkZZ2f7B", - "batchsize": 2, "folder": "/folder/TestCopyTree.test_dx_root_to_dx_dir_w_slash.71aff4b0/temp_folder"}]}' + body: !!python/unicode '{"objects": [{"project": "project-FPbY9pj0KQjJQKK224Gky3KP", + "folder": "/folder/TestCopyTree.test_dx_root_to_dx_dir_w_slash.f970a60e/temp_folder", + "name": "folder_file", "batchsize": 2}]}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/system/resolveDataObjects response: - body: {string: !!python/unicode '{"results":[[{"project":"project-FP9k8ZQ088f5VJvpJkZZ2f7B","id":"file-FP9k8Xj0948f8GXkJpbYfZz7"}]]}'} + body: {string: !!python/unicode '{"results":[[{"project":"project-FPbY9pj0KQjJQKK224Gky3KP","id":"file-FPbY9k80zkJ9GXBB2vpY85KP"}]]}'} headers: connection: [keep-alive] content-length: ['99'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:25:24 GMT'] + date: ['Tue, 13 Nov 2018 20:32:45 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592723992-199810] + x-request-id: [1542141165756-165272] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"project": "project-FP9k8ZQ088f5VJvpJkZZ2f7B"}' + body: !!python/unicode '{"project": "project-FPbY9pj0KQjJQKK224Gky3KP"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k8Xj0948f8GXkJpbYfZz7/describe + uri: https://api.dnanexus.com/file-FPbY9k80zkJ9GXBB2vpY85KP/describe response: - body: {string: !!python/unicode '{"id":"file-FP9k8Xj0948f8GXkJpbYfZz7","project":"project-FP9k8ZQ088f5VJvpJkZZ2f7B","class":"file","sponsored":false,"name":"folder_file","types":[],"state":"closed","hidden":false,"links":[],"folder":"/folder/TestCopyTree.test_dx_root_to_dx_dir_w_slash.71aff4b0/temp_folder","tags":[],"created":1540592715000,"modified":1540592723740,"createdBy":{"user":"user-akumar_counsyl"},"media":"text/plain","archivalState":"live","size":4}'} + body: {string: !!python/unicode '{"id":"file-FPbY9k80zkJ9GXBB2vpY85KP","project":"project-FPbY9pj0KQjJQKK224Gky3KP","class":"file","sponsored":false,"name":"folder_file","types":[],"state":"closed","hidden":false,"links":[],"folder":"/folder/TestCopyTree.test_dx_root_to_dx_dir_w_slash.f970a60e/temp_folder","tags":[],"created":1542141157000,"modified":1542141165505,"createdBy":{"user":"user-akumar_counsyl"},"media":"text/plain","archivalState":"live","size":4}'} headers: connection: [keep-alive] content-length: ['430'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:25:24 GMT'] + date: ['Tue, 13 Nov 2018 20:32:45 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592724100-150072] + x-request-id: [1542141165850-237078] status: {code: 200, message: OK} - request: body: !!python/unicode '{}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k8ZQ088f5VJvpJkZZ2f7B/destroy + uri: https://api.dnanexus.com/project-FPbY9pj0KQjJQKK224Gky3KP/destroy response: - body: {string: !!python/unicode '{"id":"project-FP9k8ZQ088f5VJvpJkZZ2f7B"}'} + body: {string: !!python/unicode '{"id":"project-FPbY9pj0KQjJQKK224Gky3KP"}'} headers: connection: [keep-alive] content-length: ['41'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:25:26 GMT'] + date: ['Tue, 13 Nov 2018 20:32:48 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592724241-692580] + x-request-id: [1542141165946-782928] status: {code: 200, message: OK} - request: body: !!python/unicode '{}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k8Xj0948bvgj6Jkpx4b1z/destroy + uri: https://api.dnanexus.com/project-FPbY9k80zkJJQKK224Gky3KK/destroy response: - body: {string: !!python/unicode '{"id":"project-FP9k8Xj0948bvgj6Jkpx4b1z"}'} + body: {string: !!python/unicode '{"id":"project-FPbY9k80zkJJQKK224Gky3KK"}'} headers: connection: [keep-alive] content-length: ['41'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:25:29 GMT'] + date: ['Tue, 13 Nov 2018 20:32:51 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592726932-707283] + x-request-id: [1542141168516-112530] status: {code: 200, message: OK} version: 1 diff --git a/stor/tests/cassettes_py2/TestCopyTree/test_dx_root_to_dx_root.yaml b/stor_dx/stor_dx/tests/cassettes_py2/TestCopyTree/test_dx_root_to_dx_root.yaml similarity index 58% rename from stor/tests/cassettes_py2/TestCopyTree/test_dx_root_to_dx_root.yaml rename to stor_dx/stor_dx/tests/cassettes_py2/TestCopyTree/test_dx_root_to_dx_root.yaml index 060a8af7..d8b31a68 100644 --- a/stor/tests/cassettes_py2/TestCopyTree/test_dx_root_to_dx_root.yaml +++ b/stor_dx/stor_dx/tests/cassettes_py2/TestCopyTree/test_dx_root_to_dx_root.yaml @@ -1,293 +1,293 @@ interactions: - request: - body: !!python/unicode '{"name": "TestCopyTree.test_dx_root_to_dx_root.47a64fb2"}' + body: !!python/unicode '{"name": "TestCopyTree.test_dx_root_to_dx_root.b59d08cd"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/project/new response: - body: {string: !!python/unicode '{"id":"project-FP9k8fQ09Pff8GXkJpbYfZzF"}'} + body: {string: !!python/unicode '{"id":"project-FPbY9vj08gFZP61Q4bjV0pQf"}'} headers: connection: [keep-alive] content-length: ['41'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:25:30 GMT'] + date: ['Tue, 13 Nov 2018 20:32:51 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592730028-946967] + x-request-id: [1542141171537-441209] status: {code: 200, message: OK} - request: body: !!python/unicode '{}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k8fQ09Pff8GXkJpbYfZzF/describe + uri: https://api.dnanexus.com/project-FPbY9vj08gFZP61Q4bjV0pQf/describe response: - body: {string: !!python/unicode '{"id":"project-FP9k8fQ09Pff8GXkJpbYfZzF","name":"TestCopyTree.test_dx_root_to_dx_root.47a64fb2","class":"project","created":1540592730000,"modified":1540592730000,"billTo":"org-counsyl","level":"ADMINISTER","dataUsage":0,"sponsoredDataUsage":0,"region":"aws:us-east-1","summary":"","description":"","protected":false,"restricted":false,"downloadRestricted":false,"containsPHI":false,"createdBy":{"user":"user-akumar_counsyl"},"version":0,"storageCost":0,"pendingTransfer":null,"tags":[],"defaultInstanceType":"mem2_hdd2_x2","archivalState":"live","archivalProgress":null,"totalSponsoredEgressBytes":0,"consumedSponsoredEgressBytes":0,"atSpendingLimit":false}'} + body: {string: !!python/unicode '{"id":"project-FPbY9vj08gFZP61Q4bjV0pQf","name":"TestCopyTree.test_dx_root_to_dx_root.b59d08cd","class":"project","created":1542141171000,"modified":1542141171000,"billTo":"org-counsyl","level":"ADMINISTER","dataUsage":0,"sponsoredDataUsage":0,"region":"aws:us-east-1","summary":"","description":"","protected":false,"restricted":false,"downloadRestricted":false,"containsPHI":false,"createdBy":{"user":"user-akumar_counsyl"},"version":0,"storageCost":0,"pendingTransfer":null,"tags":[],"defaultInstanceType":"mem2_hdd2_x2","archivalState":"live","archivalProgress":null,"totalSponsoredEgressBytes":0,"consumedSponsoredEgressBytes":0,"atSpendingLimit":false}'} headers: connection: [keep-alive] content-length: ['658'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:25:30 GMT'] + date: ['Tue, 13 Nov 2018 20:32:51 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592730148-993800] + x-request-id: [1542141171639-821040] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"parents": true, "folder": "/temp_folder"}' + body: !!python/unicode '{"folder": "/temp_folder", "parents": true}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k8fQ09Pff8GXkJpbYfZzF/newFolder + uri: https://api.dnanexus.com/project-FPbY9vj08gFZP61Q4bjV0pQf/newFolder response: - body: {string: !!python/unicode '{"id":"project-FP9k8fQ09Pff8GXkJpbYfZzF"}'} + body: {string: !!python/unicode '{"id":"project-FPbY9vj08gFZP61Q4bjV0pQf"}'} headers: connection: [keep-alive] content-length: ['41'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:25:30 GMT'] + date: ['Tue, 13 Nov 2018 20:32:51 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592730268-651974] + x-request-id: [1542141171795-216868] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"name": "folder_file", "project": "project-FP9k8fQ09Pff8GXkJpbYfZzF", - "folder": "/temp_folder", "nonce": "af2555b43bf84653746688b1bd2ac21dbba029d12f7f3af5b3aec373ac5db8b21540592730.335678"}' + body: !!python/unicode '{"project": "project-FPbY9vj08gFZP61Q4bjV0pQf", "nonce": + "22ee95e00cab6d997ebd2e563df79971aa48a7e01118909188247b8a6a1b85781542141171.847634", + "folder": "/temp_folder", "name": "folder_file"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/file/new response: - body: {string: !!python/unicode '{"id":"file-FP9k8fQ09PfqPYg95F286zGF"}'} + body: {string: !!python/unicode '{"id":"file-FPbY9vj08gFVgVFg2KzVq4Jf"}'} headers: connection: [keep-alive] content-length: ['38'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:25:30 GMT'] + date: ['Tue, 13 Nov 2018 20:32:51 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592730380-114155] + x-request-id: [1542141171893-562855] status: {code: 200, message: OK} - request: body: !!python/unicode '{"fields": {"fileUploadParameters": true}}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k8fQ09Pff8GXkJpbYfZzF/describe + uri: https://api.dnanexus.com/project-FPbY9vj08gFZP61Q4bjV0pQf/describe response: - body: {string: !!python/unicode '{"id":"project-FP9k8fQ09Pff8GXkJpbYfZzF","fileUploadParameters":{"maximumPartSize":5368709120,"minimumPartSize":5242880,"maximumFileSize":5497558138880,"maximumNumParts":10000,"emptyLastPartAllowed":true}}'} + body: {string: !!python/unicode '{"id":"project-FPbY9vj08gFZP61Q4bjV0pQf","fileUploadParameters":{"maximumPartSize":5368709120,"minimumPartSize":5242880,"maximumFileSize":5497558138880,"maximumNumParts":10000,"emptyLastPartAllowed":true}}'} headers: connection: [keep-alive] content-length: ['205'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:25:30 GMT'] + date: ['Tue, 13 Nov 2018 20:32:52 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592730531-230946] + x-request-id: [1542141172040-117762] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"size": 4, "md5": "8d777f385d3dfec8815d20f7496026dc", - "index": 1}' + body: !!python/unicode '{"index": 1, "size": 4, "md5": "8d777f385d3dfec8815d20f7496026dc"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k8fQ09PfqPYg95F286zGF/upload + uri: https://api.dnanexus.com/file-FPbY9vj08gFVgVFg2KzVq4Jf/upload response: - body: {string: !!python/unicode '{"url":"https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/9661/file/open/file-FP9k8fQ09PfqPYg95F286zGF/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181026%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181026T222530Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=1a89729e3b30c33ce8ae0244aa527bbc04199af87f17b0936a1e28e04371241a","headers":{"host":"dnanexus-platform-upload-prod.s3.amazonaws.com","content-type":"binary/octet-stream","x-amz-server-side-encryption":"AES256","content-md5":"jXd/OF09/siBXSD3SWAm3A==","content-length":"4"},"expires":1540592850656}'} + body: {string: !!python/unicode '{"url":"https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/462a/file/open/file-FPbY9vj08gFVgVFg2KzVq4Jf/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181113%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181113T203252Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=d67782a65fbcb441668b1ff253926e2dfc0e69a4dfaf69fc6cd1c225d2f8d6dd","headers":{"host":"dnanexus-platform-upload-prod.s3.amazonaws.com","content-type":"binary/octet-stream","x-amz-server-side-encryption":"AES256","content-md5":"jXd/OF09/siBXSD3SWAm3A==","content-length":"4"},"expires":1542141292150}'} headers: connection: [keep-alive] content-length: ['692'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:25:30 GMT'] + date: ['Tue, 13 Nov 2018 20:32:52 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592730644-84184] + x-request-id: [1542141172136-68915] status: {code: 200, message: OK} - request: body: !!python/unicode data headers: DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] content-length: ['4'] content-md5: [jXd/OF09/siBXSD3SWAm3A==] content-type: [binary/octet-stream] host: [dnanexus-platform-upload-prod.s3.amazonaws.com] x-amz-server-side-encryption: [AES256] method: PUT - uri: https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/9661/file/open/file-FP9k8fQ09PfqPYg95F286zGF/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181026%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181026T222530Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=1a89729e3b30c33ce8ae0244aa527bbc04199af87f17b0936a1e28e04371241a + uri: https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/462a/file/open/file-FPbY9vj08gFVgVFg2KzVq4Jf/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181113%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181113T203252Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=d67782a65fbcb441668b1ff253926e2dfc0e69a4dfaf69fc6cd1c225d2f8d6dd response: body: {string: !!python/unicode ''} headers: content-length: ['0'] - date: ['Fri, 26 Oct 2018 22:25:32 GMT'] + date: ['Tue, 13 Nov 2018 20:32:53 GMT'] etag: ['"8d777f385d3dfec8815d20f7496026dc"'] server: [AmazonS3] - x-amz-expiration: ['expiry-date="Sat, 17 Nov 2018 00:00:00 GMT", rule-id="3weekpurge"'] - x-amz-id-2: [D7IcZi8uPSYY9uGk+5R0kOIjUEhRzPGSBSHGVB27TaIvEGRinz5lerHhSJY2h+FrQx4mIn0No9Q=] - x-amz-request-id: [CDE5355ED41673BD] + x-amz-expiration: ['expiry-date="Wed, 05 Dec 2018 00:00:00 GMT", rule-id="3weekpurge"'] + x-amz-id-2: [5X7iV1WTu4hWJeWBqGWmqUzvWadYcLu8VtIBv9ZI3RBa0nyXWultPjbekuY4m5ZeCUWdt50n9s4=] + x-amz-request-id: [110F9E8CAEC305E5] x-amz-server-side-encryption: [AES256] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"project": "project-FP9k8fQ09Pff8GXkJpbYfZzF", "fields": + body: !!python/unicode '{"project": "project-FPbY9vj08gFZP61Q4bjV0pQf", "fields": {"state": true}}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k8fQ09PfqPYg95F286zGF/describe + uri: https://api.dnanexus.com/file-FPbY9vj08gFVgVFg2KzVq4Jf/describe response: - body: {string: !!python/unicode '{"id":"file-FP9k8fQ09PfqPYg95F286zGF","state":"open"}'} + body: {string: !!python/unicode '{"id":"file-FPbY9vj08gFVgVFg2KzVq4Jf","state":"open"}'} headers: connection: [keep-alive] content-length: ['53'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:25:31 GMT'] + date: ['Tue, 13 Nov 2018 20:32:52 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592731196-803825] + x-request-id: [1542141172626-171698] status: {code: 200, message: OK} - request: body: !!python/unicode '{}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k8fQ09PfqPYg95F286zGF/close + uri: https://api.dnanexus.com/file-FPbY9vj08gFVgVFg2KzVq4Jf/close response: - body: {string: !!python/unicode '{"id":"file-FP9k8fQ09PfqPYg95F286zGF"}'} + body: {string: !!python/unicode '{"id":"file-FPbY9vj08gFVgVFg2KzVq4Jf"}'} headers: connection: [keep-alive] content-length: ['38'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:25:31 GMT'] + date: ['Tue, 13 Nov 2018 20:32:52 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592731305-619924] + x-request-id: [1542141172719-437089] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"project": "project-FP9k8fQ09Pff8GXkJpbYfZzF", "fields": + body: !!python/unicode '{"project": "project-FPbY9vj08gFZP61Q4bjV0pQf", "fields": {"state": true}}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k8fQ09PfqPYg95F286zGF/describe + uri: https://api.dnanexus.com/file-FPbY9vj08gFVgVFg2KzVq4Jf/describe response: - body: {string: !!python/unicode '{"id":"file-FP9k8fQ09PfqPYg95F286zGF","state":"closing"}'} + body: {string: !!python/unicode '{"id":"file-FPbY9vj08gFVgVFg2KzVq4Jf","state":"closing"}'} headers: connection: [keep-alive] content-length: ['56'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:25:31 GMT'] + date: ['Tue, 13 Nov 2018 20:32:52 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592731431-930240] + x-request-id: [1542141172836-594390] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"project": "project-FP9k8fQ09Pff8GXkJpbYfZzF", "fields": + body: !!python/unicode '{"project": "project-FPbY9vj08gFZP61Q4bjV0pQf", "fields": {"state": true}}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k8fQ09PfqPYg95F286zGF/describe + uri: https://api.dnanexus.com/file-FPbY9vj08gFVgVFg2KzVq4Jf/describe response: - body: {string: !!python/unicode '{"id":"file-FP9k8fQ09PfqPYg95F286zGF","state":"closed"}'} + body: {string: !!python/unicode '{"id":"file-FPbY9vj08gFVgVFg2KzVq4Jf","state":"closed"}'} headers: connection: [keep-alive] content-length: ['55'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:25:33 GMT'] + date: ['Tue, 13 Nov 2018 20:32:54 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592733549-429576] + x-request-id: [1542141174933-966586] status: {code: 200, message: OK} - request: body: !!python/unicode '{"name": "test_dx_root_to_dx_root.TempProj"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/project/new response: - body: {string: !!python/unicode '{"id":"project-FP9k8g801QQGf62VJp1k8pBb"}'} + body: {string: !!python/unicode '{"id":"project-FPbY9xj0Yvv983Zv4x93BjF6"}'} headers: connection: [keep-alive] content-length: ['41'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:25:33 GMT'] + date: ['Tue, 13 Nov 2018 20:32:55 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592733669-917158] + x-request-id: [1542141175029-162553] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"limit": 2, "name": "TestCopyTree.test_dx_root_to_dx_root.47a64fb2", + body: !!python/unicode '{"limit": 2, "name": "TestCopyTree.test_dx_root_to_dx_root.b59d08cd", "level": "VIEW"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/system/findProjects response: - body: {string: !!python/unicode '{"results":[{"id":"project-FP9k8fQ09Pff8GXkJpbYfZzF","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} + body: {string: !!python/unicode '{"results":[{"id":"project-FPbY9vj08gFZP61Q4bjV0pQf","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} headers: connection: [keep-alive] content-length: ['147'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:25:33 GMT'] + date: ['Tue, 13 Nov 2018 20:32:55 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592733808-884895] + x-request-id: [1542141175149-384765] status: {code: 200, message: OK} - request: body: !!python/unicode '{}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k8fQ09Pff8GXkJpbYfZzF/describe + uri: https://api.dnanexus.com/project-FPbY9vj08gFZP61Q4bjV0pQf/describe response: - body: {string: !!python/unicode '{"id":"project-FP9k8fQ09Pff8GXkJpbYfZzF","name":"TestCopyTree.test_dx_root_to_dx_root.47a64fb2","class":"project","created":1540592730000,"modified":1540592732229,"billTo":"org-counsyl","level":"ADMINISTER","dataUsage":3.725290298461914e-9,"sponsoredDataUsage":0,"region":"aws:us-east-1","summary":"","description":"","protected":false,"restricted":false,"downloadRestricted":false,"containsPHI":false,"createdBy":{"user":"user-akumar_counsyl"},"version":0,"storageCost":8.19563865661621e-11,"pendingTransfer":null,"tags":[],"defaultInstanceType":"mem2_hdd2_x2","archivalState":"live","archivalProgress":null,"totalSponsoredEgressBytes":0,"consumedSponsoredEgressBytes":0,"atSpendingLimit":false}'} + body: {string: !!python/unicode '{"id":"project-FPbY9vj08gFZP61Q4bjV0pQf","name":"TestCopyTree.test_dx_root_to_dx_root.b59d08cd","class":"project","created":1542141171000,"modified":1542141173072,"billTo":"org-counsyl","level":"ADMINISTER","dataUsage":3.725290298461914e-9,"sponsoredDataUsage":0,"region":"aws:us-east-1","summary":"","description":"","protected":false,"restricted":false,"downloadRestricted":false,"containsPHI":false,"createdBy":{"user":"user-akumar_counsyl"},"version":0,"storageCost":8.19563865661621e-11,"pendingTransfer":null,"tags":[],"defaultInstanceType":"mem2_hdd2_x2","archivalState":"live","archivalProgress":null,"totalSponsoredEgressBytes":0,"consumedSponsoredEgressBytes":0,"atSpendingLimit":false}'} headers: connection: [keep-alive] content-length: ['696'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:25:33 GMT'] + date: ['Tue, 13 Nov 2018 20:32:55 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592733941-237989] + x-request-id: [1542141175258-60425] status: {code: 200, message: OK} - request: body: !!python/unicode '{"limit": 2, "name": "test_dx_root_to_dx_root.TempProj", @@ -295,40 +295,40 @@ interactions: headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/system/findProjects response: - body: {string: !!python/unicode '{"results":[{"id":"project-FP9k8g801QQGf62VJp1k8pBb","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} + body: {string: !!python/unicode '{"results":[{"id":"project-FPbY9xj0Yvv983Zv4x93BjF6","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} headers: connection: [keep-alive] content-length: ['147'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:25:34 GMT'] + date: ['Tue, 13 Nov 2018 20:32:55 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592734068-123159] + x-request-id: [1542141175363-267552] status: {code: 200, message: OK} - request: body: !!python/unicode '{}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k8g801QQGf62VJp1k8pBb/describe + uri: https://api.dnanexus.com/project-FPbY9xj0Yvv983Zv4x93BjF6/describe response: - body: {string: !!python/unicode '{"id":"project-FP9k8g801QQGf62VJp1k8pBb","name":"test_dx_root_to_dx_root.TempProj","class":"project","created":1540592733000,"modified":1540592733000,"billTo":"org-counsyl","level":"ADMINISTER","dataUsage":0,"sponsoredDataUsage":0,"region":"aws:us-east-1","summary":"","description":"","protected":false,"restricted":false,"downloadRestricted":false,"containsPHI":false,"createdBy":{"user":"user-akumar_counsyl"},"version":0,"storageCost":0,"pendingTransfer":null,"tags":[],"defaultInstanceType":"mem2_hdd2_x2","archivalState":"live","archivalProgress":null,"totalSponsoredEgressBytes":0,"consumedSponsoredEgressBytes":0,"atSpendingLimit":false}'} + body: {string: !!python/unicode '{"id":"project-FPbY9xj0Yvv983Zv4x93BjF6","name":"test_dx_root_to_dx_root.TempProj","class":"project","created":1542141175000,"modified":1542141175000,"billTo":"org-counsyl","level":"ADMINISTER","dataUsage":0,"sponsoredDataUsage":0,"region":"aws:us-east-1","summary":"","description":"","protected":false,"restricted":false,"downloadRestricted":false,"containsPHI":false,"createdBy":{"user":"user-akumar_counsyl"},"version":0,"storageCost":0,"pendingTransfer":null,"tags":[],"defaultInstanceType":"mem2_hdd2_x2","archivalState":"live","archivalProgress":null,"totalSponsoredEgressBytes":0,"consumedSponsoredEgressBytes":0,"atSpendingLimit":false}'} headers: connection: [keep-alive] content-length: ['645'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:25:34 GMT'] + date: ['Tue, 13 Nov 2018 20:32:55 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592734195-107774] + x-request-id: [1542141175484-863880] status: {code: 200, message: OK} - request: body: !!python/unicode '{"limit": 2, "name": "test_dx_root_to_dx_root.TempProj", @@ -336,86 +336,87 @@ interactions: headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/system/findProjects response: - body: {string: !!python/unicode '{"results":[{"id":"project-FP9k8g801QQGf62VJp1k8pBb","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} + body: {string: !!python/unicode '{"results":[{"id":"project-FPbY9xj0Yvv983Zv4x93BjF6","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} headers: connection: [keep-alive] content-length: ['147'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:25:34 GMT'] + date: ['Tue, 13 Nov 2018 20:32:55 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592734316-60395] + x-request-id: [1542141175596-690685] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"includeHidden": false, "only": "folders", "folder": - "/TestCopyTree.test_dx_root_to_dx_root.47a64fb2", "describe": {"fields": {"name": - true, "folder": true}}}' + body: !!python/unicode '{"folder": "/TestCopyTree.test_dx_root_to_dx_root.b59d08cd", + "describe": {"fields": {"folder": true, "name": true}}, "only": "folders", "includeHidden": + false}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k8g801QQGf62VJp1k8pBb/listFolder + uri: https://api.dnanexus.com/project-FPbY9xj0Yvv983Zv4x93BjF6/listFolder response: body: {string: !!python/unicode '{"error":{"type":"ResourceNotFound","message":"The - specified folder could not be found in project-FP9k8g801QQGf62VJp1k8pBb"}}'} + specified folder could not be found in project-FPbY9xj0Yvv983Zv4x93BjF6"}}'} headers: connection: [keep-alive] content-type: [application/json] - date: ['Fri, 26 Oct 2018 22:25:34 GMT'] + date: ['Tue, 13 Nov 2018 20:32:55 GMT'] server: [nginx] transfer-encoding: [chunked] vary: [Accept-Encoding] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592734454-748656] + x-request-id: [1542141175723-784559] status: {code: 404, message: Not Found} - request: - body: !!python/unicode '{"parents": true, "folder": "/TestCopyTree.test_dx_root_to_dx_root.47a64fb2"}' + body: !!python/unicode '{"folder": "/TestCopyTree.test_dx_root_to_dx_root.b59d08cd", + "parents": true}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k8g801QQGf62VJp1k8pBb/newFolder + uri: https://api.dnanexus.com/project-FPbY9xj0Yvv983Zv4x93BjF6/newFolder response: - body: {string: !!python/unicode '{"id":"project-FP9k8g801QQGf62VJp1k8pBb"}'} + body: {string: !!python/unicode '{"id":"project-FPbY9xj0Yvv983Zv4x93BjF6"}'} headers: connection: [keep-alive] content-length: ['41'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:25:34 GMT'] + date: ['Tue, 13 Nov 2018 20:32:56 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592734874-374861] + x-request-id: [1542141176069-516518] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"parents": false, "project": "project-FP9k8g801QQGf62VJp1k8pBb", - "destination": "/TestCopyTree.test_dx_root_to_dx_root.47a64fb2", "folders": - ["/"], "objects": []}' + body: !!python/unicode '{"folders": ["/"], "project": "project-FPbY9xj0Yvv983Zv4x93BjF6", + "destination": "/TestCopyTree.test_dx_root_to_dx_root.b59d08cd", "objects": + [], "parents": false}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k8fQ09Pff8GXkJpbYfZzF/clone + uri: https://api.dnanexus.com/project-FPbY9vj08gFZP61Q4bjV0pQf/clone response: - body: {string: !!python/unicode '{"id":"project-FP9k8fQ09Pff8GXkJpbYfZzF","project":"project-FP9k8g801QQGf62VJp1k8pBb","exists":[]}'} + body: {string: !!python/unicode '{"id":"project-FPbY9vj08gFZP61Q4bjV0pQf","project":"project-FPbY9xj0Yvv983Zv4x93BjF6","exists":[]}'} headers: connection: [keep-alive] content-length: ['98'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:25:35 GMT'] + date: ['Tue, 13 Nov 2018 20:32:56 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592735004-285591] + x-request-id: [1542141176185-90869] status: {code: 200, message: OK} - request: body: !!python/unicode '{"limit": 2, "name": "test_dx_root_to_dx_root.TempProj", @@ -423,100 +424,101 @@ interactions: headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/system/findProjects response: - body: {string: !!python/unicode '{"results":[{"id":"project-FP9k8g801QQGf62VJp1k8pBb","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} + body: {string: !!python/unicode '{"results":[{"id":"project-FPbY9xj0Yvv983Zv4x93BjF6","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} headers: connection: [keep-alive] content-length: ['147'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:25:35 GMT'] + date: ['Tue, 13 Nov 2018 20:32:56 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592735229-147209] + x-request-id: [1542141176397-499866] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"objects": [{"name": "folder_file", "project": "project-FP9k8g801QQGf62VJp1k8pBb", - "batchsize": 2, "folder": "/TestCopyTree.test_dx_root_to_dx_root.47a64fb2/temp_folder"}]}' + body: !!python/unicode '{"objects": [{"project": "project-FPbY9xj0Yvv983Zv4x93BjF6", + "folder": "/TestCopyTree.test_dx_root_to_dx_root.b59d08cd/temp_folder", "name": + "folder_file", "batchsize": 2}]}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/system/resolveDataObjects response: - body: {string: !!python/unicode '{"results":[[{"project":"project-FP9k8g801QQGf62VJp1k8pBb","id":"file-FP9k8fQ09PfqPYg95F286zGF"}]]}'} + body: {string: !!python/unicode '{"results":[[{"project":"project-FPbY9xj0Yvv983Zv4x93BjF6","id":"file-FPbY9vj08gFVgVFg2KzVq4Jf"}]]}'} headers: connection: [keep-alive] content-length: ['99'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:25:35 GMT'] + date: ['Tue, 13 Nov 2018 20:32:56 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592735368-107935] + x-request-id: [1542141176533-237263] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"project": "project-FP9k8g801QQGf62VJp1k8pBb"}' + body: !!python/unicode '{"project": "project-FPbY9xj0Yvv983Zv4x93BjF6"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k8fQ09PfqPYg95F286zGF/describe + uri: https://api.dnanexus.com/file-FPbY9vj08gFVgVFg2KzVq4Jf/describe response: - body: {string: !!python/unicode '{"id":"file-FP9k8fQ09PfqPYg95F286zGF","project":"project-FP9k8g801QQGf62VJp1k8pBb","class":"file","sponsored":false,"name":"folder_file","types":[],"state":"closed","hidden":false,"links":[],"folder":"/TestCopyTree.test_dx_root_to_dx_root.47a64fb2/temp_folder","tags":[],"created":1540592730000,"modified":1540592735091,"createdBy":{"user":"user-akumar_counsyl"},"media":"text/plain","archivalState":"live","size":4}'} + body: {string: !!python/unicode '{"id":"file-FPbY9vj08gFVgVFg2KzVq4Jf","project":"project-FPbY9xj0Yvv983Zv4x93BjF6","class":"file","sponsored":false,"name":"folder_file","types":[],"state":"closed","hidden":false,"links":[],"folder":"/TestCopyTree.test_dx_root_to_dx_root.b59d08cd/temp_folder","tags":[],"created":1542141171000,"modified":1542141176267,"createdBy":{"user":"user-akumar_counsyl"},"media":"text/plain","archivalState":"live","size":4}'} headers: connection: [keep-alive] content-length: ['416'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:25:35 GMT'] + date: ['Tue, 13 Nov 2018 20:32:56 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592735482-819300] + x-request-id: [1542141176628-372277] status: {code: 200, message: OK} - request: body: !!python/unicode '{}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k8g801QQGf62VJp1k8pBb/destroy + uri: https://api.dnanexus.com/project-FPbY9xj0Yvv983Zv4x93BjF6/destroy response: - body: {string: !!python/unicode '{"id":"project-FP9k8g801QQGf62VJp1k8pBb"}'} + body: {string: !!python/unicode '{"id":"project-FPbY9xj0Yvv983Zv4x93BjF6"}'} headers: connection: [keep-alive] content-length: ['41'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:25:37 GMT'] + date: ['Tue, 13 Nov 2018 20:32:59 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592735592-103005] + x-request-id: [1542141176735-64047] status: {code: 200, message: OK} - request: body: !!python/unicode '{}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k8fQ09Pff8GXkJpbYfZzF/destroy + uri: https://api.dnanexus.com/project-FPbY9vj08gFZP61Q4bjV0pQf/destroy response: - body: {string: !!python/unicode '{"id":"project-FP9k8fQ09Pff8GXkJpbYfZzF"}'} + body: {string: !!python/unicode '{"id":"project-FPbY9vj08gFZP61Q4bjV0pQf"}'} headers: connection: [keep-alive] content-length: ['41'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:25:40 GMT'] + date: ['Tue, 13 Nov 2018 20:33:01 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592737868-259229] + x-request-id: [1542141179439-560428] status: {code: 200, message: OK} version: 1 diff --git a/stor/tests/cassettes_py2/TestCopyTree/test_dx_root_to_existing_dx_dir.yaml b/stor_dx/stor_dx/tests/cassettes_py2/TestCopyTree/test_dx_root_to_existing_dx_dir.yaml similarity index 56% rename from stor/tests/cassettes_py2/TestCopyTree/test_dx_root_to_existing_dx_dir.yaml rename to stor_dx/stor_dx/tests/cassettes_py2/TestCopyTree/test_dx_root_to_existing_dx_dir.yaml index 91a929e0..51707c53 100644 --- a/stor/tests/cassettes_py2/TestCopyTree/test_dx_root_to_existing_dx_dir.yaml +++ b/stor_dx/stor_dx/tests/cassettes_py2/TestCopyTree/test_dx_root_to_existing_dx_dir.yaml @@ -1,502 +1,502 @@ interactions: - request: - body: !!python/unicode '{"name": "TestCopyTree.test_dx_root_to_existing_dx_dir.b2342443"}' + body: !!python/unicode '{"name": "TestCopyTree.test_dx_root_to_existing_dx_dir.48d1f333"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/project/new response: - body: {string: !!python/unicode '{"id":"project-FP9k8k802V45vgj6Jkpx4b22"}'} + body: {string: !!python/unicode '{"id":"project-FPbY9zQ0PJKQ68BXFXVP8750"}'} headers: connection: [keep-alive] content-length: ['41'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:25:41 GMT'] + date: ['Tue, 13 Nov 2018 20:33:02 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592741207-403770] + x-request-id: [1542141182080-84158] status: {code: 200, message: OK} - request: body: !!python/unicode '{}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k8k802V45vgj6Jkpx4b22/describe + uri: https://api.dnanexus.com/project-FPbY9zQ0PJKQ68BXFXVP8750/describe response: - body: {string: !!python/unicode '{"id":"project-FP9k8k802V45vgj6Jkpx4b22","name":"TestCopyTree.test_dx_root_to_existing_dx_dir.b2342443","class":"project","created":1540592741000,"modified":1540592741000,"billTo":"org-counsyl","level":"ADMINISTER","dataUsage":0,"sponsoredDataUsage":0,"region":"aws:us-east-1","summary":"","description":"","protected":false,"restricted":false,"downloadRestricted":false,"containsPHI":false,"createdBy":{"user":"user-akumar_counsyl"},"version":0,"storageCost":0,"pendingTransfer":null,"tags":[],"defaultInstanceType":"mem2_hdd2_x2","archivalState":"live","archivalProgress":null,"totalSponsoredEgressBytes":0,"consumedSponsoredEgressBytes":0,"atSpendingLimit":false}'} + body: {string: !!python/unicode '{"id":"project-FPbY9zQ0PJKQ68BXFXVP8750","name":"TestCopyTree.test_dx_root_to_existing_dx_dir.48d1f333","class":"project","created":1542141182000,"modified":1542141182000,"billTo":"org-counsyl","level":"ADMINISTER","dataUsage":0,"sponsoredDataUsage":0,"region":"aws:us-east-1","summary":"","description":"","protected":false,"restricted":false,"downloadRestricted":false,"containsPHI":false,"createdBy":{"user":"user-akumar_counsyl"},"version":0,"storageCost":0,"pendingTransfer":null,"tags":[],"defaultInstanceType":"mem2_hdd2_x2","archivalState":"live","archivalProgress":null,"totalSponsoredEgressBytes":0,"consumedSponsoredEgressBytes":0,"atSpendingLimit":false}'} headers: connection: [keep-alive] content-length: ['666'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:25:41 GMT'] + date: ['Tue, 13 Nov 2018 20:33:02 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592741326-206661] + x-request-id: [1542141182203-320248] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"parents": true, "folder": "/temp_folder"}' + body: !!python/unicode '{"folder": "/temp_folder", "parents": true}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k8k802V45vgj6Jkpx4b22/newFolder + uri: https://api.dnanexus.com/project-FPbY9zQ0PJKQ68BXFXVP8750/newFolder response: - body: {string: !!python/unicode '{"id":"project-FP9k8k802V45vgj6Jkpx4b22"}'} + body: {string: !!python/unicode '{"id":"project-FPbY9zQ0PJKQ68BXFXVP8750"}'} headers: connection: [keep-alive] content-length: ['41'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:25:41 GMT'] + date: ['Tue, 13 Nov 2018 20:33:02 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592741456-6303] + x-request-id: [1542141182310-13464] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"name": "folder_file", "project": "project-FP9k8k802V45vgj6Jkpx4b22", - "folder": "/temp_folder", "nonce": "c328ead5074927644c63043085c15300ef5bd8ecacd0dbdcfef7086f9fef89f01540592741.523103"}' + body: !!python/unicode '{"project": "project-FPbY9zQ0PJKQ68BXFXVP8750", "nonce": + "a26b97ec5294154b603312f16dd280fddc462c0cc307c7998caf5fb24ad7f8321542141182.363419", + "folder": "/temp_folder", "name": "folder_file"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/file/new response: - body: {string: !!python/unicode '{"id":"file-FP9k8k802V4FPYg95F286zGJ"}'} + body: {string: !!python/unicode '{"id":"file-FPbY9zj0PJKZk4Yj0JJ926x3"}'} headers: connection: [keep-alive] content-length: ['38'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:25:41 GMT'] + date: ['Tue, 13 Nov 2018 20:33:03 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592741570-370215] + x-request-id: [1542141183225-967569] status: {code: 200, message: OK} - request: body: !!python/unicode '{"fields": {"fileUploadParameters": true}}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k8k802V45vgj6Jkpx4b22/describe + uri: https://api.dnanexus.com/project-FPbY9zQ0PJKQ68BXFXVP8750/describe response: - body: {string: !!python/unicode '{"id":"project-FP9k8k802V45vgj6Jkpx4b22","fileUploadParameters":{"maximumPartSize":5368709120,"minimumPartSize":5242880,"maximumFileSize":5497558138880,"maximumNumParts":10000,"emptyLastPartAllowed":true}}'} + body: {string: !!python/unicode '{"id":"project-FPbY9zQ0PJKQ68BXFXVP8750","fileUploadParameters":{"maximumPartSize":5368709120,"minimumPartSize":5242880,"maximumFileSize":5497558138880,"maximumNumParts":10000,"emptyLastPartAllowed":true}}'} headers: connection: [keep-alive] content-length: ['205'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:25:41 GMT'] + date: ['Tue, 13 Nov 2018 20:33:03 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592741744-696040] + x-request-id: [1542141183567-967246] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"size": 4, "md5": "8d777f385d3dfec8815d20f7496026dc", - "index": 1}' + body: !!python/unicode '{"index": 1, "size": 4, "md5": "8d777f385d3dfec8815d20f7496026dc"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k8k802V4FPYg95F286zGJ/upload + uri: https://api.dnanexus.com/file-FPbY9zj0PJKZk4Yj0JJ926x3/upload response: - body: {string: !!python/unicode '{"url":"https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/1522/file/open/file-FP9k8k802V4FPYg95F286zGJ/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181026%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181026T222541Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=26b3cac8fe3f2c5d1545a71b9b41832e186ea0c2521db1447491f3a486beb0a2","headers":{"host":"dnanexus-platform-upload-prod.s3.amazonaws.com","content-type":"binary/octet-stream","x-amz-server-side-encryption":"AES256","content-md5":"jXd/OF09/siBXSD3SWAm3A==","content-length":"4"},"expires":1540592861872}'} + body: {string: !!python/unicode '{"url":"https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/664a/file/open/file-FPbY9zj0PJKZk4Yj0JJ926x3/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181113%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181113T203303Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=fba338eaad8a86af878e63ff504bfffa7c80701bc767d505c443bcf04f75bff0","headers":{"host":"dnanexus-platform-upload-prod.s3.amazonaws.com","content-type":"binary/octet-stream","x-amz-server-side-encryption":"AES256","content-md5":"jXd/OF09/siBXSD3SWAm3A==","content-length":"4"},"expires":1542141303698}'} headers: connection: [keep-alive] content-length: ['692'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:25:41 GMT'] + date: ['Tue, 13 Nov 2018 20:33:03 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592741853-747102] + x-request-id: [1542141183673-732614] status: {code: 200, message: OK} - request: body: !!python/unicode data headers: DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] content-length: ['4'] content-md5: [jXd/OF09/siBXSD3SWAm3A==] content-type: [binary/octet-stream] host: [dnanexus-platform-upload-prod.s3.amazonaws.com] x-amz-server-side-encryption: [AES256] method: PUT - uri: https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/1522/file/open/file-FP9k8k802V4FPYg95F286zGJ/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181026%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181026T222541Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=26b3cac8fe3f2c5d1545a71b9b41832e186ea0c2521db1447491f3a486beb0a2 + uri: https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/664a/file/open/file-FPbY9zj0PJKZk4Yj0JJ926x3/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181113%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181113T203303Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=fba338eaad8a86af878e63ff504bfffa7c80701bc767d505c443bcf04f75bff0 response: body: {string: !!python/unicode ''} headers: content-length: ['0'] - date: ['Fri, 26 Oct 2018 22:25:43 GMT'] + date: ['Tue, 13 Nov 2018 20:33:05 GMT'] etag: ['"8d777f385d3dfec8815d20f7496026dc"'] server: [AmazonS3] - x-amz-expiration: ['expiry-date="Sat, 17 Nov 2018 00:00:00 GMT", rule-id="3weekpurge"'] - x-amz-id-2: [Auo6THiUNqlr7jTHgfSYMnPMa9GIhybzlfA2aH9cHboHyjx4NSUSosXVbKcZ8lBIZiyBbZ+e370=] - x-amz-request-id: [0E19D5B591874847] + x-amz-expiration: ['expiry-date="Wed, 05 Dec 2018 00:00:00 GMT", rule-id="3weekpurge"'] + x-amz-id-2: [b0rqfXL9f3Do8fCYS7NxP9ylcsZjQXDNRnewu780BxFHnbnVVbZmkDBslgDFToMIiI99AR0RwW0=] + x-amz-request-id: [CBA9F725D3AE527B] x-amz-server-side-encryption: [AES256] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"project": "project-FP9k8k802V45vgj6Jkpx4b22", "fields": + body: !!python/unicode '{"project": "project-FPbY9zQ0PJKQ68BXFXVP8750", "fields": {"state": true}}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k8k802V4FPYg95F286zGJ/describe + uri: https://api.dnanexus.com/file-FPbY9zj0PJKZk4Yj0JJ926x3/describe response: - body: {string: !!python/unicode '{"id":"file-FP9k8k802V4FPYg95F286zGJ","state":"open"}'} + body: {string: !!python/unicode '{"id":"file-FPbY9zj0PJKZk4Yj0JJ926x3","state":"open"}'} headers: connection: [keep-alive] content-length: ['53'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:25:42 GMT'] + date: ['Tue, 13 Nov 2018 20:33:04 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592742406-430984] + x-request-id: [1542141184161-623601] status: {code: 200, message: OK} - request: body: !!python/unicode '{}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k8k802V4FPYg95F286zGJ/close + uri: https://api.dnanexus.com/file-FPbY9zj0PJKZk4Yj0JJ926x3/close response: - body: {string: !!python/unicode '{"id":"file-FP9k8k802V4FPYg95F286zGJ"}'} + body: {string: !!python/unicode '{"id":"file-FPbY9zj0PJKZk4Yj0JJ926x3"}'} headers: connection: [keep-alive] content-length: ['38'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:25:42 GMT'] + date: ['Tue, 13 Nov 2018 20:33:04 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592742514-396975] + x-request-id: [1542141184263-806386] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"project": "project-FP9k8k802V45vgj6Jkpx4b22", "fields": + body: !!python/unicode '{"project": "project-FPbY9zQ0PJKQ68BXFXVP8750", "fields": {"state": true}}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k8k802V4FPYg95F286zGJ/describe + uri: https://api.dnanexus.com/file-FPbY9zj0PJKZk4Yj0JJ926x3/describe response: - body: {string: !!python/unicode '{"id":"file-FP9k8k802V4FPYg95F286zGJ","state":"closing"}'} + body: {string: !!python/unicode '{"id":"file-FPbY9zj0PJKZk4Yj0JJ926x3","state":"closing"}'} headers: connection: [keep-alive] content-length: ['56'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:25:42 GMT'] + date: ['Tue, 13 Nov 2018 20:33:04 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592742635-900826] + x-request-id: [1542141184428-191334] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"project": "project-FP9k8k802V45vgj6Jkpx4b22", "fields": + body: !!python/unicode '{"project": "project-FPbY9zQ0PJKQ68BXFXVP8750", "fields": {"state": true}}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k8k802V4FPYg95F286zGJ/describe + uri: https://api.dnanexus.com/file-FPbY9zj0PJKZk4Yj0JJ926x3/describe response: - body: {string: !!python/unicode '{"id":"file-FP9k8k802V4FPYg95F286zGJ","state":"closed"}'} + body: {string: !!python/unicode '{"id":"file-FPbY9zj0PJKZk4Yj0JJ926x3","state":"closed"}'} headers: connection: [keep-alive] content-length: ['55'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:25:44 GMT'] + date: ['Tue, 13 Nov 2018 20:33:06 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592744757-905109] + x-request-id: [1542141186543-516243] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"parents": true, "folder": "/temp_folder/another_folder"}' + body: !!python/unicode '{"folder": "/temp_folder/another_folder", "parents": true}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k8k802V45vgj6Jkpx4b22/newFolder + uri: https://api.dnanexus.com/project-FPbY9zQ0PJKQ68BXFXVP8750/newFolder response: - body: {string: !!python/unicode '{"id":"project-FP9k8k802V45vgj6Jkpx4b22"}'} + body: {string: !!python/unicode '{"id":"project-FPbY9zQ0PJKQ68BXFXVP8750"}'} headers: connection: [keep-alive] content-length: ['41'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:25:44 GMT'] + date: ['Tue, 13 Nov 2018 20:33:06 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592744879-31088] + x-request-id: [1542141186642-164328] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"name": "temp_file.txt", "project": "project-FP9k8k802V45vgj6Jkpx4b22", - "folder": "/temp_folder/another_folder", "nonce": "cf538b1e863af9a0093a812a02e9b71880ccee6de50cda0ff803763547bba7591540592744.944268"}' + body: !!python/unicode '{"project": "project-FPbY9zQ0PJKQ68BXFXVP8750", "nonce": + "002de9bd9fe065f7e1c694c5e0e0fa4b4eb7ed58532d870d4308e97d657cbfbb1542141186.702345", + "folder": "/temp_folder/another_folder", "name": "temp_file.txt"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/file/new response: - body: {string: !!python/unicode '{"id":"file-FP9k8p802V4PxYfQJq0Qq9Pp"}'} + body: {string: !!python/unicode '{"id":"file-FPbYB0Q0PJKYGX7J265b7049"}'} headers: connection: [keep-alive] content-length: ['38'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:25:45 GMT'] + date: ['Tue, 13 Nov 2018 20:33:06 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592744997-626540] + x-request-id: [1542141186747-45684] status: {code: 200, message: OK} - request: body: !!python/unicode '{"fields": {"fileUploadParameters": true}}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k8k802V45vgj6Jkpx4b22/describe + uri: https://api.dnanexus.com/project-FPbY9zQ0PJKQ68BXFXVP8750/describe response: - body: {string: !!python/unicode '{"id":"project-FP9k8k802V45vgj6Jkpx4b22","fileUploadParameters":{"maximumPartSize":5368709120,"minimumPartSize":5242880,"maximumFileSize":5497558138880,"maximumNumParts":10000,"emptyLastPartAllowed":true}}'} + body: {string: !!python/unicode '{"id":"project-FPbY9zQ0PJKQ68BXFXVP8750","fileUploadParameters":{"maximumPartSize":5368709120,"minimumPartSize":5242880,"maximumFileSize":5497558138880,"maximumNumParts":10000,"emptyLastPartAllowed":true}}'} headers: connection: [keep-alive] content-length: ['205'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:25:45 GMT'] + date: ['Tue, 13 Nov 2018 20:33:06 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592745158-302934] + x-request-id: [1542141186884-159393] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"size": 4, "md5": "8d777f385d3dfec8815d20f7496026dc", - "index": 1}' + body: !!python/unicode '{"index": 1, "size": 4, "md5": "8d777f385d3dfec8815d20f7496026dc"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k8p802V4PxYfQJq0Qq9Pp/upload + uri: https://api.dnanexus.com/file-FPbYB0Q0PJKYGX7J265b7049/upload response: - body: {string: !!python/unicode '{"url":"https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/fe9c/file/open/file-FP9k8p802V4PxYfQJq0Qq9Pp/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181026%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181026T222545Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=1c84232982044c7af978e927a886b073d4a001d8e01ef816a5caac609adee4a8","headers":{"host":"dnanexus-platform-upload-prod.s3.amazonaws.com","content-type":"binary/octet-stream","x-amz-server-side-encryption":"AES256","content-md5":"jXd/OF09/siBXSD3SWAm3A==","content-length":"4"},"expires":1540592865369}'} + body: {string: !!python/unicode '{"url":"https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/1fa9/file/open/file-FPbYB0Q0PJKYGX7J265b7049/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181113%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181113T203307Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=a821bc1715811c560164bdeac288b6e2fcfb3e55a93da56f9b00806afad01d7a","headers":{"host":"dnanexus-platform-upload-prod.s3.amazonaws.com","content-type":"binary/octet-stream","x-amz-server-side-encryption":"AES256","content-md5":"jXd/OF09/siBXSD3SWAm3A==","content-length":"4"},"expires":1542141307000}'} headers: connection: [keep-alive] content-length: ['692'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:25:45 GMT'] + date: ['Tue, 13 Nov 2018 20:33:07 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592745301-696562] + x-request-id: [1542141186981-316730] status: {code: 200, message: OK} - request: body: !!python/unicode data headers: DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] content-length: ['4'] content-md5: [jXd/OF09/siBXSD3SWAm3A==] content-type: [binary/octet-stream] host: [dnanexus-platform-upload-prod.s3.amazonaws.com] x-amz-server-side-encryption: [AES256] method: PUT - uri: https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/fe9c/file/open/file-FP9k8p802V4PxYfQJq0Qq9Pp/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181026%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181026T222545Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=1c84232982044c7af978e927a886b073d4a001d8e01ef816a5caac609adee4a8 + uri: https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/1fa9/file/open/file-FPbYB0Q0PJKYGX7J265b7049/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181113%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181113T203307Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=a821bc1715811c560164bdeac288b6e2fcfb3e55a93da56f9b00806afad01d7a response: body: {string: !!python/unicode ''} headers: content-length: ['0'] - date: ['Fri, 26 Oct 2018 22:25:46 GMT'] + date: ['Tue, 13 Nov 2018 20:33:08 GMT'] etag: ['"8d777f385d3dfec8815d20f7496026dc"'] server: [AmazonS3] - x-amz-expiration: ['expiry-date="Sat, 17 Nov 2018 00:00:00 GMT", rule-id="3weekpurge"'] - x-amz-id-2: [sa6xohFH4lkmdaz7GtYDPD3kFybP8GaI9GiVIugbpyqDxECCU2uHZFItqacIadfnd3SsjCm9OOM=] - x-amz-request-id: [DA78BD3A7850AF6A] + x-amz-expiration: ['expiry-date="Wed, 05 Dec 2018 00:00:00 GMT", rule-id="3weekpurge"'] + x-amz-id-2: [2upfxyGTrCgx4M081ZZiN3IqjFNujaeKVOFGWOaKw8ruAcxc+rlXUFqNWgWnBf5+M064n35yQ+4=] + x-amz-request-id: [2414C0986C1C3843] x-amz-server-side-encryption: [AES256] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"project": "project-FP9k8k802V45vgj6Jkpx4b22", "fields": + body: !!python/unicode '{"project": "project-FPbY9zQ0PJKQ68BXFXVP8750", "fields": {"state": true}}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k8p802V4PxYfQJq0Qq9Pp/describe + uri: https://api.dnanexus.com/file-FPbYB0Q0PJKYGX7J265b7049/describe response: - body: {string: !!python/unicode '{"id":"file-FP9k8p802V4PxYfQJq0Qq9Pp","state":"open"}'} + body: {string: !!python/unicode '{"id":"file-FPbYB0Q0PJKYGX7J265b7049","state":"open"}'} headers: connection: [keep-alive] content-length: ['53'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:25:45 GMT'] + date: ['Tue, 13 Nov 2018 20:33:07 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592745626-706870] + x-request-id: [1542141187209-182865] status: {code: 200, message: OK} - request: body: !!python/unicode '{}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k8p802V4PxYfQJq0Qq9Pp/close + uri: https://api.dnanexus.com/file-FPbYB0Q0PJKYGX7J265b7049/close response: - body: {string: !!python/unicode '{"id":"file-FP9k8p802V4PxYfQJq0Qq9Pp"}'} + body: {string: !!python/unicode '{"id":"file-FPbYB0Q0PJKYGX7J265b7049"}'} headers: connection: [keep-alive] content-length: ['38'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:25:45 GMT'] + date: ['Tue, 13 Nov 2018 20:33:07 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592745748-191973] + x-request-id: [1542141187303-564247] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"project": "project-FP9k8k802V45vgj6Jkpx4b22", "fields": + body: !!python/unicode '{"project": "project-FPbY9zQ0PJKQ68BXFXVP8750", "fields": {"state": true}}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k8p802V4PxYfQJq0Qq9Pp/describe + uri: https://api.dnanexus.com/file-FPbYB0Q0PJKYGX7J265b7049/describe response: - body: {string: !!python/unicode '{"id":"file-FP9k8p802V4PxYfQJq0Qq9Pp","state":"closing"}'} + body: {string: !!python/unicode '{"id":"file-FPbYB0Q0PJKYGX7J265b7049","state":"closing"}'} headers: connection: [keep-alive] content-length: ['56'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:25:45 GMT'] + date: ['Tue, 13 Nov 2018 20:33:07 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592745870-956711] + x-request-id: [1542141187552-657555] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"project": "project-FP9k8k802V45vgj6Jkpx4b22", "fields": + body: !!python/unicode '{"project": "project-FPbY9zQ0PJKQ68BXFXVP8750", "fields": {"state": true}}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k8p802V4PxYfQJq0Qq9Pp/describe + uri: https://api.dnanexus.com/file-FPbYB0Q0PJKYGX7J265b7049/describe response: - body: {string: !!python/unicode '{"id":"file-FP9k8p802V4PxYfQJq0Qq9Pp","state":"closed"}'} + body: {string: !!python/unicode '{"id":"file-FPbYB0Q0PJKYGX7J265b7049","state":"closed"}'} headers: connection: [keep-alive] content-length: ['55'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:25:48 GMT'] + date: ['Tue, 13 Nov 2018 20:33:09 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592747996-38429] + x-request-id: [1542141189656-357451] status: {code: 200, message: OK} - request: body: !!python/unicode '{"name": "test_dx_root_to_existing_dx_dir.TempProj"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/project/new response: - body: {string: !!python/unicode '{"id":"project-FP9k8q000B9zxYfQJq0Qq9Pv"}'} + body: {string: !!python/unicode '{"id":"project-FPbYB180xpBZk4Yj0JJ926x5"}'} headers: connection: [keep-alive] content-length: ['41'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:25:48 GMT'] + date: ['Tue, 13 Nov 2018 20:33:09 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592748123-568100] + x-request-id: [1542141189901-865057] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"parents": false, "folder": "/folder"}' + body: !!python/unicode '{"folder": "/folder", "parents": false}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k8q000B9zxYfQJq0Qq9Pv/newFolder + uri: https://api.dnanexus.com/project-FPbYB180xpBZk4Yj0JJ926x5/newFolder response: - body: {string: !!python/unicode '{"id":"project-FP9k8q000B9zxYfQJq0Qq9Pv"}'} + body: {string: !!python/unicode '{"id":"project-FPbYB180xpBZk4Yj0JJ926x5"}'} headers: connection: [keep-alive] content-length: ['41'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:25:48 GMT'] + date: ['Tue, 13 Nov 2018 20:33:10 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592748250-536841] + x-request-id: [1542141190169-465064] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"limit": 2, "name": "TestCopyTree.test_dx_root_to_existing_dx_dir.b2342443", + body: !!python/unicode '{"limit": 2, "name": "TestCopyTree.test_dx_root_to_existing_dx_dir.48d1f333", "level": "VIEW"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/system/findProjects response: - body: {string: !!python/unicode '{"results":[{"id":"project-FP9k8k802V45vgj6Jkpx4b22","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} + body: {string: !!python/unicode '{"results":[{"id":"project-FPbY9zQ0PJKQ68BXFXVP8750","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} headers: connection: [keep-alive] content-length: ['147'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:25:48 GMT'] + date: ['Tue, 13 Nov 2018 20:33:10 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592748380-520799] + x-request-id: [1542141190481-578457] status: {code: 200, message: OK} - request: body: !!python/unicode '{}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k8k802V45vgj6Jkpx4b22/describe + uri: https://api.dnanexus.com/project-FPbY9zQ0PJKQ68BXFXVP8750/describe response: - body: {string: !!python/unicode '{"id":"project-FP9k8k802V45vgj6Jkpx4b22","name":"TestCopyTree.test_dx_root_to_existing_dx_dir.b2342443","class":"project","created":1540592741000,"modified":1540592746157,"billTo":"org-counsyl","level":"ADMINISTER","dataUsage":7.450580596923828e-9,"sponsoredDataUsage":0,"region":"aws:us-east-1","summary":"","description":"","protected":false,"restricted":false,"downloadRestricted":false,"containsPHI":false,"createdBy":{"user":"user-akumar_counsyl"},"version":0,"storageCost":1.639127731323242e-10,"pendingTransfer":null,"tags":[],"defaultInstanceType":"mem2_hdd2_x2","archivalState":"live","archivalProgress":null,"totalSponsoredEgressBytes":0,"consumedSponsoredEgressBytes":0,"atSpendingLimit":false}'} + body: {string: !!python/unicode '{"id":"project-FPbY9zQ0PJKQ68BXFXVP8750","name":"TestCopyTree.test_dx_root_to_existing_dx_dir.48d1f333","class":"project","created":1542141182000,"modified":1542141188160,"billTo":"org-counsyl","level":"ADMINISTER","dataUsage":7.450580596923828e-9,"sponsoredDataUsage":0,"region":"aws:us-east-1","summary":"","description":"","protected":false,"restricted":false,"downloadRestricted":false,"containsPHI":false,"createdBy":{"user":"user-akumar_counsyl"},"version":0,"storageCost":1.639127731323242e-10,"pendingTransfer":null,"tags":[],"defaultInstanceType":"mem2_hdd2_x2","archivalState":"live","archivalProgress":null,"totalSponsoredEgressBytes":0,"consumedSponsoredEgressBytes":0,"atSpendingLimit":false}'} headers: connection: [keep-alive] content-length: ['705'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:25:48 GMT'] + date: ['Tue, 13 Nov 2018 20:33:10 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592748533-829089] + x-request-id: [1542141190667-675288] status: {code: 200, message: OK} - request: body: !!python/unicode '{"limit": 2, "name": "test_dx_root_to_existing_dx_dir.TempProj", @@ -504,41 +504,41 @@ interactions: headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/system/findProjects response: - body: {string: !!python/unicode '{"results":[{"id":"project-FP9k8q000B9zxYfQJq0Qq9Pv","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} + body: {string: !!python/unicode '{"results":[{"id":"project-FPbYB180xpBZk4Yj0JJ926x5","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} headers: connection: [keep-alive] content-length: ['147'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:25:48 GMT'] + date: ['Tue, 13 Nov 2018 20:33:10 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592748657-132349] + x-request-id: [1542141190848-468068] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"includeHidden": false, "only": "folders", "folder": - "/folder", "describe": {"fields": {"name": true, "folder": true}}}' + body: !!python/unicode '{"folder": "/folder", "describe": {"fields": {"folder": + true, "name": true}}, "only": "folders", "includeHidden": false}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k8q000B9zxYfQJq0Qq9Pv/listFolder + uri: https://api.dnanexus.com/project-FPbYB180xpBZk4Yj0JJ926x5/listFolder response: body: {string: !!python/unicode '{"folders":[]}'} headers: connection: [keep-alive] content-length: ['14'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:25:48 GMT'] + date: ['Tue, 13 Nov 2018 20:33:11 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592748788-894511] + x-request-id: [1542141191037-917450] status: {code: 200, message: OK} - request: body: !!python/unicode '{"limit": 2, "name": "test_dx_root_to_existing_dx_dir.TempProj", @@ -546,86 +546,87 @@ interactions: headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/system/findProjects response: - body: {string: !!python/unicode '{"results":[{"id":"project-FP9k8q000B9zxYfQJq0Qq9Pv","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} + body: {string: !!python/unicode '{"results":[{"id":"project-FPbYB180xpBZk4Yj0JJ926x5","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} headers: connection: [keep-alive] content-length: ['147'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:25:48 GMT'] + date: ['Tue, 13 Nov 2018 20:33:11 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592748897-807304] + x-request-id: [1542141191216-294015] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"includeHidden": false, "only": "folders", "folder": - "/folder/TestCopyTree.test_dx_root_to_existing_dx_dir.b2342443", "describe": - {"fields": {"name": true, "folder": true}}}' + body: !!python/unicode '{"folder": "/folder/TestCopyTree.test_dx_root_to_existing_dx_dir.48d1f333", + "describe": {"fields": {"folder": true, "name": true}}, "only": "folders", "includeHidden": + false}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k8q000B9zxYfQJq0Qq9Pv/listFolder + uri: https://api.dnanexus.com/project-FPbYB180xpBZk4Yj0JJ926x5/listFolder response: body: {string: !!python/unicode '{"error":{"type":"ResourceNotFound","message":"The - specified folder could not be found in project-FP9k8q000B9zxYfQJq0Qq9Pv"}}'} + specified folder could not be found in project-FPbYB180xpBZk4Yj0JJ926x5"}}'} headers: connection: [keep-alive] content-type: [application/json] - date: ['Fri, 26 Oct 2018 22:25:49 GMT'] + date: ['Tue, 13 Nov 2018 20:33:11 GMT'] server: [nginx] transfer-encoding: [chunked] vary: [Accept-Encoding] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592749035-414906] + x-request-id: [1542141191529-612906] status: {code: 404, message: Not Found} - request: - body: !!python/unicode '{"parents": true, "folder": "/folder/TestCopyTree.test_dx_root_to_existing_dx_dir.b2342443"}' + body: !!python/unicode '{"folder": "/folder/TestCopyTree.test_dx_root_to_existing_dx_dir.48d1f333", + "parents": true}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k8q000B9zxYfQJq0Qq9Pv/newFolder + uri: https://api.dnanexus.com/project-FPbYB180xpBZk4Yj0JJ926x5/newFolder response: - body: {string: !!python/unicode '{"id":"project-FP9k8q000B9zxYfQJq0Qq9Pv"}'} + body: {string: !!python/unicode '{"id":"project-FPbYB180xpBZk4Yj0JJ926x5"}'} headers: connection: [keep-alive] content-length: ['41'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:25:49 GMT'] + date: ['Tue, 13 Nov 2018 20:33:12 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592749435-371977] + x-request-id: [1542141192262-892676] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"parents": false, "project": "project-FP9k8q000B9zxYfQJq0Qq9Pv", - "destination": "/folder/TestCopyTree.test_dx_root_to_existing_dx_dir.b2342443", - "folders": ["/"], "objects": []}' + body: !!python/unicode '{"folders": ["/"], "project": "project-FPbYB180xpBZk4Yj0JJ926x5", + "destination": "/folder/TestCopyTree.test_dx_root_to_existing_dx_dir.48d1f333", + "objects": [], "parents": false}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k8k802V45vgj6Jkpx4b22/clone + uri: https://api.dnanexus.com/project-FPbY9zQ0PJKQ68BXFXVP8750/clone response: - body: {string: !!python/unicode '{"id":"project-FP9k8k802V45vgj6Jkpx4b22","project":"project-FP9k8q000B9zxYfQJq0Qq9Pv","exists":[]}'} + body: {string: !!python/unicode '{"id":"project-FPbY9zQ0PJKQ68BXFXVP8750","project":"project-FPbYB180xpBZk4Yj0JJ926x5","exists":[]}'} headers: connection: [keep-alive] content-length: ['98'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:25:49 GMT'] + date: ['Tue, 13 Nov 2018 20:33:12 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592749546-33305] + x-request-id: [1542141192590-924488] status: {code: 200, message: OK} - request: body: !!python/unicode '{"limit": 2, "name": "test_dx_root_to_existing_dx_dir.TempProj", @@ -633,100 +634,101 @@ interactions: headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/system/findProjects response: - body: {string: !!python/unicode '{"results":[{"id":"project-FP9k8q000B9zxYfQJq0Qq9Pv","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} + body: {string: !!python/unicode '{"results":[{"id":"project-FPbYB180xpBZk4Yj0JJ926x5","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} headers: connection: [keep-alive] content-length: ['147'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:25:49 GMT'] + date: ['Tue, 13 Nov 2018 20:33:12 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592749766-212195] + x-request-id: [1542141192796-886121] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"objects": [{"name": "folder_file", "project": "project-FP9k8q000B9zxYfQJq0Qq9Pv", - "batchsize": 2, "folder": "/folder/TestCopyTree.test_dx_root_to_existing_dx_dir.b2342443/temp_folder"}]}' + body: !!python/unicode '{"objects": [{"project": "project-FPbYB180xpBZk4Yj0JJ926x5", + "folder": "/folder/TestCopyTree.test_dx_root_to_existing_dx_dir.48d1f333/temp_folder", + "name": "folder_file", "batchsize": 2}]}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/system/resolveDataObjects response: - body: {string: !!python/unicode '{"results":[[{"project":"project-FP9k8q000B9zxYfQJq0Qq9Pv","id":"file-FP9k8k802V4FPYg95F286zGJ"}]]}'} + body: {string: !!python/unicode '{"results":[[{"project":"project-FPbYB180xpBZk4Yj0JJ926x5","id":"file-FPbY9zj0PJKZk4Yj0JJ926x3"}]]}'} headers: connection: [keep-alive] content-length: ['99'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:25:49 GMT'] + date: ['Tue, 13 Nov 2018 20:33:12 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592749900-382743] + x-request-id: [1542141192962-238232] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"project": "project-FP9k8q000B9zxYfQJq0Qq9Pv"}' + body: !!python/unicode '{"project": "project-FPbYB180xpBZk4Yj0JJ926x5"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k8k802V4FPYg95F286zGJ/describe + uri: https://api.dnanexus.com/file-FPbY9zj0PJKZk4Yj0JJ926x3/describe response: - body: {string: !!python/unicode '{"id":"file-FP9k8k802V4FPYg95F286zGJ","project":"project-FP9k8q000B9zxYfQJq0Qq9Pv","class":"file","sponsored":false,"name":"folder_file","types":[],"state":"closed","hidden":false,"links":[],"folder":"/folder/TestCopyTree.test_dx_root_to_existing_dx_dir.b2342443/temp_folder","tags":[],"created":1540592741000,"modified":1540592749656,"createdBy":{"user":"user-akumar_counsyl"},"media":"text/plain","archivalState":"live","size":4}'} + body: {string: !!python/unicode '{"id":"file-FPbY9zj0PJKZk4Yj0JJ926x3","project":"project-FPbYB180xpBZk4Yj0JJ926x5","class":"file","sponsored":false,"name":"folder_file","types":[],"state":"closed","hidden":false,"links":[],"folder":"/folder/TestCopyTree.test_dx_root_to_existing_dx_dir.48d1f333/temp_folder","tags":[],"created":1542141183000,"modified":1542141192676,"createdBy":{"user":"user-akumar_counsyl"},"media":"text/plain","archivalState":"live","size":4}'} headers: connection: [keep-alive] content-length: ['431'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:25:50 GMT'] + date: ['Tue, 13 Nov 2018 20:33:13 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592750002-102695] + x-request-id: [1542141193141-488213] status: {code: 200, message: OK} - request: body: !!python/unicode '{}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k8q000B9zxYfQJq0Qq9Pv/destroy + uri: https://api.dnanexus.com/project-FPbYB180xpBZk4Yj0JJ926x5/destroy response: - body: {string: !!python/unicode '{"id":"project-FP9k8q000B9zxYfQJq0Qq9Pv"}'} + body: {string: !!python/unicode '{"id":"project-FPbYB180xpBZk4Yj0JJ926x5"}'} headers: connection: [keep-alive] content-length: ['41'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:25:52 GMT'] + date: ['Tue, 13 Nov 2018 20:33:16 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592750123-535278] + x-request-id: [1542141193321-213267] status: {code: 200, message: OK} - request: body: !!python/unicode '{}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k8k802V45vgj6Jkpx4b22/destroy + uri: https://api.dnanexus.com/project-FPbY9zQ0PJKQ68BXFXVP8750/destroy response: - body: {string: !!python/unicode '{"id":"project-FP9k8k802V45vgj6Jkpx4b22"}'} + body: {string: !!python/unicode '{"id":"project-FPbY9zQ0PJKQ68BXFXVP8750"}'} headers: connection: [keep-alive] content-length: ['41'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:25:54 GMT'] + date: ['Tue, 13 Nov 2018 20:33:18 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592752994-220830] + x-request-id: [1542141196115-962556] status: {code: 200, message: OK} version: 1 diff --git a/stor/tests/cassettes_py2/TestCopyTree/test_dx_to_existing_dx_dest_fail.yaml b/stor_dx/stor_dx/tests/cassettes_py2/TestCopyTree/test_dx_to_existing_dx_dest_fail.yaml similarity index 58% rename from stor/tests/cassettes_py2/TestCopyTree/test_dx_to_existing_dx_dest_fail.yaml rename to stor_dx/stor_dx/tests/cassettes_py2/TestCopyTree/test_dx_to_existing_dx_dest_fail.yaml index 5bb7a697..199d0c0e 100644 --- a/stor/tests/cassettes_py2/TestCopyTree/test_dx_to_existing_dx_dest_fail.yaml +++ b/stor_dx/stor_dx/tests/cassettes_py2/TestCopyTree/test_dx_to_existing_dx_dest_fail.yaml @@ -1,272 +1,272 @@ interactions: - request: - body: !!python/unicode '{"name": "TestCopyTree.test_dx_to_existing_dx_dest_fail.83a037cb"}' + body: !!python/unicode '{"name": "TestCopyTree.test_dx_to_existing_dx_dest_fail.c069c61f"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/project/new response: - body: {string: !!python/unicode '{"id":"project-FP9k8vj0K1xbVJvpJkZZ2f7G"}'} + body: {string: !!python/unicode '{"id":"project-FPbYB3Q02Ykk83Zv4x93BjF8"}'} headers: connection: [keep-alive] content-length: ['41'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:25:55 GMT'] + date: ['Tue, 13 Nov 2018 20:33:18 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592755374-191062] + x-request-id: [1542141198884-521225] status: {code: 200, message: OK} - request: body: !!python/unicode '{}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k8vj0K1xbVJvpJkZZ2f7G/describe + uri: https://api.dnanexus.com/project-FPbYB3Q02Ykk83Zv4x93BjF8/describe response: - body: {string: !!python/unicode '{"id":"project-FP9k8vj0K1xbVJvpJkZZ2f7G","name":"TestCopyTree.test_dx_to_existing_dx_dest_fail.83a037cb","class":"project","created":1540592755000,"modified":1540592755000,"billTo":"org-counsyl","level":"ADMINISTER","dataUsage":0,"sponsoredDataUsage":0,"region":"aws:us-east-1","summary":"","description":"","protected":false,"restricted":false,"downloadRestricted":false,"containsPHI":false,"createdBy":{"user":"user-akumar_counsyl"},"version":0,"storageCost":0,"pendingTransfer":null,"tags":[],"defaultInstanceType":"mem2_hdd2_x2","archivalState":"live","archivalProgress":null,"totalSponsoredEgressBytes":0,"consumedSponsoredEgressBytes":0,"atSpendingLimit":false}'} + body: {string: !!python/unicode '{"id":"project-FPbYB3Q02Ykk83Zv4x93BjF8","name":"TestCopyTree.test_dx_to_existing_dx_dest_fail.c069c61f","class":"project","created":1542141198000,"modified":1542141198000,"billTo":"org-counsyl","level":"ADMINISTER","dataUsage":0,"sponsoredDataUsage":0,"region":"aws:us-east-1","summary":"","description":"","protected":false,"restricted":false,"downloadRestricted":false,"containsPHI":false,"createdBy":{"user":"user-akumar_counsyl"},"version":0,"storageCost":0,"pendingTransfer":null,"tags":[],"defaultInstanceType":"mem2_hdd2_x2","archivalState":"live","archivalProgress":null,"totalSponsoredEgressBytes":0,"consumedSponsoredEgressBytes":0,"atSpendingLimit":false}'} headers: connection: [keep-alive] content-length: ['667'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:25:55 GMT'] + date: ['Tue, 13 Nov 2018 20:33:19 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592755502-308724] + x-request-id: [1542141198979-652636] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"parents": true, "folder": "/temp_folder"}' + body: !!python/unicode '{"folder": "/temp_folder", "parents": true}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k8vj0K1xbVJvpJkZZ2f7G/newFolder + uri: https://api.dnanexus.com/project-FPbYB3Q02Ykk83Zv4x93BjF8/newFolder response: - body: {string: !!python/unicode '{"id":"project-FP9k8vj0K1xbVJvpJkZZ2f7G"}'} + body: {string: !!python/unicode '{"id":"project-FPbYB3Q02Ykk83Zv4x93BjF8"}'} headers: connection: [keep-alive] content-length: ['41'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:25:55 GMT'] + date: ['Tue, 13 Nov 2018 20:33:19 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592755655-335684] + x-request-id: [1542141199088-159684] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"name": "folder_file", "project": "project-FP9k8vj0K1xbVJvpJkZZ2f7G", - "folder": "/temp_folder", "nonce": "cfe47688b549eaae1c5fcb2be20482ac51dd37b2959413f9429f31241045327a1540592755.728296"}' + body: !!python/unicode '{"project": "project-FPbYB3Q02Ykk83Zv4x93BjF8", "nonce": + "f57b5473783b264da85e62ac0e56ac3fba97de2862e20553ee304dad68e297a41542141199.143156", + "folder": "/temp_folder", "name": "folder_file"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/file/new response: - body: {string: !!python/unicode '{"id":"file-FP9k8vj0K1xvf62VJp1k8pBf"}'} + body: {string: !!python/unicode '{"id":"file-FPbYB3j02Ykj2gzq1k0gg2zp"}'} headers: connection: [keep-alive] content-length: ['38'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:25:55 GMT'] + date: ['Tue, 13 Nov 2018 20:33:19 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592755786-214745] + x-request-id: [1542141199187-607501] status: {code: 200, message: OK} - request: body: !!python/unicode '{"fields": {"fileUploadParameters": true}}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k8vj0K1xbVJvpJkZZ2f7G/describe + uri: https://api.dnanexus.com/project-FPbYB3Q02Ykk83Zv4x93BjF8/describe response: - body: {string: !!python/unicode '{"id":"project-FP9k8vj0K1xbVJvpJkZZ2f7G","fileUploadParameters":{"maximumPartSize":5368709120,"minimumPartSize":5242880,"maximumFileSize":5497558138880,"maximumNumParts":10000,"emptyLastPartAllowed":true}}'} + body: {string: !!python/unicode '{"id":"project-FPbYB3Q02Ykk83Zv4x93BjF8","fileUploadParameters":{"maximumPartSize":5368709120,"minimumPartSize":5242880,"maximumFileSize":5497558138880,"maximumNumParts":10000,"emptyLastPartAllowed":true}}'} headers: connection: [keep-alive] content-length: ['205'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:25:55 GMT'] + date: ['Tue, 13 Nov 2018 20:33:19 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592755937-618846] + x-request-id: [1542141199358-782878] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"size": 5, "md5": "73dfff57fe24e807bd4fb1bc4e07cd73", - "index": 1}' + body: !!python/unicode '{"index": 1, "size": 5, "md5": "73dfff57fe24e807bd4fb1bc4e07cd73"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k8vj0K1xvf62VJp1k8pBf/upload + uri: https://api.dnanexus.com/file-FPbYB3j02Ykj2gzq1k0gg2zp/upload response: - body: {string: !!python/unicode '{"url":"https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/f938/file/open/file-FP9k8vj0K1xvf62VJp1k8pBf/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181026%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181026T222556Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=4870660cce538e5d48cf7b6e12c05ba9b35a48e368cf6e844d31a0a4f9128c94","headers":{"host":"dnanexus-platform-upload-prod.s3.amazonaws.com","content-type":"binary/octet-stream","x-amz-server-side-encryption":"AES256","content-md5":"c9//V/4k6Ae9T7G8TgfNcw==","content-length":"5"},"expires":1540592876116}'} + body: {string: !!python/unicode '{"url":"https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/b9d1/file/open/file-FPbYB3j02Ykj2gzq1k0gg2zp/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181113%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181113T203319Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=3113cf5877b9864cb5cd8380fe418faa7abc06ab70d1d85eec2c6cad24745af7","headers":{"host":"dnanexus-platform-upload-prod.s3.amazonaws.com","content-type":"binary/octet-stream","x-amz-server-side-encryption":"AES256","content-md5":"c9//V/4k6Ae9T7G8TgfNcw==","content-length":"5"},"expires":1542141319484}'} headers: connection: [keep-alive] content-length: ['692'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:25:56 GMT'] + date: ['Tue, 13 Nov 2018 20:33:19 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592756081-337370] + x-request-id: [1542141199470-107136] status: {code: 200, message: OK} - request: body: !!python/unicode data0 headers: DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] content-length: ['5'] content-md5: [c9//V/4k6Ae9T7G8TgfNcw==] content-type: [binary/octet-stream] host: [dnanexus-platform-upload-prod.s3.amazonaws.com] x-amz-server-side-encryption: [AES256] method: PUT - uri: https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/f938/file/open/file-FP9k8vj0K1xvf62VJp1k8pBf/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181026%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181026T222556Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=4870660cce538e5d48cf7b6e12c05ba9b35a48e368cf6e844d31a0a4f9128c94 + uri: https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/b9d1/file/open/file-FPbYB3j02Ykj2gzq1k0gg2zp/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181113%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181113T203319Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=3113cf5877b9864cb5cd8380fe418faa7abc06ab70d1d85eec2c6cad24745af7 response: body: {string: !!python/unicode ''} headers: content-length: ['0'] - date: ['Fri, 26 Oct 2018 22:25:57 GMT'] + date: ['Tue, 13 Nov 2018 20:33:20 GMT'] etag: ['"73dfff57fe24e807bd4fb1bc4e07cd73"'] server: [AmazonS3] - x-amz-expiration: ['expiry-date="Sat, 17 Nov 2018 00:00:00 GMT", rule-id="3weekpurge"'] - x-amz-id-2: [9WtN5uvKU+/OljWCx6iGg0Xiss95HuOwM6RZ5jiMYmi2g3fQCjUR+d5yrc7tDIzoWDtrpA+/sZw=] - x-amz-request-id: [CF8CF77367B611D6] + x-amz-expiration: ['expiry-date="Wed, 05 Dec 2018 00:00:00 GMT", rule-id="3weekpurge"'] + x-amz-id-2: [eVgCYnnDbcO8lK3M4Z24Hanqnjeg7BKE55RW9IvMBkbKq8D8tX9PFzP+gdaB/pkZjm9yOma0N/M=] + x-amz-request-id: [B044803395CCA8DD] x-amz-server-side-encryption: [AES256] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"project": "project-FP9k8vj0K1xbVJvpJkZZ2f7G", "fields": + body: !!python/unicode '{"project": "project-FPbYB3Q02Ykk83Zv4x93BjF8", "fields": {"state": true}}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k8vj0K1xvf62VJp1k8pBf/describe + uri: https://api.dnanexus.com/file-FPbYB3j02Ykj2gzq1k0gg2zp/describe response: - body: {string: !!python/unicode '{"id":"file-FP9k8vj0K1xvf62VJp1k8pBf","state":"open"}'} + body: {string: !!python/unicode '{"id":"file-FPbYB3j02Ykj2gzq1k0gg2zp","state":"open"}'} headers: connection: [keep-alive] content-length: ['53'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:25:56 GMT'] + date: ['Tue, 13 Nov 2018 20:33:19 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592756743-327626] + x-request-id: [1542141199955-917231] status: {code: 200, message: OK} - request: body: !!python/unicode '{}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k8vj0K1xvf62VJp1k8pBf/close + uri: https://api.dnanexus.com/file-FPbYB3j02Ykj2gzq1k0gg2zp/close response: - body: {string: !!python/unicode '{"id":"file-FP9k8vj0K1xvf62VJp1k8pBf"}'} + body: {string: !!python/unicode '{"id":"file-FPbYB3j02Ykj2gzq1k0gg2zp"}'} headers: connection: [keep-alive] content-length: ['38'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:25:57 GMT'] + date: ['Tue, 13 Nov 2018 20:33:20 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592756919-340553] + x-request-id: [1542141200053-95130] status: {code: 200, message: OK} - request: body: !!python/unicode '{"name": "test_dx_to_existing_dx_dest_fail.TempProj"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/project/new response: - body: {string: !!python/unicode '{"id":"project-FP9k8x80Y7bqPYg95F286zGP"}'} + body: {string: !!python/unicode '{"id":"project-FPbYB400kz34P61Q4bjV0pQq"}'} headers: connection: [keep-alive] content-length: ['41'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:25:57 GMT'] + date: ['Tue, 13 Nov 2018 20:33:20 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592757411-289273] + x-request-id: [1542141200197-626190] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"parents": true, "folder": "/folder2/temp_folder"}' + body: !!python/unicode '{"folder": "/folder2/temp_folder", "parents": true}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k8x80Y7bqPYg95F286zGP/newFolder + uri: https://api.dnanexus.com/project-FPbYB400kz34P61Q4bjV0pQq/newFolder response: - body: {string: !!python/unicode '{"id":"project-FP9k8x80Y7bqPYg95F286zGP"}'} + body: {string: !!python/unicode '{"id":"project-FPbYB400kz34P61Q4bjV0pQq"}'} headers: connection: [keep-alive] content-length: ['41'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:25:57 GMT'] + date: ['Tue, 13 Nov 2018 20:33:20 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592757594-530800] + x-request-id: [1542141200306-626715] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"limit": 2, "name": "TestCopyTree.test_dx_to_existing_dx_dest_fail.83a037cb", + body: !!python/unicode '{"limit": 2, "name": "TestCopyTree.test_dx_to_existing_dx_dest_fail.c069c61f", "level": "VIEW"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/system/findProjects response: - body: {string: !!python/unicode '{"results":[{"id":"project-FP9k8vj0K1xbVJvpJkZZ2f7G","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} + body: {string: !!python/unicode '{"results":[{"id":"project-FPbYB3Q02Ykk83Zv4x93BjF8","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} headers: connection: [keep-alive] content-length: ['147'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:25:57 GMT'] + date: ['Tue, 13 Nov 2018 20:33:20 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592757712-546208] + x-request-id: [1542141200429-850174] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"includeHidden": false, "only": "folders", "folder": - "/temp_folder", "describe": {"fields": {"name": true, "folder": true}}}' + body: !!python/unicode '{"folder": "/temp_folder", "describe": {"fields": {"folder": + true, "name": true}}, "only": "folders", "includeHidden": false}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k8vj0K1xbVJvpJkZZ2f7G/listFolder + uri: https://api.dnanexus.com/project-FPbYB3Q02Ykk83Zv4x93BjF8/listFolder response: body: {string: !!python/unicode '{"folders":[]}'} headers: connection: [keep-alive] content-length: ['14'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:25:58 GMT'] + date: ['Tue, 13 Nov 2018 20:33:20 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592757913-216601] + x-request-id: [1542141200563-529765] status: {code: 200, message: OK} - request: body: !!python/unicode '{"limit": 2, "name": "test_dx_to_existing_dx_dest_fail.TempProj", @@ -274,41 +274,41 @@ interactions: headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/system/findProjects response: - body: {string: !!python/unicode '{"results":[{"id":"project-FP9k8x80Y7bqPYg95F286zGP","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} + body: {string: !!python/unicode '{"results":[{"id":"project-FPbYB400kz34P61Q4bjV0pQq","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} headers: connection: [keep-alive] content-length: ['147'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:25:58 GMT'] + date: ['Tue, 13 Nov 2018 20:33:20 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592758121-56611] + x-request-id: [1542141200661-427831] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"includeHidden": false, "only": "folders", "folder": - "/folder2", "describe": {"fields": {"name": true, "folder": true}}}' + body: !!python/unicode '{"folder": "/folder2", "describe": {"fields": {"folder": + true, "name": true}}, "only": "folders", "includeHidden": false}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k8x80Y7bqPYg95F286zGP/listFolder + uri: https://api.dnanexus.com/project-FPbYB400kz34P61Q4bjV0pQq/listFolder response: body: {string: !!python/unicode '{"folders":["/folder2/temp_folder"]}'} headers: connection: [keep-alive] content-length: ['36'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:25:58 GMT'] + date: ['Tue, 13 Nov 2018 20:33:20 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592758248-945006] + x-request-id: [1542141200779-564618] status: {code: 200, message: OK} - request: body: !!python/unicode '{"limit": 2, "name": "test_dx_to_existing_dx_dest_fail.TempProj", @@ -316,80 +316,80 @@ interactions: headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/system/findProjects response: - body: {string: !!python/unicode '{"results":[{"id":"project-FP9k8x80Y7bqPYg95F286zGP","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} + body: {string: !!python/unicode '{"results":[{"id":"project-FPbYB400kz34P61Q4bjV0pQq","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} headers: connection: [keep-alive] content-length: ['147'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:25:58 GMT'] + date: ['Tue, 13 Nov 2018 20:33:20 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592758365-937236] + x-request-id: [1542141200885-44049] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"includeHidden": false, "only": "folders", "folder": - "/folder2/temp_folder", "describe": {"fields": {"name": true, "folder": true}}}' + body: !!python/unicode '{"folder": "/folder2/temp_folder", "describe": {"fields": + {"folder": true, "name": true}}, "only": "folders", "includeHidden": false}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k8x80Y7bqPYg95F286zGP/listFolder + uri: https://api.dnanexus.com/project-FPbYB400kz34P61Q4bjV0pQq/listFolder response: body: {string: !!python/unicode '{"folders":[]}'} headers: connection: [keep-alive] content-length: ['14'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:25:58 GMT'] + date: ['Tue, 13 Nov 2018 20:33:21 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592758613-828818] + x-request-id: [1542141201000-308824] status: {code: 200, message: OK} - request: body: !!python/unicode '{}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k8x80Y7bqPYg95F286zGP/destroy + uri: https://api.dnanexus.com/project-FPbYB400kz34P61Q4bjV0pQq/destroy response: - body: {string: !!python/unicode '{"id":"project-FP9k8x80Y7bqPYg95F286zGP"}'} + body: {string: !!python/unicode '{"id":"project-FPbYB400kz34P61Q4bjV0pQq"}'} headers: connection: [keep-alive] content-length: ['41'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:26:01 GMT'] + date: ['Tue, 13 Nov 2018 20:33:23 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592758733-552478] + x-request-id: [1542141201095-702098] status: {code: 200, message: OK} - request: body: !!python/unicode '{}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k8vj0K1xbVJvpJkZZ2f7G/destroy + uri: https://api.dnanexus.com/project-FPbYB3Q02Ykk83Zv4x93BjF8/destroy response: - body: {string: !!python/unicode '{"id":"project-FP9k8vj0K1xbVJvpJkZZ2f7G"}'} + body: {string: !!python/unicode '{"id":"project-FPbYB3Q02Ykk83Zv4x93BjF8"}'} headers: connection: [keep-alive] content-length: ['41'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:26:03 GMT'] + date: ['Tue, 13 Nov 2018 20:33:25 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592761335-552037] + x-request-id: [1542141203632-710553] status: {code: 200, message: OK} version: 1 diff --git a/stor/tests/cassettes_py2/TestCopyTree/test_dx_to_other_obs.yaml b/stor_dx/stor_dx/tests/cassettes_py2/TestCopyTree/test_dx_to_other_obs.yaml similarity index 56% rename from stor/tests/cassettes_py2/TestCopyTree/test_dx_to_other_obs.yaml rename to stor_dx/stor_dx/tests/cassettes_py2/TestCopyTree/test_dx_to_other_obs.yaml index 131fe1f7..2e33de71 100644 --- a/stor/tests/cassettes_py2/TestCopyTree/test_dx_to_other_obs.yaml +++ b/stor_dx/stor_dx/tests/cassettes_py2/TestCopyTree/test_dx_to_other_obs.yaml @@ -1,209 +1,209 @@ interactions: - request: - body: !!python/unicode '{"name": "TestCopyTree.test_dx_to_other_obs.f51e5589"}' + body: !!python/unicode '{"name": "TestCopyTree.test_dx_to_other_obs.957f0e2a"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/project/new response: - body: {string: !!python/unicode '{"id":"project-FP9k8z00FJPbvgj6Jkpx4b27"}'} + body: {string: !!python/unicode '{"id":"project-FPbYB5Q02Y14P61Q4bjV0pQv"}'} headers: connection: [keep-alive] content-length: ['41'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:26:04 GMT'] + date: ['Tue, 13 Nov 2018 20:33:26 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592764102-360887] + x-request-id: [1542141206277-735972] status: {code: 200, message: OK} - request: body: !!python/unicode '{}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k8z00FJPbvgj6Jkpx4b27/describe + uri: https://api.dnanexus.com/project-FPbYB5Q02Y14P61Q4bjV0pQv/describe response: - body: {string: !!python/unicode '{"id":"project-FP9k8z00FJPbvgj6Jkpx4b27","name":"TestCopyTree.test_dx_to_other_obs.f51e5589","class":"project","created":1540592764000,"modified":1540592764000,"billTo":"org-counsyl","level":"ADMINISTER","dataUsage":0,"sponsoredDataUsage":0,"region":"aws:us-east-1","summary":"","description":"","protected":false,"restricted":false,"downloadRestricted":false,"containsPHI":false,"createdBy":{"user":"user-akumar_counsyl"},"version":0,"storageCost":0,"pendingTransfer":null,"tags":[],"defaultInstanceType":"mem2_hdd2_x2","archivalState":"live","archivalProgress":null,"totalSponsoredEgressBytes":0,"consumedSponsoredEgressBytes":0,"atSpendingLimit":false}'} + body: {string: !!python/unicode '{"id":"project-FPbYB5Q02Y14P61Q4bjV0pQv","name":"TestCopyTree.test_dx_to_other_obs.957f0e2a","class":"project","created":1542141206000,"modified":1542141206000,"billTo":"org-counsyl","level":"ADMINISTER","dataUsage":0,"sponsoredDataUsage":0,"region":"aws:us-east-1","summary":"","description":"","protected":false,"restricted":false,"downloadRestricted":false,"containsPHI":false,"createdBy":{"user":"user-akumar_counsyl"},"version":0,"storageCost":0,"pendingTransfer":null,"tags":[],"defaultInstanceType":"mem2_hdd2_x2","archivalState":"live","archivalProgress":null,"totalSponsoredEgressBytes":0,"consumedSponsoredEgressBytes":0,"atSpendingLimit":false}'} headers: connection: [keep-alive] content-length: ['655'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:26:04 GMT'] + date: ['Tue, 13 Nov 2018 20:33:26 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592764343-447358] + x-request-id: [1542141206371-93982] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"parents": true, "folder": "/temp_folder"}' + body: !!python/unicode '{"folder": "/temp_folder", "parents": true}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k8z00FJPbvgj6Jkpx4b27/newFolder + uri: https://api.dnanexus.com/project-FPbYB5Q02Y14P61Q4bjV0pQv/newFolder response: - body: {string: !!python/unicode '{"id":"project-FP9k8z00FJPbvgj6Jkpx4b27"}'} + body: {string: !!python/unicode '{"id":"project-FPbYB5Q02Y14P61Q4bjV0pQv"}'} headers: connection: [keep-alive] content-length: ['41'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:26:04 GMT'] + date: ['Tue, 13 Nov 2018 20:33:26 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592764720-789935] + x-request-id: [1542141206492-853061] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"name": "folder_file.txt", "project": "project-FP9k8z00FJPbvgj6Jkpx4b27", - "folder": "/temp_folder", "nonce": "1f8c5ca2d496041d140b66a007afd918c4d53d42f834641dc0fa076132cd61cb1540592764.967195"}' + body: !!python/unicode '{"project": "project-FPbYB5Q02Y14P61Q4bjV0pQv", "nonce": + "296f1d523e5c70188e791f2450648eeccd6248c0eae81158d4fff961d1b6ec801542141206.579977", + "folder": "/temp_folder", "name": "folder_file.txt"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/file/new response: - body: {string: !!python/unicode '{"id":"file-FP9k8z80FJPzxYfQJq0Qq9Px"}'} + body: {string: !!python/unicode '{"id":"file-FPbYB5Q02Y13GX7J265b704J"}'} headers: connection: [keep-alive] content-length: ['38'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:26:05 GMT'] + date: ['Tue, 13 Nov 2018 20:33:26 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592765021-369395] + x-request-id: [1542141206624-171493] status: {code: 200, message: OK} - request: body: !!python/unicode '{"fields": {"fileUploadParameters": true}}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k8z00FJPbvgj6Jkpx4b27/describe + uri: https://api.dnanexus.com/project-FPbYB5Q02Y14P61Q4bjV0pQv/describe response: - body: {string: !!python/unicode '{"id":"project-FP9k8z00FJPbvgj6Jkpx4b27","fileUploadParameters":{"maximumPartSize":5368709120,"minimumPartSize":5242880,"maximumFileSize":5497558138880,"maximumNumParts":10000,"emptyLastPartAllowed":true}}'} + body: {string: !!python/unicode '{"id":"project-FPbYB5Q02Y14P61Q4bjV0pQv","fileUploadParameters":{"maximumPartSize":5368709120,"minimumPartSize":5242880,"maximumFileSize":5497558138880,"maximumNumParts":10000,"emptyLastPartAllowed":true}}'} headers: connection: [keep-alive] content-length: ['205'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:26:05 GMT'] + date: ['Tue, 13 Nov 2018 20:33:26 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592765246-400931] + x-request-id: [1542141206765-956991] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"size": 5, "md5": "73dfff57fe24e807bd4fb1bc4e07cd73", - "index": 1}' + body: !!python/unicode '{"index": 1, "size": 5, "md5": "73dfff57fe24e807bd4fb1bc4e07cd73"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k8z80FJPzxYfQJq0Qq9Px/upload + uri: https://api.dnanexus.com/file-FPbYB5Q02Y13GX7J265b704J/upload response: - body: {string: !!python/unicode '{"url":"https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/190f/file/open/file-FP9k8z80FJPzxYfQJq0Qq9Px/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181026%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181026T222606Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=3f2d81878a997df16e0b075bde103a63a85c3b30e68ec16e35c0cc07558f8058","headers":{"host":"dnanexus-platform-upload-prod.s3.amazonaws.com","content-type":"binary/octet-stream","x-amz-server-side-encryption":"AES256","content-md5":"c9//V/4k6Ae9T7G8TgfNcw==","content-length":"5"},"expires":1540592886068}'} + body: {string: !!python/unicode '{"url":"https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/73a9/file/open/file-FPbYB5Q02Y13GX7J265b704J/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181113%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181113T203326Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=25acda07b1e3f1276caf56927b5bb0c6b185cb74490ec6201c00774f29b48d94","headers":{"host":"dnanexus-platform-upload-prod.s3.amazonaws.com","content-type":"binary/octet-stream","x-amz-server-side-encryption":"AES256","content-md5":"c9//V/4k6Ae9T7G8TgfNcw==","content-length":"5"},"expires":1542141326887}'} headers: connection: [keep-alive] content-length: ['692'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:26:06 GMT'] + date: ['Tue, 13 Nov 2018 20:33:26 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592765877-281156] + x-request-id: [1542141206868-981333] status: {code: 200, message: OK} - request: body: !!python/unicode data0 headers: DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] content-length: ['5'] content-md5: [c9//V/4k6Ae9T7G8TgfNcw==] content-type: [binary/octet-stream] host: [dnanexus-platform-upload-prod.s3.amazonaws.com] x-amz-server-side-encryption: [AES256] method: PUT - uri: https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/190f/file/open/file-FP9k8z80FJPzxYfQJq0Qq9Px/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181026%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181026T222606Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=3f2d81878a997df16e0b075bde103a63a85c3b30e68ec16e35c0cc07558f8058 + uri: https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/73a9/file/open/file-FPbYB5Q02Y13GX7J265b704J/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181113%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181113T203326Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=25acda07b1e3f1276caf56927b5bb0c6b185cb74490ec6201c00774f29b48d94 response: body: {string: !!python/unicode ''} headers: content-length: ['0'] - date: ['Fri, 26 Oct 2018 22:26:07 GMT'] + date: ['Tue, 13 Nov 2018 20:33:28 GMT'] etag: ['"73dfff57fe24e807bd4fb1bc4e07cd73"'] server: [AmazonS3] - x-amz-expiration: ['expiry-date="Sat, 17 Nov 2018 00:00:00 GMT", rule-id="3weekpurge"'] - x-amz-id-2: [x1gIh1U0fpE3H3cOmMCCp5zJmCTYIbUzMqhs8lFyu+QagNP8avAhjclW4yvkKkepZJL+7Oz/ahw=] - x-amz-request-id: [5B4A2DE8334F9D0C] + x-amz-expiration: ['expiry-date="Wed, 05 Dec 2018 00:00:00 GMT", rule-id="3weekpurge"'] + x-amz-id-2: [9xydCDBzEqmfcVP7DFhmVQ3lAtiAfgvPUTHyRpFTlC+8AZlsE8JQJn7yJt6gP8v/ygNWyK8acaY=] + x-amz-request-id: [DFCA6A1C14A32D6E] x-amz-server-side-encryption: [AES256] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"project": "project-FP9k8z00FJPbvgj6Jkpx4b27", "fields": + body: !!python/unicode '{"project": "project-FPbYB5Q02Y14P61Q4bjV0pQv", "fields": {"state": true}}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k8z80FJPzxYfQJq0Qq9Px/describe + uri: https://api.dnanexus.com/file-FPbYB5Q02Y13GX7J265b704J/describe response: - body: {string: !!python/unicode '{"id":"file-FP9k8z80FJPzxYfQJq0Qq9Px","state":"open"}'} + body: {string: !!python/unicode '{"id":"file-FPbYB5Q02Y13GX7J265b704J","state":"open"}'} headers: connection: [keep-alive] content-length: ['53'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:26:06 GMT'] + date: ['Tue, 13 Nov 2018 20:33:28 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592766696-874677] + x-request-id: [1542141207929-504458] status: {code: 200, message: OK} - request: body: !!python/unicode '{}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k8z80FJPzxYfQJq0Qq9Px/close + uri: https://api.dnanexus.com/file-FPbYB5Q02Y13GX7J265b704J/close response: - body: {string: !!python/unicode '{"id":"file-FP9k8z80FJPzxYfQJq0Qq9Px"}'} + body: {string: !!python/unicode '{"id":"file-FPbYB5Q02Y13GX7J265b704J"}'} headers: connection: [keep-alive] content-length: ['38'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:26:07 GMT'] + date: ['Tue, 13 Nov 2018 20:33:28 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592766884-930090] + x-request-id: [1542141208428-865170] status: {code: 200, message: OK} - request: body: !!python/unicode '{}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k8z00FJPbvgj6Jkpx4b27/destroy + uri: https://api.dnanexus.com/project-FPbYB5Q02Y14P61Q4bjV0pQv/destroy response: - body: {string: !!python/unicode '{"id":"project-FP9k8z00FJPbvgj6Jkpx4b27"}'} + body: {string: !!python/unicode '{"id":"project-FPbYB5Q02Y14P61Q4bjV0pQv"}'} headers: connection: [keep-alive] content-length: ['41'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:26:09 GMT'] + date: ['Tue, 13 Nov 2018 20:33:30 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592767107-207724] + x-request-id: [1542141208590-200158] status: {code: 200, message: OK} version: 1 diff --git a/stor/tests/cassettes_py2/TestCopyTree/test_dx_to_same_dx_pass.yaml b/stor_dx/stor_dx/tests/cassettes_py2/TestCopyTree/test_dx_to_same_dx_pass.yaml similarity index 57% rename from stor/tests/cassettes_py2/TestCopyTree/test_dx_to_same_dx_pass.yaml rename to stor_dx/stor_dx/tests/cassettes_py2/TestCopyTree/test_dx_to_same_dx_pass.yaml index 0cb6f64a..8d1daa3a 100644 --- a/stor/tests/cassettes_py2/TestCopyTree/test_dx_to_same_dx_pass.yaml +++ b/stor_dx/stor_dx/tests/cassettes_py2/TestCopyTree/test_dx_to_same_dx_pass.yaml @@ -1,303 +1,303 @@ interactions: - request: - body: !!python/unicode '{"name": "TestCopyTree.test_dx_to_same_dx_pass.7501b0a4"}' + body: !!python/unicode '{"name": "TestCopyTree.test_dx_to_same_dx_pass.e09c877d"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/project/new response: - body: {string: !!python/unicode '{"id":"project-FP9k9080v1xFPYg95F286zGQ"}'} + body: {string: !!python/unicode '{"id":"project-FPbYB6j0G743GX7J265b704P"}'} headers: connection: [keep-alive] content-length: ['41'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:26:09 GMT'] + date: ['Tue, 13 Nov 2018 20:33:31 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592769746-223321] + x-request-id: [1542141211365-715108] status: {code: 200, message: OK} - request: body: !!python/unicode '{}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k9080v1xFPYg95F286zGQ/describe + uri: https://api.dnanexus.com/project-FPbYB6j0G743GX7J265b704P/describe response: - body: {string: !!python/unicode '{"id":"project-FP9k9080v1xFPYg95F286zGQ","name":"TestCopyTree.test_dx_to_same_dx_pass.7501b0a4","class":"project","created":1540592769000,"modified":1540592769000,"billTo":"org-counsyl","level":"ADMINISTER","dataUsage":0,"sponsoredDataUsage":0,"region":"aws:us-east-1","summary":"","description":"","protected":false,"restricted":false,"downloadRestricted":false,"containsPHI":false,"createdBy":{"user":"user-akumar_counsyl"},"version":0,"storageCost":0,"pendingTransfer":null,"tags":[],"defaultInstanceType":"mem2_hdd2_x2","archivalState":"live","archivalProgress":null,"totalSponsoredEgressBytes":0,"consumedSponsoredEgressBytes":0,"atSpendingLimit":false}'} + body: {string: !!python/unicode '{"id":"project-FPbYB6j0G743GX7J265b704P","name":"TestCopyTree.test_dx_to_same_dx_pass.e09c877d","class":"project","created":1542141211000,"modified":1542141211000,"billTo":"org-counsyl","level":"ADMINISTER","dataUsage":0,"sponsoredDataUsage":0,"region":"aws:us-east-1","summary":"","description":"","protected":false,"restricted":false,"downloadRestricted":false,"containsPHI":false,"createdBy":{"user":"user-akumar_counsyl"},"version":0,"storageCost":0,"pendingTransfer":null,"tags":[],"defaultInstanceType":"mem2_hdd2_x2","archivalState":"live","archivalProgress":null,"totalSponsoredEgressBytes":0,"consumedSponsoredEgressBytes":0,"atSpendingLimit":false}'} headers: connection: [keep-alive] content-length: ['658'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:26:09 GMT'] + date: ['Tue, 13 Nov 2018 20:33:31 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592769882-944121] + x-request-id: [1542141211470-544332] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"parents": true, "folder": "/temp_folder"}' + body: !!python/unicode '{"folder": "/temp_folder", "parents": true}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k9080v1xFPYg95F286zGQ/newFolder + uri: https://api.dnanexus.com/project-FPbYB6j0G743GX7J265b704P/newFolder response: - body: {string: !!python/unicode '{"id":"project-FP9k9080v1xFPYg95F286zGQ"}'} + body: {string: !!python/unicode '{"id":"project-FPbYB6j0G743GX7J265b704P"}'} headers: connection: [keep-alive] content-length: ['41'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:26:10 GMT'] + date: ['Tue, 13 Nov 2018 20:33:31 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592770016-579907] + x-request-id: [1542141211626-243108] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"name": "folder_file.txt", "project": "project-FP9k9080v1xFPYg95F286zGQ", - "folder": "/temp_folder", "nonce": "fbd66bdffdcbf3e7cf7d182c1f30cdbeea9163ff877eb71b2d26e8c5a1e22a091540592770.081531"}' + body: !!python/unicode '{"project": "project-FPbYB6j0G743GX7J265b704P", "nonce": + "0716674db57c02b8f96dbb16e713656afae5385cdbbca6a51c09a391935d6a6a1542141211.733193", + "folder": "/temp_folder", "name": "folder_file.txt"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/file/new response: - body: {string: !!python/unicode '{"id":"file-FP9k90Q0v1x5vgj6Jkpx4b28"}'} + body: {string: !!python/unicode '{"id":"file-FPbYB6j0G74983Zv4x93BjF9"}'} headers: connection: [keep-alive] content-length: ['38'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:26:10 GMT'] + date: ['Tue, 13 Nov 2018 20:33:31 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592770127-19354] + x-request-id: [1542141211776-118238] status: {code: 200, message: OK} - request: body: !!python/unicode '{"fields": {"fileUploadParameters": true}}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k9080v1xFPYg95F286zGQ/describe + uri: https://api.dnanexus.com/project-FPbYB6j0G743GX7J265b704P/describe response: - body: {string: !!python/unicode '{"id":"project-FP9k9080v1xFPYg95F286zGQ","fileUploadParameters":{"maximumPartSize":5368709120,"minimumPartSize":5242880,"maximumFileSize":5497558138880,"maximumNumParts":10000,"emptyLastPartAllowed":true}}'} + body: {string: !!python/unicode '{"id":"project-FPbYB6j0G743GX7J265b704P","fileUploadParameters":{"maximumPartSize":5368709120,"minimumPartSize":5242880,"maximumFileSize":5497558138880,"maximumNumParts":10000,"emptyLastPartAllowed":true}}'} headers: connection: [keep-alive] content-length: ['205'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:26:10 GMT'] + date: ['Tue, 13 Nov 2018 20:33:31 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592770341-115494] + x-request-id: [1542141211909-430322] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"size": 4, "md5": "8d777f385d3dfec8815d20f7496026dc", - "index": 1}' + body: !!python/unicode '{"index": 1, "size": 4, "md5": "8d777f385d3dfec8815d20f7496026dc"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k90Q0v1x5vgj6Jkpx4b28/upload + uri: https://api.dnanexus.com/file-FPbYB6j0G74983Zv4x93BjF9/upload response: - body: {string: !!python/unicode '{"url":"https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/eec2/file/open/file-FP9k90Q0v1x5vgj6Jkpx4b28/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181026%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181026T222610Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=b1a0d2af63d3162fffefa4d25f3caaddeee66a8fd3ff97014d693b78911d60b6","headers":{"host":"dnanexus-platform-upload-prod.s3.amazonaws.com","content-type":"binary/octet-stream","x-amz-server-side-encryption":"AES256","content-md5":"jXd/OF09/siBXSD3SWAm3A==","content-length":"4"},"expires":1540592890498}'} + body: {string: !!python/unicode '{"url":"https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/4c48/file/open/file-FPbYB6j0G74983Zv4x93BjF9/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181113%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181113T203332Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=5e66f367150ce51f6b7edf6508ad5ed42ece495fdbd1cb2828725aab4daa089f","headers":{"host":"dnanexus-platform-upload-prod.s3.amazonaws.com","content-type":"binary/octet-stream","x-amz-server-side-encryption":"AES256","content-md5":"jXd/OF09/siBXSD3SWAm3A==","content-length":"4"},"expires":1542141332045}'} headers: connection: [keep-alive] content-length: ['692'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:26:10 GMT'] + date: ['Tue, 13 Nov 2018 20:33:32 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592770477-485566] + x-request-id: [1542141212003-97862] status: {code: 200, message: OK} - request: body: !!python/unicode data headers: DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] content-length: ['4'] content-md5: [jXd/OF09/siBXSD3SWAm3A==] content-type: [binary/octet-stream] host: [dnanexus-platform-upload-prod.s3.amazonaws.com] x-amz-server-side-encryption: [AES256] method: PUT - uri: https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/eec2/file/open/file-FP9k90Q0v1x5vgj6Jkpx4b28/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181026%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181026T222610Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=b1a0d2af63d3162fffefa4d25f3caaddeee66a8fd3ff97014d693b78911d60b6 + uri: https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/4c48/file/open/file-FPbYB6j0G74983Zv4x93BjF9/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181113%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181113T203332Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=5e66f367150ce51f6b7edf6508ad5ed42ece495fdbd1cb2828725aab4daa089f response: body: {string: !!python/unicode ''} headers: content-length: ['0'] - date: ['Fri, 26 Oct 2018 22:26:11 GMT'] + date: ['Tue, 13 Nov 2018 20:33:33 GMT'] etag: ['"8d777f385d3dfec8815d20f7496026dc"'] server: [AmazonS3] - x-amz-expiration: ['expiry-date="Sat, 17 Nov 2018 00:00:00 GMT", rule-id="3weekpurge"'] - x-amz-id-2: [yzpBu1GPfmFlWNjnj2xch5pDS/IJFc1OYojJGumYBOnomQXi+m1yVfEhbjB+s9N6qj+x4icquiA=] - x-amz-request-id: [368D7B79A3D84597] + x-amz-expiration: ['expiry-date="Wed, 05 Dec 2018 00:00:00 GMT", rule-id="3weekpurge"'] + x-amz-id-2: [t6N9Oqydqzy6lmmPeEl73z1DLl38oRlZocMAOoNdhJSV1uL2ALHCfQNuzEBvmQKaLVCz479ajFA=] + x-amz-request-id: [BA335DDF96A66269] x-amz-server-side-encryption: [AES256] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"project": "project-FP9k9080v1xFPYg95F286zGQ", "fields": + body: !!python/unicode '{"project": "project-FPbYB6j0G743GX7J265b704P", "fields": {"state": true}}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k90Q0v1x5vgj6Jkpx4b28/describe + uri: https://api.dnanexus.com/file-FPbYB6j0G74983Zv4x93BjF9/describe response: - body: {string: !!python/unicode '{"id":"file-FP9k90Q0v1x5vgj6Jkpx4b28","state":"open"}'} + body: {string: !!python/unicode '{"id":"file-FPbYB6j0G74983Zv4x93BjF9","state":"open"}'} headers: connection: [keep-alive] content-length: ['53'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:26:11 GMT'] + date: ['Tue, 13 Nov 2018 20:33:32 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592771138-619033] + x-request-id: [1542141212755-499882] status: {code: 200, message: OK} - request: body: !!python/unicode '{}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k90Q0v1x5vgj6Jkpx4b28/close + uri: https://api.dnanexus.com/file-FPbYB6j0G74983Zv4x93BjF9/close response: - body: {string: !!python/unicode '{"id":"file-FP9k90Q0v1x5vgj6Jkpx4b28"}'} + body: {string: !!python/unicode '{"id":"file-FPbYB6j0G74983Zv4x93BjF9"}'} headers: connection: [keep-alive] content-length: ['38'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:26:11 GMT'] + date: ['Tue, 13 Nov 2018 20:33:32 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592771357-953882] + x-request-id: [1542141212870-833792] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"project": "project-FP9k9080v1xFPYg95F286zGQ", "fields": + body: !!python/unicode '{"project": "project-FPbYB6j0G743GX7J265b704P", "fields": {"state": true}}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k90Q0v1x5vgj6Jkpx4b28/describe + uri: https://api.dnanexus.com/file-FPbYB6j0G74983Zv4x93BjF9/describe response: - body: {string: !!python/unicode '{"id":"file-FP9k90Q0v1x5vgj6Jkpx4b28","state":"closing"}'} + body: {string: !!python/unicode '{"id":"file-FPbYB6j0G74983Zv4x93BjF9","state":"closing"}'} headers: connection: [keep-alive] content-length: ['56'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:26:11 GMT'] + date: ['Tue, 13 Nov 2018 20:33:33 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592771538-347590] + x-request-id: [1542141213040-606152] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"project": "project-FP9k9080v1xFPYg95F286zGQ", "fields": + body: !!python/unicode '{"project": "project-FPbYB6j0G743GX7J265b704P", "fields": {"state": true}}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k90Q0v1x5vgj6Jkpx4b28/describe + uri: https://api.dnanexus.com/file-FPbYB6j0G74983Zv4x93BjF9/describe response: - body: {string: !!python/unicode '{"id":"file-FP9k90Q0v1x5vgj6Jkpx4b28","state":"closed"}'} + body: {string: !!python/unicode '{"id":"file-FPbYB6j0G74983Zv4x93BjF9","state":"closed"}'} headers: connection: [keep-alive] content-length: ['55'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:26:13 GMT'] + date: ['Tue, 13 Nov 2018 20:33:35 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592773709-686910] + x-request-id: [1542141215143-401291] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"limit": 2, "name": "TestCopyTree.test_dx_to_same_dx_pass.7501b0a4", + body: !!python/unicode '{"limit": 2, "name": "TestCopyTree.test_dx_to_same_dx_pass.e09c877d", "level": "VIEW"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/system/findProjects response: - body: {string: !!python/unicode '{"results":[{"id":"project-FP9k9080v1xFPYg95F286zGQ","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} + body: {string: !!python/unicode '{"results":[{"id":"project-FPbYB6j0G743GX7J265b704P","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} headers: connection: [keep-alive] content-length: ['147'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:26:13 GMT'] + date: ['Tue, 13 Nov 2018 20:33:35 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592773831-44569] + x-request-id: [1542141215250-401423] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"includeHidden": false, "only": "folders", "folder": - "/temp_folder", "describe": {"fields": {"name": true, "folder": true}}}' + body: !!python/unicode '{"folder": "/temp_folder", "describe": {"fields": {"folder": + true, "name": true}}, "only": "folders", "includeHidden": false}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k9080v1xFPYg95F286zGQ/listFolder + uri: https://api.dnanexus.com/project-FPbYB6j0G743GX7J265b704P/listFolder response: body: {string: !!python/unicode '{"folders":[]}'} headers: connection: [keep-alive] content-length: ['14'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:26:14 GMT'] + date: ['Tue, 13 Nov 2018 20:33:35 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592773998-103020] + x-request-id: [1542141215362-390145] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"limit": 2, "name": "TestCopyTree.test_dx_to_same_dx_pass.7501b0a4", + body: !!python/unicode '{"limit": 2, "name": "TestCopyTree.test_dx_to_same_dx_pass.e09c877d", "level": "VIEW"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/system/findProjects response: - body: {string: !!python/unicode '{"results":[{"id":"project-FP9k9080v1xFPYg95F286zGQ","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} + body: {string: !!python/unicode '{"results":[{"id":"project-FPbYB6j0G743GX7J265b704P","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} headers: connection: [keep-alive] content-length: ['147'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:26:14 GMT'] + date: ['Tue, 13 Nov 2018 20:33:35 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592774212-117561] + x-request-id: [1542141215472-142357] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"objects": [{"name": "temp_folder", "project": "project-FP9k9080v1xFPYg95F286zGQ", - "batchsize": 2, "folder": "/"}]}' + body: !!python/unicode '{"objects": [{"project": "project-FPbYB6j0G743GX7J265b704P", + "folder": "/", "name": "temp_folder", "batchsize": 2}]}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/system/resolveDataObjects response: @@ -306,51 +306,51 @@ interactions: connection: [keep-alive] content-length: ['16'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:26:14 GMT'] + date: ['Tue, 13 Nov 2018 20:33:35 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592774389-51635] + x-request-id: [1542141215602-454319] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"includeHidden": false, "only": "folders", "folder": - "/temp_folder", "describe": {"fields": {"name": true, "folder": true}}}' + body: !!python/unicode '{"folder": "/temp_folder", "describe": {"fields": {"folder": + true, "name": true}}, "only": "folders", "includeHidden": false}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k9080v1xFPYg95F286zGQ/listFolder + uri: https://api.dnanexus.com/project-FPbYB6j0G743GX7J265b704P/listFolder response: body: {string: !!python/unicode '{"folders":[]}'} headers: connection: [keep-alive] content-length: ['14'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:26:14 GMT'] + date: ['Tue, 13 Nov 2018 20:33:35 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592774523-344375] + x-request-id: [1542141215692-196500] status: {code: 200, message: OK} - request: body: !!python/unicode '{}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k9080v1xFPYg95F286zGQ/destroy + uri: https://api.dnanexus.com/project-FPbYB6j0G743GX7J265b704P/destroy response: - body: {string: !!python/unicode '{"id":"project-FP9k9080v1xFPYg95F286zGQ"}'} + body: {string: !!python/unicode '{"id":"project-FPbYB6j0G743GX7J265b704P"}'} headers: connection: [keep-alive] content-length: ['41'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:26:16 GMT'] + date: ['Tue, 13 Nov 2018 20:33:38 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592774695-3178] + x-request-id: [1542141215787-378438] status: {code: 200, message: OK} version: 1 diff --git a/stor/tests/cassettes_py2/TestCopyTree/test_move_diff_project_fail.yaml b/stor_dx/stor_dx/tests/cassettes_py2/TestCopyTree/test_move_diff_project_fail.yaml similarity index 58% rename from stor/tests/cassettes_py2/TestCopyTree/test_move_diff_project_fail.yaml rename to stor_dx/stor_dx/tests/cassettes_py2/TestCopyTree/test_move_diff_project_fail.yaml index 50affd25..e3c2e4c6 100644 --- a/stor/tests/cassettes_py2/TestCopyTree/test_move_diff_project_fail.yaml +++ b/stor_dx/stor_dx/tests/cassettes_py2/TestCopyTree/test_move_diff_project_fail.yaml @@ -1,252 +1,252 @@ interactions: - request: - body: !!python/unicode '{"name": "TestCopyTree.test_move_diff_project_fail.ae5970f3"}' + body: !!python/unicode '{"name": "TestCopyTree.test_move_diff_project_fail.69945e3b"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/project/new response: - body: {string: !!python/unicode '{"id":"project-FP9k9280ZKzPxYfQJq0Qq9Pz"}'} + body: {string: !!python/unicode '{"id":"project-FPbYB8Q06gJZk4Yj0JJ926x6"}'} headers: connection: [keep-alive] content-length: ['41'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:26:17 GMT'] + date: ['Tue, 13 Nov 2018 20:33:38 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592777243-667048] + x-request-id: [1542141218529-83757] status: {code: 200, message: OK} - request: body: !!python/unicode '{}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k9280ZKzPxYfQJq0Qq9Pz/describe + uri: https://api.dnanexus.com/project-FPbYB8Q06gJZk4Yj0JJ926x6/describe response: - body: {string: !!python/unicode '{"id":"project-FP9k9280ZKzPxYfQJq0Qq9Pz","name":"TestCopyTree.test_move_diff_project_fail.ae5970f3","class":"project","created":1540592777000,"modified":1540592777000,"billTo":"org-counsyl","level":"ADMINISTER","dataUsage":0,"sponsoredDataUsage":0,"region":"aws:us-east-1","summary":"","description":"","protected":false,"restricted":false,"downloadRestricted":false,"containsPHI":false,"createdBy":{"user":"user-akumar_counsyl"},"version":0,"storageCost":0,"pendingTransfer":null,"tags":[],"defaultInstanceType":"mem2_hdd2_x2","archivalState":"live","archivalProgress":null,"totalSponsoredEgressBytes":0,"consumedSponsoredEgressBytes":0,"atSpendingLimit":false}'} + body: {string: !!python/unicode '{"id":"project-FPbYB8Q06gJZk4Yj0JJ926x6","name":"TestCopyTree.test_move_diff_project_fail.69945e3b","class":"project","created":1542141218000,"modified":1542141218000,"billTo":"org-counsyl","level":"ADMINISTER","dataUsage":0,"sponsoredDataUsage":0,"region":"aws:us-east-1","summary":"","description":"","protected":false,"restricted":false,"downloadRestricted":false,"containsPHI":false,"createdBy":{"user":"user-akumar_counsyl"},"version":0,"storageCost":0,"pendingTransfer":null,"tags":[],"defaultInstanceType":"mem2_hdd2_x2","archivalState":"live","archivalProgress":null,"totalSponsoredEgressBytes":0,"consumedSponsoredEgressBytes":0,"atSpendingLimit":false}'} headers: connection: [keep-alive] content-length: ['662'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:26:17 GMT'] + date: ['Tue, 13 Nov 2018 20:33:38 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592777376-848482] + x-request-id: [1542141218639-280599] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"parents": true, "folder": "/"}' + body: !!python/unicode '{"folder": "/", "parents": true}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k9280ZKzPxYfQJq0Qq9Pz/newFolder + uri: https://api.dnanexus.com/project-FPbYB8Q06gJZk4Yj0JJ926x6/newFolder response: - body: {string: !!python/unicode '{"id":"project-FP9k9280ZKzPxYfQJq0Qq9Pz"}'} + body: {string: !!python/unicode '{"id":"project-FPbYB8Q06gJZk4Yj0JJ926x6"}'} headers: connection: [keep-alive] content-length: ['41'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:26:17 GMT'] + date: ['Tue, 13 Nov 2018 20:33:38 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592777545-151071] + x-request-id: [1542141218754-772060] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"name": "temp_folderfolder_file.txt", "project": "project-FP9k9280ZKzPxYfQJq0Qq9Pz", - "folder": "/", "nonce": "8c18ae49e0e242230b3b3594d5ce710ef8b6e0f46935541ca7977f1f96dd4e8c1540592777.617665"}' + body: !!python/unicode '{"project": "project-FPbYB8Q06gJZk4Yj0JJ926x6", "nonce": + "864ce3e2ed603c46e3bf2271ad9748c720f92f38458ae72e9f576c56d3f74f731542141218.804120", + "folder": "/", "name": "temp_folderfolder_file.txt"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/file/new response: - body: {string: !!python/unicode '{"id":"file-FP9k9280ZKz5vgj6Jkpx4b2B"}'} + body: {string: !!python/unicode '{"id":"file-FPbYB8Q06gJZk4Yj0JJ926x7"}'} headers: connection: [keep-alive] content-length: ['38'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:26:17 GMT'] + date: ['Tue, 13 Nov 2018 20:33:38 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592777662-53215] + x-request-id: [1542141218857-269013] status: {code: 200, message: OK} - request: body: !!python/unicode '{"fields": {"fileUploadParameters": true}}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k9280ZKzPxYfQJq0Qq9Pz/describe + uri: https://api.dnanexus.com/project-FPbYB8Q06gJZk4Yj0JJ926x6/describe response: - body: {string: !!python/unicode '{"id":"project-FP9k9280ZKzPxYfQJq0Qq9Pz","fileUploadParameters":{"maximumPartSize":5368709120,"minimumPartSize":5242880,"maximumFileSize":5497558138880,"maximumNumParts":10000,"emptyLastPartAllowed":true}}'} + body: {string: !!python/unicode '{"id":"project-FPbYB8Q06gJZk4Yj0JJ926x6","fileUploadParameters":{"maximumPartSize":5368709120,"minimumPartSize":5242880,"maximumFileSize":5497558138880,"maximumNumParts":10000,"emptyLastPartAllowed":true}}'} headers: connection: [keep-alive] content-length: ['205'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:26:17 GMT'] + date: ['Tue, 13 Nov 2018 20:33:39 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592777800-717539] + x-request-id: [1542141219009-105666] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"size": 4, "md5": "8d777f385d3dfec8815d20f7496026dc", - "index": 1}' + body: !!python/unicode '{"index": 1, "size": 4, "md5": "8d777f385d3dfec8815d20f7496026dc"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k9280ZKz5vgj6Jkpx4b2B/upload + uri: https://api.dnanexus.com/file-FPbYB8Q06gJZk4Yj0JJ926x7/upload response: - body: {string: !!python/unicode '{"url":"https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/f5ea/file/open/file-FP9k9280ZKz5vgj6Jkpx4b2B/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181026%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181026T222617Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=5f5d3d401f7f7d2cf0cb2300258dbc87d7a516553849a3aaa590c4ca1f3c004c","headers":{"host":"dnanexus-platform-upload-prod.s3.amazonaws.com","content-type":"binary/octet-stream","x-amz-server-side-encryption":"AES256","content-md5":"jXd/OF09/siBXSD3SWAm3A==","content-length":"4"},"expires":1540592897958}'} + body: {string: !!python/unicode '{"url":"https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/7cc7/file/open/file-FPbYB8Q06gJZk4Yj0JJ926x7/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181113%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181113T203339Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=c086b360a243489d2c7eb80ef6abffd8a09d838f789f1d57839e5bae605b3f2b","headers":{"host":"dnanexus-platform-upload-prod.s3.amazonaws.com","content-type":"binary/octet-stream","x-amz-server-side-encryption":"AES256","content-md5":"jXd/OF09/siBXSD3SWAm3A==","content-length":"4"},"expires":1542141339128}'} headers: connection: [keep-alive] content-length: ['692'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:26:17 GMT'] + date: ['Tue, 13 Nov 2018 20:33:39 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592777945-384558] + x-request-id: [1542141219111-37828] status: {code: 200, message: OK} - request: body: !!python/unicode data headers: DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] content-length: ['4'] content-md5: [jXd/OF09/siBXSD3SWAm3A==] content-type: [binary/octet-stream] host: [dnanexus-platform-upload-prod.s3.amazonaws.com] x-amz-server-side-encryption: [AES256] method: PUT - uri: https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/f5ea/file/open/file-FP9k9280ZKz5vgj6Jkpx4b2B/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181026%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181026T222617Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=5f5d3d401f7f7d2cf0cb2300258dbc87d7a516553849a3aaa590c4ca1f3c004c + uri: https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/7cc7/file/open/file-FPbYB8Q06gJZk4Yj0JJ926x7/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181113%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181113T203339Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=c086b360a243489d2c7eb80ef6abffd8a09d838f789f1d57839e5bae605b3f2b response: body: {string: !!python/unicode ''} headers: content-length: ['0'] - date: ['Fri, 26 Oct 2018 22:26:19 GMT'] + date: ['Tue, 13 Nov 2018 20:33:40 GMT'] etag: ['"8d777f385d3dfec8815d20f7496026dc"'] server: [AmazonS3] - x-amz-expiration: ['expiry-date="Sat, 17 Nov 2018 00:00:00 GMT", rule-id="3weekpurge"'] - x-amz-id-2: [Cv8SuBiDqYvMjZpbnftIdJomSmMYXzBCY3/xsxujMXt1dA/ul7O/bVVTzRsScmcUA9LSaPZglHE=] - x-amz-request-id: [C5E8CFC0EDF8CF54] + x-amz-expiration: ['expiry-date="Wed, 05 Dec 2018 00:00:00 GMT", rule-id="3weekpurge"'] + x-amz-id-2: [WZHckj5W7vzdqS9CyFs0ErCTx1OHKCvanMWEx6i77PbbU8rUfUHxSHZcQSYILKgwJoY74J6xUdc=] + x-amz-request-id: [798F07503147B9A8] x-amz-server-side-encryption: [AES256] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"project": "project-FP9k9280ZKzPxYfQJq0Qq9Pz", "fields": + body: !!python/unicode '{"project": "project-FPbYB8Q06gJZk4Yj0JJ926x6", "fields": {"state": true}}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k9280ZKz5vgj6Jkpx4b2B/describe + uri: https://api.dnanexus.com/file-FPbYB8Q06gJZk4Yj0JJ926x7/describe response: - body: {string: !!python/unicode '{"id":"file-FP9k9280ZKz5vgj6Jkpx4b2B","state":"open"}'} + body: {string: !!python/unicode '{"id":"file-FPbYB8Q06gJZk4Yj0JJ926x7","state":"open"}'} headers: connection: [keep-alive] content-length: ['53'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:26:18 GMT'] + date: ['Tue, 13 Nov 2018 20:33:39 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592778814-538372] + x-request-id: [1542141219604-527483] status: {code: 200, message: OK} - request: body: !!python/unicode '{}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k9280ZKz5vgj6Jkpx4b2B/close + uri: https://api.dnanexus.com/file-FPbYB8Q06gJZk4Yj0JJ926x7/close response: - body: {string: !!python/unicode '{"id":"file-FP9k9280ZKz5vgj6Jkpx4b2B"}'} + body: {string: !!python/unicode '{"id":"file-FPbYB8Q06gJZk4Yj0JJ926x7"}'} headers: connection: [keep-alive] content-length: ['38'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:26:19 GMT'] + date: ['Tue, 13 Nov 2018 20:33:39 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592779067-264095] + x-request-id: [1542141219705-168092] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"project": "project-FP9k9280ZKzPxYfQJq0Qq9Pz", "fields": + body: !!python/unicode '{"project": "project-FPbYB8Q06gJZk4Yj0JJ926x6", "fields": {"state": true}}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k9280ZKz5vgj6Jkpx4b2B/describe + uri: https://api.dnanexus.com/file-FPbYB8Q06gJZk4Yj0JJ926x7/describe response: - body: {string: !!python/unicode '{"id":"file-FP9k9280ZKz5vgj6Jkpx4b2B","state":"closing"}'} + body: {string: !!python/unicode '{"id":"file-FPbYB8Q06gJZk4Yj0JJ926x7","state":"closing"}'} headers: connection: [keep-alive] content-length: ['56'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:26:19 GMT'] + date: ['Tue, 13 Nov 2018 20:33:40 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592779208-391505] + x-request-id: [1542141219872-938688] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"project": "project-FP9k9280ZKzPxYfQJq0Qq9Pz", "fields": + body: !!python/unicode '{"project": "project-FPbYB8Q06gJZk4Yj0JJ926x6", "fields": {"state": true}}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k9280ZKz5vgj6Jkpx4b2B/describe + uri: https://api.dnanexus.com/file-FPbYB8Q06gJZk4Yj0JJ926x7/describe response: - body: {string: !!python/unicode '{"id":"file-FP9k9280ZKz5vgj6Jkpx4b2B","state":"closed"}'} + body: {string: !!python/unicode '{"id":"file-FPbYB8Q06gJZk4Yj0JJ926x7","state":"closed"}'} headers: connection: [keep-alive] content-length: ['55'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:26:21 GMT'] + date: ['Tue, 13 Nov 2018 20:33:42 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592781331-116290] + x-request-id: [1542141222470-167337] status: {code: 200, message: OK} - request: body: !!python/unicode '{"name": "test_move_diff_project_fail.TempProj"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/project/new response: - body: {string: !!python/unicode '{"id":"project-FP9k9380J04zvv365P3k8Zx0"}'} + body: {string: !!python/unicode '{"id":"project-FPbYB9Q085gj2gzq1k0gg2zy"}'} headers: connection: [keep-alive] content-length: ['41'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:26:21 GMT'] + date: ['Tue, 13 Nov 2018 20:33:42 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592781451-160380] + x-request-id: [1542141222605-288133] status: {code: 200, message: OK} - request: body: !!python/unicode '{"limit": 2, "name": "test_move_diff_project_fail.TempProj", @@ -254,80 +254,80 @@ interactions: headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/system/findProjects response: - body: {string: !!python/unicode '{"results":[{"id":"project-FP9k9380J04zvv365P3k8Zx0","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} + body: {string: !!python/unicode '{"results":[{"id":"project-FPbYB9Q085gj2gzq1k0gg2zy","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} headers: connection: [keep-alive] content-length: ['147'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:26:21 GMT'] + date: ['Tue, 13 Nov 2018 20:33:42 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592781577-741362] + x-request-id: [1542141222744-811301] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"limit": 2, "name": "TestCopyTree.test_move_diff_project_fail.ae5970f3", + body: !!python/unicode '{"limit": 2, "name": "TestCopyTree.test_move_diff_project_fail.69945e3b", "level": "VIEW"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/system/findProjects response: - body: {string: !!python/unicode '{"results":[{"id":"project-FP9k9280ZKzPxYfQJq0Qq9Pz","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} + body: {string: !!python/unicode '{"results":[{"id":"project-FPbYB8Q06gJZk4Yj0JJ926x6","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} headers: connection: [keep-alive] content-length: ['147'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:26:21 GMT'] + date: ['Tue, 13 Nov 2018 20:33:42 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592781710-735651] + x-request-id: [1542141222902-705570] status: {code: 200, message: OK} - request: body: !!python/unicode '{}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k9380J04zvv365P3k8Zx0/destroy + uri: https://api.dnanexus.com/project-FPbYB9Q085gj2gzq1k0gg2zy/destroy response: - body: {string: !!python/unicode '{"id":"project-FP9k9380J04zvv365P3k8Zx0"}'} + body: {string: !!python/unicode '{"id":"project-FPbYB9Q085gj2gzq1k0gg2zy"}'} headers: connection: [keep-alive] content-length: ['41'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:26:24 GMT'] + date: ['Tue, 13 Nov 2018 20:33:45 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592781839-597082] + x-request-id: [1542141223042-916777] status: {code: 200, message: OK} - request: body: !!python/unicode '{}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k9280ZKzPxYfQJq0Qq9Pz/destroy + uri: https://api.dnanexus.com/project-FPbYB8Q06gJZk4Yj0JJ926x6/destroy response: - body: {string: !!python/unicode '{"id":"project-FP9k9280ZKzPxYfQJq0Qq9Pz"}'} + body: {string: !!python/unicode '{"id":"project-FPbYB8Q06gJZk4Yj0JJ926x6"}'} headers: connection: [keep-alive] content-length: ['41'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:26:27 GMT'] + date: ['Tue, 13 Nov 2018 20:33:47 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592784387-602417] + x-request-id: [1542141225513-212334] status: {code: 200, message: OK} version: 1 diff --git a/stor/tests/cassettes_py2/TestCopyTree/test_move_root_within_project_fail.yaml b/stor_dx/stor_dx/tests/cassettes_py2/TestCopyTree/test_move_root_within_project_fail.yaml similarity index 58% rename from stor/tests/cassettes_py2/TestCopyTree/test_move_root_within_project_fail.yaml rename to stor_dx/stor_dx/tests/cassettes_py2/TestCopyTree/test_move_root_within_project_fail.yaml index 113740e5..b3e97362 100644 --- a/stor/tests/cassettes_py2/TestCopyTree/test_move_root_within_project_fail.yaml +++ b/stor_dx/stor_dx/tests/cassettes_py2/TestCopyTree/test_move_root_within_project_fail.yaml @@ -1,251 +1,251 @@ interactions: - request: - body: !!python/unicode '{"name": "TestCopyTree.test_move_root_within_project_fail.ae4c6d3e"}' + body: !!python/unicode '{"name": "TestCopyTree.test_move_root_within_project_fail.dd68b00f"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/project/new response: - body: {string: !!python/unicode '{"id":"project-FP9k94j0YGxqPYg95F286zGV"}'} + body: {string: !!python/unicode '{"id":"project-FPbYBF00pKBZk4Yj0JJ926x9"}'} headers: connection: [keep-alive] content-length: ['41'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:26:27 GMT'] + date: ['Tue, 13 Nov 2018 20:33:48 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592787546-437945] + x-request-id: [1542141228093-922794] status: {code: 200, message: OK} - request: body: !!python/unicode '{}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k94j0YGxqPYg95F286zGV/describe + uri: https://api.dnanexus.com/project-FPbYBF00pKBZk4Yj0JJ926x9/describe response: - body: {string: !!python/unicode '{"id":"project-FP9k94j0YGxqPYg95F286zGV","name":"TestCopyTree.test_move_root_within_project_fail.ae4c6d3e","class":"project","created":1540592787000,"modified":1540592787000,"billTo":"org-counsyl","level":"ADMINISTER","dataUsage":0,"sponsoredDataUsage":0,"region":"aws:us-east-1","summary":"","description":"","protected":false,"restricted":false,"downloadRestricted":false,"containsPHI":false,"createdBy":{"user":"user-akumar_counsyl"},"version":0,"storageCost":0,"pendingTransfer":null,"tags":[],"defaultInstanceType":"mem2_hdd2_x2","archivalState":"live","archivalProgress":null,"totalSponsoredEgressBytes":0,"consumedSponsoredEgressBytes":0,"atSpendingLimit":false}'} + body: {string: !!python/unicode '{"id":"project-FPbYBF00pKBZk4Yj0JJ926x9","name":"TestCopyTree.test_move_root_within_project_fail.dd68b00f","class":"project","created":1542141228000,"modified":1542141228000,"billTo":"org-counsyl","level":"ADMINISTER","dataUsage":0,"sponsoredDataUsage":0,"region":"aws:us-east-1","summary":"","description":"","protected":false,"restricted":false,"downloadRestricted":false,"containsPHI":false,"createdBy":{"user":"user-akumar_counsyl"},"version":0,"storageCost":0,"pendingTransfer":null,"tags":[],"defaultInstanceType":"mem2_hdd2_x2","archivalState":"live","archivalProgress":null,"totalSponsoredEgressBytes":0,"consumedSponsoredEgressBytes":0,"atSpendingLimit":false}'} headers: connection: [keep-alive] content-length: ['669'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:26:27 GMT'] + date: ['Tue, 13 Nov 2018 20:33:48 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592787690-503067] + x-request-id: [1542141228219-981385] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"parents": true, "folder": "/temp_folder"}' + body: !!python/unicode '{"folder": "/temp_folder", "parents": true}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k94j0YGxqPYg95F286zGV/newFolder + uri: https://api.dnanexus.com/project-FPbYBF00pKBZk4Yj0JJ926x9/newFolder response: - body: {string: !!python/unicode '{"id":"project-FP9k94j0YGxqPYg95F286zGV"}'} + body: {string: !!python/unicode '{"id":"project-FPbYBF00pKBZk4Yj0JJ926x9"}'} headers: connection: [keep-alive] content-length: ['41'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:26:27 GMT'] + date: ['Tue, 13 Nov 2018 20:33:48 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592787805-30805] + x-request-id: [1542141228397-493798] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"name": "folder_file.txt", "project": "project-FP9k94j0YGxqPYg95F286zGV", - "folder": "/temp_folder", "nonce": "8823746a10f604abcb687837000a09684feb1b918be58a50146e8d0ac86079501540592787.870294"}' + body: !!python/unicode '{"project": "project-FPbYBF00pKBZk4Yj0JJ926x9", "nonce": + "1a701eca14b04e0ad4415903843e5731a61c3ffc6bb8d56be3385061b5519a2a1542141228.467093", + "folder": "/temp_folder", "name": "folder_file.txt"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/file/new response: - body: {string: !!python/unicode '{"id":"file-FP9k94j0YGxbVJvpJkZZ2f7P"}'} + body: {string: !!python/unicode '{"id":"file-FPbYBF00pKBZk4Yj0JJ926xB"}'} headers: connection: [keep-alive] content-length: ['38'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:26:27 GMT'] + date: ['Tue, 13 Nov 2018 20:33:48 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592787920-17007] + x-request-id: [1542141228509-243608] status: {code: 200, message: OK} - request: body: !!python/unicode '{"fields": {"fileUploadParameters": true}}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k94j0YGxqPYg95F286zGV/describe + uri: https://api.dnanexus.com/project-FPbYBF00pKBZk4Yj0JJ926x9/describe response: - body: {string: !!python/unicode '{"id":"project-FP9k94j0YGxqPYg95F286zGV","fileUploadParameters":{"maximumPartSize":5368709120,"minimumPartSize":5242880,"maximumFileSize":5497558138880,"maximumNumParts":10000,"emptyLastPartAllowed":true}}'} + body: {string: !!python/unicode '{"id":"project-FPbYBF00pKBZk4Yj0JJ926x9","fileUploadParameters":{"maximumPartSize":5368709120,"minimumPartSize":5242880,"maximumFileSize":5497558138880,"maximumNumParts":10000,"emptyLastPartAllowed":true}}'} headers: connection: [keep-alive] content-length: ['205'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:26:28 GMT'] + date: ['Tue, 13 Nov 2018 20:33:48 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592788057-690472] + x-request-id: [1542141228708-647873] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"size": 5, "md5": "73dfff57fe24e807bd4fb1bc4e07cd73", - "index": 1}' + body: !!python/unicode '{"index": 1, "size": 5, "md5": "73dfff57fe24e807bd4fb1bc4e07cd73"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k94j0YGxbVJvpJkZZ2f7P/upload + uri: https://api.dnanexus.com/file-FPbYBF00pKBZk4Yj0JJ926xB/upload response: - body: {string: !!python/unicode '{"url":"https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/54df/file/open/file-FP9k94j0YGxbVJvpJkZZ2f7P/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181026%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181026T222628Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=45fb9607e95926adea677e19015a2e962c07c9414e0903cdfb7caead2467f604","headers":{"host":"dnanexus-platform-upload-prod.s3.amazonaws.com","content-type":"binary/octet-stream","x-amz-server-side-encryption":"AES256","content-md5":"c9//V/4k6Ae9T7G8TgfNcw==","content-length":"5"},"expires":1540592908180}'} + body: {string: !!python/unicode '{"url":"https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/2c82/file/open/file-FPbYBF00pKBZk4Yj0JJ926xB/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181113%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181113T203348Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=79415e8b342e14de49523ac69751d5b66885bf7f113da91c9cf8f3645dc20a46","headers":{"host":"dnanexus-platform-upload-prod.s3.amazonaws.com","content-type":"binary/octet-stream","x-amz-server-side-encryption":"AES256","content-md5":"c9//V/4k6Ae9T7G8TgfNcw==","content-length":"5"},"expires":1542141348819}'} headers: connection: [keep-alive] content-length: ['692'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:26:28 GMT'] + date: ['Tue, 13 Nov 2018 20:33:48 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592788167-244448] + x-request-id: [1542141228803-675816] status: {code: 200, message: OK} - request: body: !!python/unicode data0 headers: DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] content-length: ['5'] content-md5: [c9//V/4k6Ae9T7G8TgfNcw==] content-type: [binary/octet-stream] host: [dnanexus-platform-upload-prod.s3.amazonaws.com] x-amz-server-side-encryption: [AES256] method: PUT - uri: https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/54df/file/open/file-FP9k94j0YGxbVJvpJkZZ2f7P/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181026%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181026T222628Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=45fb9607e95926adea677e19015a2e962c07c9414e0903cdfb7caead2467f604 + uri: https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/2c82/file/open/file-FPbYBF00pKBZk4Yj0JJ926xB/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181113%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181113T203348Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=79415e8b342e14de49523ac69751d5b66885bf7f113da91c9cf8f3645dc20a46 response: body: {string: !!python/unicode ''} headers: content-length: ['0'] - date: ['Fri, 26 Oct 2018 22:26:29 GMT'] + date: ['Tue, 13 Nov 2018 20:33:50 GMT'] etag: ['"73dfff57fe24e807bd4fb1bc4e07cd73"'] server: [AmazonS3] - x-amz-expiration: ['expiry-date="Sat, 17 Nov 2018 00:00:00 GMT", rule-id="3weekpurge"'] - x-amz-id-2: [NLwDA9Qqdlcq5T+8gH5CfSEEf5ml+Zi5AVpZSaP/RryDqdSgiVn5xjtXDDgDfP1orPM9sbnpx7E=] - x-amz-request-id: [D8E8505F1119EE9D] + x-amz-expiration: ['expiry-date="Wed, 05 Dec 2018 00:00:00 GMT", rule-id="3weekpurge"'] + x-amz-id-2: [BeJ6UXphJ7C+grBwTpIegmuDBkHWTzvVAymNct92qrsuRwJh8WzXU3ydxO2NyVR80vPxTWY7jJ0=] + x-amz-request-id: [0FEF51FB593BFD05] x-amz-server-side-encryption: [AES256] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"project": "project-FP9k94j0YGxqPYg95F286zGV", "fields": + body: !!python/unicode '{"project": "project-FPbYBF00pKBZk4Yj0JJ926x9", "fields": {"state": true}}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k94j0YGxbVJvpJkZZ2f7P/describe + uri: https://api.dnanexus.com/file-FPbYBF00pKBZk4Yj0JJ926xB/describe response: - body: {string: !!python/unicode '{"id":"file-FP9k94j0YGxbVJvpJkZZ2f7P","state":"open"}'} + body: {string: !!python/unicode '{"id":"file-FPbYBF00pKBZk4Yj0JJ926xB","state":"open"}'} headers: connection: [keep-alive] content-length: ['53'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:26:28 GMT'] + date: ['Tue, 13 Nov 2018 20:33:49 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592788771-686123] + x-request-id: [1542141229301-775785] status: {code: 200, message: OK} - request: body: !!python/unicode '{}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k94j0YGxbVJvpJkZZ2f7P/close + uri: https://api.dnanexus.com/file-FPbYBF00pKBZk4Yj0JJ926xB/close response: - body: {string: !!python/unicode '{"id":"file-FP9k94j0YGxbVJvpJkZZ2f7P"}'} + body: {string: !!python/unicode '{"id":"file-FPbYBF00pKBZk4Yj0JJ926xB"}'} headers: connection: [keep-alive] content-length: ['38'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:26:28 GMT'] + date: ['Tue, 13 Nov 2018 20:33:49 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592788893-955771] + x-request-id: [1542141229432-978775] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"limit": 2, "name": "TestCopyTree.test_move_root_within_project_fail.ae4c6d3e", + body: !!python/unicode '{"limit": 2, "name": "TestCopyTree.test_move_root_within_project_fail.dd68b00f", "level": "VIEW"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/system/findProjects response: - body: {string: !!python/unicode '{"results":[{"id":"project-FP9k94j0YGxqPYg95F286zGV","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} + body: {string: !!python/unicode '{"results":[{"id":"project-FPbYBF00pKBZk4Yj0JJ926x9","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} headers: connection: [keep-alive] content-length: ['147'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:26:29 GMT'] + date: ['Tue, 13 Nov 2018 20:33:49 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592789033-207940] + x-request-id: [1542141229565-4188] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"limit": 2, "name": "TestCopyTree.test_move_root_within_project_fail.ae4c6d3e", + body: !!python/unicode '{"limit": 2, "name": "TestCopyTree.test_move_root_within_project_fail.dd68b00f", "level": "VIEW"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/system/findProjects response: - body: {string: !!python/unicode '{"results":[{"id":"project-FP9k94j0YGxqPYg95F286zGV","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} + body: {string: !!python/unicode '{"results":[{"id":"project-FPbYBF00pKBZk4Yj0JJ926x9","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} headers: connection: [keep-alive] content-length: ['147'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:26:29 GMT'] + date: ['Tue, 13 Nov 2018 20:33:49 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592789169-260307] + x-request-id: [1542141229698-75957] status: {code: 200, message: OK} - request: body: !!python/unicode '{}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k94j0YGxqPYg95F286zGV/destroy + uri: https://api.dnanexus.com/project-FPbYBF00pKBZk4Yj0JJ926x9/destroy response: - body: {string: !!python/unicode '{"id":"project-FP9k94j0YGxqPYg95F286zGV"}'} + body: {string: !!python/unicode '{"id":"project-FPbYBF00pKBZk4Yj0JJ926x9"}'} headers: connection: [keep-alive] content-length: ['41'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:26:32 GMT'] + date: ['Tue, 13 Nov 2018 20:33:52 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592789328-553783] + x-request-id: [1542141229846-801618] status: {code: 200, message: OK} version: 1 diff --git a/stor/tests/cassettes_py2/TestCopyTree/test_nonexistent_dir.yaml b/stor_dx/stor_dx/tests/cassettes_py2/TestCopyTree/test_nonexistent_dir.yaml similarity index 57% rename from stor/tests/cassettes_py2/TestCopyTree/test_nonexistent_dir.yaml rename to stor_dx/stor_dx/tests/cassettes_py2/TestCopyTree/test_nonexistent_dir.yaml index 1d2a63a6..2fefa2a6 100644 --- a/stor/tests/cassettes_py2/TestCopyTree/test_nonexistent_dir.yaml +++ b/stor_dx/stor_dx/tests/cassettes_py2/TestCopyTree/test_nonexistent_dir.yaml @@ -1,254 +1,254 @@ interactions: - request: - body: !!python/unicode '{"name": "TestCopyTree.test_nonexistent_dir.159960cf"}' + body: !!python/unicode '{"name": "TestCopyTree.test_nonexistent_dir.4cd766bf"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/project/new response: - body: {string: !!python/unicode '{"id":"project-FP9k9600jyB6zyV6JkV1p4PZ"}'} + body: {string: !!python/unicode '{"id":"project-FPbYBG00BZg068BXFXVP8756"}'} headers: connection: [keep-alive] content-length: ['41'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:26:32 GMT'] + date: ['Tue, 13 Nov 2018 20:33:52 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592792407-25824] + x-request-id: [1542141232541-178183] status: {code: 200, message: OK} - request: body: !!python/unicode '{}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k9600jyB6zyV6JkV1p4PZ/describe + uri: https://api.dnanexus.com/project-FPbYBG00BZg068BXFXVP8756/describe response: - body: {string: !!python/unicode '{"id":"project-FP9k9600jyB6zyV6JkV1p4PZ","name":"TestCopyTree.test_nonexistent_dir.159960cf","class":"project","created":1540592792000,"modified":1540592792000,"billTo":"org-counsyl","level":"ADMINISTER","dataUsage":0,"sponsoredDataUsage":0,"region":"aws:us-east-1","summary":"","description":"","protected":false,"restricted":false,"downloadRestricted":false,"containsPHI":false,"createdBy":{"user":"user-akumar_counsyl"},"version":0,"storageCost":0,"pendingTransfer":null,"tags":[],"defaultInstanceType":"mem2_hdd2_x2","archivalState":"live","archivalProgress":null,"totalSponsoredEgressBytes":0,"consumedSponsoredEgressBytes":0,"atSpendingLimit":false}'} + body: {string: !!python/unicode '{"id":"project-FPbYBG00BZg068BXFXVP8756","name":"TestCopyTree.test_nonexistent_dir.4cd766bf","class":"project","created":1542141232000,"modified":1542141232000,"billTo":"org-counsyl","level":"ADMINISTER","dataUsage":0,"sponsoredDataUsage":0,"region":"aws:us-east-1","summary":"","description":"","protected":false,"restricted":false,"downloadRestricted":false,"containsPHI":false,"createdBy":{"user":"user-akumar_counsyl"},"version":0,"storageCost":0,"pendingTransfer":null,"tags":[],"defaultInstanceType":"mem2_hdd2_x2","archivalState":"live","archivalProgress":null,"totalSponsoredEgressBytes":0,"consumedSponsoredEgressBytes":0,"atSpendingLimit":false}'} headers: connection: [keep-alive] content-length: ['655'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:26:32 GMT'] + date: ['Tue, 13 Nov 2018 20:33:52 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592792532-146306] + x-request-id: [1542141232679-230395] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"parents": true, "folder": "/temp_folder"}' + body: !!python/unicode '{"folder": "/temp_folder", "parents": true}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k9600jyB6zyV6JkV1p4PZ/newFolder + uri: https://api.dnanexus.com/project-FPbYBG00BZg068BXFXVP8756/newFolder response: - body: {string: !!python/unicode '{"id":"project-FP9k9600jyB6zyV6JkV1p4PZ"}'} + body: {string: !!python/unicode '{"id":"project-FPbYBG00BZg068BXFXVP8756"}'} headers: connection: [keep-alive] content-length: ['41'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:26:32 GMT'] + date: ['Tue, 13 Nov 2018 20:33:52 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592792657-269929] + x-request-id: [1542141232841-4360] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"name": "folder_file.txt", "project": "project-FP9k9600jyB6zyV6JkV1p4PZ", - "folder": "/temp_folder", "nonce": "7e74bd4b477cb6e048fdaea81eda093c9cb25844e9921eb60947f7248ef26e341540592792.729286"}' + body: !!python/unicode '{"project": "project-FPbYBG00BZg068BXFXVP8756", "nonce": + "d3332203c8f927db67fff66c22e9c2a9e2731da297f97f8232d7da0dc902059d1542141232.902124", + "folder": "/temp_folder", "name": "folder_file.txt"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/file/new response: - body: {string: !!python/unicode '{"id":"file-FP9k9600jyBPxYfQJq0Qq9Q0"}'} + body: {string: !!python/unicode '{"id":"file-FPbYBG00BZg82gzq1k0gg2zz"}'} headers: connection: [keep-alive] content-length: ['38'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:26:32 GMT'] + date: ['Tue, 13 Nov 2018 20:33:53 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592792773-248445] + x-request-id: [1542141232947-663216] status: {code: 200, message: OK} - request: body: !!python/unicode '{"fields": {"fileUploadParameters": true}}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k9600jyB6zyV6JkV1p4PZ/describe + uri: https://api.dnanexus.com/project-FPbYBG00BZg068BXFXVP8756/describe response: - body: {string: !!python/unicode '{"id":"project-FP9k9600jyB6zyV6JkV1p4PZ","fileUploadParameters":{"maximumPartSize":5368709120,"minimumPartSize":5242880,"maximumFileSize":5497558138880,"maximumNumParts":10000,"emptyLastPartAllowed":true}}'} + body: {string: !!python/unicode '{"id":"project-FPbYBG00BZg068BXFXVP8756","fileUploadParameters":{"maximumPartSize":5368709120,"minimumPartSize":5242880,"maximumFileSize":5497558138880,"maximumNumParts":10000,"emptyLastPartAllowed":true}}'} headers: connection: [keep-alive] content-length: ['205'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:26:32 GMT'] + date: ['Tue, 13 Nov 2018 20:33:53 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592792960-143328] + x-request-id: [1542141233105-877249] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"size": 5, "md5": "73dfff57fe24e807bd4fb1bc4e07cd73", - "index": 1}' + body: !!python/unicode '{"index": 1, "size": 5, "md5": "73dfff57fe24e807bd4fb1bc4e07cd73"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k9600jyBPxYfQJq0Qq9Q0/upload + uri: https://api.dnanexus.com/file-FPbYBG00BZg82gzq1k0gg2zz/upload response: - body: {string: !!python/unicode '{"url":"https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/077f/file/open/file-FP9k9600jyBPxYfQJq0Qq9Q0/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181026%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181026T222633Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=887fe4b58155d81766cb1d1d6cfd41a6eeb3e7c67540ee0df76949b88825c0ca","headers":{"host":"dnanexus-platform-upload-prod.s3.amazonaws.com","content-type":"binary/octet-stream","x-amz-server-side-encryption":"AES256","content-md5":"c9//V/4k6Ae9T7G8TgfNcw==","content-length":"5"},"expires":1540592913088}'} + body: {string: !!python/unicode '{"url":"https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/8652/file/open/file-FPbYBG00BZg82gzq1k0gg2zz/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181113%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181113T203353Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=082ca68d059b7aa822adc50aad52b1270a7849e6e2173842ced7b7ef9bbe3621","headers":{"host":"dnanexus-platform-upload-prod.s3.amazonaws.com","content-type":"binary/octet-stream","x-amz-server-side-encryption":"AES256","content-md5":"c9//V/4k6Ae9T7G8TgfNcw==","content-length":"5"},"expires":1542141353239}'} headers: connection: [keep-alive] content-length: ['692'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:26:33 GMT'] + date: ['Tue, 13 Nov 2018 20:33:53 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592793075-26743] + x-request-id: [1542141233224-659184] status: {code: 200, message: OK} - request: body: !!python/unicode data0 headers: DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] content-length: ['5'] content-md5: [c9//V/4k6Ae9T7G8TgfNcw==] content-type: [binary/octet-stream] host: [dnanexus-platform-upload-prod.s3.amazonaws.com] x-amz-server-side-encryption: [AES256] method: PUT - uri: https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/077f/file/open/file-FP9k9600jyBPxYfQJq0Qq9Q0/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181026%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181026T222633Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=887fe4b58155d81766cb1d1d6cfd41a6eeb3e7c67540ee0df76949b88825c0ca + uri: https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/8652/file/open/file-FPbYBG00BZg82gzq1k0gg2zz/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181113%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181113T203353Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=082ca68d059b7aa822adc50aad52b1270a7849e6e2173842ced7b7ef9bbe3621 response: body: {string: !!python/unicode ''} headers: content-length: ['0'] - date: ['Fri, 26 Oct 2018 22:26:34 GMT'] + date: ['Tue, 13 Nov 2018 20:33:54 GMT'] etag: ['"73dfff57fe24e807bd4fb1bc4e07cd73"'] server: [AmazonS3] - x-amz-expiration: ['expiry-date="Sat, 17 Nov 2018 00:00:00 GMT", rule-id="3weekpurge"'] - x-amz-id-2: [IHbfsziwgQcSBHF+y6C8KegjHxPiejSwRE4zre58mtqeF4y1r+XwFA+KiNJc9S7meiCd063PCE8=] - x-amz-request-id: [3049FFC546D11557] + x-amz-expiration: ['expiry-date="Wed, 05 Dec 2018 00:00:00 GMT", rule-id="3weekpurge"'] + x-amz-id-2: [1vOmz9BrCd1WKQ+TXH3wsqrrrqU12MEYjjQ0AGzqaSI3xGjjrr/tgKVEfrpLQcHstV28QIpWN0U=] + x-amz-request-id: [CCF7BA50505B473B] x-amz-server-side-encryption: [AES256] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"project": "project-FP9k9600jyB6zyV6JkV1p4PZ", "fields": + body: !!python/unicode '{"project": "project-FPbYBG00BZg068BXFXVP8756", "fields": {"state": true}}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k9600jyBPxYfQJq0Qq9Q0/describe + uri: https://api.dnanexus.com/file-FPbYBG00BZg82gzq1k0gg2zz/describe response: - body: {string: !!python/unicode '{"id":"file-FP9k9600jyBPxYfQJq0Qq9Q0","state":"open"}'} + body: {string: !!python/unicode '{"id":"file-FPbYBG00BZg82gzq1k0gg2zz","state":"open"}'} headers: connection: [keep-alive] content-length: ['53'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:26:33 GMT'] + date: ['Tue, 13 Nov 2018 20:33:53 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592793626-226129] + x-request-id: [1542141233661-837283] status: {code: 200, message: OK} - request: body: !!python/unicode '{}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k9600jyBPxYfQJq0Qq9Q0/close + uri: https://api.dnanexus.com/file-FPbYBG00BZg82gzq1k0gg2zz/close response: - body: {string: !!python/unicode '{"id":"file-FP9k9600jyBPxYfQJq0Qq9Q0"}'} + body: {string: !!python/unicode '{"id":"file-FPbYBG00BZg82gzq1k0gg2zz"}'} headers: connection: [keep-alive] content-length: ['38'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:26:33 GMT'] + date: ['Tue, 13 Nov 2018 20:33:53 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592793736-395621] + x-request-id: [1542141233760-639019] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"limit": 2, "name": "TestCopyTree.test_nonexistent_dir.159960cf", + body: !!python/unicode '{"limit": 2, "name": "TestCopyTree.test_nonexistent_dir.4cd766bf", "level": "VIEW"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/system/findProjects response: - body: {string: !!python/unicode '{"results":[{"id":"project-FP9k9600jyB6zyV6JkV1p4PZ","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} + body: {string: !!python/unicode '{"results":[{"id":"project-FPbYBG00BZg068BXFXVP8756","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} headers: connection: [keep-alive] content-length: ['147'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:26:33 GMT'] + date: ['Tue, 13 Nov 2018 20:33:54 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592793875-848229] + x-request-id: [1542141233910-231986] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"includeHidden": false, "only": "folders", "folder": - "/temp_folder/folder_file.txt", "describe": {"fields": {"name": true, "folder": - true}}}' + body: !!python/unicode '{"folder": "/temp_folder/folder_file.txt", "describe": + {"fields": {"folder": true, "name": true}}, "only": "folders", "includeHidden": + false}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k9600jyB6zyV6JkV1p4PZ/listFolder + uri: https://api.dnanexus.com/project-FPbYBG00BZg068BXFXVP8756/listFolder response: body: {string: !!python/unicode '{"error":{"type":"ResourceNotFound","message":"The - specified folder could not be found in project-FP9k9600jyB6zyV6JkV1p4PZ"}}'} + specified folder could not be found in project-FPbYBG00BZg068BXFXVP8756"}}'} headers: connection: [keep-alive] content-type: [application/json] - date: ['Fri, 26 Oct 2018 22:26:34 GMT'] + date: ['Tue, 13 Nov 2018 20:33:54 GMT'] server: [nginx] transfer-encoding: [chunked] vary: [Accept-Encoding] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592794019-224505] + x-request-id: [1542141234096-443486] status: {code: 404, message: Not Found} - request: body: !!python/unicode '{}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k9600jyB6zyV6JkV1p4PZ/destroy + uri: https://api.dnanexus.com/project-FPbYBG00BZg068BXFXVP8756/destroy response: - body: {string: !!python/unicode '{"id":"project-FP9k9600jyB6zyV6JkV1p4PZ"}'} + body: {string: !!python/unicode '{"id":"project-FPbYBG00BZg068BXFXVP8756"}'} headers: connection: [keep-alive] content-length: ['41'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:26:36 GMT'] + date: ['Tue, 13 Nov 2018 20:33:56 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592794415-901732] + x-request-id: [1542141234480-868729] status: {code: 200, message: OK} version: 1 diff --git a/stor/tests/cassettes_py2/TestCopyTree/test_other_obs_to_dx.yaml b/stor_dx/stor_dx/tests/cassettes_py2/TestCopyTree/test_other_obs_to_dx.yaml similarity index 56% rename from stor/tests/cassettes_py2/TestCopyTree/test_other_obs_to_dx.yaml rename to stor_dx/stor_dx/tests/cassettes_py2/TestCopyTree/test_other_obs_to_dx.yaml index e849cc01..52b2f975 100644 --- a/stor/tests/cassettes_py2/TestCopyTree/test_other_obs_to_dx.yaml +++ b/stor_dx/stor_dx/tests/cassettes_py2/TestCopyTree/test_other_obs_to_dx.yaml @@ -1,209 +1,209 @@ interactions: - request: - body: !!python/unicode '{"name": "TestCopyTree.test_other_obs_to_dx.ea27b738"}' + body: !!python/unicode '{"name": "TestCopyTree.test_other_obs_to_dx.c3691951"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/project/new response: - body: {string: !!python/unicode '{"id":"project-FP9k9780k0X68GXkJpbYfZzG"}'} + body: {string: !!python/unicode '{"id":"project-FPbYBJ80vq3j2gzq1k0gg301"}'} headers: connection: [keep-alive] content-length: ['41'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:26:37 GMT'] + date: ['Tue, 13 Nov 2018 20:33:57 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592797281-52635] + x-request-id: [1542141237222-536293] status: {code: 200, message: OK} - request: body: !!python/unicode '{}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k9780k0X68GXkJpbYfZzG/describe + uri: https://api.dnanexus.com/project-FPbYBJ80vq3j2gzq1k0gg301/describe response: - body: {string: !!python/unicode '{"id":"project-FP9k9780k0X68GXkJpbYfZzG","name":"TestCopyTree.test_other_obs_to_dx.ea27b738","class":"project","created":1540592797000,"modified":1540592797000,"billTo":"org-counsyl","level":"ADMINISTER","dataUsage":0,"sponsoredDataUsage":0,"region":"aws:us-east-1","summary":"","description":"","protected":false,"restricted":false,"downloadRestricted":false,"containsPHI":false,"createdBy":{"user":"user-akumar_counsyl"},"version":0,"storageCost":0,"pendingTransfer":null,"tags":[],"defaultInstanceType":"mem2_hdd2_x2","archivalState":"live","archivalProgress":null,"totalSponsoredEgressBytes":0,"consumedSponsoredEgressBytes":0,"atSpendingLimit":false}'} + body: {string: !!python/unicode '{"id":"project-FPbYBJ80vq3j2gzq1k0gg301","name":"TestCopyTree.test_other_obs_to_dx.c3691951","class":"project","created":1542141237000,"modified":1542141237000,"billTo":"org-counsyl","level":"ADMINISTER","dataUsage":0,"sponsoredDataUsage":0,"region":"aws:us-east-1","summary":"","description":"","protected":false,"restricted":false,"downloadRestricted":false,"containsPHI":false,"createdBy":{"user":"user-akumar_counsyl"},"version":0,"storageCost":0,"pendingTransfer":null,"tags":[],"defaultInstanceType":"mem2_hdd2_x2","archivalState":"live","archivalProgress":null,"totalSponsoredEgressBytes":0,"consumedSponsoredEgressBytes":0,"atSpendingLimit":false}'} headers: connection: [keep-alive] content-length: ['655'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:26:37 GMT'] + date: ['Tue, 13 Nov 2018 20:33:57 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592797401-205329] + x-request-id: [1542141237390-190637] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"parents": true, "folder": "/temp_folder"}' + body: !!python/unicode '{"folder": "/temp_folder", "parents": true}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k9780k0X68GXkJpbYfZzG/newFolder + uri: https://api.dnanexus.com/project-FPbYBJ80vq3j2gzq1k0gg301/newFolder response: - body: {string: !!python/unicode '{"id":"project-FP9k9780k0X68GXkJpbYfZzG"}'} + body: {string: !!python/unicode '{"id":"project-FPbYBJ80vq3j2gzq1k0gg301"}'} headers: connection: [keep-alive] content-length: ['41'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:26:37 GMT'] + date: ['Tue, 13 Nov 2018 20:33:57 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592797520-779612] + x-request-id: [1542141237597-25403] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"name": "folder_file.txt", "project": "project-FP9k9780k0X68GXkJpbYfZzG", - "folder": "/temp_folder", "nonce": "3179ffd687e3f78107d5abd8f36ac1f4a6a66efe448c7ac6f6553a727baf36801540592797.588993"}' + body: !!python/unicode '{"project": "project-FPbYBJ80vq3j2gzq1k0gg301", "nonce": + "bb0fdbac9751b1c082b186aeaffde1e1ca9eccf7f73be75ef6a5b620bf3325121542141237.688779", + "folder": "/temp_folder", "name": "folder_file.txt"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/file/new response: - body: {string: !!python/unicode '{"id":"file-FP9k9780k0XPxYfQJq0Qq9Q2"}'} + body: {string: !!python/unicode '{"id":"file-FPbYBJ80vq3VgVFg2KzVq4K2"}'} headers: connection: [keep-alive] content-length: ['38'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:26:37 GMT'] + date: ['Tue, 13 Nov 2018 20:33:58 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592797634-676518] + x-request-id: [1542141237805-941490] status: {code: 200, message: OK} - request: body: !!python/unicode '{"fields": {"fileUploadParameters": true}}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k9780k0X68GXkJpbYfZzG/describe + uri: https://api.dnanexus.com/project-FPbYBJ80vq3j2gzq1k0gg301/describe response: - body: {string: !!python/unicode '{"id":"project-FP9k9780k0X68GXkJpbYfZzG","fileUploadParameters":{"maximumPartSize":5368709120,"minimumPartSize":5242880,"maximumFileSize":5497558138880,"maximumNumParts":10000,"emptyLastPartAllowed":true}}'} + body: {string: !!python/unicode '{"id":"project-FPbYBJ80vq3j2gzq1k0gg301","fileUploadParameters":{"maximumPartSize":5368709120,"minimumPartSize":5242880,"maximumFileSize":5497558138880,"maximumNumParts":10000,"emptyLastPartAllowed":true}}'} headers: connection: [keep-alive] content-length: ['205'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:26:37 GMT'] + date: ['Tue, 13 Nov 2018 20:33:58 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592797769-534238] + x-request-id: [1542141238157-892198] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"size": 5, "md5": "73dfff57fe24e807bd4fb1bc4e07cd73", - "index": 1}' + body: !!python/unicode '{"index": 1, "size": 5, "md5": "73dfff57fe24e807bd4fb1bc4e07cd73"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k9780k0XPxYfQJq0Qq9Q2/upload + uri: https://api.dnanexus.com/file-FPbYBJ80vq3VgVFg2KzVq4K2/upload response: - body: {string: !!python/unicode '{"url":"https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/bfb8/file/open/file-FP9k9780k0XPxYfQJq0Qq9Q2/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181026%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181026T222637Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=1dc621d8dbb444405a3c933d3ef484e2403bc2be93b5ddd59d2f6b583ff69937","headers":{"host":"dnanexus-platform-upload-prod.s3.amazonaws.com","content-type":"binary/octet-stream","x-amz-server-side-encryption":"AES256","content-md5":"c9//V/4k6Ae9T7G8TgfNcw==","content-length":"5"},"expires":1540592917894}'} + body: {string: !!python/unicode '{"url":"https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/c028/file/open/file-FPbYBJ80vq3VgVFg2KzVq4K2/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181113%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181113T203358Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=8036c4d38bb4025903790073223df44aa0ef4e87932dd2026d3158bf37b71634","headers":{"host":"dnanexus-platform-upload-prod.s3.amazonaws.com","content-type":"binary/octet-stream","x-amz-server-side-encryption":"AES256","content-md5":"c9//V/4k6Ae9T7G8TgfNcw==","content-length":"5"},"expires":1542141358305}'} headers: connection: [keep-alive] content-length: ['692'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:26:37 GMT'] + date: ['Tue, 13 Nov 2018 20:33:58 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592797881-159489] + x-request-id: [1542141238270-620645] status: {code: 200, message: OK} - request: body: !!python/unicode data0 headers: DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] content-length: ['5'] content-md5: [c9//V/4k6Ae9T7G8TgfNcw==] content-type: [binary/octet-stream] host: [dnanexus-platform-upload-prod.s3.amazonaws.com] x-amz-server-side-encryption: [AES256] method: PUT - uri: https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/bfb8/file/open/file-FP9k9780k0XPxYfQJq0Qq9Q2/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181026%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181026T222637Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=1dc621d8dbb444405a3c933d3ef484e2403bc2be93b5ddd59d2f6b583ff69937 + uri: https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/c028/file/open/file-FPbYBJ80vq3VgVFg2KzVq4K2/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181113%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181113T203358Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=8036c4d38bb4025903790073223df44aa0ef4e87932dd2026d3158bf37b71634 response: body: {string: !!python/unicode ''} headers: content-length: ['0'] - date: ['Fri, 26 Oct 2018 22:26:39 GMT'] + date: ['Tue, 13 Nov 2018 20:33:59 GMT'] etag: ['"73dfff57fe24e807bd4fb1bc4e07cd73"'] server: [AmazonS3] - x-amz-expiration: ['expiry-date="Sat, 17 Nov 2018 00:00:00 GMT", rule-id="3weekpurge"'] - x-amz-id-2: [Zf//wBEPHmKXvUvBrBzEaE+SCFBbP02z69YYiDeuA87/LnzceKQDoJ+L/kHEIgIt3Z2W7csRnq0=] - x-amz-request-id: [15C646B0301FC05E] + x-amz-expiration: ['expiry-date="Wed, 05 Dec 2018 00:00:00 GMT", rule-id="3weekpurge"'] + x-amz-id-2: [hxDZuemP2wdtmAnJW+3zotyycAc4NTrsBHHdpSZjki+4fZI3+JD7006PvwEDQINxwFdoORidLKQ=] + x-amz-request-id: [6B592818615186AA] x-amz-server-side-encryption: [AES256] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"project": "project-FP9k9780k0X68GXkJpbYfZzG", "fields": + body: !!python/unicode '{"project": "project-FPbYBJ80vq3j2gzq1k0gg301", "fields": {"state": true}}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k9780k0XPxYfQJq0Qq9Q2/describe + uri: https://api.dnanexus.com/file-FPbYBJ80vq3VgVFg2KzVq4K2/describe response: - body: {string: !!python/unicode '{"id":"file-FP9k9780k0XPxYfQJq0Qq9Q2","state":"open"}'} + body: {string: !!python/unicode '{"id":"file-FPbYBJ80vq3VgVFg2KzVq4K2","state":"open"}'} headers: connection: [keep-alive] content-length: ['53'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:26:38 GMT'] + date: ['Tue, 13 Nov 2018 20:33:58 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592798544-34275] + x-request-id: [1542141238786-304935] status: {code: 200, message: OK} - request: body: !!python/unicode '{}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k9780k0XPxYfQJq0Qq9Q2/close + uri: https://api.dnanexus.com/file-FPbYBJ80vq3VgVFg2KzVq4K2/close response: - body: {string: !!python/unicode '{"id":"file-FP9k9780k0XPxYfQJq0Qq9Q2"}'} + body: {string: !!python/unicode '{"id":"file-FPbYBJ80vq3VgVFg2KzVq4K2"}'} headers: connection: [keep-alive] content-length: ['38'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:26:38 GMT'] + date: ['Tue, 13 Nov 2018 20:33:59 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592798655-765355] + x-request-id: [1542141238921-817877] status: {code: 200, message: OK} - request: body: !!python/unicode '{}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k9780k0X68GXkJpbYfZzG/destroy + uri: https://api.dnanexus.com/project-FPbYBJ80vq3j2gzq1k0gg301/destroy response: - body: {string: !!python/unicode '{"id":"project-FP9k9780k0X68GXkJpbYfZzG"}'} + body: {string: !!python/unicode '{"id":"project-FPbYBJ80vq3j2gzq1k0gg301"}'} headers: connection: [keep-alive] content-length: ['41'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:26:40 GMT'] + date: ['Tue, 13 Nov 2018 20:34:01 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592798781-195322] + x-request-id: [1542141239164-436418] status: {code: 200, message: OK} version: 1 diff --git a/stor/tests/cassettes_py2/TestCopyTree/test_posix_dir_to_dx.yaml b/stor_dx/stor_dx/tests/cassettes_py2/TestCopyTree/test_posix_dir_to_dx.yaml similarity index 57% rename from stor/tests/cassettes_py2/TestCopyTree/test_posix_dir_to_dx.yaml rename to stor_dx/stor_dx/tests/cassettes_py2/TestCopyTree/test_posix_dir_to_dx.yaml index 0530ef70..920f7a24 100644 --- a/stor/tests/cassettes_py2/TestCopyTree/test_posix_dir_to_dx.yaml +++ b/stor_dx/stor_dx/tests/cassettes_py2/TestCopyTree/test_posix_dir_to_dx.yaml @@ -1,95 +1,115 @@ interactions: - request: - body: !!python/unicode '{"name": "TestCopyTree.test_posix_dir_to_dx.74f86e00"}' + body: !!python/unicode '{"name": "TestCopyTree.test_posix_dir_to_dx.f2736e53"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/project/new response: - body: {string: !!python/unicode '{"id":"project-FP9k9880BqKqPYg95F286zGX"}'} + body: {string: !!python/unicode '{"id":"project-FPbYFf007yQ28kYX49BbP8by"}'} headers: connection: [keep-alive] content-length: ['41'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:26:41 GMT'] + date: ['Tue, 13 Nov 2018 20:36:40 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592801385-59198] + x-request-id: [1542141400359-588641] status: {code: 200, message: OK} - request: body: !!python/unicode '{}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k9880BqKqPYg95F286zGX/describe + uri: https://api.dnanexus.com/project-FPbYFf007yQ28kYX49BbP8by/describe response: - body: {string: !!python/unicode '{"id":"project-FP9k9880BqKqPYg95F286zGX","name":"TestCopyTree.test_posix_dir_to_dx.74f86e00","class":"project","created":1540592801000,"modified":1540592801000,"billTo":"org-counsyl","level":"ADMINISTER","dataUsage":0,"sponsoredDataUsage":0,"region":"aws:us-east-1","summary":"","description":"","protected":false,"restricted":false,"downloadRestricted":false,"containsPHI":false,"createdBy":{"user":"user-akumar_counsyl"},"version":0,"storageCost":0,"pendingTransfer":null,"tags":[],"defaultInstanceType":"mem2_hdd2_x2","archivalState":"live","archivalProgress":null,"totalSponsoredEgressBytes":0,"consumedSponsoredEgressBytes":0,"atSpendingLimit":false}'} + body: {string: !!python/unicode '{"id":"project-FPbYFf007yQ28kYX49BbP8by","name":"TestCopyTree.test_posix_dir_to_dx.f2736e53","class":"project","created":1542141400000,"modified":1542141400000,"billTo":"org-counsyl","level":"ADMINISTER","dataUsage":0,"sponsoredDataUsage":0,"region":"aws:us-east-1","summary":"","description":"","protected":false,"restricted":false,"downloadRestricted":false,"containsPHI":false,"createdBy":{"user":"user-akumar_counsyl"},"version":0,"storageCost":0,"pendingTransfer":null,"tags":[],"defaultInstanceType":"mem2_hdd2_x2","archivalState":"live","archivalProgress":null,"totalSponsoredEgressBytes":0,"consumedSponsoredEgressBytes":0,"atSpendingLimit":false}'} headers: connection: [keep-alive] content-length: ['655'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:26:41 GMT'] + date: ['Tue, 13 Nov 2018 20:36:40 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592801525-237325] + x-request-id: [1542141400507-250340] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"limit": 2, "name": "TestCopyTree.test_posix_dir_to_dx.74f86e00", + body: !!python/unicode '{"limit": 2, "name": "TestCopyTree.test_posix_dir_to_dx.f2736e53", "level": "VIEW"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/system/findProjects response: - body: {string: !!python/unicode '{"results":[{"id":"project-FP9k9880BqKqPYg95F286zGX","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} + body: {string: !!python/unicode '{"results":[{"id":"project-FPbYFf007yQ28kYX49BbP8by","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} headers: connection: [keep-alive] content-length: ['147'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:26:41 GMT'] + date: ['Tue, 13 Nov 2018 20:36:40 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592801656-896358] + x-request-id: [1542141400671-931400] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"includeHidden": false, "only": "folders", "folder": - "/temp_folder", "describe": {"fields": {"name": true, "folder": true}}}' + body: !!python/unicode '{"folder": "/temp_folder", "describe": {"fields": {"folder": + true, "name": true}}, "only": "folders", "includeHidden": false}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k9880BqKqPYg95F286zGX/listFolder + uri: https://api.dnanexus.com/project-FPbYFf007yQ28kYX49BbP8by/listFolder response: body: {string: !!python/unicode '{"error":{"type":"ResourceNotFound","message":"The - specified folder could not be found in project-FP9k9880BqKqPYg95F286zGX"}}'} + specified folder could not be found in project-FPbYFf007yQ28kYX49BbP8by"}}'} headers: connection: [keep-alive] content-type: [application/json] - date: ['Fri, 26 Oct 2018 22:26:41 GMT'] + date: ['Tue, 13 Nov 2018 20:36:40 GMT'] server: [nginx] transfer-encoding: [chunked] vary: [Accept-Encoding] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592801813-970241] + x-request-id: [1542141400787-710068] status: {code: 404, message: Not Found} - request: - body: !!python/unicode '{"objects": [{"name": "file2.txt", "project": "project-FP9k9880BqKqPYg95F286zGX", - "batchsize": 2, "folder": "/temp_folder"}]}' + body: !!python/unicode '{"folder": "/temp_folder/folder2", "parents": true}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] + method: POST + uri: https://api.dnanexus.com/project-FPbYFf007yQ28kYX49BbP8by/newFolder + response: + body: {string: !!python/unicode '{"id":"project-FPbYFf007yQ28kYX49BbP8by"}'} + headers: + connection: [keep-alive] + content-length: ['41'] + content-type: [application/json; charset=utf-8] + date: ['Tue, 13 Nov 2018 20:36:41 GMT'] + server: [nginx] + x-content-type-options: [nosniff] + x-powered-by: [Express] + x-request-id: [1542141401146-176088] + status: {code: 200, message: OK} +- request: + body: !!python/unicode '{"objects": [{"project": "project-FPbYFf007yQ28kYX49BbP8by", + "folder": "/temp_folder", "name": "file2.txt", "batchsize": 2}]}' + headers: + Content-Type: [application/json] + DNAnexus-API: [1.0.0] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/system/resolveDataObjects response: @@ -98,96 +118,96 @@ interactions: connection: [keep-alive] content-length: ['16'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:26:42 GMT'] + date: ['Tue, 13 Nov 2018 20:36:41 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592802221-997295] + x-request-id: [1542141401251-546189] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"parents": true, "name": "file2.txt", "project": "project-FP9k9880BqKqPYg95F286zGX", - "folder": "/temp_folder", "nonce": "a0f72db0d8930e988a09b28f2837012e4aace3685ebf45dfd8cd5071677066231540592802.289084"}' + body: !!python/unicode '{"project": "project-FPbYFf007yQ28kYX49BbP8by", "nonce": + "8f9f9d48f9bfb50de72576c0c4873ba0b80ac6f9a28390319ca91ce2831192e31542141401.310192", + "folder": "/temp_folder", "parents": true, "name": "file2.txt"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/file/new response: - body: {string: !!python/unicode '{"id":"file-FP9k98Q0BqKbVJvpJkZZ2f7V"}'} + body: {string: !!python/unicode '{"id":"file-FPbYFf807yQGb9J46Y1F3Kzy"}'} headers: connection: [keep-alive] content-length: ['38'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:26:42 GMT'] + date: ['Tue, 13 Nov 2018 20:36:41 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592802333-186270] + x-request-id: [1542141401351-103077] status: {code: 200, message: OK} - request: body: !!python/unicode '{"fields": {"fileUploadParameters": true}}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k9880BqKqPYg95F286zGX/describe + uri: https://api.dnanexus.com/project-FPbYFf007yQ28kYX49BbP8by/describe response: - body: {string: !!python/unicode '{"id":"project-FP9k9880BqKqPYg95F286zGX","fileUploadParameters":{"maximumPartSize":5368709120,"minimumPartSize":5242880,"maximumFileSize":5497558138880,"maximumNumParts":10000,"emptyLastPartAllowed":true}}'} + body: {string: !!python/unicode '{"id":"project-FPbYFf007yQ28kYX49BbP8by","fileUploadParameters":{"maximumPartSize":5368709120,"minimumPartSize":5242880,"maximumFileSize":5497558138880,"maximumNumParts":10000,"emptyLastPartAllowed":true}}'} headers: connection: [keep-alive] content-length: ['205'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:26:42 GMT'] + date: ['Tue, 13 Nov 2018 20:36:41 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592802526-202052] + x-request-id: [1542141401526-828827] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"size": 5, "md5": "89d903bc35dede724fd52c51437ff5fd", - "index": 1}' + body: !!python/unicode '{"index": 1, "size": 5, "md5": "89d903bc35dede724fd52c51437ff5fd"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k98Q0BqKbVJvpJkZZ2f7V/upload + uri: https://api.dnanexus.com/file-FPbYFf807yQGb9J46Y1F3Kzy/upload response: - body: {string: !!python/unicode '{"url":"https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/a104/file/open/file-FP9k98Q0BqKbVJvpJkZZ2f7V/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181026%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181026T222642Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=dd4ac39af12d438d8e740dbcb44f53cc7694436d5049f08d6b1060f96c1611a7","headers":{"host":"dnanexus-platform-upload-prod.s3.amazonaws.com","content-type":"binary/octet-stream","x-amz-server-side-encryption":"AES256","content-md5":"idkDvDXe3nJP1SxRQ3/1/Q==","content-length":"5"},"expires":1540592922808}'} + body: {string: !!python/unicode '{"url":"https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/d86a/file/open/file-FPbYFf807yQGb9J46Y1F3Kzy/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181113%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181113T203641Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=2b03d14676279a3277b171d07dd5dee251b847fd661c34c1a577d91799ea388a","headers":{"host":"dnanexus-platform-upload-prod.s3.amazonaws.com","content-type":"binary/octet-stream","x-amz-server-side-encryption":"AES256","content-md5":"idkDvDXe3nJP1SxRQ3/1/Q==","content-length":"5"},"expires":1542141521654}'} headers: connection: [keep-alive] content-length: ['692'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:26:42 GMT'] + date: ['Tue, 13 Nov 2018 20:36:41 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592802685-553095] + x-request-id: [1542141401641-372214] status: {code: 200, message: OK} - request: body: !!python/unicode data1 headers: DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] content-length: ['5'] content-md5: [idkDvDXe3nJP1SxRQ3/1/Q==] content-type: [binary/octet-stream] host: [dnanexus-platform-upload-prod.s3.amazonaws.com] x-amz-server-side-encryption: [AES256] method: PUT - uri: https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/a104/file/open/file-FP9k98Q0BqKbVJvpJkZZ2f7V/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181026%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181026T222642Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=dd4ac39af12d438d8e740dbcb44f53cc7694436d5049f08d6b1060f96c1611a7 + uri: https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/d86a/file/open/file-FPbYFf807yQGb9J46Y1F3Kzy/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181113%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181113T203641Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=2b03d14676279a3277b171d07dd5dee251b847fd661c34c1a577d91799ea388a response: body: {string: !!python/unicode ''} headers: content-length: ['0'] - date: ['Fri, 26 Oct 2018 22:26:44 GMT'] + date: ['Tue, 13 Nov 2018 20:36:42 GMT'] etag: ['"89d903bc35dede724fd52c51437ff5fd"'] server: [AmazonS3] - x-amz-expiration: ['expiry-date="Sat, 17 Nov 2018 00:00:00 GMT", rule-id="3weekpurge"'] - x-amz-id-2: [U3YxrAfJR19RlgSpJ0J3r4rFAHMGmxKk6o0Bl3bfFUjB70KCbZ5zc1a/p8T8F9+ys5c7MB9Mz6E=] - x-amz-request-id: [64BB50F895E33F10] + x-amz-expiration: ['expiry-date="Wed, 05 Dec 2018 00:00:00 GMT", rule-id="3weekpurge"'] + x-amz-id-2: [YbmBU2netm2BynHfnVJ1Evm38h5mLyz5B++Mvi5EZXf/pdNF9gmespKSinjX/EWOUAIFv33wj2E=] + x-amz-request-id: [456C0DBE85F2224E] x-amz-server-side-encryption: [AES256] status: {code: 200, message: OK} - request: @@ -195,28 +215,28 @@ interactions: headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k98Q0BqKbVJvpJkZZ2f7V/close + uri: https://api.dnanexus.com/file-FPbYFf807yQGb9J46Y1F3Kzy/close response: - body: {string: !!python/unicode '{"id":"file-FP9k98Q0BqKbVJvpJkZZ2f7V"}'} + body: {string: !!python/unicode '{"id":"file-FPbYFf807yQGb9J46Y1F3Kzy"}'} headers: connection: [keep-alive] content-length: ['38'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:26:43 GMT'] + date: ['Tue, 13 Nov 2018 20:36:42 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592803375-384955] + x-request-id: [1542141402143-218327] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"objects": [{"name": "file.txt", "project": "project-FP9k9880BqKqPYg95F286zGX", - "batchsize": 2, "folder": "/temp_folder"}]}' + body: !!python/unicode '{"objects": [{"project": "project-FPbYFf007yQ28kYX49BbP8by", + "folder": "/temp_folder", "name": "file.txt", "batchsize": 2}]}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/system/resolveDataObjects response: @@ -225,96 +245,96 @@ interactions: connection: [keep-alive] content-length: ['16'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:26:43 GMT'] + date: ['Tue, 13 Nov 2018 20:36:42 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592803505-467432] + x-request-id: [1542141402918-621149] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"parents": true, "name": "file.txt", "project": "project-FP9k9880BqKqPYg95F286zGX", - "folder": "/temp_folder", "nonce": "707adb9d7d7aa0525f3ad01f3591cb66d65a0700cfeeca8c8481c1392092b0931540592803.576610"}' + body: !!python/unicode '{"project": "project-FPbYFf007yQ28kYX49BbP8by", "nonce": + "acd2da455064ceddbd5fbbcfc616017a8c2ad5919b1cbcb7fac4731536a137ed1542141402.983022", + "folder": "/temp_folder", "parents": true, "name": "file.txt"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/file/new response: - body: {string: !!python/unicode '{"id":"file-FP9k98j0BqKf8GXkJpbYfZzJ"}'} + body: {string: !!python/unicode '{"id":"file-FPbYFfj07yQPGZJq41zZx440"}'} headers: connection: [keep-alive] content-length: ['38'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:26:43 GMT'] + date: ['Tue, 13 Nov 2018 20:36:43 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592803624-628224] + x-request-id: [1542141403026-192432] status: {code: 200, message: OK} - request: body: !!python/unicode '{"fields": {"fileUploadParameters": true}}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k9880BqKqPYg95F286zGX/describe + uri: https://api.dnanexus.com/project-FPbYFf007yQ28kYX49BbP8by/describe response: - body: {string: !!python/unicode '{"id":"project-FP9k9880BqKqPYg95F286zGX","fileUploadParameters":{"maximumPartSize":5368709120,"minimumPartSize":5242880,"maximumFileSize":5497558138880,"maximumNumParts":10000,"emptyLastPartAllowed":true}}'} + body: {string: !!python/unicode '{"id":"project-FPbYFf007yQ28kYX49BbP8by","fileUploadParameters":{"maximumPartSize":5368709120,"minimumPartSize":5242880,"maximumFileSize":5497558138880,"maximumNumParts":10000,"emptyLastPartAllowed":true}}'} headers: connection: [keep-alive] content-length: ['205'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:26:43 GMT'] + date: ['Tue, 13 Nov 2018 20:36:43 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592803823-528927] + x-request-id: [1542141403151-237461] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"size": 5, "md5": "73dfff57fe24e807bd4fb1bc4e07cd73", - "index": 1}' + body: !!python/unicode '{"index": 1, "size": 5, "md5": "73dfff57fe24e807bd4fb1bc4e07cd73"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k98j0BqKf8GXkJpbYfZzJ/upload + uri: https://api.dnanexus.com/file-FPbYFfj07yQPGZJq41zZx440/upload response: - body: {string: !!python/unicode '{"url":"https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/097e/file/open/file-FP9k98j0BqKf8GXkJpbYfZzJ/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181026%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181026T222644Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=0bdf69b36be797caf687f41240e8253b20733abdfbea37984eafc06c706dd512","headers":{"host":"dnanexus-platform-upload-prod.s3.amazonaws.com","content-type":"binary/octet-stream","x-amz-server-side-encryption":"AES256","content-md5":"c9//V/4k6Ae9T7G8TgfNcw==","content-length":"5"},"expires":1540592924019}'} + body: {string: !!python/unicode '{"url":"https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/a9af/file/open/file-FPbYFfj07yQPGZJq41zZx440/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181113%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181113T203643Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=250009ff9f3a0b7eee74e78fcc068d54606f0cf30f5c7e756756ffd0b1350816","headers":{"host":"dnanexus-platform-upload-prod.s3.amazonaws.com","content-type":"binary/octet-stream","x-amz-server-side-encryption":"AES256","content-md5":"c9//V/4k6Ae9T7G8TgfNcw==","content-length":"5"},"expires":1542141523276}'} headers: connection: [keep-alive] content-length: ['692'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:26:44 GMT'] + date: ['Tue, 13 Nov 2018 20:36:43 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592803972-843747] + x-request-id: [1542141403262-612303] status: {code: 200, message: OK} - request: body: !!python/unicode data0 headers: DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] content-length: ['5'] content-md5: [c9//V/4k6Ae9T7G8TgfNcw==] content-type: [binary/octet-stream] host: [dnanexus-platform-upload-prod.s3.amazonaws.com] x-amz-server-side-encryption: [AES256] method: PUT - uri: https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/097e/file/open/file-FP9k98j0BqKf8GXkJpbYfZzJ/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181026%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181026T222644Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=0bdf69b36be797caf687f41240e8253b20733abdfbea37984eafc06c706dd512 + uri: https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/a9af/file/open/file-FPbYFfj07yQPGZJq41zZx440/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181113%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181113T203643Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=250009ff9f3a0b7eee74e78fcc068d54606f0cf30f5c7e756756ffd0b1350816 response: body: {string: !!python/unicode ''} headers: content-length: ['0'] - date: ['Fri, 26 Oct 2018 22:26:45 GMT'] + date: ['Tue, 13 Nov 2018 20:36:44 GMT'] etag: ['"73dfff57fe24e807bd4fb1bc4e07cd73"'] server: [AmazonS3] - x-amz-expiration: ['expiry-date="Sat, 17 Nov 2018 00:00:00 GMT", rule-id="3weekpurge"'] - x-amz-id-2: [Hvb20zKKRyecV4oiflksORMGfxjPf2ZCHgDBpUqpYwCKQsAy1c7VfFoOAP9bGZ6BvsGIZpFYgS4=] - x-amz-request-id: [3D71AE6C07E2B2C4] + x-amz-expiration: ['expiry-date="Wed, 05 Dec 2018 00:00:00 GMT", rule-id="3weekpurge"'] + x-amz-id-2: [CtnqEugrugcwj3jO/kVYXT1JLswa5tgoHZ/3DHT0APYPO23l3BLs4o2odr7M2RsmYogTDgF2PK4=] + x-amz-request-id: [30053F39C38EFE6A] x-amz-server-side-encryption: [AES256] status: {code: 200, message: OK} - request: @@ -322,131 +342,111 @@ interactions: headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k98j0BqKf8GXkJpbYfZzJ/close + uri: https://api.dnanexus.com/file-FPbYFfj07yQPGZJq41zZx440/close response: - body: {string: !!python/unicode '{"id":"file-FP9k98j0BqKf8GXkJpbYfZzJ"}'} + body: {string: !!python/unicode '{"id":"file-FPbYFfj07yQPGZJq41zZx440"}'} headers: connection: [keep-alive] content-length: ['38'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:26:44 GMT'] - server: [nginx] - x-content-type-options: [nosniff] - x-powered-by: [Express] - x-request-id: [1540592804261-694274] - status: {code: 200, message: OK} -- request: - body: !!python/unicode '{"parents": true, "folder": "/temp_folder/folder2"}' - headers: - Content-Type: [application/json] - DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] - method: POST - uri: https://api.dnanexus.com/project-FP9k9880BqKqPYg95F286zGX/newFolder - response: - body: {string: !!python/unicode '{"id":"project-FP9k9880BqKqPYg95F286zGX"}'} - headers: - connection: [keep-alive] - content-length: ['41'] - content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:26:44 GMT'] + date: ['Tue, 13 Nov 2018 20:36:43 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592804446-88664] + x-request-id: [1542141403494-209606] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"limit": 2, "name": "TestCopyTree.test_posix_dir_to_dx.74f86e00", + body: !!python/unicode '{"limit": 2, "name": "TestCopyTree.test_posix_dir_to_dx.f2736e53", "level": "VIEW"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/system/findProjects response: - body: {string: !!python/unicode '{"results":[{"id":"project-FP9k9880BqKqPYg95F286zGX","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} + body: {string: !!python/unicode '{"results":[{"id":"project-FPbYFf007yQ28kYX49BbP8by","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} headers: connection: [keep-alive] content-length: ['147'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:26:44 GMT'] + date: ['Tue, 13 Nov 2018 20:36:43 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592804596-444760] + x-request-id: [1542141403632-314216] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"objects": [{"name": "file.txt", "project": "project-FP9k9880BqKqPYg95F286zGX", - "batchsize": 2, "folder": "/temp_folder"}]}' + body: !!python/unicode '{"objects": [{"project": "project-FPbYFf007yQ28kYX49BbP8by", + "folder": "/temp_folder", "name": "file.txt", "batchsize": 2}]}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/system/resolveDataObjects response: - body: {string: !!python/unicode '{"results":[[{"project":"project-FP9k9880BqKqPYg95F286zGX","id":"file-FP9k98j0BqKf8GXkJpbYfZzJ"}]]}'} + body: {string: !!python/unicode '{"results":[[{"project":"project-FPbYFf007yQ28kYX49BbP8by","id":"file-FPbYFfj07yQPGZJq41zZx440"}]]}'} headers: connection: [keep-alive] content-length: ['99'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:26:44 GMT'] + date: ['Tue, 13 Nov 2018 20:36:43 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592804804-843712] + x-request-id: [1542141403749-855657] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"project": "project-FP9k9880BqKqPYg95F286zGX"}' + body: !!python/unicode '{"project": "project-FPbYFf007yQ28kYX49BbP8by"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k98j0BqKf8GXkJpbYfZzJ/describe + uri: https://api.dnanexus.com/file-FPbYFfj07yQPGZJq41zZx440/describe response: - body: {string: !!python/unicode '{"id":"file-FP9k98j0BqKf8GXkJpbYfZzJ","project":"project-FP9k9880BqKqPYg95F286zGX","class":"file","sponsored":false,"name":"file.txt","types":[],"state":"closing","hidden":false,"links":[],"folder":"/temp_folder","tags":[],"created":1540592803000,"modified":1540592804313,"createdBy":{"user":"user-akumar_counsyl"},"media":"","archivalState":"live"}'} + body: {string: !!python/unicode '{"id":"file-FPbYFfj07yQPGZJq41zZx440","project":"project-FPbYFf007yQ28kYX49BbP8by","class":"file","sponsored":false,"name":"file.txt","types":[],"state":"closing","hidden":false,"links":[],"folder":"/temp_folder","tags":[],"created":1542141403000,"modified":1542141403519,"createdBy":{"user":"user-akumar_counsyl"},"media":"","archivalState":"live"}'} headers: connection: [keep-alive] content-length: ['349'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:26:44 GMT'] + date: ['Tue, 13 Nov 2018 20:36:43 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592804955-425153] + x-request-id: [1542141403859-602809] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"limit": 2, "name": "TestCopyTree.test_posix_dir_to_dx.74f86e00", + body: !!python/unicode '{"limit": 2, "name": "TestCopyTree.test_posix_dir_to_dx.f2736e53", "level": "VIEW"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/system/findProjects response: - body: {string: !!python/unicode '{"results":[{"id":"project-FP9k9880BqKqPYg95F286zGX","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} + body: {string: !!python/unicode '{"results":[{"id":"project-FPbYFf007yQ28kYX49BbP8by","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} headers: connection: [keep-alive] content-length: ['147'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:26:45 GMT'] + date: ['Tue, 13 Nov 2018 20:36:44 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592805095-77465] + x-request-id: [1542141403961-228164] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"objects": [{"name": "folder2", "project": "project-FP9k9880BqKqPYg95F286zGX", - "batchsize": 2, "folder": "/temp_folder"}]}' + body: !!python/unicode '{"objects": [{"project": "project-FPbYFf007yQ28kYX49BbP8by", + "folder": "/temp_folder", "name": "folder2", "batchsize": 2}]}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/system/resolveDataObjects response: @@ -455,51 +455,51 @@ interactions: connection: [keep-alive] content-length: ['16'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:26:45 GMT'] + date: ['Tue, 13 Nov 2018 20:36:44 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592805259-137455] + x-request-id: [1542141404108-120093] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"includeHidden": false, "only": "folders", "folder": - "/temp_folder/folder2", "describe": {"fields": {"name": true, "folder": true}}}' + body: !!python/unicode '{"folder": "/temp_folder/folder2", "describe": {"fields": + {"folder": true, "name": true}}, "only": "folders", "includeHidden": false}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k9880BqKqPYg95F286zGX/listFolder + uri: https://api.dnanexus.com/project-FPbYFf007yQ28kYX49BbP8by/listFolder response: body: {string: !!python/unicode '{"folders":[]}'} headers: connection: [keep-alive] content-length: ['14'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:26:45 GMT'] + date: ['Tue, 13 Nov 2018 20:36:44 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592805381-808216] + x-request-id: [1542141404214-220534] status: {code: 200, message: OK} - request: body: !!python/unicode '{}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k9880BqKqPYg95F286zGX/destroy + uri: https://api.dnanexus.com/project-FPbYFf007yQ28kYX49BbP8by/destroy response: - body: {string: !!python/unicode '{"id":"project-FP9k9880BqKqPYg95F286zGX"}'} + body: {string: !!python/unicode '{"id":"project-FPbYFf007yQ28kYX49BbP8by"}'} headers: connection: [keep-alive] content-length: ['41'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:26:48 GMT'] + date: ['Tue, 13 Nov 2018 20:36:47 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592805557-952212] + x-request-id: [1542141404325-276173] status: {code: 200, message: OK} version: 1 diff --git a/stor/tests/cassettes_py2/TestCopyTree/test_posix_dir_to_dx_existing.yaml b/stor_dx/stor_dx/tests/cassettes_py2/TestCopyTree/test_posix_dir_to_dx_existing.yaml similarity index 56% rename from stor/tests/cassettes_py2/TestCopyTree/test_posix_dir_to_dx_existing.yaml rename to stor_dx/stor_dx/tests/cassettes_py2/TestCopyTree/test_posix_dir_to_dx_existing.yaml index 43ad84d7..ef942f85 100644 --- a/stor/tests/cassettes_py2/TestCopyTree/test_posix_dir_to_dx_existing.yaml +++ b/stor_dx/stor_dx/tests/cassettes_py2/TestCopyTree/test_posix_dir_to_dx_existing.yaml @@ -1,284 +1,305 @@ interactions: - request: - body: !!python/unicode '{"name": "TestCopyTree.test_posix_dir_to_dx_existing.12dba698"}' + body: !!python/unicode '{"name": "TestCopyTree.test_posix_dir_to_dx_existing.634ea509"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/project/new response: - body: {string: !!python/unicode '{"id":"project-FP9k9B004PK5vgj6Jkpx4b2K"}'} + body: {string: !!python/unicode '{"id":"project-FPbYBP8073Z82gzq1k0gg305"}'} headers: connection: [keep-alive] content-length: ['41'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:26:48 GMT'] + date: ['Tue, 13 Nov 2018 20:34:05 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592808780-378375] + x-request-id: [1542141245114-534077] status: {code: 200, message: OK} - request: body: !!python/unicode '{}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k9B004PK5vgj6Jkpx4b2K/describe + uri: https://api.dnanexus.com/project-FPbYBP8073Z82gzq1k0gg305/describe response: - body: {string: !!python/unicode '{"id":"project-FP9k9B004PK5vgj6Jkpx4b2K","name":"TestCopyTree.test_posix_dir_to_dx_existing.12dba698","class":"project","created":1540592808000,"modified":1540592808000,"billTo":"org-counsyl","level":"ADMINISTER","dataUsage":0,"sponsoredDataUsage":0,"region":"aws:us-east-1","summary":"","description":"","protected":false,"restricted":false,"downloadRestricted":false,"containsPHI":false,"createdBy":{"user":"user-akumar_counsyl"},"version":0,"storageCost":0,"pendingTransfer":null,"tags":[],"defaultInstanceType":"mem2_hdd2_x2","archivalState":"live","archivalProgress":null,"totalSponsoredEgressBytes":0,"consumedSponsoredEgressBytes":0,"atSpendingLimit":false}'} + body: {string: !!python/unicode '{"id":"project-FPbYBP8073Z82gzq1k0gg305","name":"TestCopyTree.test_posix_dir_to_dx_existing.634ea509","class":"project","created":1542141245000,"modified":1542141245000,"billTo":"org-counsyl","level":"ADMINISTER","dataUsage":0,"sponsoredDataUsage":0,"region":"aws:us-east-1","summary":"","description":"","protected":false,"restricted":false,"downloadRestricted":false,"containsPHI":false,"createdBy":{"user":"user-akumar_counsyl"},"version":0,"storageCost":0,"pendingTransfer":null,"tags":[],"defaultInstanceType":"mem2_hdd2_x2","archivalState":"live","archivalProgress":null,"totalSponsoredEgressBytes":0,"consumedSponsoredEgressBytes":0,"atSpendingLimit":false}'} headers: connection: [keep-alive] content-length: ['664'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:26:48 GMT'] + date: ['Tue, 13 Nov 2018 20:34:05 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592808904-391869] + x-request-id: [1542141245271-851085] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"parents": true, "folder": "/existing_folder"}' + body: !!python/unicode '{"folder": "/existing_folder", "parents": true}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k9B004PK5vgj6Jkpx4b2K/newFolder + uri: https://api.dnanexus.com/project-FPbYBP8073Z82gzq1k0gg305/newFolder response: - body: {string: !!python/unicode '{"id":"project-FP9k9B004PK5vgj6Jkpx4b2K"}'} + body: {string: !!python/unicode '{"id":"project-FPbYBP8073Z82gzq1k0gg305"}'} headers: connection: [keep-alive] content-length: ['41'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:26:49 GMT'] + date: ['Tue, 13 Nov 2018 20:34:05 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592809037-557653] + x-request-id: [1542141245417-996004] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"name": "file", "project": "project-FP9k9B004PK5vgj6Jkpx4b2K", - "folder": "/existing_folder", "nonce": "8ca3614c464874124d123a0b0dae3dacbef5eb81288aca49e3bad5f511dc15501540592809.131978"}' + body: !!python/unicode '{"project": "project-FPbYBP8073Z82gzq1k0gg305", "nonce": + "6c070ecaa6e6b506af949545e843e2daf6fa61a7f8262d73b5fa085a2d50c0fc1542141245.520284", + "folder": "/existing_folder", "name": "file"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/file/new response: - body: {string: !!python/unicode '{"id":"file-FP9k9B804PK5VJvpJkZZ2f7Y"}'} + body: {string: !!python/unicode '{"id":"file-FPbYBP8073Z4P61Q4bjV0pV3"}'} headers: connection: [keep-alive] content-length: ['38'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:26:49 GMT'] + date: ['Tue, 13 Nov 2018 20:34:05 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592809184-386452] + x-request-id: [1542141245572-754116] status: {code: 200, message: OK} - request: body: !!python/unicode '{"fields": {"fileUploadParameters": true}}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k9B004PK5vgj6Jkpx4b2K/describe + uri: https://api.dnanexus.com/project-FPbYBP8073Z82gzq1k0gg305/describe response: - body: {string: !!python/unicode '{"id":"project-FP9k9B004PK5vgj6Jkpx4b2K","fileUploadParameters":{"maximumPartSize":5368709120,"minimumPartSize":5242880,"maximumFileSize":5497558138880,"maximumNumParts":10000,"emptyLastPartAllowed":true}}'} + body: {string: !!python/unicode '{"id":"project-FPbYBP8073Z82gzq1k0gg305","fileUploadParameters":{"maximumPartSize":5368709120,"minimumPartSize":5242880,"maximumFileSize":5497558138880,"maximumNumParts":10000,"emptyLastPartAllowed":true}}'} headers: connection: [keep-alive] content-length: ['205'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:26:49 GMT'] + date: ['Tue, 13 Nov 2018 20:34:05 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592809339-923280] + x-request-id: [1542141245760-911258] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"size": 5, "md5": "73dfff57fe24e807bd4fb1bc4e07cd73", - "index": 1}' + body: !!python/unicode '{"index": 1, "size": 5, "md5": "73dfff57fe24e807bd4fb1bc4e07cd73"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k9B804PK5VJvpJkZZ2f7Y/upload + uri: https://api.dnanexus.com/file-FPbYBP8073Z4P61Q4bjV0pV3/upload response: - body: {string: !!python/unicode '{"url":"https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/43c4/file/open/file-FP9k9B804PK5VJvpJkZZ2f7Y/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181026%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181026T222649Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=cc67c67ea3a1e78452ec52ab848dc847561bd2355717a6fbc7b9ef3d3a5390f8","headers":{"host":"dnanexus-platform-upload-prod.s3.amazonaws.com","content-type":"binary/octet-stream","x-amz-server-side-encryption":"AES256","content-md5":"c9//V/4k6Ae9T7G8TgfNcw==","content-length":"5"},"expires":1540592929467}'} + body: {string: !!python/unicode '{"url":"https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/0d13/file/open/file-FPbYBP8073Z4P61Q4bjV0pV3/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181113%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181113T203405Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=ec0e0ec2b36477817ab9acd301ff8e47d5756d49959ac3bdf746e617c3d4512b","headers":{"host":"dnanexus-platform-upload-prod.s3.amazonaws.com","content-type":"binary/octet-stream","x-amz-server-side-encryption":"AES256","content-md5":"c9//V/4k6Ae9T7G8TgfNcw==","content-length":"5"},"expires":1542141365901}'} headers: connection: [keep-alive] content-length: ['692'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:26:49 GMT'] + date: ['Tue, 13 Nov 2018 20:34:05 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592809454-225367] + x-request-id: [1542141245878-960430] status: {code: 200, message: OK} - request: body: !!python/unicode data0 headers: DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] content-length: ['5'] content-md5: [c9//V/4k6Ae9T7G8TgfNcw==] content-type: [binary/octet-stream] host: [dnanexus-platform-upload-prod.s3.amazonaws.com] x-amz-server-side-encryption: [AES256] method: PUT - uri: https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/43c4/file/open/file-FP9k9B804PK5VJvpJkZZ2f7Y/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181026%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181026T222649Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=cc67c67ea3a1e78452ec52ab848dc847561bd2355717a6fbc7b9ef3d3a5390f8 + uri: https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/0d13/file/open/file-FPbYBP8073Z4P61Q4bjV0pV3/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181113%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181113T203405Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=ec0e0ec2b36477817ab9acd301ff8e47d5756d49959ac3bdf746e617c3d4512b response: body: {string: !!python/unicode ''} headers: content-length: ['0'] - date: ['Fri, 26 Oct 2018 22:26:50 GMT'] + date: ['Tue, 13 Nov 2018 20:34:07 GMT'] etag: ['"73dfff57fe24e807bd4fb1bc4e07cd73"'] server: [AmazonS3] - x-amz-expiration: ['expiry-date="Sat, 17 Nov 2018 00:00:00 GMT", rule-id="3weekpurge"'] - x-amz-id-2: [tTRCvL0/AixqkrPt3cF2MdS+8/jFI7v5jxKeUfUVFmEz360GPWiGd+/uBchzXbhz08jD+CeXn5E=] - x-amz-request-id: [DE2AE47254155EBF] + x-amz-expiration: ['expiry-date="Wed, 05 Dec 2018 00:00:00 GMT", rule-id="3weekpurge"'] + x-amz-id-2: [cPOPRP8Rzhd8508wtis6/vrnjHQZgiovToI810CvdGMfhNLQq8xQYGO2ccpNjprNDqGmzjyCgKI=] + x-amz-request-id: [6BE58385C31C8E43] x-amz-server-side-encryption: [AES256] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"project": "project-FP9k9B004PK5vgj6Jkpx4b2K", "fields": + body: !!python/unicode '{"project": "project-FPbYBP8073Z82gzq1k0gg305", "fields": {"state": true}}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k9B804PK5VJvpJkZZ2f7Y/describe + uri: https://api.dnanexus.com/file-FPbYBP8073Z4P61Q4bjV0pV3/describe response: - body: {string: !!python/unicode '{"id":"file-FP9k9B804PK5VJvpJkZZ2f7Y","state":"open"}'} + body: {string: !!python/unicode '{"id":"file-FPbYBP8073Z4P61Q4bjV0pV3","state":"open"}'} headers: connection: [keep-alive] content-length: ['53'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:26:50 GMT'] + date: ['Tue, 13 Nov 2018 20:34:06 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592810004-387925] + x-request-id: [1542141246383-667180] status: {code: 200, message: OK} - request: body: !!python/unicode '{}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k9B804PK5VJvpJkZZ2f7Y/close + uri: https://api.dnanexus.com/file-FPbYBP8073Z4P61Q4bjV0pV3/close response: - body: {string: !!python/unicode '{"id":"file-FP9k9B804PK5VJvpJkZZ2f7Y"}'} + body: {string: !!python/unicode '{"id":"file-FPbYBP8073Z4P61Q4bjV0pV3"}'} headers: connection: [keep-alive] content-length: ['38'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:26:50 GMT'] + date: ['Tue, 13 Nov 2018 20:34:06 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592810120-652493] + x-request-id: [1542141246525-46657] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"limit": 2, "name": "TestCopyTree.test_posix_dir_to_dx_existing.12dba698", + body: !!python/unicode '{"limit": 2, "name": "TestCopyTree.test_posix_dir_to_dx_existing.634ea509", "level": "VIEW"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/system/findProjects response: - body: {string: !!python/unicode '{"results":[{"id":"project-FP9k9B004PK5vgj6Jkpx4b2K","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} + body: {string: !!python/unicode '{"results":[{"id":"project-FPbYBP8073Z82gzq1k0gg305","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} headers: connection: [keep-alive] content-length: ['147'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:26:50 GMT'] + date: ['Tue, 13 Nov 2018 20:34:06 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592810247-6979] + x-request-id: [1542141246746-927358] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"includeHidden": false, "only": "folders", "folder": - "/existing_folder", "describe": {"fields": {"name": true, "folder": true}}}' + body: !!python/unicode '{"folder": "/existing_folder", "describe": {"fields": + {"folder": true, "name": true}}, "only": "folders", "includeHidden": false}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k9B004PK5vgj6Jkpx4b2K/listFolder + uri: https://api.dnanexus.com/project-FPbYBP8073Z82gzq1k0gg305/listFolder response: body: {string: !!python/unicode '{"folders":[]}'} headers: connection: [keep-alive] content-length: ['14'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:26:50 GMT'] + date: ['Tue, 13 Nov 2018 20:34:06 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592810396-831127] + x-request-id: [1542141246882-623850] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"limit": 2, "name": "TestCopyTree.test_posix_dir_to_dx_existing.12dba698", + body: !!python/unicode '{"limit": 2, "name": "TestCopyTree.test_posix_dir_to_dx_existing.634ea509", "level": "VIEW"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/system/findProjects response: - body: {string: !!python/unicode '{"results":[{"id":"project-FP9k9B004PK5vgj6Jkpx4b2K","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} + body: {string: !!python/unicode '{"results":[{"id":"project-FPbYBP8073Z82gzq1k0gg305","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} headers: connection: [keep-alive] content-length: ['147'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:26:50 GMT'] + date: ['Tue, 13 Nov 2018 20:34:07 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592810508-901954] + x-request-id: [1542141246997-587535] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"includeHidden": false, "only": "folders", "folder": - "/existing_folder/folder", "describe": {"fields": {"name": true, "folder": true}}}' + body: !!python/unicode '{"folder": "/existing_folder/folder", "describe": {"fields": + {"folder": true, "name": true}}, "only": "folders", "includeHidden": false}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k9B004PK5vgj6Jkpx4b2K/listFolder + uri: https://api.dnanexus.com/project-FPbYBP8073Z82gzq1k0gg305/listFolder response: body: {string: !!python/unicode '{"error":{"type":"ResourceNotFound","message":"The - specified folder could not be found in project-FP9k9B004PK5vgj6Jkpx4b2K"}}'} + specified folder could not be found in project-FPbYBP8073Z82gzq1k0gg305"}}'} headers: connection: [keep-alive] content-type: [application/json] - date: ['Fri, 26 Oct 2018 22:26:50 GMT'] + date: ['Tue, 13 Nov 2018 20:34:07 GMT'] server: [nginx] transfer-encoding: [chunked] vary: [Accept-Encoding] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592810642-507939] + x-request-id: [1542141247163-475623] status: {code: 404, message: Not Found} - request: - body: !!python/unicode '{"objects": [{"name": "file2.txt", "project": "project-FP9k9B004PK5vgj6Jkpx4b2K", - "batchsize": 2, "folder": "/existing_folder/folder"}]}' + body: !!python/unicode '{"folder": "/existing_folder/folder/folder2", "parents": + true}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] + method: POST + uri: https://api.dnanexus.com/project-FPbYBP8073Z82gzq1k0gg305/newFolder + response: + body: {string: !!python/unicode '{"id":"project-FPbYBP8073Z82gzq1k0gg305"}'} + headers: + connection: [keep-alive] + content-length: ['41'] + content-type: [application/json; charset=utf-8] + date: ['Tue, 13 Nov 2018 20:34:07 GMT'] + server: [nginx] + x-content-type-options: [nosniff] + x-powered-by: [Express] + x-request-id: [1542141247553-286798] + status: {code: 200, message: OK} +- request: + body: !!python/unicode '{"objects": [{"project": "project-FPbYBP8073Z82gzq1k0gg305", + "folder": "/existing_folder/folder", "name": "file2.txt", "batchsize": 2}]}' + headers: + Content-Type: [application/json] + DNAnexus-API: [1.0.0] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/system/resolveDataObjects response: @@ -287,96 +308,96 @@ interactions: connection: [keep-alive] content-length: ['16'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:26:51 GMT'] + date: ['Tue, 13 Nov 2018 20:34:07 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592811057-73337] + x-request-id: [1542141247699-172085] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"parents": true, "name": "file2.txt", "project": "project-FP9k9B004PK5vgj6Jkpx4b2K", - "folder": "/existing_folder/folder", "nonce": "d9f72d54b289bd7ed5bfb213948949c89ed118999dd562bd3b169bd5f5d66b961540592811.119028"}' + body: !!python/unicode '{"project": "project-FPbYBP8073Z82gzq1k0gg305", "nonce": + "bab7ff225cdff2ce29690036b07c144bbe0bf511ae88366d0ae9ce02cd3362ca1542141247.857655", + "folder": "/existing_folder/folder", "parents": true, "name": "file2.txt"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/file/new response: - body: {string: !!python/unicode '{"id":"file-FP9k9Bj04PK5vgj6Jkpx4b2P"}'} + body: {string: !!python/unicode '{"id":"file-FPbYBPj073Z068BXFXVP875B"}'} headers: connection: [keep-alive] content-length: ['38'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:26:51 GMT'] + date: ['Tue, 13 Nov 2018 20:34:07 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592811167-474542] + x-request-id: [1542141247901-564106] status: {code: 200, message: OK} - request: body: !!python/unicode '{"fields": {"fileUploadParameters": true}}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k9B004PK5vgj6Jkpx4b2K/describe + uri: https://api.dnanexus.com/project-FPbYBP8073Z82gzq1k0gg305/describe response: - body: {string: !!python/unicode '{"id":"project-FP9k9B004PK5vgj6Jkpx4b2K","fileUploadParameters":{"maximumPartSize":5368709120,"minimumPartSize":5242880,"maximumFileSize":5497558138880,"maximumNumParts":10000,"emptyLastPartAllowed":true}}'} + body: {string: !!python/unicode '{"id":"project-FPbYBP8073Z82gzq1k0gg305","fileUploadParameters":{"maximumPartSize":5368709120,"minimumPartSize":5242880,"maximumFileSize":5497558138880,"maximumNumParts":10000,"emptyLastPartAllowed":true}}'} headers: connection: [keep-alive] content-length: ['205'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:26:51 GMT'] + date: ['Tue, 13 Nov 2018 20:34:08 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592811317-176620] + x-request-id: [1542141248073-797555] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"size": 5, "md5": "89d903bc35dede724fd52c51437ff5fd", - "index": 1}' + body: !!python/unicode '{"index": 1, "size": 5, "md5": "89d903bc35dede724fd52c51437ff5fd"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k9Bj04PK5vgj6Jkpx4b2P/upload + uri: https://api.dnanexus.com/file-FPbYBPj073Z068BXFXVP875B/upload response: - body: {string: !!python/unicode '{"url":"https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/79a3/file/open/file-FP9k9Bj04PK5vgj6Jkpx4b2P/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181026%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181026T222651Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=2d1610883a833eea62c7760e99efde29172e1f766706be980355a7a1b148644d","headers":{"host":"dnanexus-platform-upload-prod.s3.amazonaws.com","content-type":"binary/octet-stream","x-amz-server-side-encryption":"AES256","content-md5":"idkDvDXe3nJP1SxRQ3/1/Q==","content-length":"5"},"expires":1540592931456}'} + body: {string: !!python/unicode '{"url":"https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/3bce/file/open/file-FPbYBPj073Z068BXFXVP875B/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181113%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181113T203408Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=5e16ee43b1ed7fbda2a290094f2c14a14d9dd3d6925e4fcb84540809e3b0babb","headers":{"host":"dnanexus-platform-upload-prod.s3.amazonaws.com","content-type":"binary/octet-stream","x-amz-server-side-encryption":"AES256","content-md5":"idkDvDXe3nJP1SxRQ3/1/Q==","content-length":"5"},"expires":1542141368466}'} headers: connection: [keep-alive] content-length: ['692'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:26:51 GMT'] + date: ['Tue, 13 Nov 2018 20:34:08 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592811444-774838] + x-request-id: [1542141248366-596779] status: {code: 200, message: OK} - request: body: !!python/unicode data1 headers: DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] content-length: ['5'] content-md5: [idkDvDXe3nJP1SxRQ3/1/Q==] content-type: [binary/octet-stream] host: [dnanexus-platform-upload-prod.s3.amazonaws.com] x-amz-server-side-encryption: [AES256] method: PUT - uri: https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/79a3/file/open/file-FP9k9Bj04PK5vgj6Jkpx4b2P/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181026%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181026T222651Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=2d1610883a833eea62c7760e99efde29172e1f766706be980355a7a1b148644d + uri: https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/3bce/file/open/file-FPbYBPj073Z068BXFXVP875B/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181113%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181113T203408Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=5e16ee43b1ed7fbda2a290094f2c14a14d9dd3d6925e4fcb84540809e3b0babb response: body: {string: !!python/unicode ''} headers: content-length: ['0'] - date: ['Fri, 26 Oct 2018 22:26:52 GMT'] + date: ['Tue, 13 Nov 2018 20:34:09 GMT'] etag: ['"89d903bc35dede724fd52c51437ff5fd"'] server: [AmazonS3] - x-amz-expiration: ['expiry-date="Sat, 17 Nov 2018 00:00:00 GMT", rule-id="3weekpurge"'] - x-amz-id-2: [FezY/FxpxpCxQZd6bOsUfqcaxI7dRYVT3qQoghtxxziLcdAzVOkYsqq2qZwEFSpO6SLqF5tUHe4=] - x-amz-request-id: [01A6C58801F8A7CF] + x-amz-expiration: ['expiry-date="Wed, 05 Dec 2018 00:00:00 GMT", rule-id="3weekpurge"'] + x-amz-id-2: [HDCgOzk+mGybQ/8jkFW3HoMT5GwPwuscA4w1iQp0V/+wAvKkNqUJcvg0bygZ0C1vDXeii9DK5UI=] + x-amz-request-id: [D6E7FE33577A1585] x-amz-server-side-encryption: [AES256] status: {code: 200, message: OK} - request: @@ -384,28 +405,28 @@ interactions: headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k9Bj04PK5vgj6Jkpx4b2P/close + uri: https://api.dnanexus.com/file-FPbYBPj073Z068BXFXVP875B/close response: - body: {string: !!python/unicode '{"id":"file-FP9k9Bj04PK5vgj6Jkpx4b2P"}'} + body: {string: !!python/unicode '{"id":"file-FPbYBPj073Z068BXFXVP875B"}'} headers: connection: [keep-alive] content-length: ['38'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:26:52 GMT'] + date: ['Tue, 13 Nov 2018 20:34:09 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592812000-39305] + x-request-id: [1542141248963-195218] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"objects": [{"name": "file.txt", "project": "project-FP9k9B004PK5vgj6Jkpx4b2K", - "batchsize": 2, "folder": "/existing_folder/folder"}]}' + body: !!python/unicode '{"objects": [{"project": "project-FPbYBP8073Z82gzq1k0gg305", + "folder": "/existing_folder/folder", "name": "file.txt", "batchsize": 2}]}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/system/resolveDataObjects response: @@ -414,96 +435,96 @@ interactions: connection: [keep-alive] content-length: ['16'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:26:52 GMT'] + date: ['Tue, 13 Nov 2018 20:34:09 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592812130-569589] + x-request-id: [1542141249214-605388] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"parents": true, "name": "file.txt", "project": "project-FP9k9B004PK5vgj6Jkpx4b2K", - "folder": "/existing_folder/folder", "nonce": "b3de1d69a4ccbeca86913b63cd5271635d22d5b4e6ba8c40d98c749bfbacfba71540592812.203462"}' + body: !!python/unicode '{"project": "project-FPbYBP8073Z82gzq1k0gg305", "nonce": + "0093cc20d1171f949299dbdd7a94aa6da3837135385c056c68523297b4edfc581542141249.319199", + "folder": "/existing_folder/folder", "parents": true, "name": "file.txt"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/file/new response: - body: {string: !!python/unicode '{"id":"file-FP9k9F004PK68GXkJpbYfZzP"}'} + body: {string: !!python/unicode '{"id":"file-FPbYBQ8073Z068BXFXVP875G"}'} headers: connection: [keep-alive] content-length: ['38'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:26:52 GMT'] + date: ['Tue, 13 Nov 2018 20:34:09 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592812252-511086] + x-request-id: [1542141249363-421141] status: {code: 200, message: OK} - request: body: !!python/unicode '{"fields": {"fileUploadParameters": true}}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k9B004PK5vgj6Jkpx4b2K/describe + uri: https://api.dnanexus.com/project-FPbYBP8073Z82gzq1k0gg305/describe response: - body: {string: !!python/unicode '{"id":"project-FP9k9B004PK5vgj6Jkpx4b2K","fileUploadParameters":{"maximumPartSize":5368709120,"minimumPartSize":5242880,"maximumFileSize":5497558138880,"maximumNumParts":10000,"emptyLastPartAllowed":true}}'} + body: {string: !!python/unicode '{"id":"project-FPbYBP8073Z82gzq1k0gg305","fileUploadParameters":{"maximumPartSize":5368709120,"minimumPartSize":5242880,"maximumFileSize":5497558138880,"maximumNumParts":10000,"emptyLastPartAllowed":true}}'} headers: connection: [keep-alive] content-length: ['205'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:26:52 GMT'] + date: ['Tue, 13 Nov 2018 20:34:09 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592812397-243535] + x-request-id: [1542141249568-643096] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"size": 5, "md5": "73dfff57fe24e807bd4fb1bc4e07cd73", - "index": 1}' + body: !!python/unicode '{"index": 1, "size": 5, "md5": "73dfff57fe24e807bd4fb1bc4e07cd73"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k9F004PK68GXkJpbYfZzP/upload + uri: https://api.dnanexus.com/file-FPbYBQ8073Z068BXFXVP875G/upload response: - body: {string: !!python/unicode '{"url":"https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/cec0/file/open/file-FP9k9F004PK68GXkJpbYfZzP/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181026%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181026T222652Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=27573ce727dc1c3eb2a475690e2037a517c3f61f94dbfaf0ca4a2e59c8f56d2c","headers":{"host":"dnanexus-platform-upload-prod.s3.amazonaws.com","content-type":"binary/octet-stream","x-amz-server-side-encryption":"AES256","content-md5":"c9//V/4k6Ae9T7G8TgfNcw==","content-length":"5"},"expires":1540592932540}'} + body: {string: !!python/unicode '{"url":"https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/58f6/file/open/file-FPbYBQ8073Z068BXFXVP875G/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181113%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181113T203409Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=e00df2456a367d73ea814a7af5fcd22e646dc51498c2156754a1ee93ba0ffb9d","headers":{"host":"dnanexus-platform-upload-prod.s3.amazonaws.com","content-type":"binary/octet-stream","x-amz-server-side-encryption":"AES256","content-md5":"c9//V/4k6Ae9T7G8TgfNcw==","content-length":"5"},"expires":1542141369728}'} headers: connection: [keep-alive] content-length: ['692'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:26:52 GMT'] + date: ['Tue, 13 Nov 2018 20:34:09 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592812527-469986] + x-request-id: [1542141249686-952812] status: {code: 200, message: OK} - request: body: !!python/unicode data0 headers: DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] content-length: ['5'] content-md5: [c9//V/4k6Ae9T7G8TgfNcw==] content-type: [binary/octet-stream] host: [dnanexus-platform-upload-prod.s3.amazonaws.com] x-amz-server-side-encryption: [AES256] method: PUT - uri: https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/cec0/file/open/file-FP9k9F004PK68GXkJpbYfZzP/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181026%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181026T222652Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=27573ce727dc1c3eb2a475690e2037a517c3f61f94dbfaf0ca4a2e59c8f56d2c + uri: https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/58f6/file/open/file-FPbYBQ8073Z068BXFXVP875G/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181113%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181113T203409Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=e00df2456a367d73ea814a7af5fcd22e646dc51498c2156754a1ee93ba0ffb9d response: body: {string: !!python/unicode ''} headers: content-length: ['0'] - date: ['Fri, 26 Oct 2018 22:26:53 GMT'] + date: ['Tue, 13 Nov 2018 20:34:10 GMT'] etag: ['"73dfff57fe24e807bd4fb1bc4e07cd73"'] server: [AmazonS3] - x-amz-expiration: ['expiry-date="Sat, 17 Nov 2018 00:00:00 GMT", rule-id="3weekpurge"'] - x-amz-id-2: [JFj858xdJTj+tqLoZpDDXcI0g2MTcRN12sz/kx8sNhii/+XWYsjPzGfmrBMcvLjqgA2ywVlpdIM=] - x-amz-request-id: [0F4F661E73874018] + x-amz-expiration: ['expiry-date="Wed, 05 Dec 2018 00:00:00 GMT", rule-id="3weekpurge"'] + x-amz-id-2: [+pnueCOKKQKmkZu7of9ZYVghnbDV/my17x+WGfyp0EdXGTSO+h7PpH5Uc7CFj3g7F+u2RcC6GxM=] + x-amz-request-id: [CB6F4913A5B62C6F] x-amz-server-side-encryption: [AES256] status: {code: 200, message: OK} - request: @@ -511,131 +532,111 @@ interactions: headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k9F004PK68GXkJpbYfZzP/close + uri: https://api.dnanexus.com/file-FPbYBQ8073Z068BXFXVP875G/close response: - body: {string: !!python/unicode '{"id":"file-FP9k9F004PK68GXkJpbYfZzP"}'} + body: {string: !!python/unicode '{"id":"file-FPbYBQ8073Z068BXFXVP875G"}'} headers: connection: [keep-alive] content-length: ['38'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:26:52 GMT'] - server: [nginx] - x-content-type-options: [nosniff] - x-powered-by: [Express] - x-request-id: [1540592812768-874722] - status: {code: 200, message: OK} -- request: - body: !!python/unicode '{"parents": true, "folder": "/existing_folder/folder/folder2"}' - headers: - Content-Type: [application/json] - DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] - method: POST - uri: https://api.dnanexus.com/project-FP9k9B004PK5vgj6Jkpx4b2K/newFolder - response: - body: {string: !!python/unicode '{"id":"project-FP9k9B004PK5vgj6Jkpx4b2K"}'} - headers: - connection: [keep-alive] - content-length: ['41'] - content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:26:52 GMT'] + date: ['Tue, 13 Nov 2018 20:34:10 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592812889-568376] + x-request-id: [1542141249967-932534] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"limit": 2, "name": "TestCopyTree.test_posix_dir_to_dx_existing.12dba698", + body: !!python/unicode '{"limit": 2, "name": "TestCopyTree.test_posix_dir_to_dx_existing.634ea509", "level": "VIEW"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/system/findProjects response: - body: {string: !!python/unicode '{"results":[{"id":"project-FP9k9B004PK5vgj6Jkpx4b2K","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} + body: {string: !!python/unicode '{"results":[{"id":"project-FPbYBP8073Z82gzq1k0gg305","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} headers: connection: [keep-alive] content-length: ['147'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:26:53 GMT'] + date: ['Tue, 13 Nov 2018 20:34:10 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592813001-782108] + x-request-id: [1542141250120-142457] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"objects": [{"name": "file.txt", "project": "project-FP9k9B004PK5vgj6Jkpx4b2K", - "batchsize": 2, "folder": "/existing_folder/folder"}]}' + body: !!python/unicode '{"objects": [{"project": "project-FPbYBP8073Z82gzq1k0gg305", + "folder": "/existing_folder/folder", "name": "file.txt", "batchsize": 2}]}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/system/resolveDataObjects response: - body: {string: !!python/unicode '{"results":[[{"project":"project-FP9k9B004PK5vgj6Jkpx4b2K","id":"file-FP9k9F004PK68GXkJpbYfZzP"}]]}'} + body: {string: !!python/unicode '{"results":[[{"project":"project-FPbYBP8073Z82gzq1k0gg305","id":"file-FPbYBQ8073Z068BXFXVP875G"}]]}'} headers: connection: [keep-alive] content-length: ['99'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:26:53 GMT'] + date: ['Tue, 13 Nov 2018 20:34:10 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592813133-90882] + x-request-id: [1542141250265-732728] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"project": "project-FP9k9B004PK5vgj6Jkpx4b2K"}' + body: !!python/unicode '{"project": "project-FPbYBP8073Z82gzq1k0gg305"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k9F004PK68GXkJpbYfZzP/describe + uri: https://api.dnanexus.com/file-FPbYBQ8073Z068BXFXVP875G/describe response: - body: {string: !!python/unicode '{"id":"file-FP9k9F004PK68GXkJpbYfZzP","project":"project-FP9k9B004PK5vgj6Jkpx4b2K","class":"file","sponsored":false,"name":"file.txt","types":[],"state":"closed","hidden":false,"links":[],"folder":"/existing_folder/folder","tags":[],"created":1540592812000,"modified":1540592813254,"createdBy":{"user":"user-akumar_counsyl"},"media":"text/plain","archivalState":"live","size":5}'} + body: {string: !!python/unicode '{"id":"file-FPbYBQ8073Z068BXFXVP875G","project":"project-FPbYBP8073Z82gzq1k0gg305","class":"file","sponsored":false,"name":"file.txt","types":[],"state":"closing","hidden":false,"links":[],"folder":"/existing_folder/folder","tags":[],"created":1542141249000,"modified":1542141249992,"createdBy":{"user":"user-akumar_counsyl"},"media":"","archivalState":"live"}'} headers: connection: [keep-alive] - content-length: ['378'] + content-length: ['360'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:26:53 GMT'] + date: ['Tue, 13 Nov 2018 20:34:10 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592813256-147072] + x-request-id: [1542141250374-367781] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"limit": 2, "name": "TestCopyTree.test_posix_dir_to_dx_existing.12dba698", + body: !!python/unicode '{"limit": 2, "name": "TestCopyTree.test_posix_dir_to_dx_existing.634ea509", "level": "VIEW"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/system/findProjects response: - body: {string: !!python/unicode '{"results":[{"id":"project-FP9k9B004PK5vgj6Jkpx4b2K","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} + body: {string: !!python/unicode '{"results":[{"id":"project-FPbYBP8073Z82gzq1k0gg305","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} headers: connection: [keep-alive] content-length: ['147'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:26:53 GMT'] + date: ['Tue, 13 Nov 2018 20:34:10 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592813372-796384] + x-request-id: [1542141250521-446066] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"objects": [{"name": "folder2", "project": "project-FP9k9B004PK5vgj6Jkpx4b2K", - "batchsize": 2, "folder": "/existing_folder/folder"}]}' + body: !!python/unicode '{"objects": [{"project": "project-FPbYBP8073Z82gzq1k0gg305", + "folder": "/existing_folder/folder", "name": "folder2", "batchsize": 2}]}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/system/resolveDataObjects response: @@ -644,52 +645,52 @@ interactions: connection: [keep-alive] content-length: ['16'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:26:53 GMT'] + date: ['Tue, 13 Nov 2018 20:34:10 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592813502-406855] + x-request-id: [1542141250698-257238] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"includeHidden": false, "only": "folders", "folder": - "/existing_folder/folder/folder2", "describe": {"fields": {"name": true, "folder": - true}}}' + body: !!python/unicode '{"folder": "/existing_folder/folder/folder2", "describe": + {"fields": {"folder": true, "name": true}}, "only": "folders", "includeHidden": + false}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k9B004PK5vgj6Jkpx4b2K/listFolder + uri: https://api.dnanexus.com/project-FPbYBP8073Z82gzq1k0gg305/listFolder response: body: {string: !!python/unicode '{"folders":[]}'} headers: connection: [keep-alive] content-length: ['14'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:26:53 GMT'] + date: ['Tue, 13 Nov 2018 20:34:10 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592813610-929091] + x-request-id: [1542141250794-873440] status: {code: 200, message: OK} - request: body: !!python/unicode '{}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k9B004PK5vgj6Jkpx4b2K/destroy + uri: https://api.dnanexus.com/project-FPbYBP8073Z82gzq1k0gg305/destroy response: - body: {string: !!python/unicode '{"id":"project-FP9k9B004PK5vgj6Jkpx4b2K"}'} + body: {string: !!python/unicode '{"id":"project-FPbYBP8073Z82gzq1k0gg305"}'} headers: connection: [keep-alive] content-length: ['41'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:26:56 GMT'] + date: ['Tue, 13 Nov 2018 20:34:13 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592813722-361729] + x-request-id: [1542141250912-218288] status: {code: 200, message: OK} version: 1 diff --git a/stor/tests/cassettes_py2/TestCopyTree/test_posix_dir_to_dx_fail.yaml b/stor_dx/stor_dx/tests/cassettes_py2/TestCopyTree/test_posix_dir_to_dx_fail.yaml similarity index 57% rename from stor/tests/cassettes_py2/TestCopyTree/test_posix_dir_to_dx_fail.yaml rename to stor_dx/stor_dx/tests/cassettes_py2/TestCopyTree/test_posix_dir_to_dx_fail.yaml index 2cb9276c..04f192d5 100644 --- a/stor/tests/cassettes_py2/TestCopyTree/test_posix_dir_to_dx_fail.yaml +++ b/stor_dx/stor_dx/tests/cassettes_py2/TestCopyTree/test_posix_dir_to_dx_fail.yaml @@ -1,293 +1,293 @@ interactions: - request: - body: !!python/unicode '{"name": "TestCopyTree.test_posix_dir_to_dx_fail.33b31fd9"}' + body: !!python/unicode '{"name": "TestCopyTree.test_posix_dir_to_dx_fail.97714f90"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/project/new response: - body: {string: !!python/unicode '{"id":"project-FP9k9G00gY1f8GXkJpbYfZzV"}'} + body: {string: !!python/unicode '{"id":"project-FPbYBVQ096pQ68BXFXVP875Q"}'} headers: connection: [keep-alive] content-length: ['41'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:26:56 GMT'] + date: ['Tue, 13 Nov 2018 20:34:14 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592816477-100051] + x-request-id: [1542141254205-198387] status: {code: 200, message: OK} - request: body: !!python/unicode '{}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k9G00gY1f8GXkJpbYfZzV/describe + uri: https://api.dnanexus.com/project-FPbYBVQ096pQ68BXFXVP875Q/describe response: - body: {string: !!python/unicode '{"id":"project-FP9k9G00gY1f8GXkJpbYfZzV","name":"TestCopyTree.test_posix_dir_to_dx_fail.33b31fd9","class":"project","created":1540592816000,"modified":1540592816000,"billTo":"org-counsyl","level":"ADMINISTER","dataUsage":0,"sponsoredDataUsage":0,"region":"aws:us-east-1","summary":"","description":"","protected":false,"restricted":false,"downloadRestricted":false,"containsPHI":false,"createdBy":{"user":"user-akumar_counsyl"},"version":0,"storageCost":0,"pendingTransfer":null,"tags":[],"defaultInstanceType":"mem2_hdd2_x2","archivalState":"live","archivalProgress":null,"totalSponsoredEgressBytes":0,"consumedSponsoredEgressBytes":0,"atSpendingLimit":false}'} + body: {string: !!python/unicode '{"id":"project-FPbYBVQ096pQ68BXFXVP875Q","name":"TestCopyTree.test_posix_dir_to_dx_fail.97714f90","class":"project","created":1542141254000,"modified":1542141254000,"billTo":"org-counsyl","level":"ADMINISTER","dataUsage":0,"sponsoredDataUsage":0,"region":"aws:us-east-1","summary":"","description":"","protected":false,"restricted":false,"downloadRestricted":false,"containsPHI":false,"createdBy":{"user":"user-akumar_counsyl"},"version":0,"storageCost":0,"pendingTransfer":null,"tags":[],"defaultInstanceType":"mem2_hdd2_x2","archivalState":"live","archivalProgress":null,"totalSponsoredEgressBytes":0,"consumedSponsoredEgressBytes":0,"atSpendingLimit":false}'} headers: connection: [keep-alive] content-length: ['660'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:26:56 GMT'] + date: ['Tue, 13 Nov 2018 20:34:14 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592816610-502496] + x-request-id: [1542141254395-626156] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"parents": true, "folder": "/temp_folder/folder"}' + body: !!python/unicode '{"folder": "/temp_folder/folder", "parents": true}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k9G00gY1f8GXkJpbYfZzV/newFolder + uri: https://api.dnanexus.com/project-FPbYBVQ096pQ68BXFXVP875Q/newFolder response: - body: {string: !!python/unicode '{"id":"project-FP9k9G00gY1f8GXkJpbYfZzV"}'} + body: {string: !!python/unicode '{"id":"project-FPbYBVQ096pQ68BXFXVP875Q"}'} headers: connection: [keep-alive] content-length: ['41'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:26:56 GMT'] + date: ['Tue, 13 Nov 2018 20:34:14 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592816732-861535] + x-request-id: [1542141254594-733072] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"name": "file", "project": "project-FP9k9G00gY1f8GXkJpbYfZzV", - "folder": "/temp_folder/folder", "nonce": "9a03600bf580815e811feca96de5a1ab0491dfb89af4200761bb233cdaae30ca1540592816.799175"}' + body: !!python/unicode '{"project": "project-FPbYBVQ096pQ68BXFXVP875Q", "nonce": + "09ce3d69efd30d2e07cd05dcf118f68eb5067053aaa28044612d438765eaccb71542141254.713485", + "folder": "/temp_folder/folder", "name": "file"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/file/new response: - body: {string: !!python/unicode '{"id":"file-FP9k9G00gY1f8GXkJpbYfZzX"}'} + body: {string: !!python/unicode '{"id":"file-FPbYBVQ096pVgVFg2KzVq4K6"}'} headers: connection: [keep-alive] content-length: ['38'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:26:56 GMT'] + date: ['Tue, 13 Nov 2018 20:34:14 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592816847-792336] + x-request-id: [1542141254757-754250] status: {code: 200, message: OK} - request: body: !!python/unicode '{"fields": {"fileUploadParameters": true}}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k9G00gY1f8GXkJpbYfZzV/describe + uri: https://api.dnanexus.com/project-FPbYBVQ096pQ68BXFXVP875Q/describe response: - body: {string: !!python/unicode '{"id":"project-FP9k9G00gY1f8GXkJpbYfZzV","fileUploadParameters":{"maximumPartSize":5368709120,"minimumPartSize":5242880,"maximumFileSize":5497558138880,"maximumNumParts":10000,"emptyLastPartAllowed":true}}'} + body: {string: !!python/unicode '{"id":"project-FPbYBVQ096pQ68BXFXVP875Q","fileUploadParameters":{"maximumPartSize":5368709120,"minimumPartSize":5242880,"maximumFileSize":5497558138880,"maximumNumParts":10000,"emptyLastPartAllowed":true}}'} headers: connection: [keep-alive] content-length: ['205'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:26:57 GMT'] + date: ['Tue, 13 Nov 2018 20:34:14 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592816993-156733] + x-request-id: [1542141254938-545777] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"size": 5, "md5": "73dfff57fe24e807bd4fb1bc4e07cd73", - "index": 1}' + body: !!python/unicode '{"index": 1, "size": 5, "md5": "73dfff57fe24e807bd4fb1bc4e07cd73"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k9G00gY1f8GXkJpbYfZzX/upload + uri: https://api.dnanexus.com/file-FPbYBVQ096pVgVFg2KzVq4K6/upload response: - body: {string: !!python/unicode '{"url":"https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/922f/file/open/file-FP9k9G00gY1f8GXkJpbYfZzX/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181026%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181026T222657Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=dba2bbf4629d69918003fca682425087823fed533cbe3cb4f8665c22f6df505a","headers":{"host":"dnanexus-platform-upload-prod.s3.amazonaws.com","content-type":"binary/octet-stream","x-amz-server-side-encryption":"AES256","content-md5":"c9//V/4k6Ae9T7G8TgfNcw==","content-length":"5"},"expires":1540592937117}'} + body: {string: !!python/unicode '{"url":"https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/6fca/file/open/file-FPbYBVQ096pVgVFg2KzVq4K6/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181113%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181113T203415Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=b401f453c7a48eb43761cfabcb6259adadad14dad57aaf7a4996e0897f22cddb","headers":{"host":"dnanexus-platform-upload-prod.s3.amazonaws.com","content-type":"binary/octet-stream","x-amz-server-side-encryption":"AES256","content-md5":"c9//V/4k6Ae9T7G8TgfNcw==","content-length":"5"},"expires":1542141375145}'} headers: connection: [keep-alive] content-length: ['692'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:26:57 GMT'] + date: ['Tue, 13 Nov 2018 20:34:15 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592817103-874696] + x-request-id: [1542141255123-155979] status: {code: 200, message: OK} - request: body: !!python/unicode data0 headers: DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] content-length: ['5'] content-md5: [c9//V/4k6Ae9T7G8TgfNcw==] content-type: [binary/octet-stream] host: [dnanexus-platform-upload-prod.s3.amazonaws.com] x-amz-server-side-encryption: [AES256] method: PUT - uri: https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/922f/file/open/file-FP9k9G00gY1f8GXkJpbYfZzX/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181026%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181026T222657Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=dba2bbf4629d69918003fca682425087823fed533cbe3cb4f8665c22f6df505a + uri: https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/6fca/file/open/file-FPbYBVQ096pVgVFg2KzVq4K6/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181113%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181113T203415Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=b401f453c7a48eb43761cfabcb6259adadad14dad57aaf7a4996e0897f22cddb response: body: {string: !!python/unicode ''} headers: content-length: ['0'] - date: ['Fri, 26 Oct 2018 22:26:58 GMT'] + date: ['Tue, 13 Nov 2018 20:34:16 GMT'] etag: ['"73dfff57fe24e807bd4fb1bc4e07cd73"'] server: [AmazonS3] - x-amz-expiration: ['expiry-date="Sat, 17 Nov 2018 00:00:00 GMT", rule-id="3weekpurge"'] - x-amz-id-2: [QqVx9LFeUm56hEcXNdHwOi2/X8JiofAHz7Ge8L+lRpA+54mhZDjD/jOb1RN5NYl9A8rUYOPKzz0=] - x-amz-request-id: [10028EF70F80269E] + x-amz-expiration: ['expiry-date="Wed, 05 Dec 2018 00:00:00 GMT", rule-id="3weekpurge"'] + x-amz-id-2: [eF2fn9ngQOJcUeAWyd1wX+lEaRgRjeH0a+LrTfuZyqqe4Ionf5LzwVEDVp1sfOjQ64eqCqELgvY=] + x-amz-request-id: [3A96AC58D636106F] x-amz-server-side-encryption: [AES256] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"project": "project-FP9k9G00gY1f8GXkJpbYfZzV", "fields": + body: !!python/unicode '{"project": "project-FPbYBVQ096pQ68BXFXVP875Q", "fields": {"state": true}}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k9G00gY1f8GXkJpbYfZzX/describe + uri: https://api.dnanexus.com/file-FPbYBVQ096pVgVFg2KzVq4K6/describe response: - body: {string: !!python/unicode '{"id":"file-FP9k9G00gY1f8GXkJpbYfZzX","state":"open"}'} + body: {string: !!python/unicode '{"id":"file-FPbYBVQ096pVgVFg2KzVq4K6","state":"open"}'} headers: connection: [keep-alive] content-length: ['53'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:26:57 GMT'] + date: ['Tue, 13 Nov 2018 20:34:18 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592817708-337257] + x-request-id: [1542141257773-183767] status: {code: 200, message: OK} - request: body: !!python/unicode '{}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k9G00gY1f8GXkJpbYfZzX/close + uri: https://api.dnanexus.com/file-FPbYBVQ096pVgVFg2KzVq4K6/close response: - body: {string: !!python/unicode '{"id":"file-FP9k9G00gY1f8GXkJpbYfZzX"}'} + body: {string: !!python/unicode '{"id":"file-FPbYBVQ096pVgVFg2KzVq4K6"}'} headers: connection: [keep-alive] content-length: ['38'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:26:57 GMT'] + date: ['Tue, 13 Nov 2018 20:34:18 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592817823-681998] + x-request-id: [1542141258622-79323] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"limit": 2, "name": "TestCopyTree.test_posix_dir_to_dx_fail.33b31fd9", + body: !!python/unicode '{"limit": 2, "name": "TestCopyTree.test_posix_dir_to_dx_fail.97714f90", "level": "VIEW"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/system/findProjects response: - body: {string: !!python/unicode '{"results":[{"id":"project-FP9k9G00gY1f8GXkJpbYfZzV","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} + body: {string: !!python/unicode '{"results":[{"id":"project-FPbYBVQ096pQ68BXFXVP875Q","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} headers: connection: [keep-alive] content-length: ['147'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:26:57 GMT'] + date: ['Tue, 13 Nov 2018 20:34:18 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592817944-981964] + x-request-id: [1542141258806-956440] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"includeHidden": false, "only": "folders", "folder": - "/temp_folder", "describe": {"fields": {"name": true, "folder": true}}}' + body: !!python/unicode '{"folder": "/temp_folder", "describe": {"fields": {"folder": + true, "name": true}}, "only": "folders", "includeHidden": false}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k9G00gY1f8GXkJpbYfZzV/listFolder + uri: https://api.dnanexus.com/project-FPbYBVQ096pQ68BXFXVP875Q/listFolder response: body: {string: !!python/unicode '{"folders":["/temp_folder/folder"]}'} headers: connection: [keep-alive] content-length: ['35'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:26:58 GMT'] + date: ['Tue, 13 Nov 2018 20:34:19 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592818076-740101] + x-request-id: [1542141258976-221673] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"limit": 2, "name": "TestCopyTree.test_posix_dir_to_dx_fail.33b31fd9", + body: !!python/unicode '{"limit": 2, "name": "TestCopyTree.test_posix_dir_to_dx_fail.97714f90", "level": "VIEW"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/system/findProjects response: - body: {string: !!python/unicode '{"results":[{"id":"project-FP9k9G00gY1f8GXkJpbYfZzV","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} + body: {string: !!python/unicode '{"results":[{"id":"project-FPbYBVQ096pQ68BXFXVP875Q","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} headers: connection: [keep-alive] content-length: ['147'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:26:58 GMT'] + date: ['Tue, 13 Nov 2018 20:34:19 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592818186-321071] + x-request-id: [1542141259206-161240] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"includeHidden": false, "only": "folders", "folder": - "/temp_folder/folder", "describe": {"fields": {"name": true, "folder": true}}}' + body: !!python/unicode '{"folder": "/temp_folder/folder", "describe": {"fields": + {"folder": true, "name": true}}, "only": "folders", "includeHidden": false}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k9G00gY1f8GXkJpbYfZzV/listFolder + uri: https://api.dnanexus.com/project-FPbYBVQ096pQ68BXFXVP875Q/listFolder response: body: {string: !!python/unicode '{"folders":[]}'} headers: connection: [keep-alive] content-length: ['14'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:26:58 GMT'] + date: ['Tue, 13 Nov 2018 20:34:19 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592818319-427657] + x-request-id: [1542141259319-41702] status: {code: 200, message: OK} - request: body: !!python/unicode '{}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k9G00gY1f8GXkJpbYfZzV/destroy + uri: https://api.dnanexus.com/project-FPbYBVQ096pQ68BXFXVP875Q/destroy response: - body: {string: !!python/unicode '{"id":"project-FP9k9G00gY1f8GXkJpbYfZzV"}'} + body: {string: !!python/unicode '{"id":"project-FPbYBVQ096pQ68BXFXVP875Q"}'} headers: connection: [keep-alive] content-length: ['41'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:27:00 GMT'] + date: ['Tue, 13 Nov 2018 20:34:22 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592818438-570455] + x-request-id: [1542141259453-375367] status: {code: 200, message: OK} version: 1 diff --git a/stor/tests/cassettes_py2/TestCopyTree/test_posix_dir_to_dx_nested.yaml b/stor_dx/stor_dx/tests/cassettes_py2/TestCopyTree/test_posix_dir_to_dx_nested.yaml similarity index 57% rename from stor/tests/cassettes_py2/TestCopyTree/test_posix_dir_to_dx_nested.yaml rename to stor_dx/stor_dx/tests/cassettes_py2/TestCopyTree/test_posix_dir_to_dx_nested.yaml index 2b339aec..0b5c2421 100644 --- a/stor/tests/cassettes_py2/TestCopyTree/test_posix_dir_to_dx_nested.yaml +++ b/stor_dx/stor_dx/tests/cassettes_py2/TestCopyTree/test_posix_dir_to_dx_nested.yaml @@ -1,139 +1,159 @@ interactions: - request: - body: !!python/unicode '{"name": "TestCopyTree.test_posix_dir_to_dx_nested.f00fa2a3"}' + body: !!python/unicode '{"name": "TestCopyTree.test_posix_dir_to_dx_nested.3d55ab92"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/project/new response: - body: {string: !!python/unicode '{"id":"project-FP9k9J8064568GXkJpbYfZzZ"}'} + body: {string: !!python/unicode '{"id":"project-FPbYBYQ0P4gPb4Q5F4F3PB4z"}'} headers: connection: [keep-alive] content-length: ['41'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:27:01 GMT'] + date: ['Tue, 13 Nov 2018 20:34:22 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592821097-126759] + x-request-id: [1542141262632-45] status: {code: 200, message: OK} - request: body: !!python/unicode '{}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k9J8064568GXkJpbYfZzZ/describe + uri: https://api.dnanexus.com/project-FPbYBYQ0P4gPb4Q5F4F3PB4z/describe response: - body: {string: !!python/unicode '{"id":"project-FP9k9J8064568GXkJpbYfZzZ","name":"TestCopyTree.test_posix_dir_to_dx_nested.f00fa2a3","class":"project","created":1540592821000,"modified":1540592821000,"billTo":"org-counsyl","level":"ADMINISTER","dataUsage":0,"sponsoredDataUsage":0,"region":"aws:us-east-1","summary":"","description":"","protected":false,"restricted":false,"downloadRestricted":false,"containsPHI":false,"createdBy":{"user":"user-akumar_counsyl"},"version":0,"storageCost":0,"pendingTransfer":null,"tags":[],"defaultInstanceType":"mem2_hdd2_x2","archivalState":"live","archivalProgress":null,"totalSponsoredEgressBytes":0,"consumedSponsoredEgressBytes":0,"atSpendingLimit":false}'} + body: {string: !!python/unicode '{"id":"project-FPbYBYQ0P4gPb4Q5F4F3PB4z","name":"TestCopyTree.test_posix_dir_to_dx_nested.3d55ab92","class":"project","created":1542141262000,"modified":1542141262000,"billTo":"org-counsyl","level":"ADMINISTER","dataUsage":0,"sponsoredDataUsage":0,"region":"aws:us-east-1","summary":"","description":"","protected":false,"restricted":false,"downloadRestricted":false,"containsPHI":false,"createdBy":{"user":"user-akumar_counsyl"},"version":0,"storageCost":0,"pendingTransfer":null,"tags":[],"defaultInstanceType":"mem2_hdd2_x2","archivalState":"live","archivalProgress":null,"totalSponsoredEgressBytes":0,"consumedSponsoredEgressBytes":0,"atSpendingLimit":false}'} headers: connection: [keep-alive] content-length: ['662'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:27:01 GMT'] + date: ['Tue, 13 Nov 2018 20:34:22 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592821213-310368] + x-request-id: [1542141262815-950096] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"limit": 2, "name": "TestCopyTree.test_posix_dir_to_dx_nested.f00fa2a3", + body: !!python/unicode '{"limit": 2, "name": "TestCopyTree.test_posix_dir_to_dx_nested.3d55ab92", "level": "VIEW"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/system/findProjects response: - body: {string: !!python/unicode '{"results":[{"id":"project-FP9k9J8064568GXkJpbYfZzZ","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} + body: {string: !!python/unicode '{"results":[{"id":"project-FPbYBYQ0P4gPb4Q5F4F3PB4z","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} headers: connection: [keep-alive] content-length: ['147'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:27:01 GMT'] + date: ['Tue, 13 Nov 2018 20:34:23 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592821335-847685] + x-request-id: [1542141263088-611686] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"includeHidden": false, "only": "folders", "folder": - "/temp_folder/", "describe": {"fields": {"name": true, "folder": true}}}' + body: !!python/unicode '{"folder": "/temp_folder/", "describe": {"fields": {"folder": + true, "name": true}}, "only": "folders", "includeHidden": false}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k9J8064568GXkJpbYfZzZ/listFolder + uri: https://api.dnanexus.com/project-FPbYBYQ0P4gPb4Q5F4F3PB4z/listFolder response: body: {string: !!python/unicode '{"error":{"type":"ResourceNotFound","message":"The - specified folder could not be found in project-FP9k9J8064568GXkJpbYfZzZ"}}'} + specified folder could not be found in project-FPbYBYQ0P4gPb4Q5F4F3PB4z"}}'} headers: connection: [keep-alive] content-type: [application/json] - date: ['Fri, 26 Oct 2018 22:27:01 GMT'] + date: ['Tue, 13 Nov 2018 20:34:23 GMT'] server: [nginx] transfer-encoding: [chunked] vary: [Accept-Encoding] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592821467-857665] + x-request-id: [1542141263262-326110] status: {code: 404, message: Not Found} - request: - body: !!python/unicode '{"limit": 2, "name": "TestCopyTree.test_posix_dir_to_dx_nested.f00fa2a3", + body: !!python/unicode '{"limit": 2, "name": "TestCopyTree.test_posix_dir_to_dx_nested.3d55ab92", "level": "VIEW"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/system/findProjects response: - body: {string: !!python/unicode '{"results":[{"id":"project-FP9k9J8064568GXkJpbYfZzZ","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} + body: {string: !!python/unicode '{"results":[{"id":"project-FPbYBYQ0P4gPb4Q5F4F3PB4z","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} headers: connection: [keep-alive] content-length: ['147'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:27:01 GMT'] + date: ['Tue, 13 Nov 2018 20:34:23 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592821882-577631] + x-request-id: [1542141263638-31636] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"includeHidden": false, "only": "folders", "folder": - "/temp_folder/folder", "describe": {"fields": {"name": true, "folder": true}}}' + body: !!python/unicode '{"folder": "/temp_folder/folder", "describe": {"fields": + {"folder": true, "name": true}}, "only": "folders", "includeHidden": false}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k9J8064568GXkJpbYfZzZ/listFolder + uri: https://api.dnanexus.com/project-FPbYBYQ0P4gPb4Q5F4F3PB4z/listFolder response: body: {string: !!python/unicode '{"error":{"type":"ResourceNotFound","message":"The - specified folder could not be found in project-FP9k9J8064568GXkJpbYfZzZ"}}'} + specified folder could not be found in project-FPbYBYQ0P4gPb4Q5F4F3PB4z"}}'} headers: connection: [keep-alive] content-type: [application/json] - date: ['Fri, 26 Oct 2018 22:27:02 GMT'] + date: ['Tue, 13 Nov 2018 20:34:23 GMT'] server: [nginx] transfer-encoding: [chunked] vary: [Accept-Encoding] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592822014-556853] + x-request-id: [1542141263863-287620] status: {code: 404, message: Not Found} - request: - body: !!python/unicode '{"objects": [{"name": "file2.txt", "project": "project-FP9k9J8064568GXkJpbYfZzZ", - "batchsize": 2, "folder": "/temp_folder/folder"}]}' + body: !!python/unicode '{"folder": "/temp_folder/folder/folder2", "parents": true}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] + method: POST + uri: https://api.dnanexus.com/project-FPbYBYQ0P4gPb4Q5F4F3PB4z/newFolder + response: + body: {string: !!python/unicode '{"id":"project-FPbYBYQ0P4gPb4Q5F4F3PB4z"}'} + headers: + connection: [keep-alive] + content-length: ['41'] + content-type: [application/json; charset=utf-8] + date: ['Tue, 13 Nov 2018 20:34:24 GMT'] + server: [nginx] + x-content-type-options: [nosniff] + x-powered-by: [Express] + x-request-id: [1542141264283-747395] + status: {code: 200, message: OK} +- request: + body: !!python/unicode '{"objects": [{"project": "project-FPbYBYQ0P4gPb4Q5F4F3PB4z", + "folder": "/temp_folder/folder", "name": "file2.txt", "batchsize": 2}]}' + headers: + Content-Type: [application/json] + DNAnexus-API: [1.0.0] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/system/resolveDataObjects response: @@ -142,96 +162,96 @@ interactions: connection: [keep-alive] content-length: ['16'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:27:02 GMT'] + date: ['Tue, 13 Nov 2018 20:34:24 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592822412-321889] + x-request-id: [1542141264439-973949] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"parents": true, "name": "file2.txt", "project": "project-FP9k9J8064568GXkJpbYfZzZ", - "folder": "/temp_folder/folder", "nonce": "e8a6ca840b29bbb6dcbcb6fd702f5da7808b81c31c622ba033ec501b4afd3ee71540592822.472349"}' + body: !!python/unicode '{"project": "project-FPbYBYQ0P4gPb4Q5F4F3PB4z", "nonce": + "9358928bd42b9fb586733e21bf89d94a237d86649bd304da54962111007b45211542141264.532557", + "folder": "/temp_folder/folder", "parents": true, "name": "file2.txt"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/file/new response: - body: {string: !!python/unicode '{"id":"file-FP9k9JQ0645PxYfQJq0Qq9Q6"}'} + body: {string: !!python/unicode '{"id":"file-FPbYBZ00P4g983Zv4x93BjFY"}'} headers: connection: [keep-alive] content-length: ['38'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:27:02 GMT'] + date: ['Tue, 13 Nov 2018 20:34:24 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592822517-663576] + x-request-id: [1542141264580-680057] status: {code: 200, message: OK} - request: body: !!python/unicode '{"fields": {"fileUploadParameters": true}}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k9J8064568GXkJpbYfZzZ/describe + uri: https://api.dnanexus.com/project-FPbYBYQ0P4gPb4Q5F4F3PB4z/describe response: - body: {string: !!python/unicode '{"id":"project-FP9k9J8064568GXkJpbYfZzZ","fileUploadParameters":{"maximumPartSize":5368709120,"minimumPartSize":5242880,"maximumFileSize":5497558138880,"maximumNumParts":10000,"emptyLastPartAllowed":true}}'} + body: {string: !!python/unicode '{"id":"project-FPbYBYQ0P4gPb4Q5F4F3PB4z","fileUploadParameters":{"maximumPartSize":5368709120,"minimumPartSize":5242880,"maximumFileSize":5497558138880,"maximumNumParts":10000,"emptyLastPartAllowed":true}}'} headers: connection: [keep-alive] content-length: ['205'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:27:02 GMT'] + date: ['Tue, 13 Nov 2018 20:34:24 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592822655-883531] + x-request-id: [1542141264813-663491] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"size": 5, "md5": "89d903bc35dede724fd52c51437ff5fd", - "index": 1}' + body: !!python/unicode '{"index": 1, "size": 5, "md5": "89d903bc35dede724fd52c51437ff5fd"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k9JQ0645PxYfQJq0Qq9Q6/upload + uri: https://api.dnanexus.com/file-FPbYBZ00P4g983Zv4x93BjFY/upload response: - body: {string: !!python/unicode '{"url":"https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/0f37/file/open/file-FP9k9JQ0645PxYfQJq0Qq9Q6/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181026%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181026T222702Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=8413b874073aaaa024ce077040758d7d5a382ee4c908ecfa5c98fd5fc52faf7f","headers":{"host":"dnanexus-platform-upload-prod.s3.amazonaws.com","content-type":"binary/octet-stream","x-amz-server-side-encryption":"AES256","content-md5":"idkDvDXe3nJP1SxRQ3/1/Q==","content-length":"5"},"expires":1540592942790}'} + body: {string: !!python/unicode '{"url":"https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/6011/file/open/file-FPbYBZ00P4g983Zv4x93BjFY/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181113%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181113T203425Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=1f435e904ca330253153f4be66115618f801f8cb96153e0c45f095a4c28a01aa","headers":{"host":"dnanexus-platform-upload-prod.s3.amazonaws.com","content-type":"binary/octet-stream","x-amz-server-side-encryption":"AES256","content-md5":"idkDvDXe3nJP1SxRQ3/1/Q==","content-length":"5"},"expires":1542141385008}'} headers: connection: [keep-alive] content-length: ['692'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:27:02 GMT'] + date: ['Tue, 13 Nov 2018 20:34:25 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592822775-905244] + x-request-id: [1542141264954-161922] status: {code: 200, message: OK} - request: body: !!python/unicode data1 headers: DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] content-length: ['5'] content-md5: [idkDvDXe3nJP1SxRQ3/1/Q==] content-type: [binary/octet-stream] host: [dnanexus-platform-upload-prod.s3.amazonaws.com] x-amz-server-side-encryption: [AES256] method: PUT - uri: https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/0f37/file/open/file-FP9k9JQ0645PxYfQJq0Qq9Q6/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181026%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181026T222702Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=8413b874073aaaa024ce077040758d7d5a382ee4c908ecfa5c98fd5fc52faf7f + uri: https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/6011/file/open/file-FPbYBZ00P4g983Zv4x93BjFY/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181113%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181113T203425Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=1f435e904ca330253153f4be66115618f801f8cb96153e0c45f095a4c28a01aa response: body: {string: !!python/unicode ''} headers: content-length: ['0'] - date: ['Fri, 26 Oct 2018 22:27:04 GMT'] + date: ['Tue, 13 Nov 2018 20:34:26 GMT'] etag: ['"89d903bc35dede724fd52c51437ff5fd"'] server: [AmazonS3] - x-amz-expiration: ['expiry-date="Sat, 17 Nov 2018 00:00:00 GMT", rule-id="3weekpurge"'] - x-amz-id-2: [x0WEBiGZ99v2Ud771TMtaWoUGMHbc2Tml5MJGM3RUhP7h37crc+CKjXb8GbfWSqD03qMdxlt/kM=] - x-amz-request-id: [0968A7C009BDA5B4] + x-amz-expiration: ['expiry-date="Wed, 05 Dec 2018 00:00:00 GMT", rule-id="3weekpurge"'] + x-amz-id-2: [FCUohUCZ8DrBKvI2rRROMhda4kLcbQulYuXEkU6tYoFovvuAXqgyBvIQr1HzASDADWcobrGXp+M=] + x-amz-request-id: [7BFA082772671B4E] x-amz-server-side-encryption: [AES256] status: {code: 200, message: OK} - request: @@ -239,28 +259,28 @@ interactions: headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k9JQ0645PxYfQJq0Qq9Q6/close + uri: https://api.dnanexus.com/file-FPbYBZ00P4g983Zv4x93BjFY/close response: - body: {string: !!python/unicode '{"id":"file-FP9k9JQ0645PxYfQJq0Qq9Q6"}'} + body: {string: !!python/unicode '{"id":"file-FPbYBZ00P4g983Zv4x93BjFY"}'} headers: connection: [keep-alive] content-length: ['38'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:27:03 GMT'] + date: ['Tue, 13 Nov 2018 20:34:25 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592823329-466406] + x-request-id: [1542141265440-85167] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"objects": [{"name": "file.txt", "project": "project-FP9k9J8064568GXkJpbYfZzZ", - "batchsize": 2, "folder": "/temp_folder/folder"}]}' + body: !!python/unicode '{"objects": [{"project": "project-FPbYBYQ0P4gPb4Q5F4F3PB4z", + "folder": "/temp_folder/folder", "name": "file.txt", "batchsize": 2}]}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/system/resolveDataObjects response: @@ -269,96 +289,96 @@ interactions: connection: [keep-alive] content-length: ['16'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:27:03 GMT'] + date: ['Tue, 13 Nov 2018 20:34:25 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592823468-223397] + x-request-id: [1542141265608-214780] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"parents": true, "name": "file.txt", "project": "project-FP9k9J8064568GXkJpbYfZzZ", - "folder": "/temp_folder/folder", "nonce": "84ec817c33c29a07af426f2fd8acf0965191e961e4c25b24ce7da20bbada84981540592823.529028"}' + body: !!python/unicode '{"project": "project-FPbYBYQ0P4gPb4Q5F4F3PB4z", "nonce": + "74bd3ca38f7e38e21761d65380f56cf594b7d0da0b1f80735ef70c640c0152c91542141265.715148", + "folder": "/temp_folder/folder", "parents": true, "name": "file.txt"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/file/new response: - body: {string: !!python/unicode '{"id":"file-FP9k9Jj0645PxYfQJq0Qq9Q8"}'} + body: {string: !!python/unicode '{"id":"file-FPbYBZ80P4g983Zv4x93BjFb"}'} headers: connection: [keep-alive] content-length: ['38'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:27:03 GMT'] + date: ['Tue, 13 Nov 2018 20:34:25 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592823576-945486] + x-request-id: [1542141265759-702559] status: {code: 200, message: OK} - request: body: !!python/unicode '{"fields": {"fileUploadParameters": true}}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k9J8064568GXkJpbYfZzZ/describe + uri: https://api.dnanexus.com/project-FPbYBYQ0P4gPb4Q5F4F3PB4z/describe response: - body: {string: !!python/unicode '{"id":"project-FP9k9J8064568GXkJpbYfZzZ","fileUploadParameters":{"maximumPartSize":5368709120,"minimumPartSize":5242880,"maximumFileSize":5497558138880,"maximumNumParts":10000,"emptyLastPartAllowed":true}}'} + body: {string: !!python/unicode '{"id":"project-FPbYBYQ0P4gPb4Q5F4F3PB4z","fileUploadParameters":{"maximumPartSize":5368709120,"minimumPartSize":5242880,"maximumFileSize":5497558138880,"maximumNumParts":10000,"emptyLastPartAllowed":true}}'} headers: connection: [keep-alive] content-length: ['205'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:27:03 GMT'] + date: ['Tue, 13 Nov 2018 20:34:26 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592823706-568172] + x-request-id: [1542141265984-887551] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"size": 5, "md5": "73dfff57fe24e807bd4fb1bc4e07cd73", - "index": 1}' + body: !!python/unicode '{"index": 1, "size": 5, "md5": "73dfff57fe24e807bd4fb1bc4e07cd73"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k9Jj0645PxYfQJq0Qq9Q8/upload + uri: https://api.dnanexus.com/file-FPbYBZ80P4g983Zv4x93BjFb/upload response: - body: {string: !!python/unicode '{"url":"https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/1d2d/file/open/file-FP9k9Jj0645PxYfQJq0Qq9Q8/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181026%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181026T222703Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=f349b4e613ee5690b72e7856c331e211f09f4d314561a9ba92c851c579bf4a44","headers":{"host":"dnanexus-platform-upload-prod.s3.amazonaws.com","content-type":"binary/octet-stream","x-amz-server-side-encryption":"AES256","content-md5":"c9//V/4k6Ae9T7G8TgfNcw==","content-length":"5"},"expires":1540592943845}'} + body: {string: !!python/unicode '{"url":"https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/ec4e/file/open/file-FPbYBZ80P4g983Zv4x93BjFb/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181113%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181113T203426Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=827bf846b5def9bdf6a8fc27fd61d2b2be099ef6e52db6007c45b602d02c1461","headers":{"host":"dnanexus-platform-upload-prod.s3.amazonaws.com","content-type":"binary/octet-stream","x-amz-server-side-encryption":"AES256","content-md5":"c9//V/4k6Ae9T7G8TgfNcw==","content-length":"5"},"expires":1542141386164}'} headers: connection: [keep-alive] content-length: ['692'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:27:03 GMT'] + date: ['Tue, 13 Nov 2018 20:34:26 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592823830-51384] + x-request-id: [1542141266105-363978] status: {code: 200, message: OK} - request: body: !!python/unicode data0 headers: DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] content-length: ['5'] content-md5: [c9//V/4k6Ae9T7G8TgfNcw==] content-type: [binary/octet-stream] host: [dnanexus-platform-upload-prod.s3.amazonaws.com] x-amz-server-side-encryption: [AES256] method: PUT - uri: https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/1d2d/file/open/file-FP9k9Jj0645PxYfQJq0Qq9Q8/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181026%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181026T222703Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=f349b4e613ee5690b72e7856c331e211f09f4d314561a9ba92c851c579bf4a44 + uri: https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/ec4e/file/open/file-FPbYBZ80P4g983Zv4x93BjFb/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181113%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181113T203426Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=827bf846b5def9bdf6a8fc27fd61d2b2be099ef6e52db6007c45b602d02c1461 response: body: {string: !!python/unicode ''} headers: content-length: ['0'] - date: ['Fri, 26 Oct 2018 22:27:04 GMT'] + date: ['Tue, 13 Nov 2018 20:34:27 GMT'] etag: ['"73dfff57fe24e807bd4fb1bc4e07cd73"'] server: [AmazonS3] - x-amz-expiration: ['expiry-date="Sat, 17 Nov 2018 00:00:00 GMT", rule-id="3weekpurge"'] - x-amz-id-2: [2HTkwb7vGwZJx2A0piRd88aHjs3SWm+VnvPsW7Fw9kzF3Gka2FTPjXc4PW53Bfx6dfhzUl0J78A=] - x-amz-request-id: [F041E3024932ECD6] + x-amz-expiration: ['expiry-date="Wed, 05 Dec 2018 00:00:00 GMT", rule-id="3weekpurge"'] + x-amz-id-2: [J6lk4ox1FQpp/Cn7tnL+FeHbVb7LkXiq4fppccpHXYDs97YAvCTdW5YnveF7LNM/PpqOh344R+M=] + x-amz-request-id: [A532C78D1E2AC754] x-amz-server-side-encryption: [AES256] status: {code: 200, message: OK} - request: @@ -366,131 +386,111 @@ interactions: headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k9Jj0645PxYfQJq0Qq9Q8/close + uri: https://api.dnanexus.com/file-FPbYBZ80P4g983Zv4x93BjFb/close response: - body: {string: !!python/unicode '{"id":"file-FP9k9Jj0645PxYfQJq0Qq9Q8"}'} + body: {string: !!python/unicode '{"id":"file-FPbYBZ80P4g983Zv4x93BjFb"}'} headers: connection: [keep-alive] content-length: ['38'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:27:04 GMT'] - server: [nginx] - x-content-type-options: [nosniff] - x-powered-by: [Express] - x-request-id: [1540592824117-703035] - status: {code: 200, message: OK} -- request: - body: !!python/unicode '{"parents": true, "folder": "/temp_folder/folder/folder2"}' - headers: - Content-Type: [application/json] - DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] - method: POST - uri: https://api.dnanexus.com/project-FP9k9J8064568GXkJpbYfZzZ/newFolder - response: - body: {string: !!python/unicode '{"id":"project-FP9k9J8064568GXkJpbYfZzZ"}'} - headers: - connection: [keep-alive] - content-length: ['41'] - content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:27:04 GMT'] + date: ['Tue, 13 Nov 2018 20:34:26 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592824268-928348] + x-request-id: [1542141266399-831291] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"limit": 2, "name": "TestCopyTree.test_posix_dir_to_dx_nested.f00fa2a3", + body: !!python/unicode '{"limit": 2, "name": "TestCopyTree.test_posix_dir_to_dx_nested.3d55ab92", "level": "VIEW"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/system/findProjects response: - body: {string: !!python/unicode '{"results":[{"id":"project-FP9k9J8064568GXkJpbYfZzZ","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} + body: {string: !!python/unicode '{"results":[{"id":"project-FPbYBYQ0P4gPb4Q5F4F3PB4z","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} headers: connection: [keep-alive] content-length: ['147'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:27:04 GMT'] + date: ['Tue, 13 Nov 2018 20:34:26 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592824385-490271] + x-request-id: [1542141266570-175892] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"objects": [{"name": "file.txt", "project": "project-FP9k9J8064568GXkJpbYfZzZ", - "batchsize": 2, "folder": "/temp_folder/folder"}]}' + body: !!python/unicode '{"objects": [{"project": "project-FPbYBYQ0P4gPb4Q5F4F3PB4z", + "folder": "/temp_folder/folder", "name": "file.txt", "batchsize": 2}]}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/system/resolveDataObjects response: - body: {string: !!python/unicode '{"results":[[{"project":"project-FP9k9J8064568GXkJpbYfZzZ","id":"file-FP9k9Jj0645PxYfQJq0Qq9Q8"}]]}'} + body: {string: !!python/unicode '{"results":[[{"project":"project-FPbYBYQ0P4gPb4Q5F4F3PB4z","id":"file-FPbYBZ80P4g983Zv4x93BjFb"}]]}'} headers: connection: [keep-alive] content-length: ['99'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:27:04 GMT'] + date: ['Tue, 13 Nov 2018 20:34:26 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592824507-725737] + x-request-id: [1542141266768-670753] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"project": "project-FP9k9J8064568GXkJpbYfZzZ"}' + body: !!python/unicode '{"project": "project-FPbYBYQ0P4gPb4Q5F4F3PB4z"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/file-FP9k9Jj0645PxYfQJq0Qq9Q8/describe + uri: https://api.dnanexus.com/file-FPbYBZ80P4g983Zv4x93BjFb/describe response: - body: {string: !!python/unicode '{"id":"file-FP9k9Jj0645PxYfQJq0Qq9Q8","project":"project-FP9k9J8064568GXkJpbYfZzZ","class":"file","sponsored":false,"name":"file.txt","types":[],"state":"closing","hidden":false,"links":[],"folder":"/temp_folder/folder","tags":[],"created":1540592823000,"modified":1540592824155,"createdBy":{"user":"user-akumar_counsyl"},"media":"","archivalState":"live"}'} + body: {string: !!python/unicode '{"id":"file-FPbYBZ80P4g983Zv4x93BjFb","project":"project-FPbYBYQ0P4gPb4Q5F4F3PB4z","class":"file","sponsored":false,"name":"file.txt","types":[],"state":"closing","hidden":false,"links":[],"folder":"/temp_folder/folder","tags":[],"created":1542141265000,"modified":1542141266426,"createdBy":{"user":"user-akumar_counsyl"},"media":"","archivalState":"live"}'} headers: connection: [keep-alive] content-length: ['356'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:27:04 GMT'] + date: ['Tue, 13 Nov 2018 20:34:27 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592824612-149607] + x-request-id: [1542141266945-403906] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"limit": 2, "name": "TestCopyTree.test_posix_dir_to_dx_nested.f00fa2a3", + body: !!python/unicode '{"limit": 2, "name": "TestCopyTree.test_posix_dir_to_dx_nested.3d55ab92", "level": "VIEW"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/system/findProjects response: - body: {string: !!python/unicode '{"results":[{"id":"project-FP9k9J8064568GXkJpbYfZzZ","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} + body: {string: !!python/unicode '{"results":[{"id":"project-FPbYBYQ0P4gPb4Q5F4F3PB4z","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} headers: connection: [keep-alive] content-length: ['147'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:27:04 GMT'] + date: ['Tue, 13 Nov 2018 20:34:27 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592824729-377747] + x-request-id: [1542141267123-483128] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"objects": [{"name": "folder2", "project": "project-FP9k9J8064568GXkJpbYfZzZ", - "batchsize": 2, "folder": "/temp_folder/folder"}]}' + body: !!python/unicode '{"objects": [{"project": "project-FPbYBYQ0P4gPb4Q5F4F3PB4z", + "folder": "/temp_folder/folder", "name": "folder2", "batchsize": 2}]}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/system/resolveDataObjects response: @@ -499,52 +499,52 @@ interactions: connection: [keep-alive] content-length: ['16'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:27:04 GMT'] + date: ['Tue, 13 Nov 2018 20:34:27 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592824855-301821] + x-request-id: [1542141267381-928567] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"includeHidden": false, "only": "folders", "folder": - "/temp_folder/folder/folder2", "describe": {"fields": {"name": true, "folder": - true}}}' + body: !!python/unicode '{"folder": "/temp_folder/folder/folder2", "describe": + {"fields": {"folder": true, "name": true}}, "only": "folders", "includeHidden": + false}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k9J8064568GXkJpbYfZzZ/listFolder + uri: https://api.dnanexus.com/project-FPbYBYQ0P4gPb4Q5F4F3PB4z/listFolder response: body: {string: !!python/unicode '{"folders":[]}'} headers: connection: [keep-alive] content-length: ['14'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:27:04 GMT'] + date: ['Tue, 13 Nov 2018 20:34:27 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592824968-543138] + x-request-id: [1542141267535-462051] status: {code: 200, message: OK} - request: body: !!python/unicode '{}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k9J8064568GXkJpbYfZzZ/destroy + uri: https://api.dnanexus.com/project-FPbYBYQ0P4gPb4Q5F4F3PB4z/destroy response: - body: {string: !!python/unicode '{"id":"project-FP9k9J8064568GXkJpbYfZzZ"}'} + body: {string: !!python/unicode '{"id":"project-FPbYBYQ0P4gPb4Q5F4F3PB4z"}'} headers: connection: [keep-alive] content-length: ['41'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:27:07 GMT'] + date: ['Tue, 13 Nov 2018 20:34:30 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592825080-865314] + x-request-id: [1542141267750-198085] status: {code: 200, message: OK} version: 1 diff --git a/stor/tests/cassettes_py2/TestCopyTree/test_posix_file_to_dx.yaml b/stor_dx/stor_dx/tests/cassettes_py2/TestCopyTree/test_posix_file_to_dx.yaml similarity index 61% rename from stor/tests/cassettes_py2/TestCopyTree/test_posix_file_to_dx.yaml rename to stor_dx/stor_dx/tests/cassettes_py2/TestCopyTree/test_posix_file_to_dx.yaml index 812be495..7c775bb3 100644 --- a/stor/tests/cassettes_py2/TestCopyTree/test_posix_file_to_dx.yaml +++ b/stor_dx/stor_dx/tests/cassettes_py2/TestCopyTree/test_posix_file_to_dx.yaml @@ -1,150 +1,150 @@ interactions: - request: - body: !!python/unicode '{"name": "TestCopyTree.test_posix_file_to_dx.ba82627e"}' + body: !!python/unicode '{"name": "TestCopyTree.test_posix_file_to_dx.4ee1a156"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/project/new response: - body: {string: !!python/unicode '{"id":"project-FP9k9Kj0bK15VJvpJkZZ2f7b"}'} + body: {string: !!python/unicode '{"id":"project-FPbYBbQ0X3Z068BXFXVP875Y"}'} headers: connection: [keep-alive] content-length: ['41'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:27:07 GMT'] + date: ['Tue, 13 Nov 2018 20:34:30 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592827810-841667] + x-request-id: [1542141270650-682378] status: {code: 200, message: OK} - request: body: !!python/unicode '{}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k9Kj0bK15VJvpJkZZ2f7b/describe + uri: https://api.dnanexus.com/project-FPbYBbQ0X3Z068BXFXVP875Y/describe response: - body: {string: !!python/unicode '{"id":"project-FP9k9Kj0bK15VJvpJkZZ2f7b","name":"TestCopyTree.test_posix_file_to_dx.ba82627e","class":"project","created":1540592827000,"modified":1540592827000,"billTo":"org-counsyl","level":"ADMINISTER","dataUsage":0,"sponsoredDataUsage":0,"region":"aws:us-east-1","summary":"","description":"","protected":false,"restricted":false,"downloadRestricted":false,"containsPHI":false,"createdBy":{"user":"user-akumar_counsyl"},"version":0,"storageCost":0,"pendingTransfer":null,"tags":[],"defaultInstanceType":"mem2_hdd2_x2","archivalState":"live","archivalProgress":null,"totalSponsoredEgressBytes":0,"consumedSponsoredEgressBytes":0,"atSpendingLimit":false}'} + body: {string: !!python/unicode '{"id":"project-FPbYBbQ0X3Z068BXFXVP875Y","name":"TestCopyTree.test_posix_file_to_dx.4ee1a156","class":"project","created":1542141270000,"modified":1542141270000,"billTo":"org-counsyl","level":"ADMINISTER","dataUsage":0,"sponsoredDataUsage":0,"region":"aws:us-east-1","summary":"","description":"","protected":false,"restricted":false,"downloadRestricted":false,"containsPHI":false,"createdBy":{"user":"user-akumar_counsyl"},"version":0,"storageCost":0,"pendingTransfer":null,"tags":[],"defaultInstanceType":"mem2_hdd2_x2","archivalState":"live","archivalProgress":null,"totalSponsoredEgressBytes":0,"consumedSponsoredEgressBytes":0,"atSpendingLimit":false}'} headers: connection: [keep-alive] content-length: ['656'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:27:07 GMT'] + date: ['Tue, 13 Nov 2018 20:34:30 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592827930-236572] + x-request-id: [1542141270776-110914] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"limit": 2, "name": "TestCopyTree.test_posix_file_to_dx.ba82627e", + body: !!python/unicode '{"limit": 2, "name": "TestCopyTree.test_posix_file_to_dx.4ee1a156", "level": "VIEW"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/system/findProjects response: - body: {string: !!python/unicode '{"results":[{"id":"project-FP9k9Kj0bK15VJvpJkZZ2f7b","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} + body: {string: !!python/unicode '{"results":[{"id":"project-FPbYBbQ0X3Z068BXFXVP875Y","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} headers: connection: [keep-alive] content-length: ['147'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:27:08 GMT'] + date: ['Tue, 13 Nov 2018 20:34:31 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592828053-130793] + x-request-id: [1542141270927-70762] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"includeHidden": false, "only": "folders", "folder": - "/temp_folder/", "describe": {"fields": {"name": true, "folder": true}}}' + body: !!python/unicode '{"folder": "/temp_folder/", "describe": {"fields": {"folder": + true, "name": true}}, "only": "folders", "includeHidden": false}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k9Kj0bK15VJvpJkZZ2f7b/listFolder + uri: https://api.dnanexus.com/project-FPbYBbQ0X3Z068BXFXVP875Y/listFolder response: body: {string: !!python/unicode '{"error":{"type":"ResourceNotFound","message":"The - specified folder could not be found in project-FP9k9Kj0bK15VJvpJkZZ2f7b"}}'} + specified folder could not be found in project-FPbYBbQ0X3Z068BXFXVP875Y"}}'} headers: connection: [keep-alive] content-type: [application/json] - date: ['Fri, 26 Oct 2018 22:27:08 GMT'] + date: ['Tue, 13 Nov 2018 20:34:31 GMT'] server: [nginx] transfer-encoding: [chunked] vary: [Accept-Encoding] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592828192-565142] + x-request-id: [1542141271631-77827] status: {code: 404, message: Not Found} - request: - body: !!python/unicode '{"limit": 2, "name": "TestCopyTree.test_posix_file_to_dx.ba82627e", + body: !!python/unicode '{"limit": 2, "name": "TestCopyTree.test_posix_file_to_dx.4ee1a156", "level": "VIEW"}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST uri: https://api.dnanexus.com/system/findProjects response: - body: {string: !!python/unicode '{"results":[{"id":"project-FP9k9Kj0bK15VJvpJkZZ2f7b","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} + body: {string: !!python/unicode '{"results":[{"id":"project-FPbYBbQ0X3Z068BXFXVP875Y","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} headers: connection: [keep-alive] content-length: ['147'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:27:08 GMT'] + date: ['Tue, 13 Nov 2018 20:34:32 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592828626-788971] + x-request-id: [1542141272028-536332] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"includeHidden": false, "only": "folders", "folder": - "/temp_folder/random.txt", "describe": {"fields": {"name": true, "folder": true}}}' + body: !!python/unicode '{"folder": "/temp_folder/random.txt", "describe": {"fields": + {"folder": true, "name": true}}, "only": "folders", "includeHidden": false}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k9Kj0bK15VJvpJkZZ2f7b/listFolder + uri: https://api.dnanexus.com/project-FPbYBbQ0X3Z068BXFXVP875Y/listFolder response: body: {string: !!python/unicode '{"error":{"type":"ResourceNotFound","message":"The - specified folder could not be found in project-FP9k9Kj0bK15VJvpJkZZ2f7b"}}'} + specified folder could not be found in project-FPbYBbQ0X3Z068BXFXVP875Y"}}'} headers: connection: [keep-alive] content-type: [application/json] - date: ['Fri, 26 Oct 2018 22:27:08 GMT'] + date: ['Tue, 13 Nov 2018 20:34:32 GMT'] server: [nginx] transfer-encoding: [chunked] vary: [Accept-Encoding] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592828756-707900] + x-request-id: [1542141272197-969675] status: {code: 404, message: Not Found} - request: body: !!python/unicode '{}' headers: Content-Type: [application/json] DNAnexus-API: [1.0.0] - User-Agent: [dxpy/0.267.0 (Darwin-18.0.0-x86_64-i386-64bit)] + User-Agent: [dxpy/0.267.1 (Darwin-18.0.0-x86_64-i386-64bit)] method: POST - uri: https://api.dnanexus.com/project-FP9k9Kj0bK15VJvpJkZZ2f7b/destroy + uri: https://api.dnanexus.com/project-FPbYBbQ0X3Z068BXFXVP875Y/destroy response: - body: {string: !!python/unicode '{"id":"project-FP9k9Kj0bK15VJvpJkZZ2f7b"}'} + body: {string: !!python/unicode '{"id":"project-FPbYBbQ0X3Z068BXFXVP875Y"}'} headers: connection: [keep-alive] content-length: ['41'] content-type: [application/json; charset=utf-8] - date: ['Fri, 26 Oct 2018 22:27:11 GMT'] + date: ['Tue, 13 Nov 2018 20:34:35 GMT'] server: [nginx] x-content-type-options: [nosniff] x-powered-by: [Express] - x-request-id: [1540592829152-374043] + x-request-id: [1542141272625-891293] status: {code: 200, message: OK} version: 1 diff --git a/stor/tests/cassettes_py2/TestDownloadObjects/test_absolute_paths.yaml b/stor_dx/stor_dx/tests/cassettes_py2/TestDownloadObjects/test_absolute_paths.yaml similarity index 100% rename from stor/tests/cassettes_py2/TestDownloadObjects/test_absolute_paths.yaml rename to stor_dx/stor_dx/tests/cassettes_py2/TestDownloadObjects/test_absolute_paths.yaml diff --git a/stor/tests/cassettes_py2/TestDownloadObjects/test_local_paths.yaml b/stor_dx/stor_dx/tests/cassettes_py2/TestDownloadObjects/test_local_paths.yaml similarity index 100% rename from stor/tests/cassettes_py2/TestDownloadObjects/test_local_paths.yaml rename to stor_dx/stor_dx/tests/cassettes_py2/TestDownloadObjects/test_local_paths.yaml diff --git a/stor/tests/cassettes_py2/TestExists/test_false_file.yaml b/stor_dx/stor_dx/tests/cassettes_py2/TestExists/test_false_file.yaml similarity index 100% rename from stor/tests/cassettes_py2/TestExists/test_false_file.yaml rename to stor_dx/stor_dx/tests/cassettes_py2/TestExists/test_false_file.yaml diff --git a/stor/tests/cassettes_py2/TestExists/test_false_folder.yaml b/stor_dx/stor_dx/tests/cassettes_py2/TestExists/test_false_folder.yaml similarity index 100% rename from stor/tests/cassettes_py2/TestExists/test_false_folder.yaml rename to stor_dx/stor_dx/tests/cassettes_py2/TestExists/test_false_folder.yaml diff --git a/stor/tests/cassettes_py2/TestExists/test_project_does_not_exist.yaml b/stor_dx/stor_dx/tests/cassettes_py2/TestExists/test_project_does_not_exist.yaml similarity index 100% rename from stor/tests/cassettes_py2/TestExists/test_project_does_not_exist.yaml rename to stor_dx/stor_dx/tests/cassettes_py2/TestExists/test_project_does_not_exist.yaml diff --git a/stor/tests/cassettes_py2/TestExists/test_true_dir_with_object.yaml b/stor_dx/stor_dx/tests/cassettes_py2/TestExists/test_true_dir_with_object.yaml similarity index 100% rename from stor/tests/cassettes_py2/TestExists/test_true_dir_with_object.yaml rename to stor_dx/stor_dx/tests/cassettes_py2/TestExists/test_true_dir_with_object.yaml diff --git a/stor/tests/cassettes_py2/TestExists/test_true_empty_dir.yaml b/stor_dx/stor_dx/tests/cassettes_py2/TestExists/test_true_empty_dir.yaml similarity index 100% rename from stor/tests/cassettes_py2/TestExists/test_true_empty_dir.yaml rename to stor_dx/stor_dx/tests/cassettes_py2/TestExists/test_true_empty_dir.yaml diff --git a/stor/tests/cassettes_py2/TestExists/test_true_file.yaml b/stor_dx/stor_dx/tests/cassettes_py2/TestExists/test_true_file.yaml similarity index 100% rename from stor/tests/cassettes_py2/TestExists/test_true_file.yaml rename to stor_dx/stor_dx/tests/cassettes_py2/TestExists/test_true_file.yaml diff --git a/stor/tests/cassettes_py2/TestGetSize/test_file.yaml b/stor_dx/stor_dx/tests/cassettes_py2/TestGetSize/test_file.yaml similarity index 100% rename from stor/tests/cassettes_py2/TestGetSize/test_file.yaml rename to stor_dx/stor_dx/tests/cassettes_py2/TestGetSize/test_file.yaml diff --git a/stor/tests/cassettes_py2/TestGetSize/test_folder.yaml b/stor_dx/stor_dx/tests/cassettes_py2/TestGetSize/test_folder.yaml similarity index 100% rename from stor/tests/cassettes_py2/TestGetSize/test_folder.yaml rename to stor_dx/stor_dx/tests/cassettes_py2/TestGetSize/test_folder.yaml diff --git a/stor/tests/cassettes_py2/TestGetSize/test_project.yaml b/stor_dx/stor_dx/tests/cassettes_py2/TestGetSize/test_project.yaml similarity index 100% rename from stor/tests/cassettes_py2/TestGetSize/test_project.yaml rename to stor_dx/stor_dx/tests/cassettes_py2/TestGetSize/test_project.yaml diff --git a/stor/tests/cassettes_py2/TestGlob/test_cond_no_met.yaml b/stor_dx/stor_dx/tests/cassettes_py2/TestGlob/test_cond_no_met.yaml similarity index 100% rename from stor/tests/cassettes_py2/TestGlob/test_cond_no_met.yaml rename to stor_dx/stor_dx/tests/cassettes_py2/TestGlob/test_cond_no_met.yaml diff --git a/stor/tests/cassettes_py2/TestGlob/test_glob_cond_met.yaml b/stor_dx/stor_dx/tests/cassettes_py2/TestGlob/test_glob_cond_met.yaml similarity index 100% rename from stor/tests/cassettes_py2/TestGlob/test_glob_cond_met.yaml rename to stor_dx/stor_dx/tests/cassettes_py2/TestGlob/test_glob_cond_met.yaml diff --git a/stor/tests/cassettes_py2/TestGlob/test_pattern_no_file_match.yaml b/stor_dx/stor_dx/tests/cassettes_py2/TestGlob/test_pattern_no_file_match.yaml similarity index 100% rename from stor/tests/cassettes_py2/TestGlob/test_pattern_no_file_match.yaml rename to stor_dx/stor_dx/tests/cassettes_py2/TestGlob/test_pattern_no_file_match.yaml diff --git a/stor/tests/cassettes_py2/TestGlob/test_prefix_pattern.yaml b/stor_dx/stor_dx/tests/cassettes_py2/TestGlob/test_prefix_pattern.yaml similarity index 100% rename from stor/tests/cassettes_py2/TestGlob/test_prefix_pattern.yaml rename to stor_dx/stor_dx/tests/cassettes_py2/TestGlob/test_prefix_pattern.yaml diff --git a/stor/tests/cassettes_py2/TestGlob/test_suffix_pattern.yaml b/stor_dx/stor_dx/tests/cassettes_py2/TestGlob/test_suffix_pattern.yaml similarity index 100% rename from stor/tests/cassettes_py2/TestGlob/test_suffix_pattern.yaml rename to stor_dx/stor_dx/tests/cassettes_py2/TestGlob/test_suffix_pattern.yaml diff --git a/stor/tests/cassettes_py2/TestGlob/test_valid_pattern.yaml b/stor_dx/stor_dx/tests/cassettes_py2/TestGlob/test_valid_pattern.yaml similarity index 100% rename from stor/tests/cassettes_py2/TestGlob/test_valid_pattern.yaml rename to stor_dx/stor_dx/tests/cassettes_py2/TestGlob/test_valid_pattern.yaml diff --git a/stor/tests/cassettes_py2/TestGlob/test_valid_pattern_wo_wildcard.yaml b/stor_dx/stor_dx/tests/cassettes_py2/TestGlob/test_valid_pattern_wo_wildcard.yaml similarity index 100% rename from stor/tests/cassettes_py2/TestGlob/test_valid_pattern_wo_wildcard.yaml rename to stor_dx/stor_dx/tests/cassettes_py2/TestGlob/test_valid_pattern_wo_wildcard.yaml diff --git a/stor/tests/cassettes_py2/TestList/test_list_absent_folder.yaml b/stor_dx/stor_dx/tests/cassettes_py2/TestList/test_list_absent_folder.yaml similarity index 100% rename from stor/tests/cassettes_py2/TestList/test_list_absent_folder.yaml rename to stor_dx/stor_dx/tests/cassettes_py2/TestList/test_list_absent_folder.yaml diff --git a/stor/tests/cassettes_py2/TestList/test_list_canonical.yaml b/stor_dx/stor_dx/tests/cassettes_py2/TestList/test_list_canonical.yaml similarity index 100% rename from stor/tests/cassettes_py2/TestList/test_list_canonical.yaml rename to stor_dx/stor_dx/tests/cassettes_py2/TestList/test_list_canonical.yaml diff --git a/stor/tests/cassettes_py2/TestList/test_list_empty_folder.yaml b/stor_dx/stor_dx/tests/cassettes_py2/TestList/test_list_empty_folder.yaml similarity index 100% rename from stor/tests/cassettes_py2/TestList/test_list_empty_folder.yaml rename to stor_dx/stor_dx/tests/cassettes_py2/TestList/test_list_empty_folder.yaml diff --git a/stor/tests/cassettes_py2/TestList/test_list_fail_w_condition.yaml b/stor_dx/stor_dx/tests/cassettes_py2/TestList/test_list_fail_w_condition.yaml similarity index 100% rename from stor/tests/cassettes_py2/TestList/test_list_fail_w_condition.yaml rename to stor_dx/stor_dx/tests/cassettes_py2/TestList/test_list_fail_w_condition.yaml diff --git a/stor/tests/cassettes_py2/TestList/test_list_file.yaml b/stor_dx/stor_dx/tests/cassettes_py2/TestList/test_list_file.yaml similarity index 100% rename from stor/tests/cassettes_py2/TestList/test_list_file.yaml rename to stor_dx/stor_dx/tests/cassettes_py2/TestList/test_list_file.yaml diff --git a/stor/tests/cassettes_py2/TestList/test_list_folder_share_filename.yaml b/stor_dx/stor_dx/tests/cassettes_py2/TestList/test_list_folder_share_filename.yaml similarity index 100% rename from stor/tests/cassettes_py2/TestList/test_list_folder_share_filename.yaml rename to stor_dx/stor_dx/tests/cassettes_py2/TestList/test_list_folder_share_filename.yaml diff --git a/stor/tests/cassettes_py2/TestList/test_list_folder_w_files.yaml b/stor_dx/stor_dx/tests/cassettes_py2/TestList/test_list_folder_w_files.yaml similarity index 100% rename from stor/tests/cassettes_py2/TestList/test_list_folder_w_files.yaml rename to stor_dx/stor_dx/tests/cassettes_py2/TestList/test_list_folder_w_files.yaml diff --git a/stor/tests/cassettes_py2/TestList/test_list_iter_canon_on_canon.yaml b/stor_dx/stor_dx/tests/cassettes_py2/TestList/test_list_iter_canon_on_canon.yaml similarity index 100% rename from stor/tests/cassettes_py2/TestList/test_list_iter_canon_on_canon.yaml rename to stor_dx/stor_dx/tests/cassettes_py2/TestList/test_list_iter_canon_on_canon.yaml diff --git a/stor/tests/cassettes_py2/TestList/test_list_iter_project.yaml b/stor_dx/stor_dx/tests/cassettes_py2/TestList/test_list_iter_project.yaml similarity index 100% rename from stor/tests/cassettes_py2/TestList/test_list_iter_project.yaml rename to stor_dx/stor_dx/tests/cassettes_py2/TestList/test_list_iter_project.yaml diff --git a/stor/tests/cassettes_py2/TestList/test_list_limit.yaml b/stor_dx/stor_dx/tests/cassettes_py2/TestList/test_list_limit.yaml similarity index 100% rename from stor/tests/cassettes_py2/TestList/test_list_limit.yaml rename to stor_dx/stor_dx/tests/cassettes_py2/TestList/test_list_limit.yaml diff --git a/stor/tests/cassettes_py2/TestList/test_list_on_canonical_project.yaml b/stor_dx/stor_dx/tests/cassettes_py2/TestList/test_list_on_canonical_project.yaml similarity index 100% rename from stor/tests/cassettes_py2/TestList/test_list_on_canonical_project.yaml rename to stor_dx/stor_dx/tests/cassettes_py2/TestList/test_list_on_canonical_project.yaml diff --git a/stor/tests/cassettes_py2/TestList/test_list_on_canonical_resource.yaml b/stor_dx/stor_dx/tests/cassettes_py2/TestList/test_list_on_canonical_resource.yaml similarity index 100% rename from stor/tests/cassettes_py2/TestList/test_list_on_canonical_resource.yaml rename to stor_dx/stor_dx/tests/cassettes_py2/TestList/test_list_on_canonical_resource.yaml diff --git a/stor/tests/cassettes_py2/TestList/test_list_project.yaml b/stor_dx/stor_dx/tests/cassettes_py2/TestList/test_list_project.yaml similarity index 100% rename from stor/tests/cassettes_py2/TestList/test_list_project.yaml rename to stor_dx/stor_dx/tests/cassettes_py2/TestList/test_list_project.yaml diff --git a/stor/tests/cassettes_py2/TestList/test_list_starts_with.yaml b/stor_dx/stor_dx/tests/cassettes_py2/TestList/test_list_starts_with.yaml similarity index 100% rename from stor/tests/cassettes_py2/TestList/test_list_starts_with.yaml rename to stor_dx/stor_dx/tests/cassettes_py2/TestList/test_list_starts_with.yaml diff --git a/stor/tests/cassettes_py2/TestList/test_list_w_category.yaml b/stor_dx/stor_dx/tests/cassettes_py2/TestList/test_list_w_category.yaml similarity index 100% rename from stor/tests/cassettes_py2/TestList/test_list_w_category.yaml rename to stor_dx/stor_dx/tests/cassettes_py2/TestList/test_list_w_category.yaml diff --git a/stor/tests/cassettes_py2/TestList/test_list_w_condition.yaml b/stor_dx/stor_dx/tests/cassettes_py2/TestList/test_list_w_condition.yaml similarity index 100% rename from stor/tests/cassettes_py2/TestList/test_list_w_condition.yaml rename to stor_dx/stor_dx/tests/cassettes_py2/TestList/test_list_w_condition.yaml diff --git a/stor/tests/cassettes_py2/TestListDir/test_listdir_absent_folder.yaml b/stor_dx/stor_dx/tests/cassettes_py2/TestListDir/test_listdir_absent_folder.yaml similarity index 100% rename from stor/tests/cassettes_py2/TestListDir/test_listdir_absent_folder.yaml rename to stor_dx/stor_dx/tests/cassettes_py2/TestListDir/test_listdir_absent_folder.yaml diff --git a/stor/tests/cassettes_py2/TestListDir/test_listdir_canonical.yaml b/stor_dx/stor_dx/tests/cassettes_py2/TestListDir/test_listdir_canonical.yaml similarity index 100% rename from stor/tests/cassettes_py2/TestListDir/test_listdir_canonical.yaml rename to stor_dx/stor_dx/tests/cassettes_py2/TestListDir/test_listdir_canonical.yaml diff --git a/stor/tests/cassettes_py2/TestListDir/test_listdir_empty_folder.yaml b/stor_dx/stor_dx/tests/cassettes_py2/TestListDir/test_listdir_empty_folder.yaml similarity index 100% rename from stor/tests/cassettes_py2/TestListDir/test_listdir_empty_folder.yaml rename to stor_dx/stor_dx/tests/cassettes_py2/TestListDir/test_listdir_empty_folder.yaml diff --git a/stor/tests/cassettes_py2/TestListDir/test_listdir_file.yaml b/stor_dx/stor_dx/tests/cassettes_py2/TestListDir/test_listdir_file.yaml similarity index 100% rename from stor/tests/cassettes_py2/TestListDir/test_listdir_file.yaml rename to stor_dx/stor_dx/tests/cassettes_py2/TestListDir/test_listdir_file.yaml diff --git a/stor/tests/cassettes_py2/TestListDir/test_listdir_folder_share_filename.yaml b/stor_dx/stor_dx/tests/cassettes_py2/TestListDir/test_listdir_folder_share_filename.yaml similarity index 100% rename from stor/tests/cassettes_py2/TestListDir/test_listdir_folder_share_filename.yaml rename to stor_dx/stor_dx/tests/cassettes_py2/TestListDir/test_listdir_folder_share_filename.yaml diff --git a/stor/tests/cassettes_py2/TestListDir/test_listdir_folder_w_file.yaml b/stor_dx/stor_dx/tests/cassettes_py2/TestListDir/test_listdir_folder_w_file.yaml similarity index 100% rename from stor/tests/cassettes_py2/TestListDir/test_listdir_folder_w_file.yaml rename to stor_dx/stor_dx/tests/cassettes_py2/TestListDir/test_listdir_folder_w_file.yaml diff --git a/stor/tests/cassettes_py2/TestListDir/test_listdir_iter_canon_on_canon.yaml b/stor_dx/stor_dx/tests/cassettes_py2/TestListDir/test_listdir_iter_canon_on_canon.yaml similarity index 100% rename from stor/tests/cassettes_py2/TestListDir/test_listdir_iter_canon_on_canon.yaml rename to stor_dx/stor_dx/tests/cassettes_py2/TestListDir/test_listdir_iter_canon_on_canon.yaml diff --git a/stor/tests/cassettes_py2/TestListDir/test_listdir_iter_project.yaml b/stor_dx/stor_dx/tests/cassettes_py2/TestListDir/test_listdir_iter_project.yaml similarity index 100% rename from stor/tests/cassettes_py2/TestListDir/test_listdir_iter_project.yaml rename to stor_dx/stor_dx/tests/cassettes_py2/TestListDir/test_listdir_iter_project.yaml diff --git a/stor/tests/cassettes_py2/TestListDir/test_listdir_on_canonical_project.yaml b/stor_dx/stor_dx/tests/cassettes_py2/TestListDir/test_listdir_on_canonical_project.yaml similarity index 100% rename from stor/tests/cassettes_py2/TestListDir/test_listdir_on_canonical_project.yaml rename to stor_dx/stor_dx/tests/cassettes_py2/TestListDir/test_listdir_on_canonical_project.yaml diff --git a/stor/tests/cassettes_py2/TestListDir/test_listdir_on_canonical_resource.yaml b/stor_dx/stor_dx/tests/cassettes_py2/TestListDir/test_listdir_on_canonical_resource.yaml similarity index 100% rename from stor/tests/cassettes_py2/TestListDir/test_listdir_on_canonical_resource.yaml rename to stor_dx/stor_dx/tests/cassettes_py2/TestListDir/test_listdir_on_canonical_resource.yaml diff --git a/stor/tests/cassettes_py2/TestListDir/test_listdir_project.yaml b/stor_dx/stor_dx/tests/cassettes_py2/TestListDir/test_listdir_project.yaml similarity index 100% rename from stor/tests/cassettes_py2/TestListDir/test_listdir_project.yaml rename to stor_dx/stor_dx/tests/cassettes_py2/TestListDir/test_listdir_project.yaml diff --git a/stor/tests/cassettes_py2/TestLoginAuth/test_login_auth.yaml b/stor_dx/stor_dx/tests/cassettes_py2/TestLoginAuth/test_login_auth.yaml similarity index 100% rename from stor/tests/cassettes_py2/TestLoginAuth/test_login_auth.yaml rename to stor_dx/stor_dx/tests/cassettes_py2/TestLoginAuth/test_login_auth.yaml diff --git a/stor/tests/cassettes_py2/TestMakedirsP/test_makedirs_p_folder.yaml b/stor_dx/stor_dx/tests/cassettes_py2/TestMakedirsP/test_makedirs_p_folder.yaml similarity index 100% rename from stor/tests/cassettes_py2/TestMakedirsP/test_makedirs_p_folder.yaml rename to stor_dx/stor_dx/tests/cassettes_py2/TestMakedirsP/test_makedirs_p_folder.yaml diff --git a/stor/tests/cassettes_py2/TestMakedirsP/test_makedirs_p_folder_exists.yaml b/stor_dx/stor_dx/tests/cassettes_py2/TestMakedirsP/test_makedirs_p_folder_exists.yaml similarity index 100% rename from stor/tests/cassettes_py2/TestMakedirsP/test_makedirs_p_folder_exists.yaml rename to stor_dx/stor_dx/tests/cassettes_py2/TestMakedirsP/test_makedirs_p_folder_exists.yaml diff --git a/stor/tests/cassettes_py2/TestMakedirsP/test_makedirs_p_nested_folder.yaml b/stor_dx/stor_dx/tests/cassettes_py2/TestMakedirsP/test_makedirs_p_nested_folder.yaml similarity index 100% rename from stor/tests/cassettes_py2/TestMakedirsP/test_makedirs_p_nested_folder.yaml rename to stor_dx/stor_dx/tests/cassettes_py2/TestMakedirsP/test_makedirs_p_nested_folder.yaml diff --git a/stor/tests/cassettes_py2/TestMakedirsP/test_makedirs_p_project.yaml b/stor_dx/stor_dx/tests/cassettes_py2/TestMakedirsP/test_makedirs_p_project.yaml similarity index 100% rename from stor/tests/cassettes_py2/TestMakedirsP/test_makedirs_p_project.yaml rename to stor_dx/stor_dx/tests/cassettes_py2/TestMakedirsP/test_makedirs_p_project.yaml diff --git a/stor/tests/cassettes_py2/TestMakedirsP/test_makedirs_p_project_exists.yaml b/stor_dx/stor_dx/tests/cassettes_py2/TestMakedirsP/test_makedirs_p_project_exists.yaml similarity index 100% rename from stor/tests/cassettes_py2/TestMakedirsP/test_makedirs_p_project_exists.yaml rename to stor_dx/stor_dx/tests/cassettes_py2/TestMakedirsP/test_makedirs_p_project_exists.yaml diff --git a/stor/tests/cassettes_py2/TestOpen/test_append_mode_fail.yaml b/stor_dx/stor_dx/tests/cassettes_py2/TestOpen/test_append_mode_fail.yaml similarity index 100% rename from stor/tests/cassettes_py2/TestOpen/test_append_mode_fail.yaml rename to stor_dx/stor_dx/tests/cassettes_py2/TestOpen/test_append_mode_fail.yaml diff --git a/stor/tests/cassettes_py2/TestOpen/test_read_dir_fail.yaml b/stor_dx/stor_dx/tests/cassettes_py2/TestOpen/test_read_dir_fail.yaml similarity index 100% rename from stor/tests/cassettes_py2/TestOpen/test_read_dir_fail.yaml rename to stor_dx/stor_dx/tests/cassettes_py2/TestOpen/test_read_dir_fail.yaml diff --git a/stor/tests/cassettes_py2/TestOpen/test_read_fail_on_closed_buffer.yaml b/stor_dx/stor_dx/tests/cassettes_py2/TestOpen/test_read_fail_on_closed_buffer.yaml similarity index 100% rename from stor/tests/cassettes_py2/TestOpen/test_read_fail_on_closed_buffer.yaml rename to stor_dx/stor_dx/tests/cassettes_py2/TestOpen/test_read_fail_on_closed_buffer.yaml diff --git a/stor/tests/cassettes_py2/TestOpen/test_read_on_open_buffer.yaml b/stor_dx/stor_dx/tests/cassettes_py2/TestOpen/test_read_on_open_buffer.yaml similarity index 100% rename from stor/tests/cassettes_py2/TestOpen/test_read_on_open_buffer.yaml rename to stor_dx/stor_dx/tests/cassettes_py2/TestOpen/test_read_on_open_buffer.yaml diff --git a/stor/tests/cassettes_py2/TestOpen/test_read_on_open_dx_file.yaml b/stor_dx/stor_dx/tests/cassettes_py2/TestOpen/test_read_on_open_dx_file.yaml similarity index 100% rename from stor/tests/cassettes_py2/TestOpen/test_read_on_open_dx_file.yaml rename to stor_dx/stor_dx/tests/cassettes_py2/TestOpen/test_read_on_open_dx_file.yaml diff --git a/stor/tests/cassettes_py2/TestOpen/test_write_multiple_flush_multiple_upload.yaml b/stor_dx/stor_dx/tests/cassettes_py2/TestOpen/test_write_multiple_flush_multiple_upload.yaml similarity index 100% rename from stor/tests/cassettes_py2/TestOpen/test_write_multiple_flush_multiple_upload.yaml rename to stor_dx/stor_dx/tests/cassettes_py2/TestOpen/test_write_multiple_flush_multiple_upload.yaml diff --git a/stor/tests/cassettes_py2/TestOpen/test_write_multiple_wo_context_manager.yaml b/stor_dx/stor_dx/tests/cassettes_py2/TestOpen/test_write_multiple_wo_context_manager.yaml similarity index 100% rename from stor/tests/cassettes_py2/TestOpen/test_write_multiple_wo_context_manager.yaml rename to stor_dx/stor_dx/tests/cassettes_py2/TestOpen/test_write_multiple_wo_context_manager.yaml diff --git a/stor/tests/cassettes_py2/TestOpen/test_write_read_over_files.yaml b/stor_dx/stor_dx/tests/cassettes_py2/TestOpen/test_write_read_over_files.yaml similarity index 100% rename from stor/tests/cassettes_py2/TestOpen/test_write_read_over_files.yaml rename to stor_dx/stor_dx/tests/cassettes_py2/TestOpen/test_write_read_over_files.yaml diff --git a/stor/tests/cassettes_py2/TestOpen/test_write_to_project_fail.yaml b/stor_dx/stor_dx/tests/cassettes_py2/TestOpen/test_write_to_project_fail.yaml similarity index 100% rename from stor/tests/cassettes_py2/TestOpen/test_write_to_project_fail.yaml rename to stor_dx/stor_dx/tests/cassettes_py2/TestOpen/test_write_to_project_fail.yaml diff --git a/stor/tests/cassettes_py2/TestOpen/test_write_w_settings_big_timeout.yaml b/stor_dx/stor_dx/tests/cassettes_py2/TestOpen/test_write_w_settings_big_timeout.yaml similarity index 100% rename from stor/tests/cassettes_py2/TestOpen/test_write_w_settings_big_timeout.yaml rename to stor_dx/stor_dx/tests/cassettes_py2/TestOpen/test_write_w_settings_big_timeout.yaml diff --git a/stor/tests/cassettes_py2/TestOpen/test_write_w_settings_no_timeout.yaml b/stor_dx/stor_dx/tests/cassettes_py2/TestOpen/test_write_w_settings_no_timeout.yaml similarity index 100% rename from stor/tests/cassettes_py2/TestOpen/test_write_w_settings_no_timeout.yaml rename to stor_dx/stor_dx/tests/cassettes_py2/TestOpen/test_write_w_settings_no_timeout.yaml diff --git a/stor/tests/cassettes_py2/TestRemove/test_fail_remove_folder.yaml b/stor_dx/stor_dx/tests/cassettes_py2/TestRemove/test_fail_remove_folder.yaml similarity index 100% rename from stor/tests/cassettes_py2/TestRemove/test_fail_remove_folder.yaml rename to stor_dx/stor_dx/tests/cassettes_py2/TestRemove/test_fail_remove_folder.yaml diff --git a/stor/tests/cassettes_py2/TestRemove/test_fail_remove_nonexistent_file.yaml b/stor_dx/stor_dx/tests/cassettes_py2/TestRemove/test_fail_remove_nonexistent_file.yaml similarity index 100% rename from stor/tests/cassettes_py2/TestRemove/test_fail_remove_nonexistent_file.yaml rename to stor_dx/stor_dx/tests/cassettes_py2/TestRemove/test_fail_remove_nonexistent_file.yaml diff --git a/stor/tests/cassettes_py2/TestRemove/test_fail_remove_nonexistent_project.yaml b/stor_dx/stor_dx/tests/cassettes_py2/TestRemove/test_fail_remove_nonexistent_project.yaml similarity index 100% rename from stor/tests/cassettes_py2/TestRemove/test_fail_remove_nonexistent_project.yaml rename to stor_dx/stor_dx/tests/cassettes_py2/TestRemove/test_fail_remove_nonexistent_project.yaml diff --git a/stor/tests/cassettes_py2/TestRemove/test_fail_remove_project.yaml b/stor_dx/stor_dx/tests/cassettes_py2/TestRemove/test_fail_remove_project.yaml similarity index 100% rename from stor/tests/cassettes_py2/TestRemove/test_fail_remove_project.yaml rename to stor_dx/stor_dx/tests/cassettes_py2/TestRemove/test_fail_remove_project.yaml diff --git a/stor/tests/cassettes_py2/TestRemove/test_fail_rmtree_file.yaml b/stor_dx/stor_dx/tests/cassettes_py2/TestRemove/test_fail_rmtree_file.yaml similarity index 100% rename from stor/tests/cassettes_py2/TestRemove/test_fail_rmtree_file.yaml rename to stor_dx/stor_dx/tests/cassettes_py2/TestRemove/test_fail_rmtree_file.yaml diff --git a/stor/tests/cassettes_py2/TestRemove/test_remove_file.yaml b/stor_dx/stor_dx/tests/cassettes_py2/TestRemove/test_remove_file.yaml similarity index 100% rename from stor/tests/cassettes_py2/TestRemove/test_remove_file.yaml rename to stor_dx/stor_dx/tests/cassettes_py2/TestRemove/test_remove_file.yaml diff --git a/stor/tests/cassettes_py2/TestRemove/test_rmtree_folder.yaml b/stor_dx/stor_dx/tests/cassettes_py2/TestRemove/test_rmtree_folder.yaml similarity index 100% rename from stor/tests/cassettes_py2/TestRemove/test_rmtree_folder.yaml rename to stor_dx/stor_dx/tests/cassettes_py2/TestRemove/test_rmtree_folder.yaml diff --git a/stor/tests/cassettes_py2/TestRemove/test_rmtree_project.yaml b/stor_dx/stor_dx/tests/cassettes_py2/TestRemove/test_rmtree_project.yaml similarity index 100% rename from stor/tests/cassettes_py2/TestRemove/test_rmtree_project.yaml rename to stor_dx/stor_dx/tests/cassettes_py2/TestRemove/test_rmtree_project.yaml diff --git a/stor/tests/cassettes_py2/TestRename/test_rename_file_pass.yaml b/stor_dx/stor_dx/tests/cassettes_py2/TestRename/test_rename_file_pass.yaml similarity index 100% rename from stor/tests/cassettes_py2/TestRename/test_rename_file_pass.yaml rename to stor_dx/stor_dx/tests/cassettes_py2/TestRename/test_rename_file_pass.yaml diff --git a/stor/tests/cassettes_py2/TestRename/test_rename_folder_fail.yaml b/stor_dx/stor_dx/tests/cassettes_py2/TestRename/test_rename_folder_fail.yaml similarity index 100% rename from stor/tests/cassettes_py2/TestRename/test_rename_folder_fail.yaml rename to stor_dx/stor_dx/tests/cassettes_py2/TestRename/test_rename_folder_fail.yaml diff --git a/stor/tests/cassettes_py2/TestRename/test_rename_to_self.yaml b/stor_dx/stor_dx/tests/cassettes_py2/TestRename/test_rename_to_self.yaml similarity index 100% rename from stor/tests/cassettes_py2/TestRename/test_rename_to_self.yaml rename to stor_dx/stor_dx/tests/cassettes_py2/TestRename/test_rename_to_self.yaml diff --git a/stor/tests/cassettes_py2/TestStat/test_stat_canonical_project.yaml b/stor_dx/stor_dx/tests/cassettes_py2/TestStat/test_stat_canonical_project.yaml similarity index 100% rename from stor/tests/cassettes_py2/TestStat/test_stat_canonical_project.yaml rename to stor_dx/stor_dx/tests/cassettes_py2/TestStat/test_stat_canonical_project.yaml diff --git a/stor/tests/cassettes_py2/TestStat/test_stat_canonical_resource.yaml b/stor_dx/stor_dx/tests/cassettes_py2/TestStat/test_stat_canonical_resource.yaml similarity index 100% rename from stor/tests/cassettes_py2/TestStat/test_stat_canonical_resource.yaml rename to stor_dx/stor_dx/tests/cassettes_py2/TestStat/test_stat_canonical_resource.yaml diff --git a/stor/tests/cassettes_py2/TestStat/test_stat_file.yaml b/stor_dx/stor_dx/tests/cassettes_py2/TestStat/test_stat_file.yaml similarity index 100% rename from stor/tests/cassettes_py2/TestStat/test_stat_file.yaml rename to stor_dx/stor_dx/tests/cassettes_py2/TestStat/test_stat_file.yaml diff --git a/stor/tests/cassettes_py2/TestStat/test_stat_folder.yaml b/stor_dx/stor_dx/tests/cassettes_py2/TestStat/test_stat_folder.yaml similarity index 100% rename from stor/tests/cassettes_py2/TestStat/test_stat_folder.yaml rename to stor_dx/stor_dx/tests/cassettes_py2/TestStat/test_stat_folder.yaml diff --git a/stor/tests/cassettes_py2/TestStat/test_stat_project_error.yaml b/stor_dx/stor_dx/tests/cassettes_py2/TestStat/test_stat_project_error.yaml similarity index 100% rename from stor/tests/cassettes_py2/TestStat/test_stat_project_error.yaml rename to stor_dx/stor_dx/tests/cassettes_py2/TestStat/test_stat_project_error.yaml diff --git a/stor/tests/cassettes_py2/TestStat/test_stat_virtual_project.yaml b/stor_dx/stor_dx/tests/cassettes_py2/TestStat/test_stat_virtual_project.yaml similarity index 100% rename from stor/tests/cassettes_py2/TestStat/test_stat_virtual_project.yaml rename to stor_dx/stor_dx/tests/cassettes_py2/TestStat/test_stat_virtual_project.yaml diff --git a/stor/tests/cassettes_py2/TestTempUrl/test_fail_on_folder.yaml b/stor_dx/stor_dx/tests/cassettes_py2/TestTempUrl/test_fail_on_folder.yaml similarity index 100% rename from stor/tests/cassettes_py2/TestTempUrl/test_fail_on_folder.yaml rename to stor_dx/stor_dx/tests/cassettes_py2/TestTempUrl/test_fail_on_folder.yaml diff --git a/stor/tests/cassettes_py2/TestTempUrl/test_fail_on_project.yaml b/stor_dx/stor_dx/tests/cassettes_py2/TestTempUrl/test_fail_on_project.yaml similarity index 100% rename from stor/tests/cassettes_py2/TestTempUrl/test_fail_on_project.yaml rename to stor_dx/stor_dx/tests/cassettes_py2/TestTempUrl/test_fail_on_project.yaml diff --git a/stor/tests/cassettes_py2/TestTempUrl/test_on_file.yaml b/stor_dx/stor_dx/tests/cassettes_py2/TestTempUrl/test_on_file.yaml similarity index 100% rename from stor/tests/cassettes_py2/TestTempUrl/test_on_file.yaml rename to stor_dx/stor_dx/tests/cassettes_py2/TestTempUrl/test_on_file.yaml diff --git a/stor/tests/cassettes_py2/TestTempUrl/test_on_file_canonical.yaml b/stor_dx/stor_dx/tests/cassettes_py2/TestTempUrl/test_on_file_canonical.yaml similarity index 100% rename from stor/tests/cassettes_py2/TestTempUrl/test_on_file_canonical.yaml rename to stor_dx/stor_dx/tests/cassettes_py2/TestTempUrl/test_on_file_canonical.yaml diff --git a/stor/tests/cassettes_py2/TestTempUrl/test_on_file_named_timed.yaml b/stor_dx/stor_dx/tests/cassettes_py2/TestTempUrl/test_on_file_named_timed.yaml similarity index 100% rename from stor/tests/cassettes_py2/TestTempUrl/test_on_file_named_timed.yaml rename to stor_dx/stor_dx/tests/cassettes_py2/TestTempUrl/test_on_file_named_timed.yaml diff --git a/stor/tests/cassettes_py2/TestWalkFiles/test_pattern_no_match.yaml b/stor_dx/stor_dx/tests/cassettes_py2/TestWalkFiles/test_pattern_no_match.yaml similarity index 100% rename from stor/tests/cassettes_py2/TestWalkFiles/test_pattern_no_match.yaml rename to stor_dx/stor_dx/tests/cassettes_py2/TestWalkFiles/test_pattern_no_match.yaml diff --git a/stor/tests/cassettes_py2/TestWalkFiles/test_pattern_share_folder_match.yaml b/stor_dx/stor_dx/tests/cassettes_py2/TestWalkFiles/test_pattern_share_folder_match.yaml similarity index 100% rename from stor/tests/cassettes_py2/TestWalkFiles/test_pattern_share_folder_match.yaml rename to stor_dx/stor_dx/tests/cassettes_py2/TestWalkFiles/test_pattern_share_folder_match.yaml diff --git a/stor/tests/cassettes_py2/TestWalkFiles/test_pattern_w_prefix.yaml b/stor_dx/stor_dx/tests/cassettes_py2/TestWalkFiles/test_pattern_w_prefix.yaml similarity index 100% rename from stor/tests/cassettes_py2/TestWalkFiles/test_pattern_w_prefix.yaml rename to stor_dx/stor_dx/tests/cassettes_py2/TestWalkFiles/test_pattern_w_prefix.yaml diff --git a/stor/tests/cassettes_py2/TestWalkFiles/test_pattern_w_prefix_suffix.yaml b/stor_dx/stor_dx/tests/cassettes_py2/TestWalkFiles/test_pattern_w_prefix_suffix.yaml similarity index 100% rename from stor/tests/cassettes_py2/TestWalkFiles/test_pattern_w_prefix_suffix.yaml rename to stor_dx/stor_dx/tests/cassettes_py2/TestWalkFiles/test_pattern_w_prefix_suffix.yaml diff --git a/stor/tests/cassettes_py2/TestWalkFiles/test_pattern_w_suffix.yaml b/stor_dx/stor_dx/tests/cassettes_py2/TestWalkFiles/test_pattern_w_suffix.yaml similarity index 100% rename from stor/tests/cassettes_py2/TestWalkFiles/test_pattern_w_suffix.yaml rename to stor_dx/stor_dx/tests/cassettes_py2/TestWalkFiles/test_pattern_w_suffix.yaml diff --git a/stor/tests/cassettes_py3/TestCanonicalProject/test_canonical_path.yaml b/stor_dx/stor_dx/tests/cassettes_py3/TestCanonicalProject/test_canonical_path.yaml similarity index 100% rename from stor/tests/cassettes_py3/TestCanonicalProject/test_canonical_path.yaml rename to stor_dx/stor_dx/tests/cassettes_py3/TestCanonicalProject/test_canonical_path.yaml diff --git a/stor/tests/cassettes_py3/TestCanonicalProject/test_canonical_path_on_dir.yaml b/stor_dx/stor_dx/tests/cassettes_py3/TestCanonicalProject/test_canonical_path_on_dir.yaml similarity index 100% rename from stor/tests/cassettes_py3/TestCanonicalProject/test_canonical_path_on_dir.yaml rename to stor_dx/stor_dx/tests/cassettes_py3/TestCanonicalProject/test_canonical_path_on_dir.yaml diff --git a/stor/tests/cassettes_py3/TestCanonicalProject/test_duplicate_projects.yaml b/stor_dx/stor_dx/tests/cassettes_py3/TestCanonicalProject/test_duplicate_projects.yaml similarity index 100% rename from stor/tests/cassettes_py3/TestCanonicalProject/test_duplicate_projects.yaml rename to stor_dx/stor_dx/tests/cassettes_py3/TestCanonicalProject/test_duplicate_projects.yaml diff --git a/stor/tests/cassettes_py3/TestCanonicalProject/test_no_project.yaml b/stor_dx/stor_dx/tests/cassettes_py3/TestCanonicalProject/test_no_project.yaml similarity index 100% rename from stor/tests/cassettes_py3/TestCanonicalProject/test_no_project.yaml rename to stor_dx/stor_dx/tests/cassettes_py3/TestCanonicalProject/test_no_project.yaml diff --git a/stor/tests/cassettes_py3/TestCanonicalProject/test_unique_project.yaml b/stor_dx/stor_dx/tests/cassettes_py3/TestCanonicalProject/test_unique_project.yaml similarity index 100% rename from stor/tests/cassettes_py3/TestCanonicalProject/test_unique_project.yaml rename to stor_dx/stor_dx/tests/cassettes_py3/TestCanonicalProject/test_unique_project.yaml diff --git a/stor/tests/cassettes_py3/TestCanonicalResource/test_duplicate_resource.yaml b/stor_dx/stor_dx/tests/cassettes_py3/TestCanonicalResource/test_duplicate_resource.yaml similarity index 100% rename from stor/tests/cassettes_py3/TestCanonicalResource/test_duplicate_resource.yaml rename to stor_dx/stor_dx/tests/cassettes_py3/TestCanonicalResource/test_duplicate_resource.yaml diff --git a/stor/tests/cassettes_py3/TestCanonicalResource/test_no_resource.yaml b/stor_dx/stor_dx/tests/cassettes_py3/TestCanonicalResource/test_no_resource.yaml similarity index 100% rename from stor/tests/cassettes_py3/TestCanonicalResource/test_no_resource.yaml rename to stor_dx/stor_dx/tests/cassettes_py3/TestCanonicalResource/test_no_resource.yaml diff --git a/stor/tests/cassettes_py3/TestCanonicalResource/test_project.yaml b/stor_dx/stor_dx/tests/cassettes_py3/TestCanonicalResource/test_project.yaml similarity index 100% rename from stor/tests/cassettes_py3/TestCanonicalResource/test_project.yaml rename to stor_dx/stor_dx/tests/cassettes_py3/TestCanonicalResource/test_project.yaml diff --git a/stor/tests/cassettes_py3/TestCanonicalResource/test_unique_resource.yaml b/stor_dx/stor_dx/tests/cassettes_py3/TestCanonicalResource/test_unique_resource.yaml similarity index 100% rename from stor/tests/cassettes_py3/TestCanonicalResource/test_unique_resource.yaml rename to stor_dx/stor_dx/tests/cassettes_py3/TestCanonicalResource/test_unique_resource.yaml diff --git a/stor/tests/cassettes_py3/TestCanonicalResource/test_virtual_on_virtual.yaml b/stor_dx/stor_dx/tests/cassettes_py3/TestCanonicalResource/test_virtual_on_virtual.yaml similarity index 100% rename from stor/tests/cassettes_py3/TestCanonicalResource/test_virtual_on_virtual.yaml rename to stor_dx/stor_dx/tests/cassettes_py3/TestCanonicalResource/test_virtual_on_virtual.yaml diff --git a/stor/tests/cassettes_py3/TestCopy/test_clone_move_project_fail.yaml b/stor_dx/stor_dx/tests/cassettes_py3/TestCopy/test_clone_move_project_fail.yaml similarity index 73% rename from stor/tests/cassettes_py3/TestCopy/test_clone_move_project_fail.yaml rename to stor_dx/stor_dx/tests/cassettes_py3/TestCopy/test_clone_move_project_fail.yaml index 16a80822..7778704b 100644 --- a/stor/tests/cassettes_py3/TestCopy/test_clone_move_project_fail.yaml +++ b/stor_dx/stor_dx/tests/cassettes_py3/TestCopy/test_clone_move_project_fail.yaml @@ -1,6 +1,6 @@ interactions: - request: - body: '{"name": "TestCopy.test_clone_move_project_fail.56fd88e1"}' + body: '{"name": "TestCopy.test_clone_move_project_fail.28c1fcb2"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -22,17 +22,17 @@ interactions: method: POST uri: https://api.dnanexus.com/project/new response: - body: {string: '{"id":"project-FP9kJxQ08zjGf62VJp1k8pFq"}'} + body: {string: '{"id":"project-FPfB7600ppFpjXPvGzvq00Z1"}'} headers: Connection: [keep-alive] Content-Length: ['41'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:36:38 GMT'] + Date: ['Wed, 14 Nov 2018 22:37:12 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593398089-986830] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235032589-981208] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -56,19 +56,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kJxQ08zjGf62VJp1k8pFq/describe + uri: https://api.dnanexus.com/project-FPfB7600ppFpjXPvGzvq00Z1/describe response: - body: {string: '{"id":"project-FP9kJxQ08zjGf62VJp1k8pFq","name":"TestCopy.test_clone_move_project_fail.56fd88e1","class":"project","created":1540593398000,"modified":1540593398000,"billTo":"org-counsyl","level":"ADMINISTER","dataUsage":0,"sponsoredDataUsage":0,"region":"aws:us-east-1","summary":"","description":"","protected":false,"restricted":false,"downloadRestricted":false,"containsPHI":false,"createdBy":{"user":"user-akumar_counsyl"},"version":0,"storageCost":0,"pendingTransfer":null,"tags":[],"defaultInstanceType":"mem2_hdd2_x2","archivalState":"live","archivalProgress":null,"totalSponsoredEgressBytes":0,"consumedSponsoredEgressBytes":0,"atSpendingLimit":false}'} + body: {string: '{"id":"project-FPfB7600ppFpjXPvGzvq00Z1","name":"TestCopy.test_clone_move_project_fail.28c1fcb2","class":"project","created":1542235032000,"modified":1542235032000,"billTo":"org-counsyl","level":"ADMINISTER","dataUsage":0,"sponsoredDataUsage":0,"region":"aws:us-east-1","summary":"","description":"","protected":false,"restricted":false,"downloadRestricted":false,"containsPHI":false,"createdBy":{"user":"user-akumar_counsyl"},"version":0,"storageCost":0,"pendingTransfer":null,"tags":[],"defaultInstanceType":"mem2_hdd2_x2","archivalState":"live","archivalProgress":null,"totalSponsoredEgressBytes":0,"consumedSponsoredEgressBytes":0,"atSpendingLimit":false}'} headers: Connection: [keep-alive] Content-Length: ['659'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:36:38 GMT'] + Date: ['Wed, 14 Nov 2018 22:37:12 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593398212-584813] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235032709-147374] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -92,24 +92,24 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kJxQ08zjGf62VJp1k8pFq/newFolder + uri: https://api.dnanexus.com/project-FPfB7600ppFpjXPvGzvq00Z1/newFolder response: - body: {string: '{"id":"project-FP9kJxQ08zjGf62VJp1k8pFq"}'} + body: {string: '{"id":"project-FPfB7600ppFpjXPvGzvq00Z1"}'} headers: Connection: [keep-alive] Content-Length: ['41'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:36:38 GMT'] + Date: ['Wed, 14 Nov 2018 22:37:12 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593398335-274968] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235032827-816010] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"name": "folder_file.txt", "folder": "/", "project": "project-FP9kJxQ08zjGf62VJp1k8pFq", - "nonce": "b''bbf43f5107c668864466f69213cf72657bc83648acf813d08f8ead171e9c9611''1540593398.398499"}' + body: '{"name": "folder_file.txt", "folder": "/", "project": "project-FPfB7600ppFpjXPvGzvq00Z1", + "nonce": "b''f656299af35743dc5e8dc7add93c39a51e144900449d25ecdca27aa7e9b7f1ce''1542235032.881480"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -131,17 +131,17 @@ interactions: method: POST uri: https://api.dnanexus.com/file/new response: - body: {string: '{"id":"file-FP9kJxQ08zjFPYg95F286zJz"}'} + body: {string: '{"id":"file-FPfB7600ppFv39QfGzjfYyjf"}'} headers: Connection: [keep-alive] Content-Length: ['38'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:36:38 GMT'] + Date: ['Wed, 14 Nov 2018 22:37:12 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593398444-1279] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235032927-321672] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -165,19 +165,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kJxQ08zjGf62VJp1k8pFq/describe + uri: https://api.dnanexus.com/project-FPfB7600ppFpjXPvGzvq00Z1/describe response: - body: {string: '{"id":"project-FP9kJxQ08zjGf62VJp1k8pFq","fileUploadParameters":{"maximumPartSize":5368709120,"minimumPartSize":5242880,"maximumFileSize":5497558138880,"maximumNumParts":10000,"emptyLastPartAllowed":true}}'} + body: {string: '{"id":"project-FPfB7600ppFpjXPvGzvq00Z1","fileUploadParameters":{"maximumPartSize":5368709120,"minimumPartSize":5242880,"maximumFileSize":5497558138880,"maximumNumParts":10000,"emptyLastPartAllowed":true}}'} headers: Connection: [keep-alive] Content-Length: ['205'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:36:38 GMT'] + Date: ['Wed, 14 Nov 2018 22:37:13 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593398622-324688] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235033075-257239] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -201,19 +201,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kJxQ08zjFPYg95F286zJz/upload + uri: https://api.dnanexus.com/file-FPfB7600ppFv39QfGzjfYyjf/upload response: - body: {string: '{"url":"https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/a0e0/file/open/file-FP9kJxQ08zjFPYg95F286zJz/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181026%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181026T223638Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=5d03ffe0804b2a10d85a52b2d3b18ebaab0a6c0f097cc26679c2de4ffc5d6961","headers":{"host":"dnanexus-platform-upload-prod.s3.amazonaws.com","content-type":"binary/octet-stream","x-amz-server-side-encryption":"AES256","content-md5":"jXd/OF09/siBXSD3SWAm3A==","content-length":"4"},"expires":1540593518746}'} + body: {string: '{"url":"https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/c497/file/open/file-FPfB7600ppFv39QfGzjfYyjf/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181114%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181114T223713Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=8a9fd2b6bd10baa1609ba7f4eef74116e298fafdf3ba3cc4416fb11edaac4b8b","headers":{"host":"dnanexus-platform-upload-prod.s3.amazonaws.com","content-type":"binary/octet-stream","x-amz-server-side-encryption":"AES256","content-md5":"jXd/OF09/siBXSD3SWAm3A==","content-length":"4"},"expires":1542235153191}'} headers: Connection: [keep-alive] Content-Length: ['692'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:36:38 GMT'] + Date: ['Wed, 14 Nov 2018 22:37:13 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593398732-364726] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235033177-670261] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -241,21 +241,21 @@ interactions: : - !!binary | QUVTMjU2 method: PUT - uri: https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/a0e0/file/open/file-FP9kJxQ08zjFPYg95F286zJz/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181026%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181026T223638Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=5d03ffe0804b2a10d85a52b2d3b18ebaab0a6c0f097cc26679c2de4ffc5d6961 + uri: https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/c497/file/open/file-FPfB7600ppFv39QfGzjfYyjf/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181114%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181114T223713Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=8a9fd2b6bd10baa1609ba7f4eef74116e298fafdf3ba3cc4416fb11edaac4b8b response: body: {string: ''} headers: Content-Length: ['0'] - Date: ['Fri, 26 Oct 2018 22:36:40 GMT'] + Date: ['Wed, 14 Nov 2018 22:37:14 GMT'] ETag: ['"8d777f385d3dfec8815d20f7496026dc"'] Server: [AmazonS3] - x-amz-expiration: ['expiry-date="Sat, 17 Nov 2018 00:00:00 GMT", rule-id="3weekpurge"'] - x-amz-id-2: [Mi1qMwmk4yi7QWux6RgBd6IkcL+dXSnK90nWeQJwjZtXQfu3ThfXYzfX6aPVqLFTXXPH0ecfNmw=] - x-amz-request-id: [DD3BF51A19BEFA66] + x-amz-expiration: ['expiry-date="Thu, 06 Dec 2018 00:00:00 GMT", rule-id="3weekpurge"'] + x-amz-id-2: [5mHI26xJ1uWmDw4yWY82PPIwWV9JlOrHGIR4Ll39ejud/byrTWYK6XmRZL1VO0eovib4RVFR344=] + x-amz-request-id: [D1DD20F99A64ED22] x-amz-server-side-encryption: [AES256] status: {code: 200, message: OK} - request: - body: '{"fields": {"state": true}, "project": "project-FP9kJxQ08zjGf62VJp1k8pFq"}' + body: '{"fields": {"state": true}, "project": "project-FPfB7600ppFpjXPvGzvq00Z1"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -275,19 +275,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kJxQ08zjFPYg95F286zJz/describe + uri: https://api.dnanexus.com/file-FPfB7600ppFv39QfGzjfYyjf/describe response: - body: {string: '{"id":"file-FP9kJxQ08zjFPYg95F286zJz","state":"open"}'} + body: {string: '{"id":"file-FPfB7600ppFv39QfGzjfYyjf","state":"open"}'} headers: Connection: [keep-alive] Content-Length: ['53'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:36:39 GMT'] + Date: ['Wed, 14 Nov 2018 22:37:14 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593399373-934409] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235033883-229445] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -311,23 +311,23 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kJxQ08zjFPYg95F286zJz/close + uri: https://api.dnanexus.com/file-FPfB7600ppFv39QfGzjfYyjf/close response: - body: {string: '{"id":"file-FP9kJxQ08zjFPYg95F286zJz"}'} + body: {string: '{"id":"file-FPfB7600ppFv39QfGzjfYyjf"}'} headers: Connection: [keep-alive] Content-Length: ['38'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:36:39 GMT'] + Date: ['Wed, 14 Nov 2018 22:37:14 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593399489-867114] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235034257-692057] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"fields": {"state": true}, "project": "project-FP9kJxQ08zjGf62VJp1k8pFq"}' + body: '{"fields": {"state": true}, "project": "project-FPfB7600ppFpjXPvGzvq00Z1"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -347,23 +347,23 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kJxQ08zjFPYg95F286zJz/describe + uri: https://api.dnanexus.com/file-FPfB7600ppFv39QfGzjfYyjf/describe response: - body: {string: '{"id":"file-FP9kJxQ08zjFPYg95F286zJz","state":"closing"}'} + body: {string: '{"id":"file-FPfB7600ppFv39QfGzjfYyjf","state":"closing"}'} headers: Connection: [keep-alive] Content-Length: ['56'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:36:39 GMT'] + Date: ['Wed, 14 Nov 2018 22:37:14 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593399607-893104] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235034493-434872] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"fields": {"state": true}, "project": "project-FP9kJxQ08zjGf62VJp1k8pFq"}' + body: '{"fields": {"state": true}, "project": "project-FPfB7600ppFpjXPvGzvq00Z1"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -383,19 +383,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kJxQ08zjFPYg95F286zJz/describe + uri: https://api.dnanexus.com/file-FPfB7600ppFv39QfGzjfYyjf/describe response: - body: {string: '{"id":"file-FP9kJxQ08zjFPYg95F286zJz","state":"closed"}'} + body: {string: '{"id":"file-FPfB7600ppFv39QfGzjfYyjf","state":"closed"}'} headers: Connection: [keep-alive] Content-Length: ['55'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:36:41 GMT'] + Date: ['Wed, 14 Nov 2018 22:37:16 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593401727-871674] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235036673-873816] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -421,17 +421,17 @@ interactions: method: POST uri: https://api.dnanexus.com/project/new response: - body: {string: '{"id":"project-FP9kJy80kP9f8GXkJpbYfb0v"}'} + body: {string: '{"id":"project-FPfB7700G2bpjXPvGzvq00Z2"}'} headers: Connection: [keep-alive] Content-Length: ['41'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:36:41 GMT'] + Date: ['Wed, 14 Nov 2018 22:37:16 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593401841-727954] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235036783-193301] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -455,19 +455,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kJy80kP9f8GXkJpbYfb0v/destroy + uri: https://api.dnanexus.com/project-FPfB7700G2bpjXPvGzvq00Z2/destroy response: - body: {string: '{"id":"project-FP9kJy80kP9f8GXkJpbYfb0v"}'} + body: {string: '{"id":"project-FPfB7700G2bpjXPvGzvq00Z2"}'} headers: Connection: [keep-alive] Content-Length: ['41'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:36:44 GMT'] + Date: ['Wed, 14 Nov 2018 22:37:20 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593401982-594132] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235036896-724065] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -491,19 +491,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kJxQ08zjGf62VJp1k8pFq/destroy + uri: https://api.dnanexus.com/project-FPfB7600ppFpjXPvGzvq00Z1/destroy response: - body: {string: '{"id":"project-FP9kJxQ08zjGf62VJp1k8pFq"}'} + body: {string: '{"id":"project-FPfB7600ppFpjXPvGzvq00Z1"}'} headers: Connection: [keep-alive] Content-Length: ['41'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:36:46 GMT'] + Date: ['Wed, 14 Nov 2018 22:37:23 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593404401-300946] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235041012-627312] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} version: 1 diff --git a/stor/tests/cassettes_py3/TestCopy/test_clone_within_project_fail.yaml b/stor_dx/stor_dx/tests/cassettes_py3/TestCopy/test_clone_within_project_fail.yaml similarity index 72% rename from stor/tests/cassettes_py3/TestCopy/test_clone_within_project_fail.yaml rename to stor_dx/stor_dx/tests/cassettes_py3/TestCopy/test_clone_within_project_fail.yaml index bfd0eabf..0f25c90a 100644 --- a/stor/tests/cassettes_py3/TestCopy/test_clone_within_project_fail.yaml +++ b/stor_dx/stor_dx/tests/cassettes_py3/TestCopy/test_clone_within_project_fail.yaml @@ -1,6 +1,6 @@ interactions: - request: - body: '{"name": "TestCopy.test_clone_within_project_fail.516bbd97"}' + body: '{"name": "TestCopy.test_clone_within_project_fail.0ac6072c"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -22,17 +22,17 @@ interactions: method: POST uri: https://api.dnanexus.com/project/new response: - body: {string: '{"id":"project-FP9kJzj0YVkvf62VJp1k8pFv"}'} + body: {string: '{"id":"project-FPfB78j0f874jFpj2b90PG3J"}'} headers: Connection: [keep-alive] Content-Length: ['41'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:36:47 GMT'] + Date: ['Wed, 14 Nov 2018 22:37:23 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593407177-568688] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235043790-808818] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -56,19 +56,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kJzj0YVkvf62VJp1k8pFv/describe + uri: https://api.dnanexus.com/project-FPfB78j0f874jFpj2b90PG3J/describe response: - body: {string: '{"id":"project-FP9kJzj0YVkvf62VJp1k8pFv","name":"TestCopy.test_clone_within_project_fail.516bbd97","class":"project","created":1540593407000,"modified":1540593407000,"billTo":"org-counsyl","level":"ADMINISTER","dataUsage":0,"sponsoredDataUsage":0,"region":"aws:us-east-1","summary":"","description":"","protected":false,"restricted":false,"downloadRestricted":false,"containsPHI":false,"createdBy":{"user":"user-akumar_counsyl"},"version":0,"storageCost":0,"pendingTransfer":null,"tags":[],"defaultInstanceType":"mem2_hdd2_x2","archivalState":"live","archivalProgress":null,"totalSponsoredEgressBytes":0,"consumedSponsoredEgressBytes":0,"atSpendingLimit":false}'} + body: {string: '{"id":"project-FPfB78j0f874jFpj2b90PG3J","name":"TestCopy.test_clone_within_project_fail.0ac6072c","class":"project","created":1542235043000,"modified":1542235043000,"billTo":"org-counsyl","level":"ADMINISTER","dataUsage":0,"sponsoredDataUsage":0,"region":"aws:us-east-1","summary":"","description":"","protected":false,"restricted":false,"downloadRestricted":false,"containsPHI":false,"createdBy":{"user":"user-akumar_counsyl"},"version":0,"storageCost":0,"pendingTransfer":null,"tags":[],"defaultInstanceType":"mem2_hdd2_x2","archivalState":"live","archivalProgress":null,"totalSponsoredEgressBytes":0,"consumedSponsoredEgressBytes":0,"atSpendingLimit":false}'} headers: Connection: [keep-alive] Content-Length: ['661'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:36:47 GMT'] + Date: ['Wed, 14 Nov 2018 22:37:23 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593407294-565739] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235043894-745145] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -92,24 +92,24 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kJzj0YVkvf62VJp1k8pFv/newFolder + uri: https://api.dnanexus.com/project-FPfB78j0f874jFpj2b90PG3J/newFolder response: - body: {string: '{"id":"project-FP9kJzj0YVkvf62VJp1k8pFv"}'} + body: {string: '{"id":"project-FPfB78j0f874jFpj2b90PG3J"}'} headers: Connection: [keep-alive] Content-Length: ['41'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:36:47 GMT'] + Date: ['Wed, 14 Nov 2018 22:37:24 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593407411-556979] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235044027-445182] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"name": "folder_file.txt", "folder": "/", "project": "project-FP9kJzj0YVkvf62VJp1k8pFv", - "nonce": "b''74bc9091b92f2282dc539db7b7f507ead18f100d6ecb047e8427796de993ad03''1540593407.475598"}' + body: '{"name": "folder_file.txt", "folder": "/", "project": "project-FPfB78j0f874jFpj2b90PG3J", + "nonce": "b''a88b41fa7858c94d539b38d7b65be849d71eea6fa8bfb7afc445500af7e0e85a''1542235044.088148"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -131,17 +131,17 @@ interactions: method: POST uri: https://api.dnanexus.com/file/new response: - body: {string: '{"id":"file-FP9kJzj0YVkfzyV6JkV1p4QP"}'} + body: {string: '{"id":"file-FPfB7900f87PGvZP2fQbfxzy"}'} headers: Connection: [keep-alive] Content-Length: ['38'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:36:47 GMT'] + Date: ['Wed, 14 Nov 2018 22:37:24 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593407519-977167] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235044133-597433] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -165,19 +165,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kJzj0YVkvf62VJp1k8pFv/describe + uri: https://api.dnanexus.com/project-FPfB78j0f874jFpj2b90PG3J/describe response: - body: {string: '{"id":"project-FP9kJzj0YVkvf62VJp1k8pFv","fileUploadParameters":{"maximumPartSize":5368709120,"minimumPartSize":5242880,"maximumFileSize":5497558138880,"maximumNumParts":10000,"emptyLastPartAllowed":true}}'} + body: {string: '{"id":"project-FPfB78j0f874jFpj2b90PG3J","fileUploadParameters":{"maximumPartSize":5368709120,"minimumPartSize":5242880,"maximumFileSize":5497558138880,"maximumNumParts":10000,"emptyLastPartAllowed":true}}'} headers: Connection: [keep-alive] Content-Length: ['205'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:36:47 GMT'] + Date: ['Wed, 14 Nov 2018 22:37:24 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593407662-185610] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235044286-411123] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -201,19 +201,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kJzj0YVkfzyV6JkV1p4QP/upload + uri: https://api.dnanexus.com/file-FPfB7900f87PGvZP2fQbfxzy/upload response: - body: {string: '{"url":"https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/5bfd/file/open/file-FP9kJzj0YVkfzyV6JkV1p4QP/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181026%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181026T223647Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=5f636a0c6b9bf4bcbf1749df03c4ba40cb3600251be66fef21081c052ba7bb32","headers":{"host":"dnanexus-platform-upload-prod.s3.amazonaws.com","content-type":"binary/octet-stream","x-amz-server-side-encryption":"AES256","content-md5":"jXd/OF09/siBXSD3SWAm3A==","content-length":"4"},"expires":1540593527783}'} + body: {string: '{"url":"https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/bc2f/file/open/file-FPfB7900f87PGvZP2fQbfxzy/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181114%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181114T223724Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=e3ce6631edd2430d3af35870ca2b65cd7d786d5808e95da5d8223bee4e1ea601","headers":{"host":"dnanexus-platform-upload-prod.s3.amazonaws.com","content-type":"binary/octet-stream","x-amz-server-side-encryption":"AES256","content-md5":"jXd/OF09/siBXSD3SWAm3A==","content-length":"4"},"expires":1542235164428}'} headers: Connection: [keep-alive] Content-Length: ['692'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:36:47 GMT'] + Date: ['Wed, 14 Nov 2018 22:37:24 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593407769-565223] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235044412-15433] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -241,21 +241,21 @@ interactions: : - !!binary | QUVTMjU2 method: PUT - uri: https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/5bfd/file/open/file-FP9kJzj0YVkfzyV6JkV1p4QP/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181026%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181026T223647Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=5f636a0c6b9bf4bcbf1749df03c4ba40cb3600251be66fef21081c052ba7bb32 + uri: https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/bc2f/file/open/file-FPfB7900f87PGvZP2fQbfxzy/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181114%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181114T223724Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=e3ce6631edd2430d3af35870ca2b65cd7d786d5808e95da5d8223bee4e1ea601 response: body: {string: ''} headers: Content-Length: ['0'] - Date: ['Fri, 26 Oct 2018 22:36:49 GMT'] + Date: ['Wed, 14 Nov 2018 22:37:25 GMT'] ETag: ['"8d777f385d3dfec8815d20f7496026dc"'] Server: [AmazonS3] - x-amz-expiration: ['expiry-date="Sat, 17 Nov 2018 00:00:00 GMT", rule-id="3weekpurge"'] - x-amz-id-2: [p6bFERWYSbeS/5ZLXfY+xr8dfTjBoMFEw5OhoQbLXtTvntW3EBkwj9B6n1khVz4ZD/UsIAS0ZSI=] - x-amz-request-id: [F777AD61554EBAE6] + x-amz-expiration: ['expiry-date="Thu, 06 Dec 2018 00:00:00 GMT", rule-id="3weekpurge"'] + x-amz-id-2: [QWEBi4hvzshn21Vp93cWm+pYVsOWw2aaMj8pPkyf2Q1RUFtO4/6DDqZDa3VlLVB1vDnYUxdLxzI=] + x-amz-request-id: [B382992C2479B4F7] x-amz-server-side-encryption: [AES256] status: {code: 200, message: OK} - request: - body: '{"fields": {"state": true}, "project": "project-FP9kJzj0YVkvf62VJp1k8pFv"}' + body: '{"fields": {"state": true}, "project": "project-FPfB78j0f874jFpj2b90PG3J"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -275,19 +275,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kJzj0YVkfzyV6JkV1p4QP/describe + uri: https://api.dnanexus.com/file-FPfB7900f87PGvZP2fQbfxzy/describe response: - body: {string: '{"id":"file-FP9kJzj0YVkfzyV6JkV1p4QP","state":"open"}'} + body: {string: '{"id":"file-FPfB7900f87PGvZP2fQbfxzy","state":"open"}'} headers: Connection: [keep-alive] Content-Length: ['53'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:36:48 GMT'] + Date: ['Wed, 14 Nov 2018 22:37:24 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593408585-400511] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235044874-772166] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -311,23 +311,23 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kJzj0YVkfzyV6JkV1p4QP/close + uri: https://api.dnanexus.com/file-FPfB7900f87PGvZP2fQbfxzy/close response: - body: {string: '{"id":"file-FP9kJzj0YVkfzyV6JkV1p4QP"}'} + body: {string: '{"id":"file-FPfB7900f87PGvZP2fQbfxzy"}'} headers: Connection: [keep-alive] Content-Length: ['38'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:36:48 GMT'] + Date: ['Wed, 14 Nov 2018 22:37:25 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593408821-535189] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235044971-57646] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"fields": {"state": true}, "project": "project-FP9kJzj0YVkvf62VJp1k8pFv"}' + body: '{"fields": {"state": true}, "project": "project-FPfB78j0f874jFpj2b90PG3J"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -347,23 +347,23 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kJzj0YVkfzyV6JkV1p4QP/describe + uri: https://api.dnanexus.com/file-FPfB7900f87PGvZP2fQbfxzy/describe response: - body: {string: '{"id":"file-FP9kJzj0YVkfzyV6JkV1p4QP","state":"closing"}'} + body: {string: '{"id":"file-FPfB7900f87PGvZP2fQbfxzy","state":"closing"}'} headers: Connection: [keep-alive] Content-Length: ['56'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:36:48 GMT'] + Date: ['Wed, 14 Nov 2018 22:37:25 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593408959-907503] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235045232-158017] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"fields": {"state": true}, "project": "project-FP9kJzj0YVkvf62VJp1k8pFv"}' + body: '{"fields": {"state": true}, "project": "project-FPfB78j0f874jFpj2b90PG3J"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -383,19 +383,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kJzj0YVkfzyV6JkV1p4QP/describe + uri: https://api.dnanexus.com/file-FPfB7900f87PGvZP2fQbfxzy/describe response: - body: {string: '{"id":"file-FP9kJzj0YVkfzyV6JkV1p4QP","state":"closed"}'} + body: {string: '{"id":"file-FPfB7900f87PGvZP2fQbfxzy","state":"closed"}'} headers: Connection: [keep-alive] Content-Length: ['55'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:36:51 GMT'] + Date: ['Wed, 14 Nov 2018 22:37:27 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593411072-657899] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235047351-389348] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -419,24 +419,24 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kJzj0YVkvf62VJp1k8pFv/newFolder + uri: https://api.dnanexus.com/project-FPfB78j0f874jFpj2b90PG3J/newFolder response: - body: {string: '{"id":"project-FP9kJzj0YVkvf62VJp1k8pFv"}'} + body: {string: '{"id":"project-FPfB78j0f874jFpj2b90PG3J"}'} headers: Connection: [keep-alive] Content-Length: ['41'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:36:51 GMT'] + Date: ['Wed, 14 Nov 2018 22:37:27 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593411181-874321] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235047457-768732] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"name": "folder_file2.txt", "folder": "/", "project": "project-FP9kJzj0YVkvf62VJp1k8pFv", - "nonce": "b''723aa2fd2c036da34ee39b744b81059bac538e0f3463623a85212fa3a894c2cf''1540593411.254347"}' + body: '{"name": "folder_file2.txt", "folder": "/", "project": "project-FPfB78j0f874jFpj2b90PG3J", + "nonce": "b''1095e6f47cb5df4c679c4b15a953840826997fe8d98cf9b33e6fae0fbfe79484''1542235047.532132"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -458,17 +458,17 @@ interactions: method: POST uri: https://api.dnanexus.com/file/new response: - body: {string: '{"id":"file-FP9kK0j0YVkqPYg95F286zK3"}'} + body: {string: '{"id":"file-FPfB79j0f87GF0v02bbj0VZZ"}'} headers: Connection: [keep-alive] Content-Length: ['38'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:36:51 GMT'] + Date: ['Wed, 14 Nov 2018 22:37:27 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593411303-146388] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235047580-529161] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -492,19 +492,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kJzj0YVkvf62VJp1k8pFv/describe + uri: https://api.dnanexus.com/project-FPfB78j0f874jFpj2b90PG3J/describe response: - body: {string: '{"id":"project-FP9kJzj0YVkvf62VJp1k8pFv","fileUploadParameters":{"maximumPartSize":5368709120,"minimumPartSize":5242880,"maximumFileSize":5497558138880,"maximumNumParts":10000,"emptyLastPartAllowed":true}}'} + body: {string: '{"id":"project-FPfB78j0f874jFpj2b90PG3J","fileUploadParameters":{"maximumPartSize":5368709120,"minimumPartSize":5242880,"maximumFileSize":5497558138880,"maximumNumParts":10000,"emptyLastPartAllowed":true}}'} headers: Connection: [keep-alive] Content-Length: ['205'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:36:51 GMT'] + Date: ['Wed, 14 Nov 2018 22:37:27 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593411440-430302] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235047732-650992] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -528,19 +528,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kK0j0YVkqPYg95F286zK3/upload + uri: https://api.dnanexus.com/file-FPfB79j0f87GF0v02bbj0VZZ/upload response: - body: {string: '{"url":"https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/9866/file/open/file-FP9kK0j0YVkqPYg95F286zK3/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181026%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181026T223651Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=d1f8e068bcf872e69bb8a5949fa0f5b1e032907c60257cf695be510da48b228b","headers":{"host":"dnanexus-platform-upload-prod.s3.amazonaws.com","content-type":"binary/octet-stream","x-amz-server-side-encryption":"AES256","content-md5":"jXd/OF09/siBXSD3SWAm3A==","content-length":"4"},"expires":1540593531569}'} + body: {string: '{"url":"https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/801d/file/open/file-FPfB79j0f87GF0v02bbj0VZZ/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181114%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181114T223727Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=a6364618f327a99d8aceb9bf64ca3451a868df843c95f9d08d92600d84c3c811","headers":{"host":"dnanexus-platform-upload-prod.s3.amazonaws.com","content-type":"binary/octet-stream","x-amz-server-side-encryption":"AES256","content-md5":"jXd/OF09/siBXSD3SWAm3A==","content-length":"4"},"expires":1542235167879}'} headers: Connection: [keep-alive] Content-Length: ['692'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:36:51 GMT'] + Date: ['Wed, 14 Nov 2018 22:37:27 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593411555-344781] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235047867-360907] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -568,21 +568,21 @@ interactions: : - !!binary | QUVTMjU2 method: PUT - uri: https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/9866/file/open/file-FP9kK0j0YVkqPYg95F286zK3/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181026%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181026T223651Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=d1f8e068bcf872e69bb8a5949fa0f5b1e032907c60257cf695be510da48b228b + uri: https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/801d/file/open/file-FPfB79j0f87GF0v02bbj0VZZ/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181114%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181114T223727Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=a6364618f327a99d8aceb9bf64ca3451a868df843c95f9d08d92600d84c3c811 response: body: {string: ''} headers: Content-Length: ['0'] - Date: ['Fri, 26 Oct 2018 22:36:52 GMT'] + Date: ['Wed, 14 Nov 2018 22:37:28 GMT'] ETag: ['"8d777f385d3dfec8815d20f7496026dc"'] Server: [AmazonS3] - x-amz-expiration: ['expiry-date="Sat, 17 Nov 2018 00:00:00 GMT", rule-id="3weekpurge"'] - x-amz-id-2: [gkVyJjWcXi8V33j6rVnCBakkm4TM0UDBGN4+eMKCgKtp51Fypva/XqNMvXj639zTnJW8dtDx7TI=] - x-amz-request-id: [37C1DBB738858D15] + x-amz-expiration: ['expiry-date="Thu, 06 Dec 2018 00:00:00 GMT", rule-id="3weekpurge"'] + x-amz-id-2: [WMhI/TnkujGtMMwfeBOIw3zPYUN+YoibsA4AjmJKr/TZDcuD8Di7lPPMQgiQBoxfz8hwwE4SOpY=] + x-amz-request-id: [437A966B2F1608D2] x-amz-server-side-encryption: [AES256] status: {code: 200, message: OK} - request: - body: '{"fields": {"state": true}, "project": "project-FP9kJzj0YVkvf62VJp1k8pFv"}' + body: '{"fields": {"state": true}, "project": "project-FPfB78j0f874jFpj2b90PG3J"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -602,19 +602,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kK0j0YVkqPYg95F286zK3/describe + uri: https://api.dnanexus.com/file-FPfB79j0f87GF0v02bbj0VZZ/describe response: - body: {string: '{"id":"file-FP9kK0j0YVkqPYg95F286zK3","state":"open"}'} + body: {string: '{"id":"file-FPfB79j0f87GF0v02bbj0VZZ","state":"open"}'} headers: Connection: [keep-alive] Content-Length: ['53'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:36:51 GMT'] + Date: ['Wed, 14 Nov 2018 22:37:28 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593411815-267051] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235048088-224219] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -638,23 +638,23 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kK0j0YVkqPYg95F286zK3/close + uri: https://api.dnanexus.com/file-FPfB79j0f87GF0v02bbj0VZZ/close response: - body: {string: '{"id":"file-FP9kK0j0YVkqPYg95F286zK3"}'} + body: {string: '{"id":"file-FPfB79j0f87GF0v02bbj0VZZ"}'} headers: Connection: [keep-alive] Content-Length: ['38'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:36:51 GMT'] + Date: ['Wed, 14 Nov 2018 22:37:28 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593411923-423700] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235048192-502230] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"fields": {"state": true}, "project": "project-FP9kJzj0YVkvf62VJp1k8pFv"}' + body: '{"fields": {"state": true}, "project": "project-FPfB78j0f874jFpj2b90PG3J"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -674,23 +674,23 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kK0j0YVkqPYg95F286zK3/describe + uri: https://api.dnanexus.com/file-FPfB79j0f87GF0v02bbj0VZZ/describe response: - body: {string: '{"id":"file-FP9kK0j0YVkqPYg95F286zK3","state":"closing"}'} + body: {string: '{"id":"file-FPfB79j0f87GF0v02bbj0VZZ","state":"closing"}'} headers: Connection: [keep-alive] Content-Length: ['56'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:36:52 GMT'] + Date: ['Wed, 14 Nov 2018 22:37:28 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593412043-669904] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235048331-25421] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"fields": {"state": true}, "project": "project-FP9kJzj0YVkvf62VJp1k8pFv"}' + body: '{"fields": {"state": true}, "project": "project-FPfB78j0f874jFpj2b90PG3J"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -710,23 +710,23 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kK0j0YVkqPYg95F286zK3/describe + uri: https://api.dnanexus.com/file-FPfB79j0f87GF0v02bbj0VZZ/describe response: - body: {string: '{"id":"file-FP9kK0j0YVkqPYg95F286zK3","state":"closed"}'} + body: {string: '{"id":"file-FPfB79j0f87GF0v02bbj0VZZ","state":"closed"}'} headers: Connection: [keep-alive] Content-Length: ['55'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:36:54 GMT'] + Date: ['Wed, 14 Nov 2018 22:37:30 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593414167-140754] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235050453-949563] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"name": "TestCopy.test_clone_within_project_fail.516bbd97", "level": "VIEW", + body: '{"name": "TestCopy.test_clone_within_project_fail.0ac6072c", "level": "VIEW", "limit": 2}' headers: ? !!binary | @@ -749,21 +749,21 @@ interactions: method: POST uri: https://api.dnanexus.com/system/findProjects response: - body: {string: '{"results":[{"id":"project-FP9kJzj0YVkvf62VJp1k8pFv","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} + body: {string: '{"results":[{"id":"project-FPfB78j0f874jFpj2b90PG3J","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} headers: Connection: [keep-alive] Content-Length: ['147'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:36:54 GMT'] + Date: ['Wed, 14 Nov 2018 22:37:30 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593414285-148167] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235050572-53726] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"name": "TestCopy.test_clone_within_project_fail.516bbd97", "level": "VIEW", + body: '{"name": "TestCopy.test_clone_within_project_fail.0ac6072c", "level": "VIEW", "limit": 2}' headers: ? !!binary | @@ -786,17 +786,17 @@ interactions: method: POST uri: https://api.dnanexus.com/system/findProjects response: - body: {string: '{"results":[{"id":"project-FP9kJzj0YVkvf62VJp1k8pFv","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} + body: {string: '{"results":[{"id":"project-FPfB78j0f874jFpj2b90PG3J","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} headers: Connection: [keep-alive] Content-Length: ['147'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:36:54 GMT'] + Date: ['Wed, 14 Nov 2018 22:37:30 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593414414-232471] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235050696-651256] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -820,19 +820,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kJzj0YVkvf62VJp1k8pFv/destroy + uri: https://api.dnanexus.com/project-FPfB78j0f874jFpj2b90PG3J/destroy response: - body: {string: '{"id":"project-FP9kJzj0YVkvf62VJp1k8pFv"}'} + body: {string: '{"id":"project-FPfB78j0f874jFpj2b90PG3J"}'} headers: Connection: [keep-alive] Content-Length: ['41'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:36:56 GMT'] + Date: ['Wed, 14 Nov 2018 22:37:33 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593414541-275206] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235050864-199110] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} version: 1 diff --git a/stor/tests/cassettes_py3/TestCopy/test_dx_canonical_to_dx_file.yaml b/stor_dx/stor_dx/tests/cassettes_py3/TestCopy/test_dx_canonical_to_dx_file.yaml similarity index 74% rename from stor/tests/cassettes_py3/TestCopy/test_dx_canonical_to_dx_file.yaml rename to stor_dx/stor_dx/tests/cassettes_py3/TestCopy/test_dx_canonical_to_dx_file.yaml index 7e905b6a..dc610fa2 100644 --- a/stor/tests/cassettes_py3/TestCopy/test_dx_canonical_to_dx_file.yaml +++ b/stor_dx/stor_dx/tests/cassettes_py3/TestCopy/test_dx_canonical_to_dx_file.yaml @@ -1,6 +1,6 @@ interactions: - request: - body: '{"name": "TestCopy.test_dx_canonical_to_dx_file.27b0c8d7"}' + body: '{"name": "TestCopy.test_dx_canonical_to_dx_file.e969295d"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -22,17 +22,17 @@ interactions: method: POST uri: https://api.dnanexus.com/project/new response: - body: {string: '{"id":"project-FP9kK280gp15vgj6Jkpx4b3V"}'} + body: {string: '{"id":"project-FPfB7F800yy97J1X14967vKv"}'} headers: Connection: [keep-alive] Content-Length: ['41'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:36:57 GMT'] + Date: ['Wed, 14 Nov 2018 22:37:33 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593417325-917492] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235053691-699587] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -56,19 +56,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kK280gp15vgj6Jkpx4b3V/describe + uri: https://api.dnanexus.com/project-FPfB7F800yy97J1X14967vKv/describe response: - body: {string: '{"id":"project-FP9kK280gp15vgj6Jkpx4b3V","name":"TestCopy.test_dx_canonical_to_dx_file.27b0c8d7","class":"project","created":1540593417000,"modified":1540593417000,"billTo":"org-counsyl","level":"ADMINISTER","dataUsage":0,"sponsoredDataUsage":0,"region":"aws:us-east-1","summary":"","description":"","protected":false,"restricted":false,"downloadRestricted":false,"containsPHI":false,"createdBy":{"user":"user-akumar_counsyl"},"version":0,"storageCost":0,"pendingTransfer":null,"tags":[],"defaultInstanceType":"mem2_hdd2_x2","archivalState":"live","archivalProgress":null,"totalSponsoredEgressBytes":0,"consumedSponsoredEgressBytes":0,"atSpendingLimit":false}'} + body: {string: '{"id":"project-FPfB7F800yy97J1X14967vKv","name":"TestCopy.test_dx_canonical_to_dx_file.e969295d","class":"project","created":1542235053000,"modified":1542235053000,"billTo":"org-counsyl","level":"ADMINISTER","dataUsage":0,"sponsoredDataUsage":0,"region":"aws:us-east-1","summary":"","description":"","protected":false,"restricted":false,"downloadRestricted":false,"containsPHI":false,"createdBy":{"user":"user-akumar_counsyl"},"version":0,"storageCost":0,"pendingTransfer":null,"tags":[],"defaultInstanceType":"mem2_hdd2_x2","archivalState":"live","archivalProgress":null,"totalSponsoredEgressBytes":0,"consumedSponsoredEgressBytes":0,"atSpendingLimit":false}'} headers: Connection: [keep-alive] Content-Length: ['659'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:36:57 GMT'] + Date: ['Wed, 14 Nov 2018 22:37:33 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593417446-226556] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235053845-797888] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -92,24 +92,24 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kK280gp15vgj6Jkpx4b3V/newFolder + uri: https://api.dnanexus.com/project-FPfB7F800yy97J1X14967vKv/newFolder response: - body: {string: '{"id":"project-FP9kK280gp15vgj6Jkpx4b3V"}'} + body: {string: '{"id":"project-FPfB7F800yy97J1X14967vKv"}'} headers: Connection: [keep-alive] Content-Length: ['41'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:36:57 GMT'] + Date: ['Wed, 14 Nov 2018 22:37:34 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593417566-968232] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235054015-146336] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"name": "temp_file.txt", "folder": "/temp_folder", "project": "project-FP9kK280gp15vgj6Jkpx4b3V", - "nonce": "b''35b6031b2b410d0f35d2d3ad141356824e021fc8ac2e63f9a49191022a817717''1540593417.632015"}' + body: '{"name": "temp_file.txt", "folder": "/temp_folder", "project": "project-FPfB7F800yy97J1X14967vKv", + "nonce": "b''29226d38051352ea0ff1926aba5207799e7d0f5acb72afe15dd51e5941f39b99''1542235054.095830"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -131,17 +131,17 @@ interactions: method: POST uri: https://api.dnanexus.com/file/new response: - body: {string: '{"id":"file-FP9kK280gp1PxYfQJq0Qq9X4"}'} + body: {string: '{"id":"file-FPfB7FQ00yy97J1X14967vKx"}'} headers: Connection: [keep-alive] Content-Length: ['38'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:36:57 GMT'] + Date: ['Wed, 14 Nov 2018 22:37:34 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593417682-513224] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235054142-906550] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -165,19 +165,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kK280gp15vgj6Jkpx4b3V/describe + uri: https://api.dnanexus.com/project-FPfB7F800yy97J1X14967vKv/describe response: - body: {string: '{"id":"project-FP9kK280gp15vgj6Jkpx4b3V","fileUploadParameters":{"maximumPartSize":5368709120,"minimumPartSize":5242880,"maximumFileSize":5497558138880,"maximumNumParts":10000,"emptyLastPartAllowed":true}}'} + body: {string: '{"id":"project-FPfB7F800yy97J1X14967vKv","fileUploadParameters":{"maximumPartSize":5368709120,"minimumPartSize":5242880,"maximumFileSize":5497558138880,"maximumNumParts":10000,"emptyLastPartAllowed":true}}'} headers: Connection: [keep-alive] Content-Length: ['205'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:36:57 GMT'] + Date: ['Wed, 14 Nov 2018 22:37:34 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593417817-866719] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235054295-7936] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -201,19 +201,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kK280gp1PxYfQJq0Qq9X4/upload + uri: https://api.dnanexus.com/file-FPfB7FQ00yy97J1X14967vKx/upload response: - body: {string: '{"url":"https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/baba/file/open/file-FP9kK280gp1PxYfQJq0Qq9X4/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181026%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181026T223657Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=c3faeda68141ad183be66f943053eb98091306d3a28f7d1c5eef230d8739c1a4","headers":{"host":"dnanexus-platform-upload-prod.s3.amazonaws.com","content-type":"binary/octet-stream","x-amz-server-side-encryption":"AES256","content-md5":"jXd/OF09/siBXSD3SWAm3A==","content-length":"4"},"expires":1540593537940}'} + body: {string: '{"url":"https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/3c6f/file/open/file-FPfB7FQ00yy97J1X14967vKx/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181114%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181114T223734Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=f4b5350f9d54b1fe9d2c3077672340c8e8c5715c2bf84554dda4082f75dfdbd2","headers":{"host":"dnanexus-platform-upload-prod.s3.amazonaws.com","content-type":"binary/octet-stream","x-amz-server-side-encryption":"AES256","content-md5":"jXd/OF09/siBXSD3SWAm3A==","content-length":"4"},"expires":1542235174480}'} headers: Connection: [keep-alive] Content-Length: ['692'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:36:57 GMT'] + Date: ['Wed, 14 Nov 2018 22:37:34 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593417926-845539] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235054424-893251] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -241,21 +241,21 @@ interactions: : - !!binary | QUVTMjU2 method: PUT - uri: https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/baba/file/open/file-FP9kK280gp1PxYfQJq0Qq9X4/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181026%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181026T223657Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=c3faeda68141ad183be66f943053eb98091306d3a28f7d1c5eef230d8739c1a4 + uri: https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/3c6f/file/open/file-FPfB7FQ00yy97J1X14967vKx/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181114%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181114T223734Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=f4b5350f9d54b1fe9d2c3077672340c8e8c5715c2bf84554dda4082f75dfdbd2 response: body: {string: ''} headers: Content-Length: ['0'] - Date: ['Fri, 26 Oct 2018 22:36:59 GMT'] + Date: ['Wed, 14 Nov 2018 22:37:35 GMT'] ETag: ['"8d777f385d3dfec8815d20f7496026dc"'] Server: [AmazonS3] - x-amz-expiration: ['expiry-date="Sat, 17 Nov 2018 00:00:00 GMT", rule-id="3weekpurge"'] - x-amz-id-2: [Pz1GiI2MiTlVm+f/RscFAlZU7P1BeCyfxEcPX+Sguv2z9pVSU0p1mnEnh8wL7b4U5qSVxljlgKc=] - x-amz-request-id: [63098FCD35435825] + x-amz-expiration: ['expiry-date="Thu, 06 Dec 2018 00:00:00 GMT", rule-id="3weekpurge"'] + x-amz-id-2: [OzI93yZPVdala7qZno0oMMyDkkmyyjo66aeLp6tern+4Ki/4FMwBdxrBj/AWzYfrFjWmK1+oBKg=] + x-amz-request-id: [08F38E4EDB938947] x-amz-server-side-encryption: [AES256] status: {code: 200, message: OK} - request: - body: '{"fields": {"state": true}, "project": "project-FP9kK280gp15vgj6Jkpx4b3V"}' + body: '{"fields": {"state": true}, "project": "project-FPfB7F800yy97J1X14967vKv"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -275,19 +275,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kK280gp1PxYfQJq0Qq9X4/describe + uri: https://api.dnanexus.com/file-FPfB7FQ00yy97J1X14967vKx/describe response: - body: {string: '{"id":"file-FP9kK280gp1PxYfQJq0Qq9X4","state":"open"}'} + body: {string: '{"id":"file-FPfB7FQ00yy97J1X14967vKx","state":"open"}'} headers: Connection: [keep-alive] Content-Length: ['53'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:36:58 GMT'] + Date: ['Wed, 14 Nov 2018 22:37:34 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593418529-652837] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235054956-36797] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -311,23 +311,23 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kK280gp1PxYfQJq0Qq9X4/close + uri: https://api.dnanexus.com/file-FPfB7FQ00yy97J1X14967vKx/close response: - body: {string: '{"id":"file-FP9kK280gp1PxYfQJq0Qq9X4"}'} + body: {string: '{"id":"file-FPfB7FQ00yy97J1X14967vKx"}'} headers: Connection: [keep-alive] Content-Length: ['38'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:36:58 GMT'] + Date: ['Wed, 14 Nov 2018 22:37:35 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593418747-302441] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235055069-208855] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"fields": {"state": true}, "project": "project-FP9kK280gp15vgj6Jkpx4b3V"}' + body: '{"fields": {"state": true}, "project": "project-FPfB7F800yy97J1X14967vKv"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -347,23 +347,23 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kK280gp1PxYfQJq0Qq9X4/describe + uri: https://api.dnanexus.com/file-FPfB7FQ00yy97J1X14967vKx/describe response: - body: {string: '{"id":"file-FP9kK280gp1PxYfQJq0Qq9X4","state":"closing"}'} + body: {string: '{"id":"file-FPfB7FQ00yy97J1X14967vKx","state":"closing"}'} headers: Connection: [keep-alive] Content-Length: ['56'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:36:58 GMT'] + Date: ['Wed, 14 Nov 2018 22:37:35 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593418871-874131] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235055295-511750] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"fields": {"state": true}, "project": "project-FP9kK280gp15vgj6Jkpx4b3V"}' + body: '{"fields": {"state": true}, "project": "project-FPfB7F800yy97J1X14967vKv"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -383,19 +383,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kK280gp1PxYfQJq0Qq9X4/describe + uri: https://api.dnanexus.com/file-FPfB7FQ00yy97J1X14967vKx/describe response: - body: {string: '{"id":"file-FP9kK280gp1PxYfQJq0Qq9X4","state":"closed"}'} + body: {string: '{"id":"file-FPfB7FQ00yy97J1X14967vKx","state":"closed"}'} headers: Connection: [keep-alive] Content-Length: ['55'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:37:01 GMT'] + Date: ['Wed, 14 Nov 2018 22:37:37 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593420991-16904] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235057433-70667] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -421,21 +421,21 @@ interactions: method: POST uri: https://api.dnanexus.com/project/new response: - body: {string: '{"id":"project-FP9kK380Z8QPxYfQJq0Qq9X6"}'} + body: {string: '{"id":"project-FPfB7G80jKpq5kgg14V3yG89"}'} headers: Connection: [keep-alive] Content-Length: ['41'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:37:01 GMT'] + Date: ['Wed, 14 Nov 2018 22:37:37 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593421099-923637] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235057612-358772] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"name": "TestCopy.test_dx_canonical_to_dx_file.27b0c8d7", "level": "VIEW", + body: '{"name": "TestCopy.test_dx_canonical_to_dx_file.e969295d", "level": "VIEW", "limit": 2}' headers: ? !!binary | @@ -458,22 +458,22 @@ interactions: method: POST uri: https://api.dnanexus.com/system/findProjects response: - body: {string: '{"results":[{"id":"project-FP9kK280gp15vgj6Jkpx4b3V","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} + body: {string: '{"results":[{"id":"project-FPfB7F800yy97J1X14967vKv","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} headers: Connection: [keep-alive] Content-Length: ['147'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:37:01 GMT'] + Date: ['Wed, 14 Nov 2018 22:37:38 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593421222-422281] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235057804-743185] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: body: '{"objects": [{"name": "temp_file.txt", "folder": "/temp_folder", "project": - "project-FP9kK280gp15vgj6Jkpx4b3V", "batchsize": 2}]}' + "project-FPfB7F800yy97J1X14967vKv", "batchsize": 2}]}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -495,21 +495,21 @@ interactions: method: POST uri: https://api.dnanexus.com/system/resolveDataObjects response: - body: {string: '{"results":[[{"project":"project-FP9kK280gp15vgj6Jkpx4b3V","id":"file-FP9kK280gp1PxYfQJq0Qq9X4"}]]}'} + body: {string: '{"results":[[{"project":"project-FPfB7F800yy97J1X14967vKv","id":"file-FPfB7FQ00yy97J1X14967vKx"}]]}'} headers: Connection: [keep-alive] Content-Length: ['99'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:37:01 GMT'] + Date: ['Wed, 14 Nov 2018 22:37:38 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593421353-893051] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235058228-9247] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"project": "project-FP9kK280gp15vgj6Jkpx4b3V"}' + body: '{"project": "project-FPfB7F800yy97J1X14967vKv"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -529,19 +529,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kK280gp1PxYfQJq0Qq9X4/describe + uri: https://api.dnanexus.com/file-FPfB7FQ00yy97J1X14967vKx/describe response: - body: {string: '{"id":"file-FP9kK280gp1PxYfQJq0Qq9X4","project":"project-FP9kK280gp15vgj6Jkpx4b3V","class":"file","sponsored":false,"name":"temp_file.txt","types":[],"state":"closed","hidden":false,"links":[],"folder":"/temp_folder","tags":[],"created":1540593417000,"modified":1540593419522,"createdBy":{"user":"user-akumar_counsyl"},"media":"text/plain","archivalState":"live","size":4}'} + body: {string: '{"id":"file-FPfB7FQ00yy97J1X14967vKx","project":"project-FPfB7F800yy97J1X14967vKv","class":"file","sponsored":false,"name":"temp_file.txt","types":[],"state":"closed","hidden":false,"links":[],"folder":"/temp_folder","tags":[],"created":1542235054000,"modified":1542235055858,"createdBy":{"user":"user-akumar_counsyl"},"media":"text/plain","archivalState":"live","size":4}'} headers: Connection: [keep-alive] Content-Length: ['372'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:37:01 GMT'] + Date: ['Wed, 14 Nov 2018 22:37:38 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593421461-880425] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235058661-320131] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -568,17 +568,17 @@ interactions: method: POST uri: https://api.dnanexus.com/system/findProjects response: - body: {string: '{"results":[{"id":"project-FP9kK380Z8QPxYfQJq0Qq9X6","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} + body: {string: '{"results":[{"id":"project-FPfB7G80jKpq5kgg14V3yG89","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} headers: Connection: [keep-alive] Content-Length: ['147'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:37:01 GMT'] + Date: ['Wed, 14 Nov 2018 22:37:39 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593421577-182311] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235058861-296856] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -603,25 +603,25 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kK380Z8QPxYfQJq0Qq9X6/listFolder + uri: https://api.dnanexus.com/project-FPfB7G80jKpq5kgg14V3yG89/listFolder response: body: {string: '{"error":{"type":"ResourceNotFound","message":"The specified folder - could not be found in project-FP9kK380Z8QPxYfQJq0Qq9X6"}}'} + could not be found in project-FPfB7G80jKpq5kgg14V3yG89"}}'} headers: Connection: [keep-alive] Content-Type: [application/json] - Date: ['Fri, 26 Oct 2018 22:37:01 GMT'] + Date: ['Wed, 14 Nov 2018 22:37:39 GMT'] Server: [nginx] Transfer-Encoding: [chunked] Vary: [Accept-Encoding] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593421716-467012] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235059327-726789] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 404, message: Not Found} - request: - body: '{"objects": [{"name": "random.txt", "folder": "/", "project": "project-FP9kK380Z8QPxYfQJq0Qq9X6", + body: '{"objects": [{"name": "random.txt", "folder": "/", "project": "project-FPfB7G80jKpq5kgg14V3yG89", "batchsize": 2}]}' headers: ? !!binary | @@ -649,16 +649,16 @@ interactions: Connection: [keep-alive] Content-Length: ['16'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:37:02 GMT'] + Date: ['Wed, 14 Nov 2018 22:37:40 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593422139-337533] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235060015-558906] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"objects": ["file-FP9kK280gp1PxYfQJq0Qq9X4"], "project": "project-FP9kK380Z8QPxYfQJq0Qq9X6", + body: '{"objects": ["file-FPfB7FQ00yy97J1X14967vKx"], "project": "project-FPfB7G80jKpq5kgg14V3yG89", "destination": "/"}' headers: ? !!binary | @@ -679,23 +679,23 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kK280gp15vgj6Jkpx4b3V/clone + uri: https://api.dnanexus.com/project-FPfB7F800yy97J1X14967vKv/clone response: - body: {string: '{"id":"project-FP9kK280gp15vgj6Jkpx4b3V","project":"project-FP9kK380Z8QPxYfQJq0Qq9X6","exists":[]}'} + body: {string: '{"id":"project-FPfB7F800yy97J1X14967vKv","project":"project-FPfB7G80jKpq5kgg14V3yG89","exists":[]}'} headers: Connection: [keep-alive] Content-Length: ['98'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:37:02 GMT'] + Date: ['Wed, 14 Nov 2018 22:37:40 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593422267-485763] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235060129-780840] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"project": "project-FP9kK280gp15vgj6Jkpx4b3V"}' + body: '{"project": "project-FPfB7F800yy97J1X14967vKv"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -715,23 +715,23 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kK280gp1PxYfQJq0Qq9X4/describe + uri: https://api.dnanexus.com/file-FPfB7FQ00yy97J1X14967vKx/describe response: - body: {string: '{"id":"file-FP9kK280gp1PxYfQJq0Qq9X4","project":"project-FP9kK280gp15vgj6Jkpx4b3V","class":"file","sponsored":false,"name":"temp_file.txt","types":[],"state":"closed","hidden":false,"links":[],"folder":"/temp_folder","tags":[],"created":1540593417000,"modified":1540593419522,"createdBy":{"user":"user-akumar_counsyl"},"media":"text/plain","archivalState":"live","size":4}'} + body: {string: '{"id":"file-FPfB7FQ00yy97J1X14967vKx","project":"project-FPfB7F800yy97J1X14967vKv","class":"file","sponsored":false,"name":"temp_file.txt","types":[],"state":"closed","hidden":false,"links":[],"folder":"/temp_folder","tags":[],"created":1542235054000,"modified":1542235055858,"createdBy":{"user":"user-akumar_counsyl"},"media":"text/plain","archivalState":"live","size":4}'} headers: Connection: [keep-alive] Content-Length: ['372'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:37:02 GMT'] + Date: ['Wed, 14 Nov 2018 22:37:40 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593422511-653042] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235060335-153276] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"project": "project-FP9kK380Z8QPxYfQJq0Qq9X6", "name": "random.txt"}' + body: '{"project": "project-FPfB7G80jKpq5kgg14V3yG89", "name": "random.txt"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -751,19 +751,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kK280gp1PxYfQJq0Qq9X4/rename + uri: https://api.dnanexus.com/file-FPfB7FQ00yy97J1X14967vKx/rename response: - body: {string: '{"id":"file-FP9kK280gp1PxYfQJq0Qq9X4"}'} + body: {string: '{"id":"file-FPfB7FQ00yy97J1X14967vKx"}'} headers: Connection: [keep-alive] Content-Length: ['38'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:37:02 GMT'] + Date: ['Wed, 14 Nov 2018 22:37:40 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593422636-668571] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235060437-833265] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -790,21 +790,21 @@ interactions: method: POST uri: https://api.dnanexus.com/system/findProjects response: - body: {string: '{"results":[{"id":"project-FP9kK380Z8QPxYfQJq0Qq9X6","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} + body: {string: '{"results":[{"id":"project-FPfB7G80jKpq5kgg14V3yG89","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} headers: Connection: [keep-alive] Content-Length: ['147'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:37:02 GMT'] + Date: ['Wed, 14 Nov 2018 22:37:40 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593422749-535789] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235060555-110772] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"objects": [{"name": "random.txt", "folder": "/", "project": "project-FP9kK380Z8QPxYfQJq0Qq9X6", + body: '{"objects": [{"name": "random.txt", "folder": "/", "project": "project-FPfB7G80jKpq5kgg14V3yG89", "batchsize": 2}]}' headers: ? !!binary | @@ -827,21 +827,21 @@ interactions: method: POST uri: https://api.dnanexus.com/system/resolveDataObjects response: - body: {string: '{"results":[[{"project":"project-FP9kK380Z8QPxYfQJq0Qq9X6","id":"file-FP9kK280gp1PxYfQJq0Qq9X4"}]]}'} + body: {string: '{"results":[[{"project":"project-FPfB7G80jKpq5kgg14V3yG89","id":"file-FPfB7FQ00yy97J1X14967vKx"}]]}'} headers: Connection: [keep-alive] Content-Length: ['99'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:37:03 GMT'] + Date: ['Wed, 14 Nov 2018 22:37:40 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593422922-297558] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235060680-477213] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"project": "project-FP9kK380Z8QPxYfQJq0Qq9X6"}' + body: '{"project": "project-FPfB7G80jKpq5kgg14V3yG89"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -861,19 +861,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kK280gp1PxYfQJq0Qq9X4/describe + uri: https://api.dnanexus.com/file-FPfB7FQ00yy97J1X14967vKx/describe response: - body: {string: '{"id":"file-FP9kK280gp1PxYfQJq0Qq9X4","project":"project-FP9kK380Z8QPxYfQJq0Qq9X6","class":"file","sponsored":false,"name":"random.txt","types":[],"state":"closed","hidden":false,"links":[],"folder":"/","tags":[],"created":1540593417000,"modified":1540593422646,"createdBy":{"user":"user-akumar_counsyl"},"media":"text/plain","archivalState":"live","size":4}'} + body: {string: '{"id":"file-FPfB7FQ00yy97J1X14967vKx","project":"project-FPfB7G80jKpq5kgg14V3yG89","class":"file","sponsored":false,"name":"random.txt","types":[],"state":"closed","hidden":false,"links":[],"folder":"/","tags":[],"created":1542235054000,"modified":1542235060460,"createdBy":{"user":"user-akumar_counsyl"},"media":"text/plain","archivalState":"live","size":4}'} headers: Connection: [keep-alive] Content-Length: ['358'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:37:03 GMT'] + Date: ['Wed, 14 Nov 2018 22:37:40 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593423124-847018] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235060782-299968] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -897,19 +897,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kK380Z8QPxYfQJq0Qq9X6/destroy + uri: https://api.dnanexus.com/project-FPfB7G80jKpq5kgg14V3yG89/destroy response: - body: {string: '{"id":"project-FP9kK380Z8QPxYfQJq0Qq9X6"}'} + body: {string: '{"id":"project-FPfB7G80jKpq5kgg14V3yG89"}'} headers: Connection: [keep-alive] Content-Length: ['41'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:37:06 GMT'] + Date: ['Wed, 14 Nov 2018 22:37:43 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593423316-614595] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235060898-897168] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -933,19 +933,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kK280gp15vgj6Jkpx4b3V/destroy + uri: https://api.dnanexus.com/project-FPfB7F800yy97J1X14967vKv/destroy response: - body: {string: '{"id":"project-FP9kK280gp15vgj6Jkpx4b3V"}'} + body: {string: '{"id":"project-FPfB7F800yy97J1X14967vKv"}'} headers: Connection: [keep-alive] Content-Length: ['41'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:37:08 GMT'] + Date: ['Wed, 14 Nov 2018 22:37:45 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593426308-488987] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235063643-367538] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} version: 1 diff --git a/stor/tests/cassettes_py3/TestCopy/test_dx_dir_to_posix_error.yaml b/stor_dx/stor_dx/tests/cassettes_py3/TestCopy/test_dx_dir_to_posix_error.yaml similarity index 73% rename from stor/tests/cassettes_py3/TestCopy/test_dx_dir_to_posix_error.yaml rename to stor_dx/stor_dx/tests/cassettes_py3/TestCopy/test_dx_dir_to_posix_error.yaml index 7d750b53..a467b10b 100644 --- a/stor/tests/cassettes_py3/TestCopy/test_dx_dir_to_posix_error.yaml +++ b/stor_dx/stor_dx/tests/cassettes_py3/TestCopy/test_dx_dir_to_posix_error.yaml @@ -1,6 +1,6 @@ interactions: - request: - body: '{"name": "TestCopy.test_dx_dir_to_posix_error.d4cc8414"}' + body: '{"name": "TestCopy.test_dx_dir_to_posix_error.3d961778"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -22,17 +22,17 @@ interactions: method: POST uri: https://api.dnanexus.com/project/new response: - body: {string: '{"id":"project-FP9kK58069QzxYfQJq0Qq9X7"}'} + body: {string: '{"id":"project-FPfB91j0vZ344Y2v3YJZF81g"}'} headers: Connection: [keep-alive] Content-Length: ['41'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:37:09 GMT'] + Date: ['Wed, 14 Nov 2018 22:41:11 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593429423-203664] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235271030-593228] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -56,19 +56,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kK58069QzxYfQJq0Qq9X7/describe + uri: https://api.dnanexus.com/project-FPfB91j0vZ344Y2v3YJZF81g/describe response: - body: {string: '{"id":"project-FP9kK58069QzxYfQJq0Qq9X7","name":"TestCopy.test_dx_dir_to_posix_error.d4cc8414","class":"project","created":1540593429000,"modified":1540593429000,"billTo":"org-counsyl","level":"ADMINISTER","dataUsage":0,"sponsoredDataUsage":0,"region":"aws:us-east-1","summary":"","description":"","protected":false,"restricted":false,"downloadRestricted":false,"containsPHI":false,"createdBy":{"user":"user-akumar_counsyl"},"version":0,"storageCost":0,"pendingTransfer":null,"tags":[],"defaultInstanceType":"mem2_hdd2_x2","archivalState":"live","archivalProgress":null,"totalSponsoredEgressBytes":0,"consumedSponsoredEgressBytes":0,"atSpendingLimit":false}'} + body: {string: '{"id":"project-FPfB91j0vZ344Y2v3YJZF81g","name":"TestCopy.test_dx_dir_to_posix_error.3d961778","class":"project","created":1542235271000,"modified":1542235271000,"billTo":"org-counsyl","level":"ADMINISTER","dataUsage":0,"sponsoredDataUsage":0,"region":"aws:us-east-1","summary":"","description":"","protected":false,"restricted":false,"downloadRestricted":false,"containsPHI":false,"createdBy":{"user":"user-akumar_counsyl"},"version":0,"storageCost":0,"pendingTransfer":null,"tags":[],"defaultInstanceType":"mem2_hdd2_x2","archivalState":"live","archivalProgress":null,"totalSponsoredEgressBytes":0,"consumedSponsoredEgressBytes":0,"atSpendingLimit":false}'} headers: Connection: [keep-alive] Content-Length: ['657'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:37:10 GMT'] + Date: ['Wed, 14 Nov 2018 22:41:11 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593429873-631774] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235271165-734831] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -92,24 +92,24 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kK58069QzxYfQJq0Qq9X7/newFolder + uri: https://api.dnanexus.com/project-FPfB91j0vZ344Y2v3YJZF81g/newFolder response: - body: {string: '{"id":"project-FP9kK58069QzxYfQJq0Qq9X7"}'} + body: {string: '{"id":"project-FPfB91j0vZ344Y2v3YJZF81g"}'} headers: Connection: [keep-alive] Content-Length: ['41'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:37:10 GMT'] + Date: ['Wed, 14 Nov 2018 22:41:11 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593430329-56367] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235271278-866743] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"name": "folder_file.txt", "folder": "/temp_folder", "project": "project-FP9kK58069QzxYfQJq0Qq9X7", - "nonce": "b''921c829bf81f3c17daff82fc4a7ba34c9052af3ed79cc08338eeee0813d6a815''1540593430.426003"}' + body: '{"name": "folder_file.txt", "folder": "/temp_folder", "project": "project-FPfB91j0vZ344Y2v3YJZF81g", + "nonce": "b''bd6432c7562a90c873c36e739a7f05947b7dec4fec85bd07d1eb22addf097247''1542235271.327842"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -131,17 +131,17 @@ interactions: method: POST uri: https://api.dnanexus.com/file/new response: - body: {string: '{"id":"file-FP9kK5Q069QqPYg95F286zK5"}'} + body: {string: '{"id":"file-FPfB91j0vZ329yPf3YzJbGZ6"}'} headers: Connection: [keep-alive] Content-Length: ['38'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:37:10 GMT'] + Date: ['Wed, 14 Nov 2018 22:41:11 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593430477-831790] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235271375-508311] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -165,19 +165,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kK58069QzxYfQJq0Qq9X7/describe + uri: https://api.dnanexus.com/project-FPfB91j0vZ344Y2v3YJZF81g/describe response: - body: {string: '{"id":"project-FP9kK58069QzxYfQJq0Qq9X7","fileUploadParameters":{"maximumPartSize":5368709120,"minimumPartSize":5242880,"maximumFileSize":5497558138880,"maximumNumParts":10000,"emptyLastPartAllowed":true}}'} + body: {string: '{"id":"project-FPfB91j0vZ344Y2v3YJZF81g","fileUploadParameters":{"maximumPartSize":5368709120,"minimumPartSize":5242880,"maximumFileSize":5497558138880,"maximumNumParts":10000,"emptyLastPartAllowed":true}}'} headers: Connection: [keep-alive] Content-Length: ['205'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:37:10 GMT'] + Date: ['Wed, 14 Nov 2018 22:41:11 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593430671-159805] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235271520-475820] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -201,19 +201,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kK5Q069QqPYg95F286zK5/upload + uri: https://api.dnanexus.com/file-FPfB91j0vZ329yPf3YzJbGZ6/upload response: - body: {string: '{"url":"https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/2143/file/open/file-FP9kK5Q069QqPYg95F286zK5/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181026%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181026T223710Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=cd8d20a6ab2325c5c99b9ca8b3801e2056875573adf487589a1ebb1ccc8875d1","headers":{"host":"dnanexus-platform-upload-prod.s3.amazonaws.com","content-type":"binary/octet-stream","x-amz-server-side-encryption":"AES256","content-md5":"jXd/OF09/siBXSD3SWAm3A==","content-length":"4"},"expires":1540593550841}'} + body: {string: '{"url":"https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/4e63/file/open/file-FPfB91j0vZ329yPf3YzJbGZ6/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181114%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181114T224111Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=961987be49bc3479eed6951ccd9225b78e5f9a1cfc9953ef68a835e13d791bf9","headers":{"host":"dnanexus-platform-upload-prod.s3.amazonaws.com","content-type":"binary/octet-stream","x-amz-server-side-encryption":"AES256","content-md5":"jXd/OF09/siBXSD3SWAm3A==","content-length":"4"},"expires":1542235391638}'} headers: Connection: [keep-alive] Content-Length: ['692'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:37:10 GMT'] + Date: ['Wed, 14 Nov 2018 22:41:11 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593430810-852256] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235271626-772232] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -241,21 +241,21 @@ interactions: : - !!binary | QUVTMjU2 method: PUT - uri: https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/2143/file/open/file-FP9kK5Q069QqPYg95F286zK5/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181026%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181026T223710Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=cd8d20a6ab2325c5c99b9ca8b3801e2056875573adf487589a1ebb1ccc8875d1 + uri: https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/4e63/file/open/file-FPfB91j0vZ329yPf3YzJbGZ6/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181114%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181114T224111Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=961987be49bc3479eed6951ccd9225b78e5f9a1cfc9953ef68a835e13d791bf9 response: body: {string: ''} headers: Content-Length: ['0'] - Date: ['Fri, 26 Oct 2018 22:37:12 GMT'] + Date: ['Wed, 14 Nov 2018 22:41:13 GMT'] ETag: ['"8d777f385d3dfec8815d20f7496026dc"'] Server: [AmazonS3] - x-amz-expiration: ['expiry-date="Sat, 17 Nov 2018 00:00:00 GMT", rule-id="3weekpurge"'] - x-amz-id-2: [g9g3md6zMI1L1BFvM42NsDl2+PM7Eih9BUSiJuTZI01oim5G10yTWtQC5ntHrqUzL0xBeMJfDRc=] - x-amz-request-id: [12B8FDD146547F98] + x-amz-expiration: ['expiry-date="Thu, 06 Dec 2018 00:00:00 GMT", rule-id="3weekpurge"'] + x-amz-id-2: [IbzYQhKCHDsb2O1CcuSpO66vkY2svVUb61xKa8koMIznPlJ+yjCh8o6Zg1mFKX2BQ3PJoBdM/XY=] + x-amz-request-id: [E0954E778FDCFF26] x-amz-server-side-encryption: [AES256] status: {code: 200, message: OK} - request: - body: '{"fields": {"state": true}, "project": "project-FP9kK58069QzxYfQJq0Qq9X7"}' + body: '{"fields": {"state": true}, "project": "project-FPfB91j0vZ344Y2v3YJZF81g"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -275,19 +275,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kK5Q069QqPYg95F286zK5/describe + uri: https://api.dnanexus.com/file-FPfB91j0vZ329yPf3YzJbGZ6/describe response: - body: {string: '{"id":"file-FP9kK5Q069QqPYg95F286zK5","state":"open"}'} + body: {string: '{"id":"file-FPfB91j0vZ329yPf3YzJbGZ6","state":"open"}'} headers: Connection: [keep-alive] Content-Length: ['53'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:37:11 GMT'] + Date: ['Wed, 14 Nov 2018 22:41:12 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593431403-589273] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235272113-574458] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -311,23 +311,23 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kK5Q069QqPYg95F286zK5/close + uri: https://api.dnanexus.com/file-FPfB91j0vZ329yPf3YzJbGZ6/close response: - body: {string: '{"id":"file-FP9kK5Q069QqPYg95F286zK5"}'} + body: {string: '{"id":"file-FPfB91j0vZ329yPf3YzJbGZ6"}'} headers: Connection: [keep-alive] Content-Length: ['38'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:37:11 GMT'] + Date: ['Wed, 14 Nov 2018 22:41:12 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593431582-73787] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235272230-940055] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"fields": {"state": true}, "project": "project-FP9kK58069QzxYfQJq0Qq9X7"}' + body: '{"fields": {"state": true}, "project": "project-FPfB91j0vZ344Y2v3YJZF81g"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -347,23 +347,23 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kK5Q069QqPYg95F286zK5/describe + uri: https://api.dnanexus.com/file-FPfB91j0vZ329yPf3YzJbGZ6/describe response: - body: {string: '{"id":"file-FP9kK5Q069QqPYg95F286zK5","state":"closing"}'} + body: {string: '{"id":"file-FPfB91j0vZ329yPf3YzJbGZ6","state":"closing"}'} headers: Connection: [keep-alive] Content-Length: ['56'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:37:11 GMT'] + Date: ['Wed, 14 Nov 2018 22:41:12 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593431726-725328] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235272356-611553] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"fields": {"state": true}, "project": "project-FP9kK58069QzxYfQJq0Qq9X7"}' + body: '{"fields": {"state": true}, "project": "project-FPfB91j0vZ344Y2v3YJZF81g"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -383,23 +383,23 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kK5Q069QqPYg95F286zK5/describe + uri: https://api.dnanexus.com/file-FPfB91j0vZ329yPf3YzJbGZ6/describe response: - body: {string: '{"id":"file-FP9kK5Q069QqPYg95F286zK5","state":"closed"}'} + body: {string: '{"id":"file-FPfB91j0vZ329yPf3YzJbGZ6","state":"closed"}'} headers: Connection: [keep-alive] Content-Length: ['55'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:37:13 GMT'] + Date: ['Wed, 14 Nov 2018 22:41:14 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593433912-373799] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235274460-384448] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"name": "TestCopy.test_dx_dir_to_posix_error.d4cc8414", "level": "VIEW", + body: '{"name": "TestCopy.test_dx_dir_to_posix_error.3d961778", "level": "VIEW", "limit": 2}' headers: ? !!binary | @@ -422,21 +422,21 @@ interactions: method: POST uri: https://api.dnanexus.com/system/findProjects response: - body: {string: '{"results":[{"id":"project-FP9kK58069QzxYfQJq0Qq9X7","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} + body: {string: '{"results":[{"id":"project-FPfB91j0vZ344Y2v3YJZF81g","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} headers: Connection: [keep-alive] Content-Length: ['147'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:37:14 GMT'] + Date: ['Wed, 14 Nov 2018 22:41:14 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593434067-693659] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235274640-201674] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"objects": [{"name": "temp_folder", "folder": "/", "project": "project-FP9kK58069QzxYfQJq0Qq9X7", + body: '{"objects": [{"name": "temp_folder", "folder": "/", "project": "project-FPfB91j0vZ344Y2v3YJZF81g", "batchsize": 2}]}' headers: ? !!binary | @@ -464,12 +464,12 @@ interactions: Connection: [keep-alive] Content-Length: ['16'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:37:14 GMT'] + Date: ['Wed, 14 Nov 2018 22:41:14 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593434225-234311] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235274753-92438] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -493,19 +493,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kK58069QzxYfQJq0Qq9X7/destroy + uri: https://api.dnanexus.com/project-FPfB91j0vZ344Y2v3YJZF81g/destroy response: - body: {string: '{"id":"project-FP9kK58069QzxYfQJq0Qq9X7"}'} + body: {string: '{"id":"project-FPfB91j0vZ344Y2v3YJZF81g"}'} headers: Connection: [keep-alive] Content-Length: ['41'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:37:17 GMT'] + Date: ['Wed, 14 Nov 2018 22:41:17 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593434366-840837] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235274906-655153] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} version: 1 diff --git a/stor/tests/cassettes_py3/TestCopy/test_dx_to_dx_diff_project_exist_file.yaml b/stor_dx/stor_dx/tests/cassettes_py3/TestCopy/test_dx_to_dx_diff_project_exist_file.yaml similarity index 74% rename from stor/tests/cassettes_py3/TestCopy/test_dx_to_dx_diff_project_exist_file.yaml rename to stor_dx/stor_dx/tests/cassettes_py3/TestCopy/test_dx_to_dx_diff_project_exist_file.yaml index 1d18e2f6..28cd2505 100644 --- a/stor/tests/cassettes_py3/TestCopy/test_dx_to_dx_diff_project_exist_file.yaml +++ b/stor_dx/stor_dx/tests/cassettes_py3/TestCopy/test_dx_to_dx_diff_project_exist_file.yaml @@ -1,6 +1,6 @@ interactions: - request: - body: '{"name": "TestCopy.test_dx_to_dx_diff_project_exist_file.d6f23486"}' + body: '{"name": "TestCopy.test_dx_to_dx_diff_project_exist_file.8ac1f436"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -22,17 +22,17 @@ interactions: method: POST uri: https://api.dnanexus.com/project/new response: - body: {string: '{"id":"project-FP9kK780p5BPvv365P3k8Zxv"}'} + body: {string: '{"id":"project-FPfB93Q03k2959y42bqVv4pB"}'} headers: Connection: [keep-alive] Content-Length: ['41'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:37:17 GMT'] + Date: ['Wed, 14 Nov 2018 22:41:18 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593437601-852624] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235278203-832397] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -56,19 +56,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kK780p5BPvv365P3k8Zxv/describe + uri: https://api.dnanexus.com/project-FPfB93Q03k2959y42bqVv4pB/describe response: - body: {string: '{"id":"project-FP9kK780p5BPvv365P3k8Zxv","name":"TestCopy.test_dx_to_dx_diff_project_exist_file.d6f23486","class":"project","created":1540593437000,"modified":1540593437000,"billTo":"org-counsyl","level":"ADMINISTER","dataUsage":0,"sponsoredDataUsage":0,"region":"aws:us-east-1","summary":"","description":"","protected":false,"restricted":false,"downloadRestricted":false,"containsPHI":false,"createdBy":{"user":"user-akumar_counsyl"},"version":0,"storageCost":0,"pendingTransfer":null,"tags":[],"defaultInstanceType":"mem2_hdd2_x2","archivalState":"live","archivalProgress":null,"totalSponsoredEgressBytes":0,"consumedSponsoredEgressBytes":0,"atSpendingLimit":false}'} + body: {string: '{"id":"project-FPfB93Q03k2959y42bqVv4pB","name":"TestCopy.test_dx_to_dx_diff_project_exist_file.8ac1f436","class":"project","created":1542235278000,"modified":1542235278000,"billTo":"org-counsyl","level":"ADMINISTER","dataUsage":0,"sponsoredDataUsage":0,"region":"aws:us-east-1","summary":"","description":"","protected":false,"restricted":false,"downloadRestricted":false,"containsPHI":false,"createdBy":{"user":"user-akumar_counsyl"},"version":0,"storageCost":0,"pendingTransfer":null,"tags":[],"defaultInstanceType":"mem2_hdd2_x2","archivalState":"live","archivalProgress":null,"totalSponsoredEgressBytes":0,"consumedSponsoredEgressBytes":0,"atSpendingLimit":false}'} headers: Connection: [keep-alive] Content-Length: ['668'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:37:17 GMT'] + Date: ['Wed, 14 Nov 2018 22:41:18 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593437785-304629] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235278314-771784] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -92,24 +92,24 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kK780p5BPvv365P3k8Zxv/newFolder + uri: https://api.dnanexus.com/project-FPfB93Q03k2959y42bqVv4pB/newFolder response: - body: {string: '{"id":"project-FP9kK780p5BPvv365P3k8Zxv"}'} + body: {string: '{"id":"project-FPfB93Q03k2959y42bqVv4pB"}'} headers: Connection: [keep-alive] Content-Length: ['41'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:37:17 GMT'] + Date: ['Wed, 14 Nov 2018 22:41:18 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593437926-483373] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235278443-947120] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"name": "folder_file.txt", "folder": "/temp_folder", "project": "project-FP9kK780p5BPvv365P3k8Zxv", - "nonce": "b''90144fb52971db29929d6249d122aa881c8715aaa7b925a1c6b280ae4e003d7f''1540593438.011526"}' + body: '{"name": "folder_file.txt", "folder": "/temp_folder", "project": "project-FPfB93Q03k2959y42bqVv4pB", + "nonce": "b''8f9ec97f973a3fcffd2328a97c1302ab0f983686100dd7e22a201d0dcd531cdb''1542235278.518483"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -131,17 +131,17 @@ interactions: method: POST uri: https://api.dnanexus.com/file/new response: - body: {string: '{"id":"file-FP9kK7Q0p5B5vgj6Jkpx4b3Y"}'} + body: {string: '{"id":"file-FPfB93Q03k2959y42bqVv4pF"}'} headers: Connection: [keep-alive] Content-Length: ['38'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:37:18 GMT'] + Date: ['Wed, 14 Nov 2018 22:41:18 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593438056-930453] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235278564-361603] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -165,19 +165,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kK780p5BPvv365P3k8Zxv/describe + uri: https://api.dnanexus.com/project-FPfB93Q03k2959y42bqVv4pB/describe response: - body: {string: '{"id":"project-FP9kK780p5BPvv365P3k8Zxv","fileUploadParameters":{"maximumPartSize":5368709120,"minimumPartSize":5242880,"maximumFileSize":5497558138880,"maximumNumParts":10000,"emptyLastPartAllowed":true}}'} + body: {string: '{"id":"project-FPfB93Q03k2959y42bqVv4pB","fileUploadParameters":{"maximumPartSize":5368709120,"minimumPartSize":5242880,"maximumFileSize":5497558138880,"maximumNumParts":10000,"emptyLastPartAllowed":true}}'} headers: Connection: [keep-alive] Content-Length: ['205'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:37:18 GMT'] + Date: ['Wed, 14 Nov 2018 22:41:18 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593438286-789600] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235278733-527207] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -201,19 +201,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kK7Q0p5B5vgj6Jkpx4b3Y/upload + uri: https://api.dnanexus.com/file-FPfB93Q03k2959y42bqVv4pF/upload response: - body: {string: '{"url":"https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/1333/file/open/file-FP9kK7Q0p5B5vgj6Jkpx4b3Y/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181026%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181026T223718Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=1f5c161e13a2a8987389f83b558ff1d08c183c7133012775f3984fc7d0f991de","headers":{"host":"dnanexus-platform-upload-prod.s3.amazonaws.com","content-type":"binary/octet-stream","x-amz-server-side-encryption":"AES256","content-md5":"c9//V/4k6Ae9T7G8TgfNcw==","content-length":"5"},"expires":1540593558575}'} + body: {string: '{"url":"https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/fb70/file/open/file-FPfB93Q03k2959y42bqVv4pF/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181114%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181114T224118Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=6d9016463d356cfaf041e74269d4b4baa458b561c013d51a971756bd0330e569","headers":{"host":"dnanexus-platform-upload-prod.s3.amazonaws.com","content-type":"binary/octet-stream","x-amz-server-side-encryption":"AES256","content-md5":"c9//V/4k6Ae9T7G8TgfNcw==","content-length":"5"},"expires":1542235398899}'} headers: Connection: [keep-alive] Content-Length: ['692'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:37:18 GMT'] + Date: ['Wed, 14 Nov 2018 22:41:18 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593438557-919983] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235278876-546785] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -241,21 +241,21 @@ interactions: : - !!binary | QUVTMjU2 method: PUT - uri: https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/1333/file/open/file-FP9kK7Q0p5B5vgj6Jkpx4b3Y/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181026%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181026T223718Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=1f5c161e13a2a8987389f83b558ff1d08c183c7133012775f3984fc7d0f991de + uri: https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/fb70/file/open/file-FPfB93Q03k2959y42bqVv4pF/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181114%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181114T224118Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=6d9016463d356cfaf041e74269d4b4baa458b561c013d51a971756bd0330e569 response: body: {string: ''} headers: Content-Length: ['0'] - Date: ['Fri, 26 Oct 2018 22:37:20 GMT'] + Date: ['Wed, 14 Nov 2018 22:41:20 GMT'] ETag: ['"73dfff57fe24e807bd4fb1bc4e07cd73"'] Server: [AmazonS3] - x-amz-expiration: ['expiry-date="Sat, 17 Nov 2018 00:00:00 GMT", rule-id="3weekpurge"'] - x-amz-id-2: [5ZKCYBODZvXgtN5osc1eD2UMNDID9hTsIS65P6kgX9CxIo9DqUiEkHaczlrYafaw/EcPTahD8f4=] - x-amz-request-id: [095D4873C371E657] + x-amz-expiration: ['expiry-date="Thu, 06 Dec 2018 00:00:00 GMT", rule-id="3weekpurge"'] + x-amz-id-2: [LkWr69SmnIFP3F1LwM0QqofDUToVVNPpvp3tAEigr3/pW6dHqaSy2/cHXP9lOKAoHK1w8noUgfQ=] + x-amz-request-id: [073AE83C4407CDF5] x-amz-server-side-encryption: [AES256] status: {code: 200, message: OK} - request: - body: '{"fields": {"state": true}, "project": "project-FP9kK780p5BPvv365P3k8Zxv"}' + body: '{"fields": {"state": true}, "project": "project-FPfB93Q03k2959y42bqVv4pB"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -275,19 +275,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kK7Q0p5B5vgj6Jkpx4b3Y/describe + uri: https://api.dnanexus.com/file-FPfB93Q03k2959y42bqVv4pF/describe response: - body: {string: '{"id":"file-FP9kK7Q0p5B5vgj6Jkpx4b3Y","state":"open"}'} + body: {string: '{"id":"file-FPfB93Q03k2959y42bqVv4pF","state":"open"}'} headers: Connection: [keep-alive] Content-Length: ['53'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:37:19 GMT'] + Date: ['Wed, 14 Nov 2018 22:41:19 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593439177-855095] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235279329-632581] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -311,19 +311,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kK7Q0p5B5vgj6Jkpx4b3Y/close + uri: https://api.dnanexus.com/file-FPfB93Q03k2959y42bqVv4pF/close response: - body: {string: '{"id":"file-FP9kK7Q0p5B5vgj6Jkpx4b3Y"}'} + body: {string: '{"id":"file-FPfB93Q03k2959y42bqVv4pF"}'} headers: Connection: [keep-alive] Content-Length: ['38'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:37:19 GMT'] + Date: ['Wed, 14 Nov 2018 22:41:19 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593439556-440060] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235279439-796449] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -349,17 +349,17 @@ interactions: method: POST uri: https://api.dnanexus.com/project/new response: - body: {string: '{"id":"project-FP9kK7j0QkB5VJvpJkZZ2f8b"}'} + body: {string: '{"id":"project-FPfB93j07G604YP22fGQX3PY"}'} headers: Connection: [keep-alive] Content-Length: ['41'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:37:20 GMT'] + Date: ['Wed, 14 Nov 2018 22:41:19 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593439957-876582] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235279636-78132] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -383,24 +383,24 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kK7j0QkB5VJvpJkZZ2f8b/newFolder + uri: https://api.dnanexus.com/project-FPfB93j07G604YP22fGQX3PY/newFolder response: - body: {string: '{"id":"project-FP9kK7j0QkB5VJvpJkZZ2f8b"}'} + body: {string: '{"id":"project-FPfB93j07G604YP22fGQX3PY"}'} headers: Connection: [keep-alive] Content-Length: ['41'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:37:20 GMT'] + Date: ['Wed, 14 Nov 2018 22:41:19 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593440123-938106] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235279764-856984] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"name": "folder_file.txt", "folder": "/folder2", "project": "project-FP9kK7j0QkB5VJvpJkZZ2f8b", - "nonce": "b''9252f4c33112c7a9a0f8e55b806f86be56b5001163bd33d90df349dd08b729df''1540593440.197715"}' + body: '{"name": "folder_file.txt", "folder": "/folder2", "project": "project-FPfB93j07G604YP22fGQX3PY", + "nonce": "b''2a39ff54499fc3718bf33188beee86ab3d404508dd277aca5af3855fcba9182a''1542235279.846890"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -422,17 +422,17 @@ interactions: method: POST uri: https://api.dnanexus.com/file/new response: - body: {string: '{"id":"file-FP9kK800QkBGf62VJp1k8pFx"}'} + body: {string: '{"id":"file-FPfB93j07G6959y42bqVv4pJ"}'} headers: Connection: [keep-alive] Content-Length: ['38'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:37:20 GMT'] + Date: ['Wed, 14 Nov 2018 22:41:20 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593440291-880] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235279900-846330] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -456,19 +456,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kK7j0QkB5VJvpJkZZ2f8b/describe + uri: https://api.dnanexus.com/project-FPfB93j07G604YP22fGQX3PY/describe response: - body: {string: '{"id":"project-FP9kK7j0QkB5VJvpJkZZ2f8b","fileUploadParameters":{"maximumPartSize":5368709120,"minimumPartSize":5242880,"maximumFileSize":5497558138880,"maximumNumParts":10000,"emptyLastPartAllowed":true}}'} + body: {string: '{"id":"project-FPfB93j07G604YP22fGQX3PY","fileUploadParameters":{"maximumPartSize":5368709120,"minimumPartSize":5242880,"maximumFileSize":5497558138880,"maximumNumParts":10000,"emptyLastPartAllowed":true}}'} headers: Connection: [keep-alive] Content-Length: ['205'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:37:20 GMT'] + Date: ['Wed, 14 Nov 2018 22:41:20 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593440638-256926] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235280139-603853] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -492,19 +492,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kK800QkBGf62VJp1k8pFx/upload + uri: https://api.dnanexus.com/file-FPfB93j07G6959y42bqVv4pJ/upload response: - body: {string: '{"url":"https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/b27a/file/open/file-FP9kK800QkBGf62VJp1k8pFx/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181026%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181026T223720Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=d6b82a46396e3e153b756a00cadc2819f1d0ab8eebfb0c700d49fdccb3664a4a","headers":{"host":"dnanexus-platform-upload-prod.s3.amazonaws.com","content-type":"binary/octet-stream","x-amz-server-side-encryption":"AES256","content-md5":"jXd/OF09/siBXSD3SWAm3A==","content-length":"4"},"expires":1540593560922}'} + body: {string: '{"url":"https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/d1ab/file/open/file-FPfB93j07G6959y42bqVv4pJ/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181114%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181114T224120Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=f659410569ae73cff9ef63f2f3bd1c62bbbff41c0c6e0f030483650d3623363f","headers":{"host":"dnanexus-platform-upload-prod.s3.amazonaws.com","content-type":"binary/octet-stream","x-amz-server-side-encryption":"AES256","content-md5":"jXd/OF09/siBXSD3SWAm3A==","content-length":"4"},"expires":1542235400433}'} headers: Connection: [keep-alive] Content-Length: ['692'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:37:20 GMT'] + Date: ['Wed, 14 Nov 2018 22:41:20 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593440878-293886] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235280413-979037] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -532,21 +532,21 @@ interactions: : - !!binary | QUVTMjU2 method: PUT - uri: https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/b27a/file/open/file-FP9kK800QkBGf62VJp1k8pFx/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181026%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181026T223720Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=d6b82a46396e3e153b756a00cadc2819f1d0ab8eebfb0c700d49fdccb3664a4a + uri: https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/d1ab/file/open/file-FPfB93j07G6959y42bqVv4pJ/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181114%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181114T224120Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=f659410569ae73cff9ef63f2f3bd1c62bbbff41c0c6e0f030483650d3623363f response: body: {string: ''} headers: Content-Length: ['0'] - Date: ['Fri, 26 Oct 2018 22:37:22 GMT'] + Date: ['Wed, 14 Nov 2018 22:41:21 GMT'] ETag: ['"8d777f385d3dfec8815d20f7496026dc"'] Server: [AmazonS3] - x-amz-expiration: ['expiry-date="Sat, 17 Nov 2018 00:00:00 GMT", rule-id="3weekpurge"'] - x-amz-id-2: [l3VRbt2RSgdb3Bn4ZctD/M70BgbFfvA36IhWvCUeVb1qEpsqwnPPe4IFsCK+7CBTIk/tg7eXDRw=] - x-amz-request-id: [372F2ABDF3AF6AB5] + x-amz-expiration: ['expiry-date="Thu, 06 Dec 2018 00:00:00 GMT", rule-id="3weekpurge"'] + x-amz-id-2: [veY4o+MCMm6h//Mf9PCEZshjKtGlbxfREJD0I4nKEhADidMNjhjnppTsN3VXUR59LldkKpotF8E=] + x-amz-request-id: [5A7FCF1F49DEA5CC] x-amz-server-side-encryption: [AES256] status: {code: 200, message: OK} - request: - body: '{"fields": {"state": true}, "project": "project-FP9kK7j0QkB5VJvpJkZZ2f8b"}' + body: '{"fields": {"state": true}, "project": "project-FPfB93j07G604YP22fGQX3PY"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -566,19 +566,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kK800QkBGf62VJp1k8pFx/describe + uri: https://api.dnanexus.com/file-FPfB93j07G6959y42bqVv4pJ/describe response: - body: {string: '{"id":"file-FP9kK800QkBGf62VJp1k8pFx","state":"open"}'} + body: {string: '{"id":"file-FPfB93j07G6959y42bqVv4pJ","state":"open"}'} headers: Connection: [keep-alive] Content-Length: ['53'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:37:21 GMT'] + Date: ['Wed, 14 Nov 2018 22:41:20 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593441178-937699] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235280916-452126] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -602,23 +602,23 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kK800QkBGf62VJp1k8pFx/close + uri: https://api.dnanexus.com/file-FPfB93j07G6959y42bqVv4pJ/close response: - body: {string: '{"id":"file-FP9kK800QkBGf62VJp1k8pFx"}'} + body: {string: '{"id":"file-FPfB93j07G6959y42bqVv4pJ"}'} headers: Connection: [keep-alive] Content-Length: ['38'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:37:21 GMT'] + Date: ['Wed, 14 Nov 2018 22:41:21 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593441327-252469] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235281091-599683] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"fields": {"state": true}, "project": "project-FP9kK7j0QkB5VJvpJkZZ2f8b"}' + body: '{"fields": {"state": true}, "project": "project-FPfB93j07G604YP22fGQX3PY"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -638,23 +638,23 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kK800QkBGf62VJp1k8pFx/describe + uri: https://api.dnanexus.com/file-FPfB93j07G6959y42bqVv4pJ/describe response: - body: {string: '{"id":"file-FP9kK800QkBGf62VJp1k8pFx","state":"closing"}'} + body: {string: '{"id":"file-FPfB93j07G6959y42bqVv4pJ","state":"closing"}'} headers: Connection: [keep-alive] Content-Length: ['56'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:37:21 GMT'] + Date: ['Wed, 14 Nov 2018 22:41:21 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593441457-43937] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235281279-449843] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"fields": {"state": true}, "project": "project-FP9kK7j0QkB5VJvpJkZZ2f8b"}' + body: '{"fields": {"state": true}, "project": "project-FPfB93j07G604YP22fGQX3PY"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -674,24 +674,24 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kK800QkBGf62VJp1k8pFx/describe + uri: https://api.dnanexus.com/file-FPfB93j07G6959y42bqVv4pJ/describe response: - body: {string: '{"id":"file-FP9kK800QkBGf62VJp1k8pFx","state":"closed"}'} + body: {string: '{"id":"file-FPfB93j07G6959y42bqVv4pJ","state":"closed"}'} headers: Connection: [keep-alive] Content-Length: ['55'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:37:23 GMT'] + Date: ['Wed, 14 Nov 2018 22:41:23 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593443592-128087] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235283534-769995] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"name": "dest_file.txt", "project": "project-FP9kK7j0QkB5VJvpJkZZ2f8b", - "nonce": "b''02264be51ef6c2d6c8f0180b6a1b478bcb70c04d428c3fb4e023bc91b3210e57''1540593443.666689"}' + body: '{"name": "dest_file.txt", "project": "project-FPfB93j07G604YP22fGQX3PY", + "nonce": "b''49095c771856ae9295fc9eb7bd89676192a289b724b44f7dfdd612c146de6125''1542235283.685382"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -713,17 +713,17 @@ interactions: method: POST uri: https://api.dnanexus.com/file/new response: - body: {string: '{"id":"file-FP9kK8j0QkBPxYfQJq0Qq9X8"}'} + body: {string: '{"id":"file-FPfB94j07G6959y42bqVv4pP"}'} headers: Connection: [keep-alive] Content-Length: ['38'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:37:23 GMT'] + Date: ['Wed, 14 Nov 2018 22:41:23 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593443713-369446] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235283786-443662] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -747,19 +747,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kK7j0QkB5VJvpJkZZ2f8b/describe + uri: https://api.dnanexus.com/project-FPfB93j07G604YP22fGQX3PY/describe response: - body: {string: '{"id":"project-FP9kK7j0QkB5VJvpJkZZ2f8b","fileUploadParameters":{"maximumPartSize":5368709120,"minimumPartSize":5242880,"maximumFileSize":5497558138880,"maximumNumParts":10000,"emptyLastPartAllowed":true}}'} + body: {string: '{"id":"project-FPfB93j07G604YP22fGQX3PY","fileUploadParameters":{"maximumPartSize":5368709120,"minimumPartSize":5242880,"maximumFileSize":5497558138880,"maximumNumParts":10000,"emptyLastPartAllowed":true}}'} headers: Connection: [keep-alive] Content-Length: ['205'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:37:23 GMT'] + Date: ['Wed, 14 Nov 2018 22:41:23 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593443890-407017] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235283981-44394] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -783,19 +783,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kK8j0QkBPxYfQJq0Qq9X8/upload + uri: https://api.dnanexus.com/file-FPfB94j07G6959y42bqVv4pP/upload response: - body: {string: '{"url":"https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/ec3d/file/open/file-FP9kK8j0QkBPxYfQJq0Qq9X8/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181026%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181026T223724Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=6417c19eb3156277901e541b6722fa1b36b7ac3f0eb8dab172ba8c6751fa9706","headers":{"host":"dnanexus-platform-upload-prod.s3.amazonaws.com","content-type":"binary/octet-stream","x-amz-server-side-encryption":"AES256","content-md5":"jXd/OF09/siBXSD3SWAm3A==","content-length":"4"},"expires":1540593564022}'} + body: {string: '{"url":"https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/b654/file/open/file-FPfB94j07G6959y42bqVv4pP/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181114%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181114T224124Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=e9d434035ce33cb9ffba445b1db0388e2931a4644e0f10f47c482171fcf27d4e","headers":{"host":"dnanexus-platform-upload-prod.s3.amazonaws.com","content-type":"binary/octet-stream","x-amz-server-side-encryption":"AES256","content-md5":"jXd/OF09/siBXSD3SWAm3A==","content-length":"4"},"expires":1542235404091}'} headers: Connection: [keep-alive] Content-Length: ['692'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:37:24 GMT'] + Date: ['Wed, 14 Nov 2018 22:41:24 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593444006-965033] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235284080-367051] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -823,21 +823,21 @@ interactions: : - !!binary | QUVTMjU2 method: PUT - uri: https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/ec3d/file/open/file-FP9kK8j0QkBPxYfQJq0Qq9X8/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181026%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181026T223724Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=6417c19eb3156277901e541b6722fa1b36b7ac3f0eb8dab172ba8c6751fa9706 + uri: https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/b654/file/open/file-FPfB94j07G6959y42bqVv4pP/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181114%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181114T224124Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=e9d434035ce33cb9ffba445b1db0388e2931a4644e0f10f47c482171fcf27d4e response: body: {string: ''} headers: Content-Length: ['0'] - Date: ['Fri, 26 Oct 2018 22:37:25 GMT'] + Date: ['Wed, 14 Nov 2018 22:41:25 GMT'] ETag: ['"8d777f385d3dfec8815d20f7496026dc"'] Server: [AmazonS3] - x-amz-expiration: ['expiry-date="Sat, 17 Nov 2018 00:00:00 GMT", rule-id="3weekpurge"'] - x-amz-id-2: [SJ2bA1DTOo5sVywTjyzgk5J6x2mWvYOeXsp0Pi7sHltD1c5xQm4wRrn74nnqoXueq+OJxfndVYI=] - x-amz-request-id: [8476152B6124B201] + x-amz-expiration: ['expiry-date="Thu, 06 Dec 2018 00:00:00 GMT", rule-id="3weekpurge"'] + x-amz-id-2: [tt42+a+pKKtapvrdDLWevTF2wc+HwCqUysdevZ058m4nGkgVAHFR6TzOmDAxSJ61qNYR5xIBFHk=] + x-amz-request-id: [BA9179ECB12CBC5B] x-amz-server-side-encryption: [AES256] status: {code: 200, message: OK} - request: - body: '{"fields": {"state": true}, "project": "project-FP9kK7j0QkB5VJvpJkZZ2f8b"}' + body: '{"fields": {"state": true}, "project": "project-FPfB93j07G604YP22fGQX3PY"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -857,19 +857,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kK8j0QkBPxYfQJq0Qq9X8/describe + uri: https://api.dnanexus.com/file-FPfB94j07G6959y42bqVv4pP/describe response: - body: {string: '{"id":"file-FP9kK8j0QkBPxYfQJq0Qq9X8","state":"open"}'} + body: {string: '{"id":"file-FPfB94j07G6959y42bqVv4pP","state":"open"}'} headers: Connection: [keep-alive] Content-Length: ['53'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:37:24 GMT'] + Date: ['Wed, 14 Nov 2018 22:41:24 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593444255-201350] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235284312-835801] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -893,23 +893,23 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kK8j0QkBPxYfQJq0Qq9X8/close + uri: https://api.dnanexus.com/file-FPfB94j07G6959y42bqVv4pP/close response: - body: {string: '{"id":"file-FP9kK8j0QkBPxYfQJq0Qq9X8"}'} + body: {string: '{"id":"file-FPfB94j07G6959y42bqVv4pP"}'} headers: Connection: [keep-alive] Content-Length: ['38'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:37:24 GMT'] + Date: ['Wed, 14 Nov 2018 22:41:24 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593444391-499407] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235284430-417351] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"fields": {"state": true}, "project": "project-FP9kK7j0QkB5VJvpJkZZ2f8b"}' + body: '{"fields": {"state": true}, "project": "project-FPfB93j07G604YP22fGQX3PY"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -929,23 +929,23 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kK8j0QkBPxYfQJq0Qq9X8/describe + uri: https://api.dnanexus.com/file-FPfB94j07G6959y42bqVv4pP/describe response: - body: {string: '{"id":"file-FP9kK8j0QkBPxYfQJq0Qq9X8","state":"closing"}'} + body: {string: '{"id":"file-FPfB94j07G6959y42bqVv4pP","state":"closing"}'} headers: Connection: [keep-alive] Content-Length: ['56'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:37:24 GMT'] + Date: ['Wed, 14 Nov 2018 22:41:24 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593444554-39064] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235284552-372507] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"fields": {"state": true}, "project": "project-FP9kK7j0QkB5VJvpJkZZ2f8b"}' + body: '{"fields": {"state": true}, "project": "project-FPfB93j07G604YP22fGQX3PY"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -965,23 +965,23 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kK8j0QkBPxYfQJq0Qq9X8/describe + uri: https://api.dnanexus.com/file-FPfB94j07G6959y42bqVv4pP/describe response: - body: {string: '{"id":"file-FP9kK8j0QkBPxYfQJq0Qq9X8","state":"closed"}'} + body: {string: '{"id":"file-FPfB94j07G6959y42bqVv4pP","state":"closed"}'} headers: Connection: [keep-alive] Content-Length: ['55'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:37:26 GMT'] + Date: ['Wed, 14 Nov 2018 22:41:26 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593446711-904472] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235286658-106636] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"name": "TestCopy.test_dx_to_dx_diff_project_exist_file.d6f23486", "level": + body: '{"name": "TestCopy.test_dx_to_dx_diff_project_exist_file.8ac1f436", "level": "VIEW", "limit": 2}' headers: ? !!binary | @@ -1004,22 +1004,22 @@ interactions: method: POST uri: https://api.dnanexus.com/system/findProjects response: - body: {string: '{"results":[{"id":"project-FP9kK780p5BPvv365P3k8Zxv","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} + body: {string: '{"results":[{"id":"project-FPfB93Q03k2959y42bqVv4pB","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} headers: Connection: [keep-alive] Content-Length: ['147'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:37:26 GMT'] + Date: ['Wed, 14 Nov 2018 22:41:26 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593446854-237174] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235286787-92629] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: body: '{"objects": [{"name": "folder_file.txt", "folder": "/temp_folder", "project": - "project-FP9kK780p5BPvv365P3k8Zxv", "batchsize": 2}]}' + "project-FPfB93Q03k2959y42bqVv4pB", "batchsize": 2}]}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -1041,21 +1041,21 @@ interactions: method: POST uri: https://api.dnanexus.com/system/resolveDataObjects response: - body: {string: '{"results":[[{"project":"project-FP9kK780p5BPvv365P3k8Zxv","id":"file-FP9kK7Q0p5B5vgj6Jkpx4b3Y"}]]}'} + body: {string: '{"results":[[{"project":"project-FPfB93Q03k2959y42bqVv4pB","id":"file-FPfB93Q03k2959y42bqVv4pF"}]]}'} headers: Connection: [keep-alive] Content-Length: ['99'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:37:27 GMT'] + Date: ['Wed, 14 Nov 2018 22:41:26 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593447019-510909] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235286900-678672] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"project": "project-FP9kK780p5BPvv365P3k8Zxv"}' + body: '{"project": "project-FPfB93Q03k2959y42bqVv4pB"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -1075,19 +1075,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kK7Q0p5B5vgj6Jkpx4b3Y/describe + uri: https://api.dnanexus.com/file-FPfB93Q03k2959y42bqVv4pF/describe response: - body: {string: '{"id":"file-FP9kK7Q0p5B5vgj6Jkpx4b3Y","project":"project-FP9kK780p5BPvv365P3k8Zxv","class":"file","sponsored":false,"name":"folder_file.txt","types":[],"state":"closed","hidden":false,"links":[],"folder":"/temp_folder","tags":[],"created":1540593438000,"modified":1540593440363,"createdBy":{"user":"user-akumar_counsyl"},"media":"text/plain","archivalState":"live","size":5}'} + body: {string: '{"id":"file-FPfB93Q03k2959y42bqVv4pF","project":"project-FPfB93Q03k2959y42bqVv4pB","class":"file","sponsored":false,"name":"folder_file.txt","types":[],"state":"closed","hidden":false,"links":[],"folder":"/temp_folder","tags":[],"created":1542235278000,"modified":1542235280560,"createdBy":{"user":"user-akumar_counsyl"},"media":"text/plain","archivalState":"live","size":5}'} headers: Connection: [keep-alive] Content-Length: ['374'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:37:27 GMT'] + Date: ['Wed, 14 Nov 2018 22:41:27 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593447145-421535] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235286998-829294] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -1114,17 +1114,17 @@ interactions: method: POST uri: https://api.dnanexus.com/system/findProjects response: - body: {string: '{"results":[{"id":"project-FP9kK7j0QkB5VJvpJkZZ2f8b","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} + body: {string: '{"results":[{"id":"project-FPfB93j07G604YP22fGQX3PY","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} headers: Connection: [keep-alive] Content-Length: ['147'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:37:27 GMT'] + Date: ['Wed, 14 Nov 2018 22:41:27 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593447306-787747] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235287098-284987] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -1149,25 +1149,25 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kK7j0QkB5VJvpJkZZ2f8b/listFolder + uri: https://api.dnanexus.com/project-FPfB93j07G604YP22fGQX3PY/listFolder response: body: {string: '{"error":{"type":"ResourceNotFound","message":"The specified folder - could not be found in project-FP9kK7j0QkB5VJvpJkZZ2f8b"}}'} + could not be found in project-FPfB93j07G604YP22fGQX3PY"}}'} headers: Connection: [keep-alive] Content-Type: [application/json] - Date: ['Fri, 26 Oct 2018 22:37:27 GMT'] + Date: ['Wed, 14 Nov 2018 22:41:27 GMT'] Server: [nginx] Transfer-Encoding: [chunked] Vary: [Accept-Encoding] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593447508-915404] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235287229-765072] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 404, message: Not Found} - request: - body: '{"objects": [{"name": "dest_file.txt", "folder": "/", "project": "project-FP9kK7j0QkB5VJvpJkZZ2f8b", + body: '{"objects": [{"name": "dest_file.txt", "folder": "/", "project": "project-FPfB93j07G604YP22fGQX3PY", "batchsize": 2}]}' headers: ? !!binary | @@ -1190,21 +1190,21 @@ interactions: method: POST uri: https://api.dnanexus.com/system/resolveDataObjects response: - body: {string: '{"results":[[{"project":"project-FP9kK7j0QkB5VJvpJkZZ2f8b","id":"file-FP9kK8j0QkBPxYfQJq0Qq9X8"}]]}'} + body: {string: '{"results":[[{"project":"project-FPfB93j07G604YP22fGQX3PY","id":"file-FPfB94j07G6959y42bqVv4pP"}]]}'} headers: Connection: [keep-alive] Content-Length: ['99'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:37:28 GMT'] + Date: ['Wed, 14 Nov 2018 22:41:27 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593447978-255138] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235287584-803801] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"project": "project-FP9kK7j0QkB5VJvpJkZZ2f8b"}' + body: '{"project": "project-FPfB93j07G604YP22fGQX3PY"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -1224,23 +1224,23 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kK8j0QkBPxYfQJq0Qq9X8/describe + uri: https://api.dnanexus.com/file-FPfB94j07G6959y42bqVv4pP/describe response: - body: {string: '{"id":"file-FP9kK8j0QkBPxYfQJq0Qq9X8","project":"project-FP9kK7j0QkB5VJvpJkZZ2f8b","class":"file","sponsored":false,"name":"dest_file.txt","types":[],"state":"closed","hidden":false,"links":[],"folder":"/","tags":[],"created":1540593443000,"modified":1540593445349,"createdBy":{"user":"user-akumar_counsyl"},"media":"text/plain","archivalState":"live","size":4}'} + body: {string: '{"id":"file-FPfB94j07G6959y42bqVv4pP","project":"project-FPfB93j07G604YP22fGQX3PY","class":"file","sponsored":false,"name":"dest_file.txt","types":[],"state":"closed","hidden":false,"links":[],"folder":"/","tags":[],"created":1542235283000,"modified":1542235284898,"createdBy":{"user":"user-akumar_counsyl"},"media":"text/plain","archivalState":"live","size":4}'} headers: Connection: [keep-alive] Content-Length: ['361'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:37:28 GMT'] + Date: ['Wed, 14 Nov 2018 22:41:28 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593448103-32840] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235287856-531854] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"objects": ["file-FP9kK8j0QkBPxYfQJq0Qq9X8"]}' + body: '{"objects": ["file-FPfB94j07G6959y42bqVv4pP"]}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -1260,19 +1260,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kK7j0QkB5VJvpJkZZ2f8b/removeObjects + uri: https://api.dnanexus.com/project-FPfB93j07G604YP22fGQX3PY/removeObjects response: - body: {string: '{"id":"project-FP9kK7j0QkB5VJvpJkZZ2f8b"}'} + body: {string: '{"id":"project-FPfB93j07G604YP22fGQX3PY"}'} headers: Connection: [keep-alive] Content-Length: ['41'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:37:28 GMT'] + Date: ['Wed, 14 Nov 2018 22:41:28 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593448219-555541] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235288217-405260] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -1299,21 +1299,21 @@ interactions: method: POST uri: https://api.dnanexus.com/system/findProjects response: - body: {string: '{"results":[{"id":"project-FP9kK7j0QkB5VJvpJkZZ2f8b","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} + body: {string: '{"results":[{"id":"project-FPfB93j07G604YP22fGQX3PY","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} headers: Connection: [keep-alive] Content-Length: ['147'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:37:28 GMT'] + Date: ['Wed, 14 Nov 2018 22:41:28 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593448385-962642] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235288723-324961] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"objects": ["file-FP9kK7Q0p5B5vgj6Jkpx4b3Y"], "project": "project-FP9kK7j0QkB5VJvpJkZZ2f8b", + body: '{"objects": ["file-FPfB93Q03k2959y42bqVv4pF"], "project": "project-FPfB93j07G604YP22fGQX3PY", "destination": "/"}' headers: ? !!binary | @@ -1334,23 +1334,23 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kK780p5BPvv365P3k8Zxv/clone + uri: https://api.dnanexus.com/project-FPfB93Q03k2959y42bqVv4pB/clone response: - body: {string: '{"id":"project-FP9kK780p5BPvv365P3k8Zxv","project":"project-FP9kK7j0QkB5VJvpJkZZ2f8b","exists":[]}'} + body: {string: '{"id":"project-FPfB93Q03k2959y42bqVv4pB","project":"project-FPfB93j07G604YP22fGQX3PY","exists":[]}'} headers: Connection: [keep-alive] Content-Length: ['98'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:37:28 GMT'] + Date: ['Wed, 14 Nov 2018 22:41:29 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593448529-448627] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235289026-841182] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"project": "project-FP9kK780p5BPvv365P3k8Zxv"}' + body: '{"project": "project-FPfB93Q03k2959y42bqVv4pB"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -1370,23 +1370,23 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kK7Q0p5B5vgj6Jkpx4b3Y/describe + uri: https://api.dnanexus.com/file-FPfB93Q03k2959y42bqVv4pF/describe response: - body: {string: '{"id":"file-FP9kK7Q0p5B5vgj6Jkpx4b3Y","project":"project-FP9kK780p5BPvv365P3k8Zxv","class":"file","sponsored":false,"name":"folder_file.txt","types":[],"state":"closed","hidden":false,"links":[],"folder":"/temp_folder","tags":[],"created":1540593438000,"modified":1540593440363,"createdBy":{"user":"user-akumar_counsyl"},"media":"text/plain","archivalState":"live","size":5}'} + body: {string: '{"id":"file-FPfB93Q03k2959y42bqVv4pF","project":"project-FPfB93Q03k2959y42bqVv4pB","class":"file","sponsored":false,"name":"folder_file.txt","types":[],"state":"closed","hidden":false,"links":[],"folder":"/temp_folder","tags":[],"created":1542235278000,"modified":1542235280560,"createdBy":{"user":"user-akumar_counsyl"},"media":"text/plain","archivalState":"live","size":5}'} headers: Connection: [keep-alive] Content-Length: ['374'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:37:29 GMT'] + Date: ['Wed, 14 Nov 2018 22:41:29 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593449529-873360] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235289740-795075] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"project": "project-FP9kK7j0QkB5VJvpJkZZ2f8b", "name": "dest_file.txt"}' + body: '{"project": "project-FPfB93j07G604YP22fGQX3PY", "name": "dest_file.txt"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -1406,19 +1406,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kK7Q0p5B5vgj6Jkpx4b3Y/rename + uri: https://api.dnanexus.com/file-FPfB93Q03k2959y42bqVv4pF/rename response: - body: {string: '{"id":"file-FP9kK7Q0p5B5vgj6Jkpx4b3Y"}'} + body: {string: '{"id":"file-FPfB93Q03k2959y42bqVv4pF"}'} headers: Connection: [keep-alive] Content-Length: ['38'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:37:29 GMT'] + Date: ['Wed, 14 Nov 2018 22:41:29 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593449904-411039] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235289841-144994] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -1445,21 +1445,21 @@ interactions: method: POST uri: https://api.dnanexus.com/system/findProjects response: - body: {string: '{"results":[{"id":"project-FP9kK7j0QkB5VJvpJkZZ2f8b","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} + body: {string: '{"results":[{"id":"project-FPfB93j07G604YP22fGQX3PY","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} headers: Connection: [keep-alive] Content-Length: ['147'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:37:30 GMT'] + Date: ['Wed, 14 Nov 2018 22:41:30 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593450077-61796] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235289981-687573] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"objects": [{"name": "dest_file.txt", "folder": "/", "project": "project-FP9kK7j0QkB5VJvpJkZZ2f8b", + body: '{"objects": [{"name": "dest_file.txt", "folder": "/", "project": "project-FPfB93j07G604YP22fGQX3PY", "batchsize": 2}]}' headers: ? !!binary | @@ -1482,21 +1482,21 @@ interactions: method: POST uri: https://api.dnanexus.com/system/resolveDataObjects response: - body: {string: '{"results":[[{"project":"project-FP9kK7j0QkB5VJvpJkZZ2f8b","id":"file-FP9kK7Q0p5B5vgj6Jkpx4b3Y"}]]}'} + body: {string: '{"results":[[{"project":"project-FPfB93j07G604YP22fGQX3PY","id":"file-FPfB93Q03k2959y42bqVv4pF"}]]}'} headers: Connection: [keep-alive] Content-Length: ['99'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:37:30 GMT'] + Date: ['Wed, 14 Nov 2018 22:41:30 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593450242-309569] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235290096-665079] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"project": "project-FP9kK7j0QkB5VJvpJkZZ2f8b"}' + body: '{"project": "project-FPfB93j07G604YP22fGQX3PY"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -1516,23 +1516,23 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kK7Q0p5B5vgj6Jkpx4b3Y/describe + uri: https://api.dnanexus.com/file-FPfB93Q03k2959y42bqVv4pF/describe response: - body: {string: '{"id":"file-FP9kK7Q0p5B5vgj6Jkpx4b3Y","project":"project-FP9kK7j0QkB5VJvpJkZZ2f8b","class":"file","sponsored":false,"name":"dest_file.txt","types":[],"state":"closed","hidden":false,"links":[],"folder":"/","tags":[],"created":1540593438000,"modified":1540593449966,"createdBy":{"user":"user-akumar_counsyl"},"media":"text/plain","archivalState":"live","size":5}'} + body: {string: '{"id":"file-FPfB93Q03k2959y42bqVv4pF","project":"project-FPfB93j07G604YP22fGQX3PY","class":"file","sponsored":false,"name":"dest_file.txt","types":[],"state":"closed","hidden":false,"links":[],"folder":"/","tags":[],"created":1542235278000,"modified":1542235289871,"createdBy":{"user":"user-akumar_counsyl"},"media":"text/plain","archivalState":"live","size":5}'} headers: Connection: [keep-alive] Content-Length: ['361'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:37:30 GMT'] + Date: ['Wed, 14 Nov 2018 22:41:30 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593450361-204843] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235290192-788913] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"project": "project-FP9kK780p5BPvv365P3k8Zxv"}' + body: '{"project": "project-FPfB93Q03k2959y42bqVv4pB"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -1552,19 +1552,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kK7Q0p5B5vgj6Jkpx4b3Y/describe + uri: https://api.dnanexus.com/file-FPfB93Q03k2959y42bqVv4pF/describe response: - body: {string: '{"id":"file-FP9kK7Q0p5B5vgj6Jkpx4b3Y","project":"project-FP9kK780p5BPvv365P3k8Zxv","class":"file","sponsored":false,"name":"folder_file.txt","types":[],"state":"closed","hidden":false,"links":[],"folder":"/temp_folder","tags":[],"created":1540593438000,"modified":1540593440363,"createdBy":{"user":"user-akumar_counsyl"},"media":"text/plain","archivalState":"live","size":5}'} + body: {string: '{"id":"file-FPfB93Q03k2959y42bqVv4pF","project":"project-FPfB93Q03k2959y42bqVv4pB","class":"file","sponsored":false,"name":"folder_file.txt","types":[],"state":"closed","hidden":false,"links":[],"folder":"/temp_folder","tags":[],"created":1542235278000,"modified":1542235280560,"createdBy":{"user":"user-akumar_counsyl"},"media":"text/plain","archivalState":"live","size":5}'} headers: Connection: [keep-alive] Content-Length: ['374'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:37:30 GMT'] + Date: ['Wed, 14 Nov 2018 22:41:30 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593450492-234910] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235290328-868838] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -1591,17 +1591,17 @@ interactions: method: POST uri: https://api.dnanexus.com/system/findProjects response: - body: {string: '{"results":[{"id":"project-FP9kK7j0QkB5VJvpJkZZ2f8b","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} + body: {string: '{"results":[{"id":"project-FPfB93j07G604YP22fGQX3PY","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} headers: Connection: [keep-alive] Content-Length: ['147'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:37:30 GMT'] + Date: ['Wed, 14 Nov 2018 22:41:30 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593450640-841242] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235290429-421784] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -1626,19 +1626,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kK7j0QkB5VJvpJkZZ2f8b/listFolder + uri: https://api.dnanexus.com/project-FPfB93j07G604YP22fGQX3PY/listFolder response: body: {string: '{"folders":[]}'} headers: Connection: [keep-alive] Content-Length: ['14'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:37:30 GMT'] + Date: ['Wed, 14 Nov 2018 22:41:30 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593450825-669331] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235290565-542991] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -1665,22 +1665,22 @@ interactions: method: POST uri: https://api.dnanexus.com/system/findProjects response: - body: {string: '{"results":[{"id":"project-FP9kK7j0QkB5VJvpJkZZ2f8b","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} + body: {string: '{"results":[{"id":"project-FPfB93j07G604YP22fGQX3PY","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} headers: Connection: [keep-alive] Content-Length: ['147'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:37:31 GMT'] + Date: ['Wed, 14 Nov 2018 22:41:30 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593450934-480122] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235290681-608547] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: body: '{"objects": [{"name": "folder_file.txt", "folder": "/folder2", "project": - "project-FP9kK7j0QkB5VJvpJkZZ2f8b", "batchsize": 2}]}' + "project-FPfB93j07G604YP22fGQX3PY", "batchsize": 2}]}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -1702,21 +1702,21 @@ interactions: method: POST uri: https://api.dnanexus.com/system/resolveDataObjects response: - body: {string: '{"results":[[{"project":"project-FP9kK7j0QkB5VJvpJkZZ2f8b","id":"file-FP9kK800QkBGf62VJp1k8pFx"}]]}'} + body: {string: '{"results":[[{"project":"project-FPfB93j07G604YP22fGQX3PY","id":"file-FPfB93j07G6959y42bqVv4pJ"}]]}'} headers: Connection: [keep-alive] Content-Length: ['99'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:37:31 GMT'] + Date: ['Wed, 14 Nov 2018 22:41:30 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593451117-799330] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235290826-886388] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"project": "project-FP9kK7j0QkB5VJvpJkZZ2f8b"}' + body: '{"project": "project-FPfB93j07G604YP22fGQX3PY"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -1736,23 +1736,23 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kK800QkBGf62VJp1k8pFx/describe + uri: https://api.dnanexus.com/file-FPfB93j07G6959y42bqVv4pJ/describe response: - body: {string: '{"id":"file-FP9kK800QkBGf62VJp1k8pFx","project":"project-FP9kK7j0QkB5VJvpJkZZ2f8b","class":"file","sponsored":false,"name":"folder_file.txt","types":[],"state":"closed","hidden":false,"links":[],"folder":"/folder2","tags":[],"created":1540593440000,"modified":1540593442511,"createdBy":{"user":"user-akumar_counsyl"},"media":"text/plain","archivalState":"live","size":4}'} + body: {string: '{"id":"file-FPfB93j07G6959y42bqVv4pJ","project":"project-FPfB93j07G604YP22fGQX3PY","class":"file","sponsored":false,"name":"folder_file.txt","types":[],"state":"closed","hidden":false,"links":[],"folder":"/folder2","tags":[],"created":1542235279000,"modified":1542235281723,"createdBy":{"user":"user-akumar_counsyl"},"media":"text/plain","archivalState":"live","size":4}'} headers: Connection: [keep-alive] Content-Length: ['370'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:37:31 GMT'] + Date: ['Wed, 14 Nov 2018 22:41:30 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593451403-806578] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235290920-888814] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"objects": ["file-FP9kK800QkBGf62VJp1k8pFx"]}' + body: '{"objects": ["file-FPfB93j07G6959y42bqVv4pJ"]}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -1772,23 +1772,23 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kK7j0QkB5VJvpJkZZ2f8b/removeObjects + uri: https://api.dnanexus.com/project-FPfB93j07G604YP22fGQX3PY/removeObjects response: - body: {string: '{"id":"project-FP9kK7j0QkB5VJvpJkZZ2f8b"}'} + body: {string: '{"id":"project-FPfB93j07G604YP22fGQX3PY"}'} headers: Connection: [keep-alive] Content-Length: ['41'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:37:31 GMT'] + Date: ['Wed, 14 Nov 2018 22:41:31 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593451737-346170] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235291024-310566] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"objects": ["file-FP9kK7Q0p5B5vgj6Jkpx4b3Y"], "project": "project-FP9kK7j0QkB5VJvpJkZZ2f8b", + body: '{"objects": ["file-FPfB93Q03k2959y42bqVv4pF"], "project": "project-FPfB93j07G604YP22fGQX3PY", "destination": "/folder2"}' headers: ? !!binary | @@ -1809,23 +1809,23 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kK780p5BPvv365P3k8Zxv/clone + uri: https://api.dnanexus.com/project-FPfB93Q03k2959y42bqVv4pB/clone response: - body: {string: '{"id":"project-FP9kK780p5BPvv365P3k8Zxv","project":"project-FP9kK7j0QkB5VJvpJkZZ2f8b","exists":["file-FP9kK7Q0p5B5vgj6Jkpx4b3Y"]}'} + body: {string: '{"id":"project-FPfB93Q03k2959y42bqVv4pB","project":"project-FPfB93j07G604YP22fGQX3PY","exists":["file-FPfB93Q03k2959y42bqVv4pF"]}'} headers: Connection: [keep-alive] Content-Length: ['129'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:37:32 GMT'] + Date: ['Wed, 14 Nov 2018 22:41:31 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593451942-275468] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235291205-518395] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"project": "project-FP9kK780p5BPvv365P3k8Zxv"}' + body: '{"project": "project-FPfB93Q03k2959y42bqVv4pB"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -1845,19 +1845,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kK7Q0p5B5vgj6Jkpx4b3Y/describe + uri: https://api.dnanexus.com/file-FPfB93Q03k2959y42bqVv4pF/describe response: - body: {string: '{"id":"file-FP9kK7Q0p5B5vgj6Jkpx4b3Y","project":"project-FP9kK780p5BPvv365P3k8Zxv","class":"file","sponsored":false,"name":"folder_file.txt","types":[],"state":"closed","hidden":false,"links":[],"folder":"/temp_folder","tags":[],"created":1540593438000,"modified":1540593440363,"createdBy":{"user":"user-akumar_counsyl"},"media":"text/plain","archivalState":"live","size":5}'} + body: {string: '{"id":"file-FPfB93Q03k2959y42bqVv4pF","project":"project-FPfB93Q03k2959y42bqVv4pB","class":"file","sponsored":false,"name":"folder_file.txt","types":[],"state":"closed","hidden":false,"links":[],"folder":"/temp_folder","tags":[],"created":1542235278000,"modified":1542235280560,"createdBy":{"user":"user-akumar_counsyl"},"media":"text/plain","archivalState":"live","size":5}'} headers: Connection: [keep-alive] Content-Length: ['374'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:37:32 GMT'] + Date: ['Wed, 14 Nov 2018 22:41:31 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593452147-735581] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235291355-598778] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -1884,21 +1884,21 @@ interactions: method: POST uri: https://api.dnanexus.com/system/findProjects response: - body: {string: '{"results":[{"id":"project-FP9kK7j0QkB5VJvpJkZZ2f8b","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} + body: {string: '{"results":[{"id":"project-FPfB93j07G604YP22fGQX3PY","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} headers: Connection: [keep-alive] Content-Length: ['147'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:37:32 GMT'] + Date: ['Wed, 14 Nov 2018 22:41:31 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593452288-890635] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235291456-624309] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"objects": [{"name": "folder2", "folder": "/", "project": "project-FP9kK7j0QkB5VJvpJkZZ2f8b", + body: '{"objects": [{"name": "folder2", "folder": "/", "project": "project-FPfB93j07G604YP22fGQX3PY", "batchsize": 2}]}' headers: ? !!binary | @@ -1926,12 +1926,12 @@ interactions: Connection: [keep-alive] Content-Length: ['16'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:37:32 GMT'] + Date: ['Wed, 14 Nov 2018 22:41:31 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593452422-456082] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235291589-426356] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -1956,19 +1956,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kK7j0QkB5VJvpJkZZ2f8b/listFolder + uri: https://api.dnanexus.com/project-FPfB93j07G604YP22fGQX3PY/listFolder response: body: {string: '{"folders":[]}'} headers: Connection: [keep-alive] Content-Length: ['14'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:37:32 GMT'] + Date: ['Wed, 14 Nov 2018 22:41:31 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593452537-503406] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235291690-560240] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -1992,19 +1992,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kK7j0QkB5VJvpJkZZ2f8b/destroy + uri: https://api.dnanexus.com/project-FPfB93j07G604YP22fGQX3PY/destroy response: - body: {string: '{"id":"project-FP9kK7j0QkB5VJvpJkZZ2f8b"}'} + body: {string: '{"id":"project-FPfB93j07G604YP22fGQX3PY"}'} headers: Connection: [keep-alive] Content-Length: ['41'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:37:35 GMT'] + Date: ['Wed, 14 Nov 2018 22:41:34 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593452653-72600] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235291794-630657] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -2028,19 +2028,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kK780p5BPvv365P3k8Zxv/destroy + uri: https://api.dnanexus.com/project-FPfB93Q03k2959y42bqVv4pB/destroy response: - body: {string: '{"id":"project-FP9kK780p5BPvv365P3k8Zxv"}'} + body: {string: '{"id":"project-FPfB93Q03k2959y42bqVv4pB"}'} headers: Connection: [keep-alive] Content-Length: ['41'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:37:38 GMT'] + Date: ['Wed, 14 Nov 2018 22:41:37 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593455317-974467] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235295062-117544] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} version: 1 diff --git a/stor/tests/cassettes_py3/TestCopy/test_dx_to_dx_file.yaml b/stor_dx/stor_dx/tests/cassettes_py3/TestCopy/test_dx_to_dx_file.yaml similarity index 74% rename from stor/tests/cassettes_py3/TestCopy/test_dx_to_dx_file.yaml rename to stor_dx/stor_dx/tests/cassettes_py3/TestCopy/test_dx_to_dx_file.yaml index c62c35b2..cd1b4f43 100644 --- a/stor/tests/cassettes_py3/TestCopy/test_dx_to_dx_file.yaml +++ b/stor_dx/stor_dx/tests/cassettes_py3/TestCopy/test_dx_to_dx_file.yaml @@ -1,6 +1,6 @@ interactions: - request: - body: '{"name": "TestCopy.test_dx_to_dx_file.3be48d95"}' + body: '{"name": "TestCopy.test_dx_to_dx_file.3f2138f1"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -22,17 +22,17 @@ interactions: method: POST uri: https://api.dnanexus.com/project/new response: - body: {string: '{"id":"project-FP9kKGQ05XJvf62VJp1k8pG2"}'} + body: {string: '{"id":"project-FPfB98Q0g7z5Px212xgzzZyk"}'} headers: Connection: [keep-alive] Content-Length: ['41'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:37:38 GMT'] + Date: ['Wed, 14 Nov 2018 22:41:38 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593458720-705769] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235298022-601043] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -56,19 +56,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kKGQ05XJvf62VJp1k8pG2/describe + uri: https://api.dnanexus.com/project-FPfB98Q0g7z5Px212xgzzZyk/describe response: - body: {string: '{"id":"project-FP9kKGQ05XJvf62VJp1k8pG2","name":"TestCopy.test_dx_to_dx_file.3be48d95","class":"project","created":1540593458000,"modified":1540593458000,"billTo":"org-counsyl","level":"ADMINISTER","dataUsage":0,"sponsoredDataUsage":0,"region":"aws:us-east-1","summary":"","description":"","protected":false,"restricted":false,"downloadRestricted":false,"containsPHI":false,"createdBy":{"user":"user-akumar_counsyl"},"version":0,"storageCost":0,"pendingTransfer":null,"tags":[],"defaultInstanceType":"mem2_hdd2_x2","archivalState":"live","archivalProgress":null,"totalSponsoredEgressBytes":0,"consumedSponsoredEgressBytes":0,"atSpendingLimit":false}'} + body: {string: '{"id":"project-FPfB98Q0g7z5Px212xgzzZyk","name":"TestCopy.test_dx_to_dx_file.3f2138f1","class":"project","created":1542235298000,"modified":1542235298000,"billTo":"org-counsyl","level":"ADMINISTER","dataUsage":0,"sponsoredDataUsage":0,"region":"aws:us-east-1","summary":"","description":"","protected":false,"restricted":false,"downloadRestricted":false,"containsPHI":false,"createdBy":{"user":"user-akumar_counsyl"},"version":0,"storageCost":0,"pendingTransfer":null,"tags":[],"defaultInstanceType":"mem2_hdd2_x2","archivalState":"live","archivalProgress":null,"totalSponsoredEgressBytes":0,"consumedSponsoredEgressBytes":0,"atSpendingLimit":false}'} headers: Connection: [keep-alive] Content-Length: ['649'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:37:38 GMT'] + Date: ['Wed, 14 Nov 2018 22:41:38 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593458841-59317] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235298279-161154] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -92,24 +92,24 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kKGQ05XJvf62VJp1k8pG2/newFolder + uri: https://api.dnanexus.com/project-FPfB98Q0g7z5Px212xgzzZyk/newFolder response: - body: {string: '{"id":"project-FP9kKGQ05XJvf62VJp1k8pG2"}'} + body: {string: '{"id":"project-FPfB98Q0g7z5Px212xgzzZyk"}'} headers: Connection: [keep-alive] Content-Length: ['41'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:37:38 GMT'] + Date: ['Wed, 14 Nov 2018 22:41:38 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593458967-411934] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235298768-54834] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"name": "folder_file.txt", "folder": "/temp_folder", "project": "project-FP9kKGQ05XJvf62VJp1k8pG2", - "nonce": "b''2732434f5dbbba3bf239222965066dad196719c68c5c62bc38c6d4519403f5c3''1540593459.033171"}' + body: '{"name": "folder_file.txt", "folder": "/temp_folder", "project": "project-FPfB98Q0g7z5Px212xgzzZyk", + "nonce": "b''902976ecde67637ff47ff616f7fcba382d63f54fdebd01f41e6b8ac0c5369aa6''1542235298.988089"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -131,17 +131,17 @@ interactions: method: POST uri: https://api.dnanexus.com/file/new response: - body: {string: '{"id":"file-FP9kKGj05XJqPYg95F286zK7"}'} + body: {string: '{"id":"file-FPfB98j0g7zGjK1k2yqz9PkK"}'} headers: Connection: [keep-alive] Content-Length: ['38'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:37:39 GMT'] + Date: ['Wed, 14 Nov 2018 22:41:39 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593459081-230725] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235299034-265912] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -165,19 +165,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kKGQ05XJvf62VJp1k8pG2/describe + uri: https://api.dnanexus.com/project-FPfB98Q0g7z5Px212xgzzZyk/describe response: - body: {string: '{"id":"project-FP9kKGQ05XJvf62VJp1k8pG2","fileUploadParameters":{"maximumPartSize":5368709120,"minimumPartSize":5242880,"maximumFileSize":5497558138880,"maximumNumParts":10000,"emptyLastPartAllowed":true}}'} + body: {string: '{"id":"project-FPfB98Q0g7z5Px212xgzzZyk","fileUploadParameters":{"maximumPartSize":5368709120,"minimumPartSize":5242880,"maximumFileSize":5497558138880,"maximumNumParts":10000,"emptyLastPartAllowed":true}}'} headers: Connection: [keep-alive] Content-Length: ['205'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:37:39 GMT'] + Date: ['Wed, 14 Nov 2018 22:41:39 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593459223-520261] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235299577-224670] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -201,19 +201,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kKGj05XJqPYg95F286zK7/upload + uri: https://api.dnanexus.com/file-FPfB98j0g7zGjK1k2yqz9PkK/upload response: - body: {string: '{"url":"https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/cea2/file/open/file-FP9kKGj05XJqPYg95F286zK7/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181026%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181026T223739Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=b14c4ade9a9050f149b10070d3acd9b56dae37dac6469217ad75fbb22df06f28","headers":{"host":"dnanexus-platform-upload-prod.s3.amazonaws.com","content-type":"binary/octet-stream","x-amz-server-side-encryption":"AES256","content-md5":"jXd/OF09/siBXSD3SWAm3A==","content-length":"4"},"expires":1540593579347}'} + body: {string: '{"url":"https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/3b7f/file/open/file-FPfB98j0g7zGjK1k2yqz9PkK/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181114%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181114T224140Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=4f2918e6d63333711fa3ea80d6e7cb98e5a75aeb4f6270391c3032a738492b1b","headers":{"host":"dnanexus-platform-upload-prod.s3.amazonaws.com","content-type":"binary/octet-stream","x-amz-server-side-encryption":"AES256","content-md5":"jXd/OF09/siBXSD3SWAm3A==","content-length":"4"},"expires":1542235420118}'} headers: Connection: [keep-alive] Content-Length: ['692'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:37:39 GMT'] + Date: ['Wed, 14 Nov 2018 22:41:40 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593459335-27823] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235300007-108641] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -241,21 +241,21 @@ interactions: : - !!binary | QUVTMjU2 method: PUT - uri: https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/cea2/file/open/file-FP9kKGj05XJqPYg95F286zK7/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181026%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181026T223739Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=b14c4ade9a9050f149b10070d3acd9b56dae37dac6469217ad75fbb22df06f28 + uri: https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/3b7f/file/open/file-FPfB98j0g7zGjK1k2yqz9PkK/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181114%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181114T224140Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=4f2918e6d63333711fa3ea80d6e7cb98e5a75aeb4f6270391c3032a738492b1b response: body: {string: ''} headers: Content-Length: ['0'] - Date: ['Fri, 26 Oct 2018 22:37:40 GMT'] + Date: ['Wed, 14 Nov 2018 22:41:41 GMT'] ETag: ['"8d777f385d3dfec8815d20f7496026dc"'] Server: [AmazonS3] - x-amz-expiration: ['expiry-date="Sat, 17 Nov 2018 00:00:00 GMT", rule-id="3weekpurge"'] - x-amz-id-2: [Jf/XpV3+eetguNHdfUJVbpcVEwwE2nSmWF07ajnPHRnP+JVvdnTNoOoC+ozkp6oui9138NEkY5c=] - x-amz-request-id: [8C79E5EEF791DF5B] + x-amz-expiration: ['expiry-date="Thu, 06 Dec 2018 00:00:00 GMT", rule-id="3weekpurge"'] + x-amz-id-2: [EHeSHovdcCSdNzbiAPdmAE7lPM2tHU2kBKR3U7XLXI7COzrbPdwSuhlvlyt+YjRKYzYJ4wcdlwI=] + x-amz-request-id: [76AA882DDC12B295] x-amz-server-side-encryption: [AES256] status: {code: 200, message: OK} - request: - body: '{"fields": {"state": true}, "project": "project-FP9kKGQ05XJvf62VJp1k8pG2"}' + body: '{"fields": {"state": true}, "project": "project-FPfB98Q0g7z5Px212xgzzZyk"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -275,19 +275,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kKGj05XJqPYg95F286zK7/describe + uri: https://api.dnanexus.com/file-FPfB98j0g7zGjK1k2yqz9PkK/describe response: - body: {string: '{"id":"file-FP9kKGj05XJqPYg95F286zK7","state":"open"}'} + body: {string: '{"id":"file-FPfB98j0g7zGjK1k2yqz9PkK","state":"open"}'} headers: Connection: [keep-alive] Content-Length: ['53'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:37:39 GMT'] + Date: ['Wed, 14 Nov 2018 22:41:40 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593459903-154488] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235300648-977414] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -311,23 +311,23 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kKGj05XJqPYg95F286zK7/close + uri: https://api.dnanexus.com/file-FPfB98j0g7zGjK1k2yqz9PkK/close response: - body: {string: '{"id":"file-FP9kKGj05XJqPYg95F286zK7"}'} + body: {string: '{"id":"file-FPfB98j0g7zGjK1k2yqz9PkK"}'} headers: Connection: [keep-alive] Content-Length: ['38'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:37:40 GMT'] + Date: ['Wed, 14 Nov 2018 22:41:40 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593460017-204052] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235300877-990995] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"fields": {"state": true}, "project": "project-FP9kKGQ05XJvf62VJp1k8pG2"}' + body: '{"fields": {"state": true}, "project": "project-FPfB98Q0g7z5Px212xgzzZyk"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -347,23 +347,23 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kKGj05XJqPYg95F286zK7/describe + uri: https://api.dnanexus.com/file-FPfB98j0g7zGjK1k2yqz9PkK/describe response: - body: {string: '{"id":"file-FP9kKGj05XJqPYg95F286zK7","state":"closing"}'} + body: {string: '{"id":"file-FPfB98j0g7zGjK1k2yqz9PkK","state":"closing"}'} headers: Connection: [keep-alive] Content-Length: ['56'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:37:40 GMT'] + Date: ['Wed, 14 Nov 2018 22:41:41 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593460138-134804] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235301118-801527] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"fields": {"state": true}, "project": "project-FP9kKGQ05XJvf62VJp1k8pG2"}' + body: '{"fields": {"state": true}, "project": "project-FPfB98Q0g7z5Px212xgzzZyk"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -383,19 +383,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kKGj05XJqPYg95F286zK7/describe + uri: https://api.dnanexus.com/file-FPfB98j0g7zGjK1k2yqz9PkK/describe response: - body: {string: '{"id":"file-FP9kKGj05XJqPYg95F286zK7","state":"closed"}'} + body: {string: '{"id":"file-FPfB98j0g7zGjK1k2yqz9PkK","state":"closed"}'} headers: Connection: [keep-alive] Content-Length: ['55'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:37:42 GMT'] + Date: ['Wed, 14 Nov 2018 22:41:43 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593462267-212562] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235303319-507098] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -421,21 +421,21 @@ interactions: method: POST uri: https://api.dnanexus.com/project/new response: - body: {string: '{"id":"project-FP9kKJQ0kj4fzyV6JkV1p4QY"}'} + body: {string: '{"id":"project-FPfB99j093FBq1y12xxjPZk0"}'} headers: Connection: [keep-alive] Content-Length: ['41'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:37:42 GMT'] + Date: ['Wed, 14 Nov 2018 22:41:43 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593462375-433555] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235303573-443339] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"name": "TestCopy.test_dx_to_dx_file.3be48d95", "level": "VIEW", "limit": + body: '{"name": "TestCopy.test_dx_to_dx_file.3f2138f1", "level": "VIEW", "limit": 2}' headers: ? !!binary | @@ -458,22 +458,22 @@ interactions: method: POST uri: https://api.dnanexus.com/system/findProjects response: - body: {string: '{"results":[{"id":"project-FP9kKGQ05XJvf62VJp1k8pG2","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} + body: {string: '{"results":[{"id":"project-FPfB98Q0g7z5Px212xgzzZyk","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} headers: Connection: [keep-alive] Content-Length: ['147'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:37:42 GMT'] + Date: ['Wed, 14 Nov 2018 22:41:44 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593462511-870691] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235304176-222460] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: body: '{"objects": [{"name": "folder_file.txt", "folder": "/temp_folder", "project": - "project-FP9kKGQ05XJvf62VJp1k8pG2", "batchsize": 2}]}' + "project-FPfB98Q0g7z5Px212xgzzZyk", "batchsize": 2}]}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -495,21 +495,21 @@ interactions: method: POST uri: https://api.dnanexus.com/system/resolveDataObjects response: - body: {string: '{"results":[[{"project":"project-FP9kKGQ05XJvf62VJp1k8pG2","id":"file-FP9kKGj05XJqPYg95F286zK7"}]]}'} + body: {string: '{"results":[[{"project":"project-FPfB98Q0g7z5Px212xgzzZyk","id":"file-FPfB98j0g7zGjK1k2yqz9PkK"}]]}'} headers: Connection: [keep-alive] Content-Length: ['99'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:37:42 GMT'] + Date: ['Wed, 14 Nov 2018 22:41:45 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593462653-128391] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235305075-948318] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"project": "project-FP9kKGQ05XJvf62VJp1k8pG2"}' + body: '{"project": "project-FPfB98Q0g7z5Px212xgzzZyk"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -529,19 +529,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kKGj05XJqPYg95F286zK7/describe + uri: https://api.dnanexus.com/file-FPfB98j0g7zGjK1k2yqz9PkK/describe response: - body: {string: '{"id":"file-FP9kKGj05XJqPYg95F286zK7","project":"project-FP9kKGQ05XJvf62VJp1k8pG2","class":"file","sponsored":false,"name":"folder_file.txt","types":[],"state":"closed","hidden":false,"links":[],"folder":"/temp_folder","tags":[],"created":1540593459000,"modified":1540593460557,"createdBy":{"user":"user-akumar_counsyl"},"media":"text/plain","archivalState":"live","size":4}'} + body: {string: '{"id":"file-FPfB98j0g7zGjK1k2yqz9PkK","project":"project-FPfB98Q0g7z5Px212xgzzZyk","class":"file","sponsored":false,"name":"folder_file.txt","types":[],"state":"closed","hidden":false,"links":[],"folder":"/temp_folder","tags":[],"created":1542235299000,"modified":1542235301865,"createdBy":{"user":"user-akumar_counsyl"},"media":"text/plain","archivalState":"live","size":4}'} headers: Connection: [keep-alive] Content-Length: ['374'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:37:42 GMT'] + Date: ['Wed, 14 Nov 2018 22:41:46 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593462756-391270] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235305927-10539] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -567,17 +567,17 @@ interactions: method: POST uri: https://api.dnanexus.com/system/findProjects response: - body: {string: '{"results":[{"id":"project-FP9kKJQ0kj4fzyV6JkV1p4QY","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} + body: {string: '{"results":[{"id":"project-FPfB99j093FBq1y12xxjPZk0","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} headers: Connection: [keep-alive] Content-Length: ['147'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:37:42 GMT'] + Date: ['Wed, 14 Nov 2018 22:41:48 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593462872-610271] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235306941-816115] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -602,25 +602,25 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kKJQ0kj4fzyV6JkV1p4QY/listFolder + uri: https://api.dnanexus.com/project-FPfB99j093FBq1y12xxjPZk0/listFolder response: body: {string: '{"error":{"type":"ResourceNotFound","message":"The specified folder - could not be found in project-FP9kKJQ0kj4fzyV6JkV1p4QY"}}'} + could not be found in project-FPfB99j093FBq1y12xxjPZk0"}}'} headers: Connection: [keep-alive] Content-Type: [application/json] - Date: ['Fri, 26 Oct 2018 22:37:43 GMT'] + Date: ['Wed, 14 Nov 2018 22:41:48 GMT'] Server: [nginx] Transfer-Encoding: [chunked] Vary: [Accept-Encoding] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593463006-548425] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235308283-56763] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 404, message: Not Found} - request: - body: '{"objects": [{"name": "random.txt", "folder": "/", "project": "project-FP9kKJQ0kj4fzyV6JkV1p4QY", + body: '{"objects": [{"name": "random.txt", "folder": "/", "project": "project-FPfB99j093FBq1y12xxjPZk0", "batchsize": 2}]}' headers: ? !!binary | @@ -648,16 +648,16 @@ interactions: Connection: [keep-alive] Content-Length: ['16'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:37:43 GMT'] + Date: ['Wed, 14 Nov 2018 22:41:48 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593463431-612892] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235308722-260649] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"objects": ["file-FP9kKGj05XJqPYg95F286zK7"], "project": "project-FP9kKJQ0kj4fzyV6JkV1p4QY", + body: '{"objects": ["file-FPfB98j0g7zGjK1k2yqz9PkK"], "project": "project-FPfB99j093FBq1y12xxjPZk0", "destination": "/"}' headers: ? !!binary | @@ -678,23 +678,23 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kKGQ05XJvf62VJp1k8pG2/clone + uri: https://api.dnanexus.com/project-FPfB98Q0g7z5Px212xgzzZyk/clone response: - body: {string: '{"id":"project-FP9kKGQ05XJvf62VJp1k8pG2","project":"project-FP9kKJQ0kj4fzyV6JkV1p4QY","exists":[]}'} + body: {string: '{"id":"project-FPfB98Q0g7z5Px212xgzzZyk","project":"project-FPfB99j093FBq1y12xxjPZk0","exists":[]}'} headers: Connection: [keep-alive] Content-Length: ['98'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:37:43 GMT'] + Date: ['Wed, 14 Nov 2018 22:41:49 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593463543-243984] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235308840-649059] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"project": "project-FP9kKGQ05XJvf62VJp1k8pG2"}' + body: '{"project": "project-FPfB98Q0g7z5Px212xgzzZyk"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -714,23 +714,23 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kKGj05XJqPYg95F286zK7/describe + uri: https://api.dnanexus.com/file-FPfB98j0g7zGjK1k2yqz9PkK/describe response: - body: {string: '{"id":"file-FP9kKGj05XJqPYg95F286zK7","project":"project-FP9kKGQ05XJvf62VJp1k8pG2","class":"file","sponsored":false,"name":"folder_file.txt","types":[],"state":"closed","hidden":false,"links":[],"folder":"/temp_folder","tags":[],"created":1540593459000,"modified":1540593460557,"createdBy":{"user":"user-akumar_counsyl"},"media":"text/plain","archivalState":"live","size":4}'} + body: {string: '{"id":"file-FPfB98j0g7zGjK1k2yqz9PkK","project":"project-FPfB98Q0g7z5Px212xgzzZyk","class":"file","sponsored":false,"name":"folder_file.txt","types":[],"state":"closed","hidden":false,"links":[],"folder":"/temp_folder","tags":[],"created":1542235299000,"modified":1542235301865,"createdBy":{"user":"user-akumar_counsyl"},"media":"text/plain","archivalState":"live","size":4}'} headers: Connection: [keep-alive] Content-Length: ['374'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:37:43 GMT'] + Date: ['Wed, 14 Nov 2018 22:41:49 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593463790-454673] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235309274-843613] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"project": "project-FP9kKJQ0kj4fzyV6JkV1p4QY", "name": "random.txt"}' + body: '{"project": "project-FPfB99j093FBq1y12xxjPZk0", "name": "random.txt"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -750,19 +750,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kKGj05XJqPYg95F286zK7/rename + uri: https://api.dnanexus.com/file-FPfB98j0g7zGjK1k2yqz9PkK/rename response: - body: {string: '{"id":"file-FP9kKGj05XJqPYg95F286zK7"}'} + body: {string: '{"id":"file-FPfB98j0g7zGjK1k2yqz9PkK"}'} headers: Connection: [keep-alive] Content-Length: ['38'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:37:43 GMT'] + Date: ['Wed, 14 Nov 2018 22:41:49 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593463901-683121] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235309440-773173] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -788,21 +788,21 @@ interactions: method: POST uri: https://api.dnanexus.com/system/findProjects response: - body: {string: '{"results":[{"id":"project-FP9kKJQ0kj4fzyV6JkV1p4QY","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} + body: {string: '{"results":[{"id":"project-FPfB99j093FBq1y12xxjPZk0","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} headers: Connection: [keep-alive] Content-Length: ['147'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:37:44 GMT'] + Date: ['Wed, 14 Nov 2018 22:41:49 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593464052-822763] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235309538-954681] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"objects": [{"name": "random.txt", "folder": "/", "project": "project-FP9kKJQ0kj4fzyV6JkV1p4QY", + body: '{"objects": [{"name": "random.txt", "folder": "/", "project": "project-FPfB99j093FBq1y12xxjPZk0", "batchsize": 2}]}' headers: ? !!binary | @@ -825,21 +825,21 @@ interactions: method: POST uri: https://api.dnanexus.com/system/resolveDataObjects response: - body: {string: '{"results":[[{"project":"project-FP9kKJQ0kj4fzyV6JkV1p4QY","id":"file-FP9kKGj05XJqPYg95F286zK7"}]]}'} + body: {string: '{"results":[[{"project":"project-FPfB99j093FBq1y12xxjPZk0","id":"file-FPfB98j0g7zGjK1k2yqz9PkK"}]]}'} headers: Connection: [keep-alive] Content-Length: ['99'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:37:44 GMT'] + Date: ['Wed, 14 Nov 2018 22:41:49 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593464203-679675] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235309651-589904] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"project": "project-FP9kKJQ0kj4fzyV6JkV1p4QY"}' + body: '{"project": "project-FPfB99j093FBq1y12xxjPZk0"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -859,19 +859,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kKGj05XJqPYg95F286zK7/describe + uri: https://api.dnanexus.com/file-FPfB98j0g7zGjK1k2yqz9PkK/describe response: - body: {string: '{"id":"file-FP9kKGj05XJqPYg95F286zK7","project":"project-FP9kKJQ0kj4fzyV6JkV1p4QY","class":"file","sponsored":false,"name":"random.txt","types":[],"state":"closed","hidden":false,"links":[],"folder":"/","tags":[],"created":1540593459000,"modified":1540593463946,"createdBy":{"user":"user-akumar_counsyl"},"media":"text/plain","archivalState":"live","size":4}'} + body: {string: '{"id":"file-FPfB98j0g7zGjK1k2yqz9PkK","project":"project-FPfB99j093FBq1y12xxjPZk0","class":"file","sponsored":false,"name":"random.txt","types":[],"state":"closed","hidden":false,"links":[],"folder":"/","tags":[],"created":1542235299000,"modified":1542235309451,"createdBy":{"user":"user-akumar_counsyl"},"media":"text/plain","archivalState":"live","size":4}'} headers: Connection: [keep-alive] Content-Length: ['358'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:37:44 GMT'] + Date: ['Wed, 14 Nov 2018 22:41:49 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593464316-83916] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235309744-358050] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -895,19 +895,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kKJQ0kj4fzyV6JkV1p4QY/destroy + uri: https://api.dnanexus.com/project-FPfB99j093FBq1y12xxjPZk0/destroy response: - body: {string: '{"id":"project-FP9kKJQ0kj4fzyV6JkV1p4QY"}'} + body: {string: '{"id":"project-FPfB99j093FBq1y12xxjPZk0"}'} headers: Connection: [keep-alive] Content-Length: ['41'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:37:47 GMT'] + Date: ['Wed, 14 Nov 2018 22:41:52 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593464440-195187] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235309844-813738] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -931,19 +931,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kKGQ05XJvf62VJp1k8pG2/destroy + uri: https://api.dnanexus.com/project-FPfB98Q0g7z5Px212xgzzZyk/destroy response: - body: {string: '{"id":"project-FP9kKGQ05XJvf62VJp1k8pG2"}'} + body: {string: '{"id":"project-FPfB98Q0g7z5Px212xgzzZyk"}'} headers: Connection: [keep-alive] Content-Length: ['41'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:37:49 GMT'] + Date: ['Wed, 14 Nov 2018 22:41:55 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593467192-93597] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235312394-394622] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} version: 1 diff --git a/stor/tests/cassettes_py3/TestCopy/test_dx_to_dx_file_folder_no_ext.yaml b/stor_dx/stor_dx/tests/cassettes_py3/TestCopy/test_dx_to_dx_file_folder_no_ext.yaml similarity index 75% rename from stor/tests/cassettes_py3/TestCopy/test_dx_to_dx_file_folder_no_ext.yaml rename to stor_dx/stor_dx/tests/cassettes_py3/TestCopy/test_dx_to_dx_file_folder_no_ext.yaml index f2991098..1926d30c 100644 --- a/stor/tests/cassettes_py3/TestCopy/test_dx_to_dx_file_folder_no_ext.yaml +++ b/stor_dx/stor_dx/tests/cassettes_py3/TestCopy/test_dx_to_dx_file_folder_no_ext.yaml @@ -1,6 +1,6 @@ interactions: - request: - body: '{"name": "TestCopy.test_dx_to_dx_file_folder_no_ext.c5a0b0a2"}' + body: '{"name": "TestCopy.test_dx_to_dx_file_folder_no_ext.958bc3c6"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -22,17 +22,17 @@ interactions: method: POST uri: https://api.dnanexus.com/project/new response: - body: {string: '{"id":"project-FP9kKPQ07ZV5VJvpJkZZ2f8g"}'} + body: {string: '{"id":"project-FPfB9Gj0pbV29yPf3YzJbGZv"}'} headers: Connection: [keep-alive] Content-Length: ['41'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:37:50 GMT'] + Date: ['Wed, 14 Nov 2018 22:41:55 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593470075-712024] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235315854-223154] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -56,19 +56,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kKPQ07ZV5VJvpJkZZ2f8g/describe + uri: https://api.dnanexus.com/project-FPfB9Gj0pbV29yPf3YzJbGZv/describe response: - body: {string: '{"id":"project-FP9kKPQ07ZV5VJvpJkZZ2f8g","name":"TestCopy.test_dx_to_dx_file_folder_no_ext.c5a0b0a2","class":"project","created":1540593470000,"modified":1540593470000,"billTo":"org-counsyl","level":"ADMINISTER","dataUsage":0,"sponsoredDataUsage":0,"region":"aws:us-east-1","summary":"","description":"","protected":false,"restricted":false,"downloadRestricted":false,"containsPHI":false,"createdBy":{"user":"user-akumar_counsyl"},"version":0,"storageCost":0,"pendingTransfer":null,"tags":[],"defaultInstanceType":"mem2_hdd2_x2","archivalState":"live","archivalProgress":null,"totalSponsoredEgressBytes":0,"consumedSponsoredEgressBytes":0,"atSpendingLimit":false}'} + body: {string: '{"id":"project-FPfB9Gj0pbV29yPf3YzJbGZv","name":"TestCopy.test_dx_to_dx_file_folder_no_ext.958bc3c6","class":"project","created":1542235315000,"modified":1542235315000,"billTo":"org-counsyl","level":"ADMINISTER","dataUsage":0,"sponsoredDataUsage":0,"region":"aws:us-east-1","summary":"","description":"","protected":false,"restricted":false,"downloadRestricted":false,"containsPHI":false,"createdBy":{"user":"user-akumar_counsyl"},"version":0,"storageCost":0,"pendingTransfer":null,"tags":[],"defaultInstanceType":"mem2_hdd2_x2","archivalState":"live","archivalProgress":null,"totalSponsoredEgressBytes":0,"consumedSponsoredEgressBytes":0,"atSpendingLimit":false}'} headers: Connection: [keep-alive] Content-Length: ['663'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:37:50 GMT'] + Date: ['Wed, 14 Nov 2018 22:41:55 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593470199-141763] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235315967-313204] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -92,24 +92,24 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kKPQ07ZV5VJvpJkZZ2f8g/newFolder + uri: https://api.dnanexus.com/project-FPfB9Gj0pbV29yPf3YzJbGZv/newFolder response: - body: {string: '{"id":"project-FP9kKPQ07ZV5VJvpJkZZ2f8g"}'} + body: {string: '{"id":"project-FPfB9Gj0pbV29yPf3YzJbGZv"}'} headers: Connection: [keep-alive] Content-Length: ['41'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:37:50 GMT'] + Date: ['Wed, 14 Nov 2018 22:41:56 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593470341-337077] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235316079-945703] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"name": "folder_file.txt", "folder": "/temp_folder", "project": "project-FP9kKPQ07ZV5VJvpJkZZ2f8g", - "nonce": "b''3544876f60d5544691f986162c944d449df23672ba9386ce9b8971693f0842cb''1540593470.420133"}' + body: '{"name": "folder_file.txt", "folder": "/temp_folder", "project": "project-FPfB9Gj0pbV29yPf3YzJbGZv", + "nonce": "b''19a0657e49062591d948a4a904cb0cf311448f43c6b90fbdd05a1b0613f11a28''1542235316.127279"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -131,17 +131,17 @@ interactions: method: POST uri: https://api.dnanexus.com/file/new response: - body: {string: '{"id":"file-FP9kKPQ07ZV5VJvpJkZZ2f8j"}'} + body: {string: '{"id":"file-FPfB9J00pbV8Fpy33Zqxfx5F"}'} headers: Connection: [keep-alive] Content-Length: ['38'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:37:50 GMT'] + Date: ['Wed, 14 Nov 2018 22:41:56 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593470471-529137] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235316173-378172] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -165,19 +165,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kKPQ07ZV5VJvpJkZZ2f8g/describe + uri: https://api.dnanexus.com/project-FPfB9Gj0pbV29yPf3YzJbGZv/describe response: - body: {string: '{"id":"project-FP9kKPQ07ZV5VJvpJkZZ2f8g","fileUploadParameters":{"maximumPartSize":5368709120,"minimumPartSize":5242880,"maximumFileSize":5497558138880,"maximumNumParts":10000,"emptyLastPartAllowed":true}}'} + body: {string: '{"id":"project-FPfB9Gj0pbV29yPf3YzJbGZv","fileUploadParameters":{"maximumPartSize":5368709120,"minimumPartSize":5242880,"maximumFileSize":5497558138880,"maximumNumParts":10000,"emptyLastPartAllowed":true}}'} headers: Connection: [keep-alive] Content-Length: ['205'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:37:50 GMT'] + Date: ['Wed, 14 Nov 2018 22:41:56 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593470612-222796] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235316319-494967] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -201,19 +201,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kKPQ07ZV5VJvpJkZZ2f8j/upload + uri: https://api.dnanexus.com/file-FPfB9J00pbV8Fpy33Zqxfx5F/upload response: - body: {string: '{"url":"https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/a12e/file/open/file-FP9kKPQ07ZV5VJvpJkZZ2f8j/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181026%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181026T223750Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=e5cf59685da4aabfe32ca0b489600682c8cf881e3bdd7d01dc7dcce6cbcc72cc","headers":{"host":"dnanexus-platform-upload-prod.s3.amazonaws.com","content-type":"binary/octet-stream","x-amz-server-side-encryption":"AES256","content-md5":"jXd/OF09/siBXSD3SWAm3A==","content-length":"4"},"expires":1540593590743}'} + body: {string: '{"url":"https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/57fe/file/open/file-FPfB9J00pbV8Fpy33Zqxfx5F/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181114%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181114T224156Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=4d585b49d66ff145e1156ecc675742f30d973b221aee2012d14d20a47bf198d2","headers":{"host":"dnanexus-platform-upload-prod.s3.amazonaws.com","content-type":"binary/octet-stream","x-amz-server-side-encryption":"AES256","content-md5":"jXd/OF09/siBXSD3SWAm3A==","content-length":"4"},"expires":1542235436424}'} headers: Connection: [keep-alive] Content-Length: ['692'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:37:50 GMT'] + Date: ['Wed, 14 Nov 2018 22:41:56 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593470726-339421] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235316413-134636] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -241,21 +241,21 @@ interactions: : - !!binary | QUVTMjU2 method: PUT - uri: https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/a12e/file/open/file-FP9kKPQ07ZV5VJvpJkZZ2f8j/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181026%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181026T223750Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=e5cf59685da4aabfe32ca0b489600682c8cf881e3bdd7d01dc7dcce6cbcc72cc + uri: https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/57fe/file/open/file-FPfB9J00pbV8Fpy33Zqxfx5F/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181114%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181114T224156Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=4d585b49d66ff145e1156ecc675742f30d973b221aee2012d14d20a47bf198d2 response: body: {string: ''} headers: Content-Length: ['0'] - Date: ['Fri, 26 Oct 2018 22:37:52 GMT'] + Date: ['Wed, 14 Nov 2018 22:41:57 GMT'] ETag: ['"8d777f385d3dfec8815d20f7496026dc"'] Server: [AmazonS3] - x-amz-expiration: ['expiry-date="Sat, 17 Nov 2018 00:00:00 GMT", rule-id="3weekpurge"'] - x-amz-id-2: [sD7BNm9jXdqKCwVFbK6l3/pAA1BTkTyRzFrkBQHh7IpEQ/2+MyZKkmTlGJmKLvcEySpWnp/Oeas=] - x-amz-request-id: [D3D9254793D1FE3B] + x-amz-expiration: ['expiry-date="Thu, 06 Dec 2018 00:00:00 GMT", rule-id="3weekpurge"'] + x-amz-id-2: [n0aIq2V42q5RHH5xi5Azkd7UocJfPjA49ilttZ4rQKdjY9Bn5Gcb3ahJc2Bl9lBZKzF+QIRg5lw=] + x-amz-request-id: [8B854FE351F64EF9] x-amz-server-side-encryption: [AES256] status: {code: 200, message: OK} - request: - body: '{"fields": {"state": true}, "project": "project-FP9kKPQ07ZV5VJvpJkZZ2f8g"}' + body: '{"fields": {"state": true}, "project": "project-FPfB9Gj0pbV29yPf3YzJbGZv"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -275,19 +275,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kKPQ07ZV5VJvpJkZZ2f8j/describe + uri: https://api.dnanexus.com/file-FPfB9J00pbV8Fpy33Zqxfx5F/describe response: - body: {string: '{"id":"file-FP9kKPQ07ZV5VJvpJkZZ2f8j","state":"open"}'} + body: {string: '{"id":"file-FPfB9J00pbV8Fpy33Zqxfx5F","state":"open"}'} headers: Connection: [keep-alive] Content-Length: ['53'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:37:51 GMT'] + Date: ['Wed, 14 Nov 2018 22:41:56 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593471267-481592] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235316873-179885] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -311,23 +311,23 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kKPQ07ZV5VJvpJkZZ2f8j/close + uri: https://api.dnanexus.com/file-FPfB9J00pbV8Fpy33Zqxfx5F/close response: - body: {string: '{"id":"file-FP9kKPQ07ZV5VJvpJkZZ2f8j"}'} + body: {string: '{"id":"file-FPfB9J00pbV8Fpy33Zqxfx5F"}'} headers: Connection: [keep-alive] Content-Length: ['38'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:37:51 GMT'] + Date: ['Wed, 14 Nov 2018 22:41:57 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593471387-430811] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235317046-628066] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"fields": {"state": true}, "project": "project-FP9kKPQ07ZV5VJvpJkZZ2f8g"}' + body: '{"fields": {"state": true}, "project": "project-FPfB9Gj0pbV29yPf3YzJbGZv"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -347,23 +347,23 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kKPQ07ZV5VJvpJkZZ2f8j/describe + uri: https://api.dnanexus.com/file-FPfB9J00pbV8Fpy33Zqxfx5F/describe response: - body: {string: '{"id":"file-FP9kKPQ07ZV5VJvpJkZZ2f8j","state":"closing"}'} + body: {string: '{"id":"file-FPfB9J00pbV8Fpy33Zqxfx5F","state":"closing"}'} headers: Connection: [keep-alive] Content-Length: ['56'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:37:51 GMT'] + Date: ['Wed, 14 Nov 2018 22:41:57 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593471519-538455] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235317167-825502] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"fields": {"state": true}, "project": "project-FP9kKPQ07ZV5VJvpJkZZ2f8g"}' + body: '{"fields": {"state": true}, "project": "project-FPfB9Gj0pbV29yPf3YzJbGZv"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -383,19 +383,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kKPQ07ZV5VJvpJkZZ2f8j/describe + uri: https://api.dnanexus.com/file-FPfB9J00pbV8Fpy33Zqxfx5F/describe response: - body: {string: '{"id":"file-FP9kKPQ07ZV5VJvpJkZZ2f8j","state":"closed"}'} + body: {string: '{"id":"file-FPfB9J00pbV8Fpy33Zqxfx5F","state":"closed"}'} headers: Connection: [keep-alive] Content-Length: ['55'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:37:53 GMT'] + Date: ['Wed, 14 Nov 2018 22:41:59 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593473653-903942] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235319269-569697] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -421,21 +421,21 @@ interactions: method: POST uri: https://api.dnanexus.com/project/new response: - body: {string: '{"id":"project-FP9kKQ8040k68GXkJpbYfb0x"}'} + body: {string: '{"id":"project-FPfB9Jj0qZxFgzq03ZJpv0VZ"}'} headers: Connection: [keep-alive] Content-Length: ['41'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:37:53 GMT'] + Date: ['Wed, 14 Nov 2018 22:41:59 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593473779-290124] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235319600-381537] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"name": "TestCopy.test_dx_to_dx_file_folder_no_ext.c5a0b0a2", "level": + body: '{"name": "TestCopy.test_dx_to_dx_file_folder_no_ext.958bc3c6", "level": "VIEW", "limit": 2}' headers: ? !!binary | @@ -458,22 +458,22 @@ interactions: method: POST uri: https://api.dnanexus.com/system/findProjects response: - body: {string: '{"results":[{"id":"project-FP9kKPQ07ZV5VJvpJkZZ2f8g","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} + body: {string: '{"results":[{"id":"project-FPfB9Gj0pbV29yPf3YzJbGZv","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} headers: Connection: [keep-alive] Content-Length: ['147'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:37:53 GMT'] + Date: ['Wed, 14 Nov 2018 22:41:59 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593473909-915836] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235319729-101455] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: body: '{"objects": [{"name": "folder_file.txt", "folder": "/temp_folder", "project": - "project-FP9kKPQ07ZV5VJvpJkZZ2f8g", "batchsize": 2}]}' + "project-FPfB9Gj0pbV29yPf3YzJbGZv", "batchsize": 2}]}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -495,21 +495,21 @@ interactions: method: POST uri: https://api.dnanexus.com/system/resolveDataObjects response: - body: {string: '{"results":[[{"project":"project-FP9kKPQ07ZV5VJvpJkZZ2f8g","id":"file-FP9kKPQ07ZV5VJvpJkZZ2f8j"}]]}'} + body: {string: '{"results":[[{"project":"project-FPfB9Gj0pbV29yPf3YzJbGZv","id":"file-FPfB9J00pbV8Fpy33Zqxfx5F"}]]}'} headers: Connection: [keep-alive] Content-Length: ['99'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:37:54 GMT'] + Date: ['Wed, 14 Nov 2018 22:41:59 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593474042-39346] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235319842-450026] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"project": "project-FP9kKPQ07ZV5VJvpJkZZ2f8g"}' + body: '{"project": "project-FPfB9Gj0pbV29yPf3YzJbGZv"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -529,19 +529,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kKPQ07ZV5VJvpJkZZ2f8j/describe + uri: https://api.dnanexus.com/file-FPfB9J00pbV8Fpy33Zqxfx5F/describe response: - body: {string: '{"id":"file-FP9kKPQ07ZV5VJvpJkZZ2f8j","project":"project-FP9kKPQ07ZV5VJvpJkZZ2f8g","class":"file","sponsored":false,"name":"folder_file.txt","types":[],"state":"closed","hidden":false,"links":[],"folder":"/temp_folder","tags":[],"created":1540593470000,"modified":1540593472453,"createdBy":{"user":"user-akumar_counsyl"},"media":"text/plain","archivalState":"live","size":4}'} + body: {string: '{"id":"file-FPfB9J00pbV8Fpy33Zqxfx5F","project":"project-FPfB9Gj0pbV29yPf3YzJbGZv","class":"file","sponsored":false,"name":"folder_file.txt","types":[],"state":"closed","hidden":false,"links":[],"folder":"/temp_folder","tags":[],"created":1542235316000,"modified":1542235317929,"createdBy":{"user":"user-akumar_counsyl"},"media":"text/plain","archivalState":"live","size":4}'} headers: Connection: [keep-alive] Content-Length: ['374'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:37:54 GMT'] + Date: ['Wed, 14 Nov 2018 22:41:59 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593474164-403508] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235319941-799218] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -568,17 +568,17 @@ interactions: method: POST uri: https://api.dnanexus.com/system/findProjects response: - body: {string: '{"results":[{"id":"project-FP9kKQ8040k68GXkJpbYfb0x","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} + body: {string: '{"results":[{"id":"project-FPfB9Jj0qZxFgzq03ZJpv0VZ","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} headers: Connection: [keep-alive] Content-Length: ['147'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:37:54 GMT'] + Date: ['Wed, 14 Nov 2018 22:42:00 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593474285-127917] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235320039-424012] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -603,21 +603,21 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kKQ8040k68GXkJpbYfb0x/listFolder + uri: https://api.dnanexus.com/project-FPfB9Jj0qZxFgzq03ZJpv0VZ/listFolder response: body: {string: '{"error":{"type":"ResourceNotFound","message":"The specified folder - could not be found in project-FP9kKQ8040k68GXkJpbYfb0x"}}'} + could not be found in project-FPfB9Jj0qZxFgzq03ZJpv0VZ"}}'} headers: Connection: [keep-alive] Content-Type: [application/json] - Date: ['Fri, 26 Oct 2018 22:37:54 GMT'] + Date: ['Wed, 14 Nov 2018 22:42:00 GMT'] Server: [nginx] Transfer-Encoding: [chunked] Vary: [Accept-Encoding] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593474427-293841] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235320153-515257] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 404, message: Not Found} - request: @@ -644,17 +644,17 @@ interactions: method: POST uri: https://api.dnanexus.com/system/findProjects response: - body: {string: '{"results":[{"id":"project-FP9kKQ8040k68GXkJpbYfb0x","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} + body: {string: '{"results":[{"id":"project-FPfB9Jj0qZxFgzq03ZJpv0VZ","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} headers: Connection: [keep-alive] Content-Length: ['147'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:37:54 GMT'] + Date: ['Wed, 14 Nov 2018 22:42:00 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593474860-166007] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235320528-866213] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -678,23 +678,23 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kKQ8040k68GXkJpbYfb0x/newFolder + uri: https://api.dnanexus.com/project-FPfB9Jj0qZxFgzq03ZJpv0VZ/newFolder response: - body: {string: '{"id":"project-FP9kKQ8040k68GXkJpbYfb0x"}'} + body: {string: '{"id":"project-FPfB9Jj0qZxFgzq03ZJpv0VZ"}'} headers: Connection: [keep-alive] Content-Length: ['41'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:37:55 GMT'] + Date: ['Wed, 14 Nov 2018 22:42:00 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593474994-55242] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235320642-569569] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"objects": [{"name": "file", "folder": "/random", "project": "project-FP9kKQ8040k68GXkJpbYfb0x", + body: '{"objects": [{"name": "file", "folder": "/random", "project": "project-FPfB9Jj0qZxFgzq03ZJpv0VZ", "batchsize": 2}]}' headers: ? !!binary | @@ -722,16 +722,16 @@ interactions: Connection: [keep-alive] Content-Length: ['16'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:37:55 GMT'] + Date: ['Wed, 14 Nov 2018 22:42:00 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593475115-349553] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235320750-24328] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"objects": ["file-FP9kKPQ07ZV5VJvpJkZZ2f8j"], "project": "project-FP9kKQ8040k68GXkJpbYfb0x", + body: '{"objects": ["file-FPfB9J00pbV8Fpy33Zqxfx5F"], "project": "project-FPfB9Jj0qZxFgzq03ZJpv0VZ", "destination": "/random"}' headers: ? !!binary | @@ -752,23 +752,23 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kKPQ07ZV5VJvpJkZZ2f8g/clone + uri: https://api.dnanexus.com/project-FPfB9Gj0pbV29yPf3YzJbGZv/clone response: - body: {string: '{"id":"project-FP9kKPQ07ZV5VJvpJkZZ2f8g","project":"project-FP9kKQ8040k68GXkJpbYfb0x","exists":[]}'} + body: {string: '{"id":"project-FPfB9Gj0pbV29yPf3YzJbGZv","project":"project-FPfB9Jj0qZxFgzq03ZJpv0VZ","exists":[]}'} headers: Connection: [keep-alive] Content-Length: ['98'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:37:55 GMT'] + Date: ['Wed, 14 Nov 2018 22:42:00 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593475239-772791] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235320866-469064] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"project": "project-FP9kKPQ07ZV5VJvpJkZZ2f8g"}' + body: '{"project": "project-FPfB9Gj0pbV29yPf3YzJbGZv"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -788,23 +788,23 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kKPQ07ZV5VJvpJkZZ2f8j/describe + uri: https://api.dnanexus.com/file-FPfB9J00pbV8Fpy33Zqxfx5F/describe response: - body: {string: '{"id":"file-FP9kKPQ07ZV5VJvpJkZZ2f8j","project":"project-FP9kKPQ07ZV5VJvpJkZZ2f8g","class":"file","sponsored":false,"name":"folder_file.txt","types":[],"state":"closed","hidden":false,"links":[],"folder":"/temp_folder","tags":[],"created":1540593470000,"modified":1540593472453,"createdBy":{"user":"user-akumar_counsyl"},"media":"text/plain","archivalState":"live","size":4}'} + body: {string: '{"id":"file-FPfB9J00pbV8Fpy33Zqxfx5F","project":"project-FPfB9Gj0pbV29yPf3YzJbGZv","class":"file","sponsored":false,"name":"folder_file.txt","types":[],"state":"closed","hidden":false,"links":[],"folder":"/temp_folder","tags":[],"created":1542235316000,"modified":1542235317929,"createdBy":{"user":"user-akumar_counsyl"},"media":"text/plain","archivalState":"live","size":4}'} headers: Connection: [keep-alive] Content-Length: ['374'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:37:55 GMT'] + Date: ['Wed, 14 Nov 2018 22:42:01 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593475830-605330] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235321026-780972] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"project": "project-FP9kKQ8040k68GXkJpbYfb0x", "name": "file"}' + body: '{"project": "project-FPfB9Jj0qZxFgzq03ZJpv0VZ", "name": "file"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -824,19 +824,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kKPQ07ZV5VJvpJkZZ2f8j/rename + uri: https://api.dnanexus.com/file-FPfB9J00pbV8Fpy33Zqxfx5F/rename response: - body: {string: '{"id":"file-FP9kKPQ07ZV5VJvpJkZZ2f8j"}'} + body: {string: '{"id":"file-FPfB9J00pbV8Fpy33Zqxfx5F"}'} headers: Connection: [keep-alive] Content-Length: ['38'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:37:56 GMT'] + Date: ['Wed, 14 Nov 2018 22:42:01 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593476231-618618] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235321122-551895] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -863,21 +863,21 @@ interactions: method: POST uri: https://api.dnanexus.com/system/findProjects response: - body: {string: '{"results":[{"id":"project-FP9kKQ8040k68GXkJpbYfb0x","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} + body: {string: '{"results":[{"id":"project-FPfB9Jj0qZxFgzq03ZJpv0VZ","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} headers: Connection: [keep-alive] Content-Length: ['147'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:37:56 GMT'] + Date: ['Wed, 14 Nov 2018 22:42:01 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593476692-298074] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235321228-647247] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"objects": [{"name": "file", "folder": "/random", "project": "project-FP9kKQ8040k68GXkJpbYfb0x", + body: '{"objects": [{"name": "file", "folder": "/random", "project": "project-FPfB9Jj0qZxFgzq03ZJpv0VZ", "batchsize": 2}]}' headers: ? !!binary | @@ -900,21 +900,21 @@ interactions: method: POST uri: https://api.dnanexus.com/system/resolveDataObjects response: - body: {string: '{"results":[[{"project":"project-FP9kKQ8040k68GXkJpbYfb0x","id":"file-FP9kKPQ07ZV5VJvpJkZZ2f8j"}]]}'} + body: {string: '{"results":[[{"project":"project-FPfB9Jj0qZxFgzq03ZJpv0VZ","id":"file-FPfB9J00pbV8Fpy33Zqxfx5F"}]]}'} headers: Connection: [keep-alive] Content-Length: ['99'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:37:56 GMT'] + Date: ['Wed, 14 Nov 2018 22:42:01 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593476822-943965] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235321347-231447] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"project": "project-FP9kKQ8040k68GXkJpbYfb0x"}' + body: '{"project": "project-FPfB9Jj0qZxFgzq03ZJpv0VZ"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -934,19 +934,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kKPQ07ZV5VJvpJkZZ2f8j/describe + uri: https://api.dnanexus.com/file-FPfB9J00pbV8Fpy33Zqxfx5F/describe response: - body: {string: '{"id":"file-FP9kKPQ07ZV5VJvpJkZZ2f8j","project":"project-FP9kKQ8040k68GXkJpbYfb0x","class":"file","sponsored":false,"name":"file","types":[],"state":"closed","hidden":false,"links":[],"folder":"/random","tags":[],"created":1540593470000,"modified":1540593476587,"createdBy":{"user":"user-akumar_counsyl"},"media":"text/plain","archivalState":"live","size":4}'} + body: {string: '{"id":"file-FPfB9J00pbV8Fpy33Zqxfx5F","project":"project-FPfB9Jj0qZxFgzq03ZJpv0VZ","class":"file","sponsored":false,"name":"file","types":[],"state":"closed","hidden":false,"links":[],"folder":"/random","tags":[],"created":1542235316000,"modified":1542235321132,"createdBy":{"user":"user-akumar_counsyl"},"media":"text/plain","archivalState":"live","size":4}'} headers: Connection: [keep-alive] Content-Length: ['358'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:37:57 GMT'] + Date: ['Wed, 14 Nov 2018 22:42:01 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593476979-574233] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235321450-793874] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -971,21 +971,21 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kKQ8040k68GXkJpbYfb0x/listFolder + uri: https://api.dnanexus.com/project-FPfB9Jj0qZxFgzq03ZJpv0VZ/listFolder response: body: {string: '{"error":{"type":"ResourceNotFound","message":"The specified folder - could not be found in project-FP9kKQ8040k68GXkJpbYfb0x"}}'} + could not be found in project-FPfB9Jj0qZxFgzq03ZJpv0VZ"}}'} headers: Connection: [keep-alive] Content-Type: [application/json] - Date: ['Fri, 26 Oct 2018 22:37:57 GMT'] + Date: ['Wed, 14 Nov 2018 22:42:01 GMT'] Server: [nginx] Transfer-Encoding: [chunked] Vary: [Accept-Encoding] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593477147-410061] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235321562-278603] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 404, message: Not Found} - request: @@ -1012,22 +1012,22 @@ interactions: method: POST uri: https://api.dnanexus.com/system/findProjects response: - body: {string: '{"results":[{"id":"project-FP9kKQ8040k68GXkJpbYfb0x","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} + body: {string: '{"results":[{"id":"project-FPfB9Jj0qZxFgzq03ZJpv0VZ","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} headers: Connection: [keep-alive] Content-Length: ['147'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:37:57 GMT'] + Date: ['Wed, 14 Nov 2018 22:42:01 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593477551-586938] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235321915-511102] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: body: '{"objects": [{"name": "folder_file.txt", "folder": "/random/file", "project": - "project-FP9kKQ8040k68GXkJpbYfb0x", "batchsize": 2}]}' + "project-FPfB9Jj0qZxFgzq03ZJpv0VZ", "batchsize": 2}]}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -1054,12 +1054,12 @@ interactions: Connection: [keep-alive] Content-Length: ['16'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:37:57 GMT'] + Date: ['Wed, 14 Nov 2018 22:42:02 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593477674-214443] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235322028-784521] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -1084,21 +1084,21 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kKQ8040k68GXkJpbYfb0x/listFolder + uri: https://api.dnanexus.com/project-FPfB9Jj0qZxFgzq03ZJpv0VZ/listFolder response: body: {string: '{"error":{"type":"ResourceNotFound","message":"The specified folder - could not be found in project-FP9kKQ8040k68GXkJpbYfb0x"}}'} + could not be found in project-FPfB9Jj0qZxFgzq03ZJpv0VZ"}}'} headers: Connection: [keep-alive] Content-Type: [application/json] - Date: ['Fri, 26 Oct 2018 22:37:57 GMT'] + Date: ['Wed, 14 Nov 2018 22:42:02 GMT'] Server: [nginx] Transfer-Encoding: [chunked] Vary: [Accept-Encoding] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593477786-912971] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235322148-814455] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 404, message: Not Found} - request: @@ -1125,21 +1125,21 @@ interactions: method: POST uri: https://api.dnanexus.com/system/findProjects response: - body: {string: '{"results":[{"id":"project-FP9kKQ8040k68GXkJpbYfb0x","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} + body: {string: '{"results":[{"id":"project-FPfB9Jj0qZxFgzq03ZJpv0VZ","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} headers: Connection: [keep-alive] Content-Length: ['147'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:37:58 GMT'] + Date: ['Wed, 14 Nov 2018 22:42:02 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593478183-928638] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235322488-185684] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"objects": [{"name": "file", "folder": "/random", "project": "project-FP9kKQ8040k68GXkJpbYfb0x", + body: '{"objects": [{"name": "file", "folder": "/random", "project": "project-FPfB9Jj0qZxFgzq03ZJpv0VZ", "batchsize": 2}]}' headers: ? !!binary | @@ -1162,21 +1162,21 @@ interactions: method: POST uri: https://api.dnanexus.com/system/resolveDataObjects response: - body: {string: '{"results":[[{"project":"project-FP9kKQ8040k68GXkJpbYfb0x","id":"file-FP9kKPQ07ZV5VJvpJkZZ2f8j"}]]}'} + body: {string: '{"results":[[{"project":"project-FPfB9Jj0qZxFgzq03ZJpv0VZ","id":"file-FPfB9J00pbV8Fpy33Zqxfx5F"}]]}'} headers: Connection: [keep-alive] Content-Length: ['99'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:37:58 GMT'] + Date: ['Wed, 14 Nov 2018 22:42:02 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593478312-275170] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235322608-384153] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"objects": ["file-FP9kKPQ07ZV5VJvpJkZZ2f8j"]}' + body: '{"objects": ["file-FPfB9J00pbV8Fpy33Zqxfx5F"]}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -1196,23 +1196,23 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kKQ8040k68GXkJpbYfb0x/removeObjects + uri: https://api.dnanexus.com/project-FPfB9Jj0qZxFgzq03ZJpv0VZ/removeObjects response: - body: {string: '{"id":"project-FP9kKQ8040k68GXkJpbYfb0x"}'} + body: {string: '{"id":"project-FPfB9Jj0qZxFgzq03ZJpv0VZ"}'} headers: Connection: [keep-alive] Content-Length: ['41'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:37:58 GMT'] + Date: ['Wed, 14 Nov 2018 22:42:02 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593478418-953947] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235322706-188199] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"project": "project-FP9kKPQ07ZV5VJvpJkZZ2f8g"}' + body: '{"project": "project-FPfB9Gj0pbV29yPf3YzJbGZv"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -1232,19 +1232,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kKPQ07ZV5VJvpJkZZ2f8j/describe + uri: https://api.dnanexus.com/file-FPfB9J00pbV8Fpy33Zqxfx5F/describe response: - body: {string: '{"id":"file-FP9kKPQ07ZV5VJvpJkZZ2f8j","project":"project-FP9kKPQ07ZV5VJvpJkZZ2f8g","class":"file","sponsored":false,"name":"folder_file.txt","types":[],"state":"closed","hidden":false,"links":[],"folder":"/temp_folder","tags":[],"created":1540593470000,"modified":1540593472453,"createdBy":{"user":"user-akumar_counsyl"},"media":"text/plain","archivalState":"live","size":4}'} + body: {string: '{"id":"file-FPfB9J00pbV8Fpy33Zqxfx5F","project":"project-FPfB9Gj0pbV29yPf3YzJbGZv","class":"file","sponsored":false,"name":"folder_file.txt","types":[],"state":"closed","hidden":false,"links":[],"folder":"/temp_folder","tags":[],"created":1542235316000,"modified":1542235317929,"createdBy":{"user":"user-akumar_counsyl"},"media":"text/plain","archivalState":"live","size":4}'} headers: Connection: [keep-alive] Content-Length: ['374'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:37:58 GMT'] + Date: ['Wed, 14 Nov 2018 22:42:02 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593478590-586914] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235322859-233950] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -1271,17 +1271,17 @@ interactions: method: POST uri: https://api.dnanexus.com/system/findProjects response: - body: {string: '{"results":[{"id":"project-FP9kKQ8040k68GXkJpbYfb0x","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} + body: {string: '{"results":[{"id":"project-FPfB9Jj0qZxFgzq03ZJpv0VZ","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} headers: Connection: [keep-alive] Content-Length: ['147'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:37:58 GMT'] + Date: ['Wed, 14 Nov 2018 22:42:02 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593478702-813238] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235322956-515876] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -1306,19 +1306,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kKQ8040k68GXkJpbYfb0x/listFolder + uri: https://api.dnanexus.com/project-FPfB9Jj0qZxFgzq03ZJpv0VZ/listFolder response: body: {string: '{"folders":[]}'} headers: Connection: [keep-alive] Content-Length: ['14'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:37:58 GMT'] + Date: ['Wed, 14 Nov 2018 22:42:03 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593478831-332247] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235323068-556183] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -1345,22 +1345,22 @@ interactions: method: POST uri: https://api.dnanexus.com/system/findProjects response: - body: {string: '{"results":[{"id":"project-FP9kKQ8040k68GXkJpbYfb0x","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} + body: {string: '{"results":[{"id":"project-FPfB9Jj0qZxFgzq03ZJpv0VZ","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} headers: Connection: [keep-alive] Content-Length: ['147'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:37:58 GMT'] + Date: ['Wed, 14 Nov 2018 22:42:03 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593478945-249189] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235323177-239347] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: body: '{"objects": [{"name": "folder_file.txt", "folder": "/random", "project": - "project-FP9kKQ8040k68GXkJpbYfb0x", "batchsize": 2}]}' + "project-FPfB9Jj0qZxFgzq03ZJpv0VZ", "batchsize": 2}]}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -1387,16 +1387,16 @@ interactions: Connection: [keep-alive] Content-Length: ['16'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:37:59 GMT'] + Date: ['Wed, 14 Nov 2018 22:42:03 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593479076-843163] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235323290-162487] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"objects": ["file-FP9kKPQ07ZV5VJvpJkZZ2f8j"], "project": "project-FP9kKQ8040k68GXkJpbYfb0x", + body: '{"objects": ["file-FPfB9J00pbV8Fpy33Zqxfx5F"], "project": "project-FPfB9Jj0qZxFgzq03ZJpv0VZ", "destination": "/random"}' headers: ? !!binary | @@ -1417,23 +1417,23 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kKPQ07ZV5VJvpJkZZ2f8g/clone + uri: https://api.dnanexus.com/project-FPfB9Gj0pbV29yPf3YzJbGZv/clone response: - body: {string: '{"id":"project-FP9kKPQ07ZV5VJvpJkZZ2f8g","project":"project-FP9kKQ8040k68GXkJpbYfb0x","exists":[]}'} + body: {string: '{"id":"project-FPfB9Gj0pbV29yPf3YzJbGZv","project":"project-FPfB9Jj0qZxFgzq03ZJpv0VZ","exists":[]}'} headers: Connection: [keep-alive] Content-Length: ['98'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:37:59 GMT'] + Date: ['Wed, 14 Nov 2018 22:42:03 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593479186-972668] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235323424-790012] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"project": "project-FP9kKPQ07ZV5VJvpJkZZ2f8g"}' + body: '{"project": "project-FPfB9Gj0pbV29yPf3YzJbGZv"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -1453,19 +1453,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kKPQ07ZV5VJvpJkZZ2f8j/describe + uri: https://api.dnanexus.com/file-FPfB9J00pbV8Fpy33Zqxfx5F/describe response: - body: {string: '{"id":"file-FP9kKPQ07ZV5VJvpJkZZ2f8j","project":"project-FP9kKPQ07ZV5VJvpJkZZ2f8g","class":"file","sponsored":false,"name":"folder_file.txt","types":[],"state":"closed","hidden":false,"links":[],"folder":"/temp_folder","tags":[],"created":1540593470000,"modified":1540593472453,"createdBy":{"user":"user-akumar_counsyl"},"media":"text/plain","archivalState":"live","size":4}'} + body: {string: '{"id":"file-FPfB9J00pbV8Fpy33Zqxfx5F","project":"project-FPfB9Gj0pbV29yPf3YzJbGZv","class":"file","sponsored":false,"name":"folder_file.txt","types":[],"state":"closed","hidden":false,"links":[],"folder":"/temp_folder","tags":[],"created":1542235316000,"modified":1542235317929,"createdBy":{"user":"user-akumar_counsyl"},"media":"text/plain","archivalState":"live","size":4}'} headers: Connection: [keep-alive] Content-Length: ['374'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:37:59 GMT'] + Date: ['Wed, 14 Nov 2018 22:42:03 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593479404-683573] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235323587-413482] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -1492,22 +1492,22 @@ interactions: method: POST uri: https://api.dnanexus.com/system/findProjects response: - body: {string: '{"results":[{"id":"project-FP9kKQ8040k68GXkJpbYfb0x","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} + body: {string: '{"results":[{"id":"project-FPfB9Jj0qZxFgzq03ZJpv0VZ","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} headers: Connection: [keep-alive] Content-Length: ['147'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:37:59 GMT'] + Date: ['Wed, 14 Nov 2018 22:42:03 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593479519-477576] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235323759-922974] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: body: '{"objects": [{"name": "folder_file.txt", "folder": "/random", "project": - "project-FP9kKQ8040k68GXkJpbYfb0x", "batchsize": 2}]}' + "project-FPfB9Jj0qZxFgzq03ZJpv0VZ", "batchsize": 2}]}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -1529,21 +1529,21 @@ interactions: method: POST uri: https://api.dnanexus.com/system/resolveDataObjects response: - body: {string: '{"results":[[{"project":"project-FP9kKQ8040k68GXkJpbYfb0x","id":"file-FP9kKPQ07ZV5VJvpJkZZ2f8j"}]]}'} + body: {string: '{"results":[[{"project":"project-FPfB9Jj0qZxFgzq03ZJpv0VZ","id":"file-FPfB9J00pbV8Fpy33Zqxfx5F"}]]}'} headers: Connection: [keep-alive] Content-Length: ['99'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:37:59 GMT'] + Date: ['Wed, 14 Nov 2018 22:42:03 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593479654-215141] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235323962-740670] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"project": "project-FP9kKQ8040k68GXkJpbYfb0x"}' + body: '{"project": "project-FPfB9Jj0qZxFgzq03ZJpv0VZ"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -1563,19 +1563,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kKPQ07ZV5VJvpJkZZ2f8j/describe + uri: https://api.dnanexus.com/file-FPfB9J00pbV8Fpy33Zqxfx5F/describe response: - body: {string: '{"id":"file-FP9kKPQ07ZV5VJvpJkZZ2f8j","project":"project-FP9kKQ8040k68GXkJpbYfb0x","class":"file","sponsored":false,"name":"folder_file.txt","types":[],"state":"closed","hidden":false,"links":[],"folder":"/random","tags":[],"created":1540593470000,"modified":1540593479278,"createdBy":{"user":"user-akumar_counsyl"},"media":"text/plain","archivalState":"live","size":4}'} + body: {string: '{"id":"file-FPfB9J00pbV8Fpy33Zqxfx5F","project":"project-FPfB9Jj0qZxFgzq03ZJpv0VZ","class":"file","sponsored":false,"name":"folder_file.txt","types":[],"state":"closed","hidden":false,"links":[],"folder":"/random","tags":[],"created":1542235316000,"modified":1542235323477,"createdBy":{"user":"user-akumar_counsyl"},"media":"text/plain","archivalState":"live","size":4}'} headers: Connection: [keep-alive] Content-Length: ['369'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:37:59 GMT'] + Date: ['Wed, 14 Nov 2018 22:42:04 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593479759-648364] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235324071-663655] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -1599,19 +1599,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kKQ8040k68GXkJpbYfb0x/destroy + uri: https://api.dnanexus.com/project-FPfB9Jj0qZxFgzq03ZJpv0VZ/destroy response: - body: {string: '{"id":"project-FP9kKQ8040k68GXkJpbYfb0x"}'} + body: {string: '{"id":"project-FPfB9Jj0qZxFgzq03ZJpv0VZ"}'} headers: Connection: [keep-alive] Content-Length: ['41'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:38:02 GMT'] + Date: ['Wed, 14 Nov 2018 22:42:06 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593479876-193720] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235324557-750495] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -1635,19 +1635,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kKPQ07ZV5VJvpJkZZ2f8g/destroy + uri: https://api.dnanexus.com/project-FPfB9Gj0pbV29yPf3YzJbGZv/destroy response: - body: {string: '{"id":"project-FP9kKPQ07ZV5VJvpJkZZ2f8g"}'} + body: {string: '{"id":"project-FPfB9Gj0pbV29yPf3YzJbGZv"}'} headers: Connection: [keep-alive] Content-Length: ['41'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:38:05 GMT'] + Date: ['Wed, 14 Nov 2018 22:42:10 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593482658-472621] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235327125-3819] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} version: 1 diff --git a/stor/tests/cassettes_py3/TestCopy/test_dx_to_dx_folder.yaml b/stor_dx/stor_dx/tests/cassettes_py3/TestCopy/test_dx_to_dx_folder.yaml similarity index 74% rename from stor/tests/cassettes_py3/TestCopy/test_dx_to_dx_folder.yaml rename to stor_dx/stor_dx/tests/cassettes_py3/TestCopy/test_dx_to_dx_folder.yaml index 61d85949..ba8a9692 100644 --- a/stor/tests/cassettes_py3/TestCopy/test_dx_to_dx_folder.yaml +++ b/stor_dx/stor_dx/tests/cassettes_py3/TestCopy/test_dx_to_dx_folder.yaml @@ -1,6 +1,6 @@ interactions: - request: - body: '{"name": "TestCopy.test_dx_to_dx_folder.3c9c9a4c"}' + body: '{"name": "TestCopy.test_dx_to_dx_folder.9aa7cd82"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -22,17 +22,17 @@ interactions: method: POST uri: https://api.dnanexus.com/project/new response: - body: {string: '{"id":"project-FP9kKYQ09gVkyPz44YqJxVb3"}'} + body: {string: '{"id":"project-FPfB9QQ0ZPzKYK2Q3YV9b288"}'} headers: Connection: [keep-alive] Content-Length: ['41'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:38:06 GMT'] + Date: ['Wed, 14 Nov 2018 22:42:10 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593486044-21760] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235330444-861809] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -56,19 +56,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kKYQ09gVkyPz44YqJxVb3/describe + uri: https://api.dnanexus.com/project-FPfB9QQ0ZPzKYK2Q3YV9b288/describe response: - body: {string: '{"id":"project-FP9kKYQ09gVkyPz44YqJxVb3","name":"TestCopy.test_dx_to_dx_folder.3c9c9a4c","class":"project","created":1540593486000,"modified":1540593486000,"billTo":"org-counsyl","level":"ADMINISTER","dataUsage":0,"sponsoredDataUsage":0,"region":"aws:us-east-1","summary":"","description":"","protected":false,"restricted":false,"downloadRestricted":false,"containsPHI":false,"createdBy":{"user":"user-akumar_counsyl"},"version":0,"storageCost":0,"pendingTransfer":null,"tags":[],"defaultInstanceType":"mem2_hdd2_x2","archivalState":"live","archivalProgress":null,"totalSponsoredEgressBytes":0,"consumedSponsoredEgressBytes":0,"atSpendingLimit":false}'} + body: {string: '{"id":"project-FPfB9QQ0ZPzKYK2Q3YV9b288","name":"TestCopy.test_dx_to_dx_folder.9aa7cd82","class":"project","created":1542235330000,"modified":1542235330000,"billTo":"org-counsyl","level":"ADMINISTER","dataUsage":0,"sponsoredDataUsage":0,"region":"aws:us-east-1","summary":"","description":"","protected":false,"restricted":false,"downloadRestricted":false,"containsPHI":false,"createdBy":{"user":"user-akumar_counsyl"},"version":0,"storageCost":0,"pendingTransfer":null,"tags":[],"defaultInstanceType":"mem2_hdd2_x2","archivalState":"live","archivalProgress":null,"totalSponsoredEgressBytes":0,"consumedSponsoredEgressBytes":0,"atSpendingLimit":false}'} headers: Connection: [keep-alive] Content-Length: ['651'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:38:06 GMT'] + Date: ['Wed, 14 Nov 2018 22:42:10 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593486184-542713] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235330544-695261] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -92,24 +92,24 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kKYQ09gVkyPz44YqJxVb3/newFolder + uri: https://api.dnanexus.com/project-FPfB9QQ0ZPzKYK2Q3YV9b288/newFolder response: - body: {string: '{"id":"project-FP9kKYQ09gVkyPz44YqJxVb3"}'} + body: {string: '{"id":"project-FPfB9QQ0ZPzKYK2Q3YV9b288"}'} headers: Connection: [keep-alive] Content-Length: ['41'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:38:06 GMT'] + Date: ['Wed, 14 Nov 2018 22:42:10 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593486304-788468] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235330649-270036] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"name": "folder_file.txt", "folder": "/temp_folder", "project": "project-FP9kKYQ09gVkyPz44YqJxVb3", - "nonce": "b''53db6676adb052703dc906c6e39e3117b4ef8b5ba72eaa43853336b6908c9225''1540593486.369445"}' + body: '{"name": "folder_file.txt", "folder": "/temp_folder", "project": "project-FPfB9QQ0ZPzKYK2Q3YV9b288", + "nonce": "b''0b6190eb30004eb556237d5b26e7fabf7a2d754a05dcbce6d0ddfe73e4eb7a6f''1542235330.697653"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -131,17 +131,17 @@ interactions: method: POST uri: https://api.dnanexus.com/file/new response: - body: {string: '{"id":"file-FP9kKYQ09gVv717x1b2qfg87"}'} + body: {string: '{"id":"file-FPfB9QQ0ZPzFgzq03ZJpv0Vj"}'} headers: Connection: [keep-alive] Content-Length: ['38'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:38:06 GMT'] + Date: ['Wed, 14 Nov 2018 22:42:10 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593486414-5250] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235330741-235881] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -165,19 +165,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kKYQ09gVkyPz44YqJxVb3/describe + uri: https://api.dnanexus.com/project-FPfB9QQ0ZPzKYK2Q3YV9b288/describe response: - body: {string: '{"id":"project-FP9kKYQ09gVkyPz44YqJxVb3","fileUploadParameters":{"maximumPartSize":5368709120,"minimumPartSize":5242880,"maximumFileSize":5497558138880,"maximumNumParts":10000,"emptyLastPartAllowed":true}}'} + body: {string: '{"id":"project-FPfB9QQ0ZPzKYK2Q3YV9b288","fileUploadParameters":{"maximumPartSize":5368709120,"minimumPartSize":5242880,"maximumFileSize":5497558138880,"maximumNumParts":10000,"emptyLastPartAllowed":true}}'} headers: Connection: [keep-alive] Content-Length: ['205'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:38:06 GMT'] + Date: ['Wed, 14 Nov 2018 22:42:10 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593486589-676128] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235330899-596439] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -201,19 +201,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kKYQ09gVv717x1b2qfg87/upload + uri: https://api.dnanexus.com/file-FPfB9QQ0ZPzFgzq03ZJpv0Vj/upload response: - body: {string: '{"url":"https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/92d4/file/open/file-FP9kKYQ09gVv717x1b2qfg87/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181026%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181026T223806Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=9331c62cd034192ce31f4b400d4e8435423fbb2c64be415f86d92c3b365cd1d1","headers":{"host":"dnanexus-platform-upload-prod.s3.amazonaws.com","content-type":"binary/octet-stream","x-amz-server-side-encryption":"AES256","content-md5":"jXd/OF09/siBXSD3SWAm3A==","content-length":"4"},"expires":1540593606709}'} + body: {string: '{"url":"https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/8543/file/open/file-FPfB9QQ0ZPzFgzq03ZJpv0Vj/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181114%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181114T224211Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=f2c9f361f431990293b18c0dc41b4ee9fb1d35ba4b796709b1e021d8c4481df4","headers":{"host":"dnanexus-platform-upload-prod.s3.amazonaws.com","content-type":"binary/octet-stream","x-amz-server-side-encryption":"AES256","content-md5":"jXd/OF09/siBXSD3SWAm3A==","content-length":"4"},"expires":1542235451002}'} headers: Connection: [keep-alive] Content-Length: ['692'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:38:06 GMT'] + Date: ['Wed, 14 Nov 2018 22:42:11 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593486695-367896] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235330990-106786] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -241,21 +241,21 @@ interactions: : - !!binary | QUVTMjU2 method: PUT - uri: https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/92d4/file/open/file-FP9kKYQ09gVv717x1b2qfg87/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181026%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181026T223806Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=9331c62cd034192ce31f4b400d4e8435423fbb2c64be415f86d92c3b365cd1d1 + uri: https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/8543/file/open/file-FPfB9QQ0ZPzFgzq03ZJpv0Vj/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181114%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181114T224211Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=f2c9f361f431990293b18c0dc41b4ee9fb1d35ba4b796709b1e021d8c4481df4 response: body: {string: ''} headers: Content-Length: ['0'] - Date: ['Fri, 26 Oct 2018 22:38:08 GMT'] + Date: ['Wed, 14 Nov 2018 22:42:12 GMT'] ETag: ['"8d777f385d3dfec8815d20f7496026dc"'] Server: [AmazonS3] - x-amz-expiration: ['expiry-date="Sat, 17 Nov 2018 00:00:00 GMT", rule-id="3weekpurge"'] - x-amz-id-2: [4BvyzyX1bwlt/zHvbOv7f9CEc/u+1WObF245cIHTcPf7ZXF4fczGJ2jZ48+LTEbkEgTjN6jTx7s=] - x-amz-request-id: [254BFC2347762D1C] + x-amz-expiration: ['expiry-date="Thu, 06 Dec 2018 00:00:00 GMT", rule-id="3weekpurge"'] + x-amz-id-2: [NA75jPBgbM5zYVOKJkSgtHn3rCdaqvNCKmdVOJSFElnu5V0hzwn3RrBsjDkbbvZ1hikUbkB2fRk=] + x-amz-request-id: [A57607D2521C919A] x-amz-server-side-encryption: [AES256] status: {code: 200, message: OK} - request: - body: '{"fields": {"state": true}, "project": "project-FP9kKYQ09gVkyPz44YqJxVb3"}' + body: '{"fields": {"state": true}, "project": "project-FPfB9QQ0ZPzKYK2Q3YV9b288"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -275,19 +275,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kKYQ09gVv717x1b2qfg87/describe + uri: https://api.dnanexus.com/file-FPfB9QQ0ZPzFgzq03ZJpv0Vj/describe response: - body: {string: '{"id":"file-FP9kKYQ09gVv717x1b2qfg87","state":"open"}'} + body: {string: '{"id":"file-FPfB9QQ0ZPzFgzq03ZJpv0Vj","state":"open"}'} headers: Connection: [keep-alive] Content-Length: ['53'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:38:07 GMT'] + Date: ['Wed, 14 Nov 2018 22:42:11 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593487250-410498] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235331521-114380] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -311,23 +311,23 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kKYQ09gVv717x1b2qfg87/close + uri: https://api.dnanexus.com/file-FPfB9QQ0ZPzFgzq03ZJpv0Vj/close response: - body: {string: '{"id":"file-FP9kKYQ09gVv717x1b2qfg87"}'} + body: {string: '{"id":"file-FPfB9QQ0ZPzFgzq03ZJpv0Vj"}'} headers: Connection: [keep-alive] Content-Length: ['38'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:38:07 GMT'] + Date: ['Wed, 14 Nov 2018 22:42:11 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593487365-484411] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235331827-673684] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"fields": {"state": true}, "project": "project-FP9kKYQ09gVkyPz44YqJxVb3"}' + body: '{"fields": {"state": true}, "project": "project-FPfB9QQ0ZPzKYK2Q3YV9b288"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -347,23 +347,23 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kKYQ09gVv717x1b2qfg87/describe + uri: https://api.dnanexus.com/file-FPfB9QQ0ZPzFgzq03ZJpv0Vj/describe response: - body: {string: '{"id":"file-FP9kKYQ09gVv717x1b2qfg87","state":"closing"}'} + body: {string: '{"id":"file-FPfB9QQ0ZPzFgzq03ZJpv0Vj","state":"closing"}'} headers: Connection: [keep-alive] Content-Length: ['56'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:38:07 GMT'] + Date: ['Wed, 14 Nov 2018 22:42:12 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593487492-361377] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235331975-395969] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"fields": {"state": true}, "project": "project-FP9kKYQ09gVkyPz44YqJxVb3"}' + body: '{"fields": {"state": true}, "project": "project-FPfB9QQ0ZPzKYK2Q3YV9b288"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -383,19 +383,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kKYQ09gVv717x1b2qfg87/describe + uri: https://api.dnanexus.com/file-FPfB9QQ0ZPzFgzq03ZJpv0Vj/describe response: - body: {string: '{"id":"file-FP9kKYQ09gVv717x1b2qfg87","state":"closed"}'} + body: {string: '{"id":"file-FPfB9QQ0ZPzFgzq03ZJpv0Vj","state":"closed"}'} headers: Connection: [keep-alive] Content-Length: ['55'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:38:09 GMT'] + Date: ['Wed, 14 Nov 2018 22:42:14 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593489610-292696] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235334407-574266] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -421,21 +421,21 @@ interactions: method: POST uri: https://api.dnanexus.com/project/new response: - body: {string: '{"id":"project-FP9kKZ80bPp9yPz44YqJxVb4"}'} + body: {string: '{"id":"project-FPfB9VQ08pvyYK2Q3YV9b289"}'} headers: Connection: [keep-alive] Content-Length: ['41'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:38:09 GMT'] + Date: ['Wed, 14 Nov 2018 22:42:14 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593489729-556213] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235334688-342822] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"name": "TestCopy.test_dx_to_dx_folder.3c9c9a4c", "level": "VIEW", "limit": + body: '{"name": "TestCopy.test_dx_to_dx_folder.9aa7cd82", "level": "VIEW", "limit": 2}' headers: ? !!binary | @@ -458,22 +458,22 @@ interactions: method: POST uri: https://api.dnanexus.com/system/findProjects response: - body: {string: '{"results":[{"id":"project-FP9kKYQ09gVkyPz44YqJxVb3","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} + body: {string: '{"results":[{"id":"project-FPfB9QQ0ZPzKYK2Q3YV9b288","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} headers: Connection: [keep-alive] Content-Length: ['147'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:38:09 GMT'] + Date: ['Wed, 14 Nov 2018 22:42:14 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593489853-416761] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235334828-491363] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: body: '{"objects": [{"name": "folder_file.txt", "folder": "/temp_folder", "project": - "project-FP9kKYQ09gVkyPz44YqJxVb3", "batchsize": 2}]}' + "project-FPfB9QQ0ZPzKYK2Q3YV9b288", "batchsize": 2}]}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -495,21 +495,21 @@ interactions: method: POST uri: https://api.dnanexus.com/system/resolveDataObjects response: - body: {string: '{"results":[[{"project":"project-FP9kKYQ09gVkyPz44YqJxVb3","id":"file-FP9kKYQ09gVv717x1b2qfg87"}]]}'} + body: {string: '{"results":[[{"project":"project-FPfB9QQ0ZPzKYK2Q3YV9b288","id":"file-FPfB9QQ0ZPzFgzq03ZJpv0Vj"}]]}'} headers: Connection: [keep-alive] Content-Length: ['99'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:38:10 GMT'] + Date: ['Wed, 14 Nov 2018 22:42:14 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593489993-629963] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235334979-767966] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"project": "project-FP9kKYQ09gVkyPz44YqJxVb3"}' + body: '{"project": "project-FPfB9QQ0ZPzKYK2Q3YV9b288"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -529,19 +529,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kKYQ09gVv717x1b2qfg87/describe + uri: https://api.dnanexus.com/file-FPfB9QQ0ZPzFgzq03ZJpv0Vj/describe response: - body: {string: '{"id":"file-FP9kKYQ09gVv717x1b2qfg87","project":"project-FP9kKYQ09gVkyPz44YqJxVb3","class":"file","sponsored":false,"name":"folder_file.txt","types":[],"state":"closed","hidden":false,"links":[],"folder":"/temp_folder","tags":[],"created":1540593486000,"modified":1540593488590,"createdBy":{"user":"user-akumar_counsyl"},"media":"text/plain","archivalState":"live","size":4}'} + body: {string: '{"id":"file-FPfB9QQ0ZPzFgzq03ZJpv0Vj","project":"project-FPfB9QQ0ZPzKYK2Q3YV9b288","class":"file","sponsored":false,"name":"folder_file.txt","types":[],"state":"closed","hidden":false,"links":[],"folder":"/temp_folder","tags":[],"created":1542235330000,"modified":1542235332575,"createdBy":{"user":"user-akumar_counsyl"},"media":"text/plain","archivalState":"live","size":4}'} headers: Connection: [keep-alive] Content-Length: ['374'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:38:10 GMT'] + Date: ['Wed, 14 Nov 2018 22:42:15 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593490102-14585] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235335074-69497] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -567,17 +567,17 @@ interactions: method: POST uri: https://api.dnanexus.com/system/findProjects response: - body: {string: '{"results":[{"id":"project-FP9kKZ80bPp9yPz44YqJxVb4","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} + body: {string: '{"results":[{"id":"project-FPfB9VQ08pvyYK2Q3YV9b289","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} headers: Connection: [keep-alive] Content-Length: ['147'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:38:10 GMT'] + Date: ['Wed, 14 Nov 2018 22:42:15 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593490212-779439] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235335172-142592] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -602,21 +602,21 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kKZ80bPp9yPz44YqJxVb4/listFolder + uri: https://api.dnanexus.com/project-FPfB9VQ08pvyYK2Q3YV9b289/listFolder response: body: {string: '{"error":{"type":"ResourceNotFound","message":"The specified folder - could not be found in project-FP9kKZ80bPp9yPz44YqJxVb4"}}'} + could not be found in project-FPfB9VQ08pvyYK2Q3YV9b289"}}'} headers: Connection: [keep-alive] Content-Type: [application/json] - Date: ['Fri, 26 Oct 2018 22:38:10 GMT'] + Date: ['Wed, 14 Nov 2018 22:42:15 GMT'] Server: [nginx] Transfer-Encoding: [chunked] Vary: [Accept-Encoding] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593490356-593589] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235335284-392477] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 404, message: Not Found} - request: @@ -642,17 +642,17 @@ interactions: method: POST uri: https://api.dnanexus.com/system/findProjects response: - body: {string: '{"results":[{"id":"project-FP9kKZ80bPp9yPz44YqJxVb4","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} + body: {string: '{"results":[{"id":"project-FPfB9VQ08pvyYK2Q3YV9b289","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} headers: Connection: [keep-alive] Content-Length: ['147'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:38:10 GMT'] + Date: ['Wed, 14 Nov 2018 22:42:15 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593490742-111154] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235335669-502784] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -676,19 +676,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kKZ80bPp9yPz44YqJxVb4/newFolder + uri: https://api.dnanexus.com/project-FPfB9VQ08pvyYK2Q3YV9b289/newFolder response: - body: {string: '{"id":"project-FP9kKZ80bPp9yPz44YqJxVb4"}'} + body: {string: '{"id":"project-FPfB9VQ08pvyYK2Q3YV9b289"}'} headers: Connection: [keep-alive] Content-Length: ['41'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:38:10 GMT'] + Date: ['Wed, 14 Nov 2018 22:42:15 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593490870-610212] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235335783-417853] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -714,22 +714,22 @@ interactions: method: POST uri: https://api.dnanexus.com/system/findProjects response: - body: {string: '{"results":[{"id":"project-FP9kKZ80bPp9yPz44YqJxVb4","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} + body: {string: '{"results":[{"id":"project-FPfB9VQ08pvyYK2Q3YV9b289","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} headers: Connection: [keep-alive] Content-Length: ['147'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:38:11 GMT'] + Date: ['Wed, 14 Nov 2018 22:42:15 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593490982-553897] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235335885-349088] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: body: '{"objects": [{"name": "folder_file.txt", "folder": "/random", "project": - "project-FP9kKZ80bPp9yPz44YqJxVb4", "batchsize": 2}]}' + "project-FPfB9VQ08pvyYK2Q3YV9b289", "batchsize": 2}]}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -756,16 +756,16 @@ interactions: Connection: [keep-alive] Content-Length: ['16'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:38:11 GMT'] + Date: ['Wed, 14 Nov 2018 22:42:16 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593491111-537708] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235336026-312950] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"objects": ["file-FP9kKYQ09gVv717x1b2qfg87"], "project": "project-FP9kKZ80bPp9yPz44YqJxVb4", + body: '{"objects": ["file-FPfB9QQ0ZPzFgzq03ZJpv0Vj"], "project": "project-FPfB9VQ08pvyYK2Q3YV9b289", "destination": "/random"}' headers: ? !!binary | @@ -786,23 +786,23 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kKYQ09gVkyPz44YqJxVb3/clone + uri: https://api.dnanexus.com/project-FPfB9QQ0ZPzKYK2Q3YV9b288/clone response: - body: {string: '{"id":"project-FP9kKYQ09gVkyPz44YqJxVb3","project":"project-FP9kKZ80bPp9yPz44YqJxVb4","exists":[]}'} + body: {string: '{"id":"project-FPfB9QQ0ZPzKYK2Q3YV9b288","project":"project-FPfB9VQ08pvyYK2Q3YV9b289","exists":[]}'} headers: Connection: [keep-alive] Content-Length: ['98'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:38:11 GMT'] + Date: ['Wed, 14 Nov 2018 22:42:16 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593491220-719594] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235336138-33542] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"project": "project-FP9kKYQ09gVkyPz44YqJxVb3"}' + body: '{"project": "project-FPfB9QQ0ZPzKYK2Q3YV9b288"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -822,19 +822,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kKYQ09gVv717x1b2qfg87/describe + uri: https://api.dnanexus.com/file-FPfB9QQ0ZPzFgzq03ZJpv0Vj/describe response: - body: {string: '{"id":"file-FP9kKYQ09gVv717x1b2qfg87","project":"project-FP9kKYQ09gVkyPz44YqJxVb3","class":"file","sponsored":false,"name":"folder_file.txt","types":[],"state":"closed","hidden":false,"links":[],"folder":"/temp_folder","tags":[],"created":1540593486000,"modified":1540593488590,"createdBy":{"user":"user-akumar_counsyl"},"media":"text/plain","archivalState":"live","size":4}'} + body: {string: '{"id":"file-FPfB9QQ0ZPzFgzq03ZJpv0Vj","project":"project-FPfB9QQ0ZPzKYK2Q3YV9b288","class":"file","sponsored":false,"name":"folder_file.txt","types":[],"state":"closed","hidden":false,"links":[],"folder":"/temp_folder","tags":[],"created":1542235330000,"modified":1542235332575,"createdBy":{"user":"user-akumar_counsyl"},"media":"text/plain","archivalState":"live","size":4}'} headers: Connection: [keep-alive] Content-Length: ['374'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:38:11 GMT'] + Date: ['Wed, 14 Nov 2018 22:42:16 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593491412-772470] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235336310-886651] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -860,22 +860,22 @@ interactions: method: POST uri: https://api.dnanexus.com/system/findProjects response: - body: {string: '{"results":[{"id":"project-FP9kKZ80bPp9yPz44YqJxVb4","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} + body: {string: '{"results":[{"id":"project-FPfB9VQ08pvyYK2Q3YV9b289","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} headers: Connection: [keep-alive] Content-Length: ['147'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:38:11 GMT'] + Date: ['Wed, 14 Nov 2018 22:42:16 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593491526-247826] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235336416-592986] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: body: '{"objects": [{"name": "folder_file.txt", "folder": "/random", "project": - "project-FP9kKZ80bPp9yPz44YqJxVb4", "batchsize": 2}]}' + "project-FPfB9VQ08pvyYK2Q3YV9b289", "batchsize": 2}]}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -897,21 +897,21 @@ interactions: method: POST uri: https://api.dnanexus.com/system/resolveDataObjects response: - body: {string: '{"results":[[{"project":"project-FP9kKZ80bPp9yPz44YqJxVb4","id":"file-FP9kKYQ09gVv717x1b2qfg87"}]]}'} + body: {string: '{"results":[[{"project":"project-FPfB9VQ08pvyYK2Q3YV9b289","id":"file-FPfB9QQ0ZPzFgzq03ZJpv0Vj"}]]}'} headers: Connection: [keep-alive] Content-Length: ['99'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:38:11 GMT'] + Date: ['Wed, 14 Nov 2018 22:42:16 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593491660-894562] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235336529-957697] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"project": "project-FP9kKZ80bPp9yPz44YqJxVb4"}' + body: '{"project": "project-FPfB9VQ08pvyYK2Q3YV9b289"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -931,19 +931,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kKYQ09gVv717x1b2qfg87/describe + uri: https://api.dnanexus.com/file-FPfB9QQ0ZPzFgzq03ZJpv0Vj/describe response: - body: {string: '{"id":"file-FP9kKYQ09gVv717x1b2qfg87","project":"project-FP9kKZ80bPp9yPz44YqJxVb4","class":"file","sponsored":false,"name":"folder_file.txt","types":[],"state":"closed","hidden":false,"links":[],"folder":"/random","tags":[],"created":1540593486000,"modified":1540593491281,"createdBy":{"user":"user-akumar_counsyl"},"media":"text/plain","archivalState":"live","size":4}'} + body: {string: '{"id":"file-FPfB9QQ0ZPzFgzq03ZJpv0Vj","project":"project-FPfB9VQ08pvyYK2Q3YV9b289","class":"file","sponsored":false,"name":"folder_file.txt","types":[],"state":"closed","hidden":false,"links":[],"folder":"/random","tags":[],"created":1542235330000,"modified":1542235336200,"createdBy":{"user":"user-akumar_counsyl"},"media":"text/plain","archivalState":"live","size":4}'} headers: Connection: [keep-alive] Content-Length: ['369'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:38:11 GMT'] + Date: ['Wed, 14 Nov 2018 22:42:16 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593491765-74513] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235336626-213302] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -967,19 +967,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kKZ80bPp9yPz44YqJxVb4/destroy + uri: https://api.dnanexus.com/project-FPfB9VQ08pvyYK2Q3YV9b289/destroy response: - body: {string: '{"id":"project-FP9kKZ80bPp9yPz44YqJxVb4"}'} + body: {string: '{"id":"project-FPfB9VQ08pvyYK2Q3YV9b289"}'} headers: Connection: [keep-alive] Content-Length: ['41'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:38:14 GMT'] + Date: ['Wed, 14 Nov 2018 22:42:19 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593491880-486473] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235336740-266128] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -1003,19 +1003,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kKYQ09gVkyPz44YqJxVb3/destroy + uri: https://api.dnanexus.com/project-FPfB9QQ0ZPzKYK2Q3YV9b288/destroy response: - body: {string: '{"id":"project-FP9kKYQ09gVkyPz44YqJxVb3"}'} + body: {string: '{"id":"project-FPfB9QQ0ZPzKYK2Q3YV9b288"}'} headers: Connection: [keep-alive] Content-Length: ['41'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:38:16 GMT'] + Date: ['Wed, 14 Nov 2018 22:42:22 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593494335-312340] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235339728-390757] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} version: 1 diff --git a/stor/tests/cassettes_py3/TestCopy/test_dx_to_dx_same_project_exist_dest.yaml b/stor_dx/stor_dx/tests/cassettes_py3/TestCopy/test_dx_to_dx_same_project_exist_dest.yaml similarity index 74% rename from stor/tests/cassettes_py3/TestCopy/test_dx_to_dx_same_project_exist_dest.yaml rename to stor_dx/stor_dx/tests/cassettes_py3/TestCopy/test_dx_to_dx_same_project_exist_dest.yaml index fd00657f..441d5f15 100644 --- a/stor/tests/cassettes_py3/TestCopy/test_dx_to_dx_same_project_exist_dest.yaml +++ b/stor_dx/stor_dx/tests/cassettes_py3/TestCopy/test_dx_to_dx_same_project_exist_dest.yaml @@ -1,6 +1,6 @@ interactions: - request: - body: '{"name": "TestCopy.test_dx_to_dx_same_project_exist_dest.3fc5fdb9"}' + body: '{"name": "TestCopy.test_dx_to_dx_same_project_exist_dest.4bb3ce84"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -22,17 +22,17 @@ interactions: method: POST uri: https://api.dnanexus.com/project/new response: - body: {string: '{"id":"project-FP9kKf807xgG717x1b2qfg89"}'} + body: {string: '{"id":"project-FPfB9Yj0Q6y44Y2v3YJZF82X"}'} headers: Connection: [keep-alive] Content-Length: ['41'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:38:17 GMT'] + Date: ['Wed, 14 Nov 2018 22:42:23 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593496999-887425] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235343155-375081] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -56,19 +56,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kKf807xgG717x1b2qfg89/describe + uri: https://api.dnanexus.com/project-FPfB9Yj0Q6y44Y2v3YJZF82X/describe response: - body: {string: '{"id":"project-FP9kKf807xgG717x1b2qfg89","name":"TestCopy.test_dx_to_dx_same_project_exist_dest.3fc5fdb9","class":"project","created":1540593497000,"modified":1540593497000,"billTo":"org-counsyl","level":"ADMINISTER","dataUsage":0,"sponsoredDataUsage":0,"region":"aws:us-east-1","summary":"","description":"","protected":false,"restricted":false,"downloadRestricted":false,"containsPHI":false,"createdBy":{"user":"user-akumar_counsyl"},"version":0,"storageCost":0,"pendingTransfer":null,"tags":[],"defaultInstanceType":"mem2_hdd2_x2","archivalState":"live","archivalProgress":null,"totalSponsoredEgressBytes":0,"consumedSponsoredEgressBytes":0,"atSpendingLimit":false}'} + body: {string: '{"id":"project-FPfB9Yj0Q6y44Y2v3YJZF82X","name":"TestCopy.test_dx_to_dx_same_project_exist_dest.4bb3ce84","class":"project","created":1542235343000,"modified":1542235343000,"billTo":"org-counsyl","level":"ADMINISTER","dataUsage":0,"sponsoredDataUsage":0,"region":"aws:us-east-1","summary":"","description":"","protected":false,"restricted":false,"downloadRestricted":false,"containsPHI":false,"createdBy":{"user":"user-akumar_counsyl"},"version":0,"storageCost":0,"pendingTransfer":null,"tags":[],"defaultInstanceType":"mem2_hdd2_x2","archivalState":"live","archivalProgress":null,"totalSponsoredEgressBytes":0,"consumedSponsoredEgressBytes":0,"atSpendingLimit":false}'} headers: Connection: [keep-alive] Content-Length: ['668'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:38:17 GMT'] + Date: ['Wed, 14 Nov 2018 22:42:23 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593497161-554536] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235343258-440344] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -92,24 +92,24 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kKf807xgG717x1b2qfg89/newFolder + uri: https://api.dnanexus.com/project-FPfB9Yj0Q6y44Y2v3YJZF82X/newFolder response: - body: {string: '{"id":"project-FP9kKf807xgG717x1b2qfg89"}'} + body: {string: '{"id":"project-FPfB9Yj0Q6y44Y2v3YJZF82X"}'} headers: Connection: [keep-alive] Content-Length: ['41'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:38:17 GMT'] + Date: ['Wed, 14 Nov 2018 22:42:23 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593497287-857021] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235343370-4298] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"name": "folder_file.txt", "folder": "/temp_folder", "project": "project-FP9kKf807xgG717x1b2qfg89", - "nonce": "b''a953d2fffc1156f6e0f95ff4fc0d910cc4507486a000e4e0f5497d375b51c411''1540593497.356806"}' + body: '{"name": "folder_file.txt", "folder": "/temp_folder", "project": "project-FPfB9Yj0Q6y44Y2v3YJZF82X", + "nonce": "b''37fac4baabc284d974785030b6c377e61d5c0ae048c81882990c279a1f166818''1542235343.421622"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -131,17 +131,17 @@ interactions: method: POST uri: https://api.dnanexus.com/file/new response: - body: {string: '{"id":"file-FP9kKf807xgG717x1b2qfg8B"}'} + body: {string: '{"id":"file-FPfB9Yj0Q6y29yPf3YzJbGf2"}'} headers: Connection: [keep-alive] Content-Length: ['38'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:38:17 GMT'] + Date: ['Wed, 14 Nov 2018 22:42:23 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593497403-876582] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235343468-840261] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -165,19 +165,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kKf807xgG717x1b2qfg89/describe + uri: https://api.dnanexus.com/project-FPfB9Yj0Q6y44Y2v3YJZF82X/describe response: - body: {string: '{"id":"project-FP9kKf807xgG717x1b2qfg89","fileUploadParameters":{"maximumPartSize":5368709120,"minimumPartSize":5242880,"maximumFileSize":5497558138880,"maximumNumParts":10000,"emptyLastPartAllowed":true}}'} + body: {string: '{"id":"project-FPfB9Yj0Q6y44Y2v3YJZF82X","fileUploadParameters":{"maximumPartSize":5368709120,"minimumPartSize":5242880,"maximumFileSize":5497558138880,"maximumNumParts":10000,"emptyLastPartAllowed":true}}'} headers: Connection: [keep-alive] Content-Length: ['205'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:38:17 GMT'] + Date: ['Wed, 14 Nov 2018 22:42:23 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593497547-499332] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235343588-728149] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -201,19 +201,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kKf807xgG717x1b2qfg8B/upload + uri: https://api.dnanexus.com/file-FPfB9Yj0Q6y29yPf3YzJbGf2/upload response: - body: {string: '{"url":"https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/9dac/file/open/file-FP9kKf807xgG717x1b2qfg8B/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181026%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181026T223817Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=cf1b659bb019e5f2316bdc01c120d160a429154309e4e5ea9a471a161714b952","headers":{"host":"dnanexus-platform-upload-prod.s3.amazonaws.com","content-type":"binary/octet-stream","x-amz-server-side-encryption":"AES256","content-md5":"c9//V/4k6Ae9T7G8TgfNcw==","content-length":"5"},"expires":1540593617665}'} + body: {string: '{"url":"https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/c56a/file/open/file-FPfB9Yj0Q6y29yPf3YzJbGf2/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181114%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181114T224223Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=9f0fc7eeab23041658874385eb52020c7b02a358baffb5292c66f8bfd8f77818","headers":{"host":"dnanexus-platform-upload-prod.s3.amazonaws.com","content-type":"binary/octet-stream","x-amz-server-side-encryption":"AES256","content-md5":"c9//V/4k6Ae9T7G8TgfNcw==","content-length":"5"},"expires":1542235463697}'} headers: Connection: [keep-alive] Content-Length: ['692'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:38:17 GMT'] + Date: ['Wed, 14 Nov 2018 22:42:23 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593497653-997948] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235343682-91638] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -241,21 +241,21 @@ interactions: : - !!binary | QUVTMjU2 method: PUT - uri: https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/9dac/file/open/file-FP9kKf807xgG717x1b2qfg8B/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181026%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181026T223817Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=cf1b659bb019e5f2316bdc01c120d160a429154309e4e5ea9a471a161714b952 + uri: https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/c56a/file/open/file-FPfB9Yj0Q6y29yPf3YzJbGf2/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181114%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181114T224223Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=9f0fc7eeab23041658874385eb52020c7b02a358baffb5292c66f8bfd8f77818 response: body: {string: ''} headers: Content-Length: ['0'] - Date: ['Fri, 26 Oct 2018 22:38:19 GMT'] + Date: ['Wed, 14 Nov 2018 22:42:25 GMT'] ETag: ['"73dfff57fe24e807bd4fb1bc4e07cd73"'] Server: [AmazonS3] - x-amz-expiration: ['expiry-date="Sat, 17 Nov 2018 00:00:00 GMT", rule-id="3weekpurge"'] - x-amz-id-2: [ZtIaLrp9x/HymKoRyacS+nDOlHrSxWhFRWOFLIpdsqmTJEEdDQym8hI1Kdy0odGoB0DNl6F+8h0=] - x-amz-request-id: [7CC4CBB98C52C325] + x-amz-expiration: ['expiry-date="Thu, 06 Dec 2018 00:00:00 GMT", rule-id="3weekpurge"'] + x-amz-id-2: [q492Ts2wrPG6FtLwhN6okJ58JNWI8sqC9ts0f38bMf+OoIQIknS4NVCg/vUjrP3P+qUHKLT/xUY=] + x-amz-request-id: [49CB04BCDF412A13] x-amz-server-side-encryption: [AES256] status: {code: 200, message: OK} - request: - body: '{"fields": {"state": true}, "project": "project-FP9kKf807xgG717x1b2qfg89"}' + body: '{"fields": {"state": true}, "project": "project-FPfB9Yj0Q6y44Y2v3YJZF82X"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -275,19 +275,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kKf807xgG717x1b2qfg8B/describe + uri: https://api.dnanexus.com/file-FPfB9Yj0Q6y29yPf3YzJbGf2/describe response: - body: {string: '{"id":"file-FP9kKf807xgG717x1b2qfg8B","state":"open"}'} + body: {string: '{"id":"file-FPfB9Yj0Q6y29yPf3YzJbGf2","state":"open"}'} headers: Connection: [keep-alive] Content-Length: ['53'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:38:18 GMT'] + Date: ['Wed, 14 Nov 2018 22:42:24 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593498217-656335] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235344189-993078] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -311,19 +311,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kKf807xgG717x1b2qfg8B/close + uri: https://api.dnanexus.com/file-FPfB9Yj0Q6y29yPf3YzJbGf2/close response: - body: {string: '{"id":"file-FP9kKf807xgG717x1b2qfg8B"}'} + body: {string: '{"id":"file-FPfB9Yj0Q6y29yPf3YzJbGf2"}'} headers: Connection: [keep-alive] Content-Length: ['38'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:38:18 GMT'] + Date: ['Wed, 14 Nov 2018 22:42:24 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593498331-378908] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235344286-676983] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -347,24 +347,24 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kKf807xgG717x1b2qfg89/newFolder + uri: https://api.dnanexus.com/project-FPfB9Yj0Q6y44Y2v3YJZF82X/newFolder response: - body: {string: '{"id":"project-FP9kKf807xgG717x1b2qfg89"}'} + body: {string: '{"id":"project-FPfB9Yj0Q6y44Y2v3YJZF82X"}'} headers: Connection: [keep-alive] Content-Length: ['41'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:38:18 GMT'] + Date: ['Wed, 14 Nov 2018 22:42:24 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593498456-883719] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235344431-611419] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"name": "random_file.txt", "folder": "/another_folder", "project": "project-FP9kKf807xgG717x1b2qfg89", - "nonce": "b''f1b99080561cfb0233dfc63e169ae5e4bb74a35626287ee562bf7f5ca3d514ab''1540593498.528684"}' + body: '{"name": "random_file.txt", "folder": "/another_folder", "project": "project-FPfB9Yj0Q6y44Y2v3YJZF82X", + "nonce": "b''f1141830461b91a0e2067896a494c289bcc136d0f3157850eb2beb5d13178e2a''1542235344.486788"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -386,17 +386,17 @@ interactions: method: POST uri: https://api.dnanexus.com/file/new response: - body: {string: '{"id":"file-FP9kKfQ07xg9yPz44YqJxVb6"}'} + body: {string: '{"id":"file-FPfB9Z00Q6yKYK2Q3YV9b28B"}'} headers: Connection: [keep-alive] Content-Length: ['38'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:38:18 GMT'] + Date: ['Wed, 14 Nov 2018 22:42:24 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593498573-261622] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235344534-756397] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -420,19 +420,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kKf807xgG717x1b2qfg89/describe + uri: https://api.dnanexus.com/project-FPfB9Yj0Q6y44Y2v3YJZF82X/describe response: - body: {string: '{"id":"project-FP9kKf807xgG717x1b2qfg89","fileUploadParameters":{"maximumPartSize":5368709120,"minimumPartSize":5242880,"maximumFileSize":5497558138880,"maximumNumParts":10000,"emptyLastPartAllowed":true}}'} + body: {string: '{"id":"project-FPfB9Yj0Q6y44Y2v3YJZF82X","fileUploadParameters":{"maximumPartSize":5368709120,"minimumPartSize":5242880,"maximumFileSize":5497558138880,"maximumNumParts":10000,"emptyLastPartAllowed":true}}'} headers: Connection: [keep-alive] Content-Length: ['205'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:38:18 GMT'] + Date: ['Wed, 14 Nov 2018 22:42:24 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593498710-666930] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235344663-204500] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -456,19 +456,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kKfQ07xg9yPz44YqJxVb6/upload + uri: https://api.dnanexus.com/file-FPfB9Z00Q6yKYK2Q3YV9b28B/upload response: - body: {string: '{"url":"https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/e216/file/open/file-FP9kKfQ07xg9yPz44YqJxVb6/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181026%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181026T223818Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=fc93af5f042711ce2070447fd17578e20f03532dc14b2617f3c618e2b1dbd22f","headers":{"host":"dnanexus-platform-upload-prod.s3.amazonaws.com","content-type":"binary/octet-stream","x-amz-server-side-encryption":"AES256","content-md5":"idkDvDXe3nJP1SxRQ3/1/Q==","content-length":"5"},"expires":1540593618835}'} + body: {string: '{"url":"https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/6b8f/file/open/file-FPfB9Z00Q6yKYK2Q3YV9b28B/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181114%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181114T224224Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=5a25335c9b18e5b11108ed93e4fbe96db8643558419fe484cdc9d36bee697c65","headers":{"host":"dnanexus-platform-upload-prod.s3.amazonaws.com","content-type":"binary/octet-stream","x-amz-server-side-encryption":"AES256","content-md5":"idkDvDXe3nJP1SxRQ3/1/Q==","content-length":"5"},"expires":1542235464774}'} headers: Connection: [keep-alive] Content-Length: ['692'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:38:18 GMT'] + Date: ['Wed, 14 Nov 2018 22:42:24 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593498822-945372] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235344760-291998] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -496,21 +496,21 @@ interactions: : - !!binary | QUVTMjU2 method: PUT - uri: https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/e216/file/open/file-FP9kKfQ07xg9yPz44YqJxVb6/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181026%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181026T223818Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=fc93af5f042711ce2070447fd17578e20f03532dc14b2617f3c618e2b1dbd22f + uri: https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/6b8f/file/open/file-FPfB9Z00Q6yKYK2Q3YV9b28B/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181114%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181114T224224Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=5a25335c9b18e5b11108ed93e4fbe96db8643558419fe484cdc9d36bee697c65 response: body: {string: ''} headers: Content-Length: ['0'] - Date: ['Fri, 26 Oct 2018 22:38:19 GMT'] + Date: ['Wed, 14 Nov 2018 22:42:25 GMT'] ETag: ['"89d903bc35dede724fd52c51437ff5fd"'] Server: [AmazonS3] - x-amz-expiration: ['expiry-date="Sat, 17 Nov 2018 00:00:00 GMT", rule-id="3weekpurge"'] - x-amz-id-2: [5GiFPgpdUFMAoTpWxPF9m6QfDNGf/EkL//pXA5B+29YvVYueWUKmXetL42ve973RRR4cBAYPBL4=] - x-amz-request-id: [E9EF2AD33CC9E306] + x-amz-expiration: ['expiry-date="Thu, 06 Dec 2018 00:00:00 GMT", rule-id="3weekpurge"'] + x-amz-id-2: [DIRxtdkqnUnjQG0+SUOUio2U+nVknErGf6DANhQbP3PupVslUA8xaYzvK/qG0fzbJA+JmYxP4hU=] + x-amz-request-id: [992EB38146D30241] x-amz-server-side-encryption: [AES256] status: {code: 200, message: OK} - request: - body: '{"fields": {"state": true}, "project": "project-FP9kKf807xgG717x1b2qfg89"}' + body: '{"fields": {"state": true}, "project": "project-FPfB9Yj0Q6y44Y2v3YJZF82X"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -530,19 +530,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kKfQ07xg9yPz44YqJxVb6/describe + uri: https://api.dnanexus.com/file-FPfB9Z00Q6yKYK2Q3YV9b28B/describe response: - body: {string: '{"id":"file-FP9kKfQ07xg9yPz44YqJxVb6","state":"open"}'} + body: {string: '{"id":"file-FPfB9Z00Q6yKYK2Q3YV9b28B","state":"open"}'} headers: Connection: [keep-alive] Content-Length: ['53'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:38:19 GMT'] + Date: ['Wed, 14 Nov 2018 22:42:24 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593499055-377744] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235344968-387193] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -566,19 +566,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kKfQ07xg9yPz44YqJxVb6/close + uri: https://api.dnanexus.com/file-FPfB9Z00Q6yKYK2Q3YV9b28B/close response: - body: {string: '{"id":"file-FP9kKfQ07xg9yPz44YqJxVb6"}'} + body: {string: '{"id":"file-FPfB9Z00Q6yKYK2Q3YV9b28B"}'} headers: Connection: [keep-alive] Content-Length: ['38'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:38:19 GMT'] + Date: ['Wed, 14 Nov 2018 22:42:25 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593499171-814886] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235345068-745816] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -602,24 +602,24 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kKf807xgG717x1b2qfg89/newFolder + uri: https://api.dnanexus.com/project-FPfB9Yj0Q6y44Y2v3YJZF82X/newFolder response: - body: {string: '{"id":"project-FP9kKf807xgG717x1b2qfg89"}'} + body: {string: '{"id":"project-FPfB9Yj0Q6y44Y2v3YJZF82X"}'} headers: Connection: [keep-alive] Content-Length: ['41'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:38:19 GMT'] + Date: ['Wed, 14 Nov 2018 22:42:25 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593499293-507335] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235345188-474923] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"name": "folder_file.txt", "folder": "/another_folder", "project": "project-FP9kKf807xgG717x1b2qfg89", - "nonce": "b''4cfbb1a6fc5ed490c14afa333f6a0737c36c12b1f06eff71038420040089c747''1540593499.355455"}' + body: '{"name": "folder_file.txt", "folder": "/another_folder", "project": "project-FPfB9Yj0Q6y44Y2v3YJZF82X", + "nonce": "b''cf663bbeecdd7bcbb8d2764ad63c5877b7375686dab487be25d88b674e0a34bb''1542235345.236061"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -641,17 +641,17 @@ interactions: method: POST uri: https://api.dnanexus.com/file/new response: - body: {string: '{"id":"file-FP9kKfj07xg9yPz44YqJxVb8"}'} + body: {string: '{"id":"file-FPfB9Z80Q6y44Y2v3YJZF82Y"}'} headers: Connection: [keep-alive] Content-Length: ['38'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:38:19 GMT'] + Date: ['Wed, 14 Nov 2018 22:42:25 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593499401-676624] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235345281-722566] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -675,19 +675,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kKf807xgG717x1b2qfg89/describe + uri: https://api.dnanexus.com/project-FPfB9Yj0Q6y44Y2v3YJZF82X/describe response: - body: {string: '{"id":"project-FP9kKf807xgG717x1b2qfg89","fileUploadParameters":{"maximumPartSize":5368709120,"minimumPartSize":5242880,"maximumFileSize":5497558138880,"maximumNumParts":10000,"emptyLastPartAllowed":true}}'} + body: {string: '{"id":"project-FPfB9Yj0Q6y44Y2v3YJZF82X","fileUploadParameters":{"maximumPartSize":5368709120,"minimumPartSize":5242880,"maximumFileSize":5497558138880,"maximumNumParts":10000,"emptyLastPartAllowed":true}}'} headers: Connection: [keep-alive] Content-Length: ['205'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:38:19 GMT'] + Date: ['Wed, 14 Nov 2018 22:42:25 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593499547-54218] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235345405-972275] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -711,19 +711,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kKfj07xg9yPz44YqJxVb8/upload + uri: https://api.dnanexus.com/file-FPfB9Z80Q6y44Y2v3YJZF82Y/upload response: - body: {string: '{"url":"https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/bcd3/file/open/file-FP9kKfj07xg9yPz44YqJxVb8/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181026%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181026T223819Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=bf350375079268a1a7dbc233fd34a56d75bd4c4852830ad3c5a4883c7f2897cd","headers":{"host":"dnanexus-platform-upload-prod.s3.amazonaws.com","content-type":"binary/octet-stream","x-amz-server-side-encryption":"AES256","content-md5":"/5zy1pDYiMszf2v0UmthMA==","content-length":"5"},"expires":1540593619668}'} + body: {string: '{"url":"https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/c5b4/file/open/file-FPfB9Z80Q6y44Y2v3YJZF82Y/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181114%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181114T224225Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=af9168b3f51fc2ff1baae3352455b50b2c469df473c81f73de6b5c7980abb687","headers":{"host":"dnanexus-platform-upload-prod.s3.amazonaws.com","content-type":"binary/octet-stream","x-amz-server-side-encryption":"AES256","content-md5":"/5zy1pDYiMszf2v0UmthMA==","content-length":"5"},"expires":1542235465512}'} headers: Connection: [keep-alive] Content-Length: ['692'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:38:19 GMT'] + Date: ['Wed, 14 Nov 2018 22:42:25 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593499656-403479] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235345500-77324] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -751,21 +751,21 @@ interactions: : - !!binary | QUVTMjU2 method: PUT - uri: https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/bcd3/file/open/file-FP9kKfj07xg9yPz44YqJxVb8/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181026%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181026T223819Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=bf350375079268a1a7dbc233fd34a56d75bd4c4852830ad3c5a4883c7f2897cd + uri: https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/c5b4/file/open/file-FPfB9Z80Q6y44Y2v3YJZF82Y/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181114%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181114T224225Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=af9168b3f51fc2ff1baae3352455b50b2c469df473c81f73de6b5c7980abb687 response: body: {string: ''} headers: Content-Length: ['0'] - Date: ['Fri, 26 Oct 2018 22:38:20 GMT'] + Date: ['Wed, 14 Nov 2018 22:42:26 GMT'] ETag: ['"ff9cf2d690d888cb337f6bf4526b6130"'] Server: [AmazonS3] - x-amz-expiration: ['expiry-date="Sat, 17 Nov 2018 00:00:00 GMT", rule-id="3weekpurge"'] - x-amz-id-2: [fzdLEEsfm0EG+9IbzGYrvbMKQQfwZoO3cPnXpBHPlF/wya910tLqueNbaeiHYKk3DtbpQa/hIHw=] - x-amz-request-id: [8BB6CE0425640EBD] + x-amz-expiration: ['expiry-date="Thu, 06 Dec 2018 00:00:00 GMT", rule-id="3weekpurge"'] + x-amz-id-2: [QQ4dsw2dTQFjC/7T0tZ858APy0USjXEfXznwr/bdwMUTQKnzmMBOn8ORIZBmN7GtT7x/vN8kWT8=] + x-amz-request-id: [2B736501B706BA19] x-amz-server-side-encryption: [AES256] status: {code: 200, message: OK} - request: - body: '{"fields": {"state": true}, "project": "project-FP9kKf807xgG717x1b2qfg89"}' + body: '{"fields": {"state": true}, "project": "project-FPfB9Yj0Q6y44Y2v3YJZF82X"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -785,19 +785,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kKfj07xg9yPz44YqJxVb8/describe + uri: https://api.dnanexus.com/file-FPfB9Z80Q6y44Y2v3YJZF82Y/describe response: - body: {string: '{"id":"file-FP9kKfj07xg9yPz44YqJxVb8","state":"open"}'} + body: {string: '{"id":"file-FPfB9Z80Q6y44Y2v3YJZF82Y","state":"open"}'} headers: Connection: [keep-alive] Content-Length: ['53'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:38:19 GMT'] + Date: ['Wed, 14 Nov 2018 22:42:25 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593499894-897992] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235345695-365019] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -821,23 +821,23 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kKfj07xg9yPz44YqJxVb8/close + uri: https://api.dnanexus.com/file-FPfB9Z80Q6y44Y2v3YJZF82Y/close response: - body: {string: '{"id":"file-FP9kKfj07xg9yPz44YqJxVb8"}'} + body: {string: '{"id":"file-FPfB9Z80Q6y44Y2v3YJZF82Y"}'} headers: Connection: [keep-alive] Content-Length: ['38'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:38:20 GMT'] + Date: ['Wed, 14 Nov 2018 22:42:25 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593500008-970647] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235345791-267905] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"name": "TestCopy.test_dx_to_dx_same_project_exist_dest.3fc5fdb9", "level": + body: '{"name": "TestCopy.test_dx_to_dx_same_project_exist_dest.4bb3ce84", "level": "VIEW", "limit": 2}' headers: ? !!binary | @@ -860,22 +860,22 @@ interactions: method: POST uri: https://api.dnanexus.com/system/findProjects response: - body: {string: '{"results":[{"id":"project-FP9kKf807xgG717x1b2qfg89","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} + body: {string: '{"results":[{"id":"project-FPfB9Yj0Q6y44Y2v3YJZF82X","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} headers: Connection: [keep-alive] Content-Length: ['147'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:38:20 GMT'] + Date: ['Wed, 14 Nov 2018 22:42:25 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593500142-286028] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235345925-852356] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: body: '{"objects": [{"name": "folder_file.txt", "folder": "/temp_folder", "project": - "project-FP9kKf807xgG717x1b2qfg89", "batchsize": 2}]}' + "project-FPfB9Yj0Q6y44Y2v3YJZF82X", "batchsize": 2}]}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -897,21 +897,21 @@ interactions: method: POST uri: https://api.dnanexus.com/system/resolveDataObjects response: - body: {string: '{"results":[[{"project":"project-FP9kKf807xgG717x1b2qfg89","id":"file-FP9kKf807xgG717x1b2qfg8B"}]]}'} + body: {string: '{"results":[[{"project":"project-FPfB9Yj0Q6y44Y2v3YJZF82X","id":"file-FPfB9Yj0Q6y29yPf3YzJbGf2"}]]}'} headers: Connection: [keep-alive] Content-Length: ['99'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:38:20 GMT'] + Date: ['Wed, 14 Nov 2018 22:42:26 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593500267-374237] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235346036-219282] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"project": "project-FP9kKf807xgG717x1b2qfg89"}' + body: '{"project": "project-FPfB9Yj0Q6y44Y2v3YJZF82X"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -931,23 +931,23 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kKf807xgG717x1b2qfg8B/describe + uri: https://api.dnanexus.com/file-FPfB9Yj0Q6y29yPf3YzJbGf2/describe response: - body: {string: '{"id":"file-FP9kKf807xgG717x1b2qfg8B","project":"project-FP9kKf807xgG717x1b2qfg89","class":"file","sponsored":false,"name":"folder_file.txt","types":[],"state":"closed","hidden":false,"links":[],"folder":"/temp_folder","tags":[],"created":1540593497000,"modified":1540593499285,"createdBy":{"user":"user-akumar_counsyl"},"media":"text/plain","archivalState":"live","size":5}'} + body: {string: '{"id":"file-FPfB9Yj0Q6y29yPf3YzJbGf2","project":"project-FPfB9Yj0Q6y44Y2v3YJZF82X","class":"file","sponsored":false,"name":"folder_file.txt","types":[],"state":"closed","hidden":false,"links":[],"folder":"/temp_folder","tags":[],"created":1542235343000,"modified":1542235344637,"createdBy":{"user":"user-akumar_counsyl"},"media":"text/plain","archivalState":"live","size":5}'} headers: Connection: [keep-alive] Content-Length: ['374'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:38:20 GMT'] + Date: ['Wed, 14 Nov 2018 22:42:26 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593500377-450007] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235346128-868839] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"name": "TestCopy.test_dx_to_dx_same_project_exist_dest.3fc5fdb9", "level": + body: '{"name": "TestCopy.test_dx_to_dx_same_project_exist_dest.4bb3ce84", "level": "VIEW", "limit": 2}' headers: ? !!binary | @@ -970,17 +970,17 @@ interactions: method: POST uri: https://api.dnanexus.com/system/findProjects response: - body: {string: '{"results":[{"id":"project-FP9kKf807xgG717x1b2qfg89","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} + body: {string: '{"results":[{"id":"project-FPfB9Yj0Q6y44Y2v3YJZF82X","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} headers: Connection: [keep-alive] Content-Length: ['147'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:38:20 GMT'] + Date: ['Wed, 14 Nov 2018 22:42:26 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593500487-922681] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235346226-952562] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -1005,25 +1005,25 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kKf807xgG717x1b2qfg89/listFolder + uri: https://api.dnanexus.com/project-FPfB9Yj0Q6y44Y2v3YJZF82X/listFolder response: body: {string: '{"error":{"type":"ResourceNotFound","message":"The specified folder - could not be found in project-FP9kKf807xgG717x1b2qfg89"}}'} + could not be found in project-FPfB9Yj0Q6y44Y2v3YJZF82X"}}'} headers: Connection: [keep-alive] Content-Type: [application/json] - Date: ['Fri, 26 Oct 2018 22:38:20 GMT'] + Date: ['Wed, 14 Nov 2018 22:42:27 GMT'] Server: [nginx] Transfer-Encoding: [chunked] Vary: [Accept-Encoding] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593500619-283695] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235347009-629109] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 404, message: Not Found} - request: - body: '{"name": "TestCopy.test_dx_to_dx_same_project_exist_dest.3fc5fdb9", "level": + body: '{"name": "TestCopy.test_dx_to_dx_same_project_exist_dest.4bb3ce84", "level": "VIEW", "limit": 2}' headers: ? !!binary | @@ -1046,17 +1046,17 @@ interactions: method: POST uri: https://api.dnanexus.com/system/findProjects response: - body: {string: '{"results":[{"id":"project-FP9kKf807xgG717x1b2qfg89","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} + body: {string: '{"results":[{"id":"project-FPfB9Yj0Q6y44Y2v3YJZF82X","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} headers: Connection: [keep-alive] Content-Length: ['147'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:38:21 GMT'] + Date: ['Wed, 14 Nov 2018 22:42:27 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593501027-789149] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235347570-598880] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -1080,24 +1080,24 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kKf807xgG717x1b2qfg89/newFolder + uri: https://api.dnanexus.com/project-FPfB9Yj0Q6y44Y2v3YJZF82X/newFolder response: - body: {string: '{"id":"project-FP9kKf807xgG717x1b2qfg89"}'} + body: {string: '{"id":"project-FPfB9Yj0Q6y44Y2v3YJZF82X"}'} headers: Connection: [keep-alive] Content-Length: ['41'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:38:21 GMT'] + Date: ['Wed, 14 Nov 2018 22:42:27 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593501156-594730] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235347686-150070] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: body: '{"objects": [{"name": "random_file.txt", "folder": "/another_folder", "project": - "project-FP9kKf807xgG717x1b2qfg89", "batchsize": 2}]}' + "project-FPfB9Yj0Q6y44Y2v3YJZF82X", "batchsize": 2}]}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -1119,21 +1119,21 @@ interactions: method: POST uri: https://api.dnanexus.com/system/resolveDataObjects response: - body: {string: '{"results":[[{"project":"project-FP9kKf807xgG717x1b2qfg89","id":"file-FP9kKfQ07xg9yPz44YqJxVb6"}]]}'} + body: {string: '{"results":[[{"project":"project-FPfB9Yj0Q6y44Y2v3YJZF82X","id":"file-FPfB9Z00Q6yKYK2Q3YV9b28B"}]]}'} headers: Connection: [keep-alive] Content-Length: ['99'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:38:21 GMT'] + Date: ['Wed, 14 Nov 2018 22:42:27 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593501270-609856] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235347790-220241] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"project": "project-FP9kKf807xgG717x1b2qfg89"}' + body: '{"project": "project-FPfB9Yj0Q6y44Y2v3YJZF82X"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -1153,23 +1153,23 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kKfQ07xg9yPz44YqJxVb6/describe + uri: https://api.dnanexus.com/file-FPfB9Z00Q6yKYK2Q3YV9b28B/describe response: - body: {string: '{"id":"file-FP9kKfQ07xg9yPz44YqJxVb6","project":"project-FP9kKf807xgG717x1b2qfg89","class":"file","sponsored":false,"name":"random_file.txt","types":[],"state":"closed","hidden":false,"links":[],"folder":"/another_folder","tags":[],"created":1540593498000,"modified":1540593499696,"createdBy":{"user":"user-akumar_counsyl"},"media":"text/plain","archivalState":"live","size":5}'} + body: {string: '{"id":"file-FPfB9Z00Q6yKYK2Q3YV9b28B","project":"project-FPfB9Yj0Q6y44Y2v3YJZF82X","class":"file","sponsored":false,"name":"random_file.txt","types":[],"state":"closed","hidden":false,"links":[],"folder":"/another_folder","tags":[],"created":1542235344000,"modified":1542235346291,"createdBy":{"user":"user-akumar_counsyl"},"media":"text/plain","archivalState":"live","size":5}'} headers: Connection: [keep-alive] Content-Length: ['377'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:38:21 GMT'] + Date: ['Wed, 14 Nov 2018 22:42:27 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593501383-5024] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235347886-192198] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"objects": ["file-FP9kKfQ07xg9yPz44YqJxVb6"]}' + body: '{"objects": ["file-FPfB9Z00Q6yKYK2Q3YV9b28B"]}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -1189,23 +1189,23 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kKf807xgG717x1b2qfg89/removeObjects + uri: https://api.dnanexus.com/project-FPfB9Yj0Q6y44Y2v3YJZF82X/removeObjects response: - body: {string: '{"id":"project-FP9kKf807xgG717x1b2qfg89"}'} + body: {string: '{"id":"project-FPfB9Yj0Q6y44Y2v3YJZF82X"}'} headers: Connection: [keep-alive] Content-Length: ['41'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:38:21 GMT'] + Date: ['Wed, 14 Nov 2018 22:42:28 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593501502-468206] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235347990-230665] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"objects": ["file-FP9kKf807xgG717x1b2qfg8B"], "destination": "/another_folder"}' + body: '{"objects": ["file-FPfB9Yj0Q6y29yPf3YzJbGf2"], "destination": "/another_folder"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -1225,23 +1225,23 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kKf807xgG717x1b2qfg89/move + uri: https://api.dnanexus.com/project-FPfB9Yj0Q6y44Y2v3YJZF82X/move response: - body: {string: '{"id":"project-FP9kKf807xgG717x1b2qfg89"}'} + body: {string: '{"id":"project-FPfB9Yj0Q6y44Y2v3YJZF82X"}'} headers: Connection: [keep-alive] Content-Length: ['41'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:38:21 GMT'] + Date: ['Wed, 14 Nov 2018 22:42:28 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593501679-956346] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235348181-479537] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"project": "project-FP9kKf807xgG717x1b2qfg89", "name": "random_file.txt"}' + body: '{"project": "project-FPfB9Yj0Q6y44Y2v3YJZF82X", "name": "random_file.txt"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -1261,23 +1261,23 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kKf807xgG717x1b2qfg8B/rename + uri: https://api.dnanexus.com/file-FPfB9Yj0Q6y29yPf3YzJbGf2/rename response: - body: {string: '{"id":"file-FP9kKf807xgG717x1b2qfg8B"}'} + body: {string: '{"id":"file-FPfB9Yj0Q6y29yPf3YzJbGf2"}'} headers: Connection: [keep-alive] Content-Length: ['38'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:38:21 GMT'] + Date: ['Wed, 14 Nov 2018 22:42:28 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593501826-766691] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235348370-343079] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"name": "TestCopy.test_dx_to_dx_same_project_exist_dest.3fc5fdb9", "level": + body: '{"name": "TestCopy.test_dx_to_dx_same_project_exist_dest.4bb3ce84", "level": "VIEW", "limit": 2}' headers: ? !!binary | @@ -1300,22 +1300,22 @@ interactions: method: POST uri: https://api.dnanexus.com/system/findProjects response: - body: {string: '{"results":[{"id":"project-FP9kKf807xgG717x1b2qfg89","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} + body: {string: '{"results":[{"id":"project-FPfB9Yj0Q6y44Y2v3YJZF82X","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} headers: Connection: [keep-alive] Content-Length: ['147'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:38:21 GMT'] + Date: ['Wed, 14 Nov 2018 22:42:28 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593501939-40972] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235348507-674660] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: body: '{"objects": [{"name": "random_file.txt", "folder": "/another_folder", "project": - "project-FP9kKf807xgG717x1b2qfg89", "batchsize": 2}]}' + "project-FPfB9Yj0Q6y44Y2v3YJZF82X", "batchsize": 2}]}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -1337,21 +1337,21 @@ interactions: method: POST uri: https://api.dnanexus.com/system/resolveDataObjects response: - body: {string: '{"results":[[{"project":"project-FP9kKf807xgG717x1b2qfg89","id":"file-FP9kKf807xgG717x1b2qfg8B"}]]}'} + body: {string: '{"results":[[{"project":"project-FPfB9Yj0Q6y44Y2v3YJZF82X","id":"file-FPfB9Yj0Q6y29yPf3YzJbGf2"}]]}'} headers: Connection: [keep-alive] Content-Length: ['99'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:38:22 GMT'] + Date: ['Wed, 14 Nov 2018 22:42:28 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593502080-261542] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235348661-611883] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"project": "project-FP9kKf807xgG717x1b2qfg89"}' + body: '{"project": "project-FPfB9Yj0Q6y44Y2v3YJZF82X"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -1371,23 +1371,23 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kKf807xgG717x1b2qfg8B/describe + uri: https://api.dnanexus.com/file-FPfB9Yj0Q6y29yPf3YzJbGf2/describe response: - body: {string: '{"id":"file-FP9kKf807xgG717x1b2qfg8B","project":"project-FP9kKf807xgG717x1b2qfg89","class":"file","sponsored":false,"name":"random_file.txt","types":[],"state":"closed","hidden":false,"links":[],"folder":"/another_folder","tags":[],"created":1540593497000,"modified":1540593501836,"createdBy":{"user":"user-akumar_counsyl"},"media":"text/plain","archivalState":"live","size":5}'} + body: {string: '{"id":"file-FPfB9Yj0Q6y29yPf3YzJbGf2","project":"project-FPfB9Yj0Q6y44Y2v3YJZF82X","class":"file","sponsored":false,"name":"random_file.txt","types":[],"state":"closed","hidden":false,"links":[],"folder":"/another_folder","tags":[],"created":1542235343000,"modified":1542235348410,"createdBy":{"user":"user-akumar_counsyl"},"media":"text/plain","archivalState":"live","size":5}'} headers: Connection: [keep-alive] Content-Length: ['377'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:38:22 GMT'] + Date: ['Wed, 14 Nov 2018 22:42:28 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593502190-559169] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235348848-716782] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"project": "project-FP9kKf807xgG717x1b2qfg89"}' + body: '{"project": "project-FPfB9Yj0Q6y44Y2v3YJZF82X"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -1407,23 +1407,23 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kKf807xgG717x1b2qfg8B/describe + uri: https://api.dnanexus.com/file-FPfB9Yj0Q6y29yPf3YzJbGf2/describe response: - body: {string: '{"id":"file-FP9kKf807xgG717x1b2qfg8B","project":"project-FP9kKf807xgG717x1b2qfg89","class":"file","sponsored":false,"name":"random_file.txt","types":[],"state":"closed","hidden":false,"links":[],"folder":"/another_folder","tags":[],"created":1540593497000,"modified":1540593501836,"createdBy":{"user":"user-akumar_counsyl"},"media":"text/plain","archivalState":"live","size":5}'} + body: {string: '{"id":"file-FPfB9Yj0Q6y29yPf3YzJbGf2","project":"project-FPfB9Yj0Q6y44Y2v3YJZF82X","class":"file","sponsored":false,"name":"random_file.txt","types":[],"state":"closed","hidden":false,"links":[],"folder":"/another_folder","tags":[],"created":1542235343000,"modified":1542235348410,"createdBy":{"user":"user-akumar_counsyl"},"media":"text/plain","archivalState":"live","size":5}'} headers: Connection: [keep-alive] Content-Length: ['377'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:38:22 GMT'] + Date: ['Wed, 14 Nov 2018 22:42:28 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593502306-133402] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235348956-980968] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"name": "TestCopy.test_dx_to_dx_same_project_exist_dest.3fc5fdb9", "level": + body: '{"name": "TestCopy.test_dx_to_dx_same_project_exist_dest.4bb3ce84", "level": "VIEW", "limit": 2}' headers: ? !!binary | @@ -1446,17 +1446,17 @@ interactions: method: POST uri: https://api.dnanexus.com/system/findProjects response: - body: {string: '{"results":[{"id":"project-FP9kKf807xgG717x1b2qfg89","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} + body: {string: '{"results":[{"id":"project-FPfB9Yj0Q6y44Y2v3YJZF82X","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} headers: Connection: [keep-alive] Content-Length: ['147'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:38:22 GMT'] + Date: ['Wed, 14 Nov 2018 22:42:29 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593502424-437824] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235349059-79623] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -1481,25 +1481,25 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kKf807xgG717x1b2qfg89/listFolder + uri: https://api.dnanexus.com/project-FPfB9Yj0Q6y44Y2v3YJZF82X/listFolder response: body: {string: '{"error":{"type":"ResourceNotFound","message":"The specified folder - could not be found in project-FP9kKf807xgG717x1b2qfg89"}}'} + could not be found in project-FPfB9Yj0Q6y44Y2v3YJZF82X"}}'} headers: Connection: [keep-alive] Content-Type: [application/json] - Date: ['Fri, 26 Oct 2018 22:38:22 GMT'] + Date: ['Wed, 14 Nov 2018 22:42:29 GMT'] Server: [nginx] Transfer-Encoding: [chunked] Vary: [Accept-Encoding] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593502550-776105] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235349174-815563] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 404, message: Not Found} - request: - body: '{"name": "TestCopy.test_dx_to_dx_same_project_exist_dest.3fc5fdb9", "level": + body: '{"name": "TestCopy.test_dx_to_dx_same_project_exist_dest.4bb3ce84", "level": "VIEW", "limit": 2}' headers: ? !!binary | @@ -1522,17 +1522,17 @@ interactions: method: POST uri: https://api.dnanexus.com/system/findProjects response: - body: {string: '{"results":[{"id":"project-FP9kKf807xgG717x1b2qfg89","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} + body: {string: '{"results":[{"id":"project-FPfB9Yj0Q6y44Y2v3YJZF82X","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} headers: Connection: [keep-alive] Content-Length: ['147'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:38:22 GMT'] + Date: ['Wed, 14 Nov 2018 22:42:29 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593502948-843702] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235349536-260216] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -1556,24 +1556,24 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kKf807xgG717x1b2qfg89/newFolder + uri: https://api.dnanexus.com/project-FPfB9Yj0Q6y44Y2v3YJZF82X/newFolder response: - body: {string: '{"id":"project-FP9kKf807xgG717x1b2qfg89"}'} + body: {string: '{"id":"project-FPfB9Yj0Q6y44Y2v3YJZF82X"}'} headers: Connection: [keep-alive] Content-Length: ['41'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:38:23 GMT'] + Date: ['Wed, 14 Nov 2018 22:42:29 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593503068-877828] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235349649-203088] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: body: '{"objects": [{"name": "folder_file.txt", "folder": "/temp_folder", "project": - "project-FP9kKf807xgG717x1b2qfg89", "batchsize": 2}]}' + "project-FPfB9Yj0Q6y44Y2v3YJZF82X", "batchsize": 2}]}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -1600,16 +1600,16 @@ interactions: Connection: [keep-alive] Content-Length: ['16'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:38:23 GMT'] + Date: ['Wed, 14 Nov 2018 22:42:29 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593503176-564817] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235349757-407988] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"objects": ["file-FP9kKf807xgG717x1b2qfg8B"], "destination": "/temp_folder"}' + body: '{"objects": ["file-FPfB9Yj0Q6y29yPf3YzJbGf2"], "destination": "/temp_folder"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -1629,23 +1629,23 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kKf807xgG717x1b2qfg89/move + uri: https://api.dnanexus.com/project-FPfB9Yj0Q6y44Y2v3YJZF82X/move response: - body: {string: '{"id":"project-FP9kKf807xgG717x1b2qfg89"}'} + body: {string: '{"id":"project-FPfB9Yj0Q6y44Y2v3YJZF82X"}'} headers: Connection: [keep-alive] Content-Length: ['41'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:38:23 GMT'] + Date: ['Wed, 14 Nov 2018 22:42:29 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593503285-782468] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235349873-732728] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"project": "project-FP9kKf807xgG717x1b2qfg89", "name": "folder_file.txt"}' + body: '{"project": "project-FPfB9Yj0Q6y44Y2v3YJZF82X", "name": "folder_file.txt"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -1665,23 +1665,23 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kKf807xgG717x1b2qfg8B/rename + uri: https://api.dnanexus.com/file-FPfB9Yj0Q6y29yPf3YzJbGf2/rename response: - body: {string: '{"id":"file-FP9kKf807xgG717x1b2qfg8B"}'} + body: {string: '{"id":"file-FPfB9Yj0Q6y29yPf3YzJbGf2"}'} headers: Connection: [keep-alive] Content-Length: ['38'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:38:23 GMT'] + Date: ['Wed, 14 Nov 2018 22:42:30 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593503430-650797] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235350012-108696] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"name": "TestCopy.test_dx_to_dx_same_project_exist_dest.3fc5fdb9", "level": + body: '{"name": "TestCopy.test_dx_to_dx_same_project_exist_dest.4bb3ce84", "level": "VIEW", "limit": 2}' headers: ? !!binary | @@ -1704,22 +1704,22 @@ interactions: method: POST uri: https://api.dnanexus.com/system/findProjects response: - body: {string: '{"results":[{"id":"project-FP9kKf807xgG717x1b2qfg89","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} + body: {string: '{"results":[{"id":"project-FPfB9Yj0Q6y44Y2v3YJZF82X","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} headers: Connection: [keep-alive] Content-Length: ['147'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:38:23 GMT'] + Date: ['Wed, 14 Nov 2018 22:42:30 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593503542-656730] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235350127-369403] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: body: '{"objects": [{"name": "folder_file.txt", "folder": "/temp_folder", "project": - "project-FP9kKf807xgG717x1b2qfg89", "batchsize": 2}]}' + "project-FPfB9Yj0Q6y44Y2v3YJZF82X", "batchsize": 2}]}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -1741,21 +1741,21 @@ interactions: method: POST uri: https://api.dnanexus.com/system/resolveDataObjects response: - body: {string: '{"results":[[{"project":"project-FP9kKf807xgG717x1b2qfg89","id":"file-FP9kKf807xgG717x1b2qfg8B"}]]}'} + body: {string: '{"results":[[{"project":"project-FPfB9Yj0Q6y44Y2v3YJZF82X","id":"file-FPfB9Yj0Q6y29yPf3YzJbGf2"}]]}'} headers: Connection: [keep-alive] Content-Length: ['99'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:38:23 GMT'] + Date: ['Wed, 14 Nov 2018 22:42:30 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593503672-732813] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235350280-842585] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"project": "project-FP9kKf807xgG717x1b2qfg89"}' + body: '{"project": "project-FPfB9Yj0Q6y44Y2v3YJZF82X"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -1775,23 +1775,23 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kKf807xgG717x1b2qfg8B/describe + uri: https://api.dnanexus.com/file-FPfB9Yj0Q6y29yPf3YzJbGf2/describe response: - body: {string: '{"id":"file-FP9kKf807xgG717x1b2qfg8B","project":"project-FP9kKf807xgG717x1b2qfg89","class":"file","sponsored":false,"name":"folder_file.txt","types":[],"state":"closed","hidden":false,"links":[],"folder":"/temp_folder","tags":[],"created":1540593497000,"modified":1540593503437,"createdBy":{"user":"user-akumar_counsyl"},"media":"text/plain","archivalState":"live","size":5}'} + body: {string: '{"id":"file-FPfB9Yj0Q6y29yPf3YzJbGf2","project":"project-FPfB9Yj0Q6y44Y2v3YJZF82X","class":"file","sponsored":false,"name":"folder_file.txt","types":[],"state":"closed","hidden":false,"links":[],"folder":"/temp_folder","tags":[],"created":1542235343000,"modified":1542235350022,"createdBy":{"user":"user-akumar_counsyl"},"media":"text/plain","archivalState":"live","size":5}'} headers: Connection: [keep-alive] Content-Length: ['374'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:38:23 GMT'] + Date: ['Wed, 14 Nov 2018 22:42:30 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593503780-398727] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235350378-110449] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"name": "TestCopy.test_dx_to_dx_same_project_exist_dest.3fc5fdb9", "level": + body: '{"name": "TestCopy.test_dx_to_dx_same_project_exist_dest.4bb3ce84", "level": "VIEW", "limit": 2}' headers: ? !!binary | @@ -1814,17 +1814,17 @@ interactions: method: POST uri: https://api.dnanexus.com/system/findProjects response: - body: {string: '{"results":[{"id":"project-FP9kKf807xgG717x1b2qfg89","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} + body: {string: '{"results":[{"id":"project-FPfB9Yj0Q6y44Y2v3YJZF82X","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} headers: Connection: [keep-alive] Content-Length: ['147'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:38:23 GMT'] + Date: ['Wed, 14 Nov 2018 22:42:30 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593503888-899425] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235350489-469895] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -1849,23 +1849,23 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kKf807xgG717x1b2qfg89/listFolder + uri: https://api.dnanexus.com/project-FPfB9Yj0Q6y44Y2v3YJZF82X/listFolder response: body: {string: '{"folders":[]}'} headers: Connection: [keep-alive] Content-Length: ['14'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:38:24 GMT'] + Date: ['Wed, 14 Nov 2018 22:42:30 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593504030-233344] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235350619-145027] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"name": "TestCopy.test_dx_to_dx_same_project_exist_dest.3fc5fdb9", "level": + body: '{"name": "TestCopy.test_dx_to_dx_same_project_exist_dest.4bb3ce84", "level": "VIEW", "limit": 2}' headers: ? !!binary | @@ -1888,22 +1888,22 @@ interactions: method: POST uri: https://api.dnanexus.com/system/findProjects response: - body: {string: '{"results":[{"id":"project-FP9kKf807xgG717x1b2qfg89","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} + body: {string: '{"results":[{"id":"project-FPfB9Yj0Q6y44Y2v3YJZF82X","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} headers: Connection: [keep-alive] Content-Length: ['147'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:38:24 GMT'] + Date: ['Wed, 14 Nov 2018 22:42:30 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593504145-592992] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235350740-443677] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: body: '{"objects": [{"name": "folder_file.txt", "folder": "/another_folder", "project": - "project-FP9kKf807xgG717x1b2qfg89", "batchsize": 2}]}' + "project-FPfB9Yj0Q6y44Y2v3YJZF82X", "batchsize": 2}]}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -1925,21 +1925,21 @@ interactions: method: POST uri: https://api.dnanexus.com/system/resolveDataObjects response: - body: {string: '{"results":[[{"project":"project-FP9kKf807xgG717x1b2qfg89","id":"file-FP9kKfj07xg9yPz44YqJxVb8"}]]}'} + body: {string: '{"results":[[{"project":"project-FPfB9Yj0Q6y44Y2v3YJZF82X","id":"file-FPfB9Z80Q6y44Y2v3YJZF82Y"}]]}'} headers: Connection: [keep-alive] Content-Length: ['99'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:38:24 GMT'] + Date: ['Wed, 14 Nov 2018 22:42:30 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593504272-540156] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235350862-225727] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"project": "project-FP9kKf807xgG717x1b2qfg89"}' + body: '{"project": "project-FPfB9Yj0Q6y44Y2v3YJZF82X"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -1959,23 +1959,23 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kKfj07xg9yPz44YqJxVb8/describe + uri: https://api.dnanexus.com/file-FPfB9Z80Q6y44Y2v3YJZF82Y/describe response: - body: {string: '{"id":"file-FP9kKfj07xg9yPz44YqJxVb8","project":"project-FP9kKf807xgG717x1b2qfg89","class":"file","sponsored":false,"name":"folder_file.txt","types":[],"state":"closed","hidden":false,"links":[],"folder":"/another_folder","tags":[],"created":1540593499000,"modified":1540593501208,"createdBy":{"user":"user-akumar_counsyl"},"media":"text/plain","archivalState":"live","size":5}'} + body: {string: '{"id":"file-FPfB9Z80Q6y44Y2v3YJZF82Y","project":"project-FPfB9Yj0Q6y44Y2v3YJZF82X","class":"file","sponsored":false,"name":"folder_file.txt","types":[],"state":"closed","hidden":false,"links":[],"folder":"/another_folder","tags":[],"created":1542235345000,"modified":1542235346226,"createdBy":{"user":"user-akumar_counsyl"},"media":"text/plain","archivalState":"live","size":5}'} headers: Connection: [keep-alive] Content-Length: ['377'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:38:24 GMT'] + Date: ['Wed, 14 Nov 2018 22:42:30 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593504382-309058] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235350964-766603] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"objects": ["file-FP9kKfj07xg9yPz44YqJxVb8"]}' + body: '{"objects": ["file-FPfB9Z80Q6y44Y2v3YJZF82Y"]}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -1995,23 +1995,23 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kKf807xgG717x1b2qfg89/removeObjects + uri: https://api.dnanexus.com/project-FPfB9Yj0Q6y44Y2v3YJZF82X/removeObjects response: - body: {string: '{"id":"project-FP9kKf807xgG717x1b2qfg89"}'} + body: {string: '{"id":"project-FPfB9Yj0Q6y44Y2v3YJZF82X"}'} headers: Connection: [keep-alive] Content-Length: ['41'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:38:24 GMT'] + Date: ['Wed, 14 Nov 2018 22:42:31 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593504495-462455] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235351069-510106] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"objects": ["file-FP9kKf807xgG717x1b2qfg8B"], "destination": "/another_folder"}' + body: '{"objects": ["file-FPfB9Yj0Q6y29yPf3YzJbGf2"], "destination": "/another_folder"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -2031,23 +2031,23 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kKf807xgG717x1b2qfg89/move + uri: https://api.dnanexus.com/project-FPfB9Yj0Q6y44Y2v3YJZF82X/move response: - body: {string: '{"id":"project-FP9kKf807xgG717x1b2qfg89"}'} + body: {string: '{"id":"project-FPfB9Yj0Q6y44Y2v3YJZF82X"}'} headers: Connection: [keep-alive] Content-Length: ['41'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:38:24 GMT'] + Date: ['Wed, 14 Nov 2018 22:42:31 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593504650-929754] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235351251-564846] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"name": "TestCopy.test_dx_to_dx_same_project_exist_dest.3fc5fdb9", "level": + body: '{"name": "TestCopy.test_dx_to_dx_same_project_exist_dest.4bb3ce84", "level": "VIEW", "limit": 2}' headers: ? !!binary | @@ -2070,21 +2070,21 @@ interactions: method: POST uri: https://api.dnanexus.com/system/findProjects response: - body: {string: '{"results":[{"id":"project-FP9kKf807xgG717x1b2qfg89","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} + body: {string: '{"results":[{"id":"project-FPfB9Yj0Q6y44Y2v3YJZF82X","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} headers: Connection: [keep-alive] Content-Length: ['147'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:38:24 GMT'] + Date: ['Wed, 14 Nov 2018 22:42:31 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593504792-493783] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235351525-227814] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"objects": [{"name": "another_folder", "folder": "/", "project": "project-FP9kKf807xgG717x1b2qfg89", + body: '{"objects": [{"name": "another_folder", "folder": "/", "project": "project-FPfB9Yj0Q6y44Y2v3YJZF82X", "batchsize": 2}]}' headers: ? !!binary | @@ -2112,12 +2112,12 @@ interactions: Connection: [keep-alive] Content-Length: ['16'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:38:24 GMT'] + Date: ['Wed, 14 Nov 2018 22:42:31 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593504922-963559] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235351644-798178] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -2142,19 +2142,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kKf807xgG717x1b2qfg89/listFolder + uri: https://api.dnanexus.com/project-FPfB9Yj0Q6y44Y2v3YJZF82X/listFolder response: body: {string: '{"folders":[]}'} headers: Connection: [keep-alive] Content-Length: ['14'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:38:25 GMT'] + Date: ['Wed, 14 Nov 2018 22:42:31 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593505026-565143] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235351748-980344] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -2178,19 +2178,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kKf807xgG717x1b2qfg89/destroy + uri: https://api.dnanexus.com/project-FPfB9Yj0Q6y44Y2v3YJZF82X/destroy response: - body: {string: '{"id":"project-FP9kKf807xgG717x1b2qfg89"}'} + body: {string: '{"id":"project-FPfB9Yj0Q6y44Y2v3YJZF82X"}'} headers: Connection: [keep-alive] Content-Length: ['41'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:38:27 GMT'] + Date: ['Wed, 14 Nov 2018 22:42:35 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593505144-581926] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235351855-370054] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} version: 1 diff --git a/stor/tests/cassettes_py3/TestCopy/test_dx_to_dx_within_project_fail.yaml b/stor_dx/stor_dx/tests/cassettes_py3/TestCopy/test_dx_to_dx_within_project_fail.yaml similarity index 72% rename from stor/tests/cassettes_py3/TestCopy/test_dx_to_dx_within_project_fail.yaml rename to stor_dx/stor_dx/tests/cassettes_py3/TestCopy/test_dx_to_dx_within_project_fail.yaml index 0d1cf62b..ccf3c024 100644 --- a/stor/tests/cassettes_py3/TestCopy/test_dx_to_dx_within_project_fail.yaml +++ b/stor_dx/stor_dx/tests/cassettes_py3/TestCopy/test_dx_to_dx_within_project_fail.yaml @@ -1,6 +1,6 @@ interactions: - request: - body: '{"name": "TestCopy.test_dx_to_dx_within_project_fail.df197674"}' + body: '{"name": "TestCopy.test_dx_to_dx_within_project_fail.bdc087a4"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -22,17 +22,17 @@ interactions: method: POST uri: https://api.dnanexus.com/project/new response: - body: {string: '{"id":"project-FP9kKjj0xvj61pZK0z8G44YX"}'} + body: {string: '{"id":"project-FPfB9g0074YPQZ9J3YpQkQ4k"}'} headers: Connection: [keep-alive] Content-Length: ['41'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:38:27 GMT'] + Date: ['Wed, 14 Nov 2018 22:42:36 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593507962-995495] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235356042-56013] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -56,19 +56,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kKjj0xvj61pZK0z8G44YX/describe + uri: https://api.dnanexus.com/project-FPfB9g0074YPQZ9J3YpQkQ4k/describe response: - body: {string: '{"id":"project-FP9kKjj0xvj61pZK0z8G44YX","name":"TestCopy.test_dx_to_dx_within_project_fail.df197674","class":"project","created":1540593507000,"modified":1540593507000,"billTo":"org-counsyl","level":"ADMINISTER","dataUsage":0,"sponsoredDataUsage":0,"region":"aws:us-east-1","summary":"","description":"","protected":false,"restricted":false,"downloadRestricted":false,"containsPHI":false,"createdBy":{"user":"user-akumar_counsyl"},"version":0,"storageCost":0,"pendingTransfer":null,"tags":[],"defaultInstanceType":"mem2_hdd2_x2","archivalState":"live","archivalProgress":null,"totalSponsoredEgressBytes":0,"consumedSponsoredEgressBytes":0,"atSpendingLimit":false}'} + body: {string: '{"id":"project-FPfB9g0074YPQZ9J3YpQkQ4k","name":"TestCopy.test_dx_to_dx_within_project_fail.bdc087a4","class":"project","created":1542235356000,"modified":1542235356000,"billTo":"org-counsyl","level":"ADMINISTER","dataUsage":0,"sponsoredDataUsage":0,"region":"aws:us-east-1","summary":"","description":"","protected":false,"restricted":false,"downloadRestricted":false,"containsPHI":false,"createdBy":{"user":"user-akumar_counsyl"},"version":0,"storageCost":0,"pendingTransfer":null,"tags":[],"defaultInstanceType":"mem2_hdd2_x2","archivalState":"live","archivalProgress":null,"totalSponsoredEgressBytes":0,"consumedSponsoredEgressBytes":0,"atSpendingLimit":false}'} headers: Connection: [keep-alive] Content-Length: ['664'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:38:28 GMT'] + Date: ['Wed, 14 Nov 2018 22:42:36 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593508073-828957] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235356282-526270] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -92,24 +92,24 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kKjj0xvj61pZK0z8G44YX/newFolder + uri: https://api.dnanexus.com/project-FPfB9g0074YPQZ9J3YpQkQ4k/newFolder response: - body: {string: '{"id":"project-FP9kKjj0xvj61pZK0z8G44YX"}'} + body: {string: '{"id":"project-FPfB9g0074YPQZ9J3YpQkQ4k"}'} headers: Connection: [keep-alive] Content-Length: ['41'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:38:28 GMT'] + Date: ['Wed, 14 Nov 2018 22:42:36 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593508188-845290] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235356561-832861] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"name": "folder_file.txt", "folder": "/temp_folder", "project": "project-FP9kKjj0xvj61pZK0z8G44YX", - "nonce": "b''9398244243590c25ecc2410e30b52c36ebf193540d3f6031f88485c5fbea51cc''1540593508.258841"}' + body: '{"name": "folder_file.txt", "folder": "/temp_folder", "project": "project-FPfB9g0074YPQZ9J3YpQkQ4k", + "nonce": "b''42ebf2924c66769ed1d3416e4a1515d64a6b0f7fac6ccb57be1e99f3e7fd1cf2''1542235356.817946"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -131,17 +131,17 @@ interactions: method: POST uri: https://api.dnanexus.com/file/new response: - body: {string: '{"id":"file-FP9kKk00xvj1kxQk1b9XV8yp"}'} + body: {string: '{"id":"file-FPfB9g0074Y8Fpy33Zqxfx6Z"}'} headers: Connection: [keep-alive] Content-Length: ['38'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:38:28 GMT'] + Date: ['Wed, 14 Nov 2018 22:42:37 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593508302-789696] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235356922-874368] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -165,19 +165,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kKjj0xvj61pZK0z8G44YX/describe + uri: https://api.dnanexus.com/project-FPfB9g0074YPQZ9J3YpQkQ4k/describe response: - body: {string: '{"id":"project-FP9kKjj0xvj61pZK0z8G44YX","fileUploadParameters":{"maximumPartSize":5368709120,"minimumPartSize":5242880,"maximumFileSize":5497558138880,"maximumNumParts":10000,"emptyLastPartAllowed":true}}'} + body: {string: '{"id":"project-FPfB9g0074YPQZ9J3YpQkQ4k","fileUploadParameters":{"maximumPartSize":5368709120,"minimumPartSize":5242880,"maximumFileSize":5497558138880,"maximumNumParts":10000,"emptyLastPartAllowed":true}}'} headers: Connection: [keep-alive] Content-Length: ['205'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:38:28 GMT'] + Date: ['Wed, 14 Nov 2018 22:42:37 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593508428-226472] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235357222-103912] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -201,19 +201,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kKk00xvj1kxQk1b9XV8yp/upload + uri: https://api.dnanexus.com/file-FPfB9g0074Y8Fpy33Zqxfx6Z/upload response: - body: {string: '{"url":"https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/914e/file/open/file-FP9kKk00xvj1kxQk1b9XV8yp/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181026%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181026T223828Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=e8b2865b3c203eec7850405ba39a7b1edde2f898bd0e3804e4752e117f96d358","headers":{"host":"dnanexus-platform-upload-prod.s3.amazonaws.com","content-type":"binary/octet-stream","x-amz-server-side-encryption":"AES256","content-md5":"c9//V/4k6Ae9T7G8TgfNcw==","content-length":"5"},"expires":1540593628544}'} + body: {string: '{"url":"https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/6a04/file/open/file-FPfB9g0074Y8Fpy33Zqxfx6Z/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181114%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181114T224237Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=efc99fa3e28b1826e038ceac301fcd68aa13ebc8b5e8a2fea270799cc7425769","headers":{"host":"dnanexus-platform-upload-prod.s3.amazonaws.com","content-type":"binary/octet-stream","x-amz-server-side-encryption":"AES256","content-md5":"c9//V/4k6Ae9T7G8TgfNcw==","content-length":"5"},"expires":1542235477457}'} headers: Connection: [keep-alive] Content-Length: ['692'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:38:28 GMT'] + Date: ['Wed, 14 Nov 2018 22:42:37 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593508532-472657] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235357405-536829] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -241,21 +241,21 @@ interactions: : - !!binary | QUVTMjU2 method: PUT - uri: https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/914e/file/open/file-FP9kKk00xvj1kxQk1b9XV8yp/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181026%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181026T223828Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=e8b2865b3c203eec7850405ba39a7b1edde2f898bd0e3804e4752e117f96d358 + uri: https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/6a04/file/open/file-FPfB9g0074Y8Fpy33Zqxfx6Z/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181114%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181114T224237Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=efc99fa3e28b1826e038ceac301fcd68aa13ebc8b5e8a2fea270799cc7425769 response: body: {string: ''} headers: Content-Length: ['0'] - Date: ['Fri, 26 Oct 2018 22:38:29 GMT'] + Date: ['Wed, 14 Nov 2018 22:42:39 GMT'] ETag: ['"73dfff57fe24e807bd4fb1bc4e07cd73"'] Server: [AmazonS3] - x-amz-expiration: ['expiry-date="Sat, 17 Nov 2018 00:00:00 GMT", rule-id="3weekpurge"'] - x-amz-id-2: [h1zTYAjYw/AuJorvcZKQeT3Bhaf2XsPH75hkB4DEMD2tAaukHWpx/RLHfllu9z0xSvCcS/TceRI=] - x-amz-request-id: [4FA094398D9B2415] + x-amz-expiration: ['expiry-date="Thu, 06 Dec 2018 00:00:00 GMT", rule-id="3weekpurge"'] + x-amz-id-2: [Kjd+B4OB1OFwxh+ryozZfJsGnhvQMxef/Yy+MZ8Z1ennKhuPfVq52WwXJmEBB8HwL/hUt86/rbs=] + x-amz-request-id: [AD50701539783172] x-amz-server-side-encryption: [AES256] status: {code: 200, message: OK} - request: - body: '{"fields": {"state": true}, "project": "project-FP9kKjj0xvj61pZK0z8G44YX"}' + body: '{"fields": {"state": true}, "project": "project-FPfB9g0074YPQZ9J3YpQkQ4k"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -275,19 +275,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kKk00xvj1kxQk1b9XV8yp/describe + uri: https://api.dnanexus.com/file-FPfB9g0074Y8Fpy33Zqxfx6Z/describe response: - body: {string: '{"id":"file-FP9kKk00xvj1kxQk1b9XV8yp","state":"open"}'} + body: {string: '{"id":"file-FPfB9g0074Y8Fpy33Zqxfx6Z","state":"open"}'} headers: Connection: [keep-alive] Content-Length: ['53'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:38:29 GMT'] + Date: ['Wed, 14 Nov 2018 22:42:38 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593509087-800772] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235358440-513611] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -311,23 +311,23 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kKk00xvj1kxQk1b9XV8yp/close + uri: https://api.dnanexus.com/file-FPfB9g0074Y8Fpy33Zqxfx6Z/close response: - body: {string: '{"id":"file-FP9kKk00xvj1kxQk1b9XV8yp"}'} + body: {string: '{"id":"file-FPfB9g0074Y8Fpy33Zqxfx6Z"}'} headers: Connection: [keep-alive] Content-Length: ['38'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:38:29 GMT'] + Date: ['Wed, 14 Nov 2018 22:42:38 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593509198-995260] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235358623-37281] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"name": "TestCopy.test_dx_to_dx_within_project_fail.df197674", "level": + body: '{"name": "TestCopy.test_dx_to_dx_within_project_fail.bdc087a4", "level": "VIEW", "limit": 2}' headers: ? !!binary | @@ -350,22 +350,22 @@ interactions: method: POST uri: https://api.dnanexus.com/system/findProjects response: - body: {string: '{"results":[{"id":"project-FP9kKjj0xvj61pZK0z8G44YX","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} + body: {string: '{"results":[{"id":"project-FPfB9g0074YPQZ9J3YpQkQ4k","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} headers: Connection: [keep-alive] Content-Length: ['147'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:38:29 GMT'] + Date: ['Wed, 14 Nov 2018 22:42:38 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593509327-901019] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235358934-546973] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: body: '{"objects": [{"name": "folder_file.txt", "folder": "/temp_folder", "project": - "project-FP9kKjj0xvj61pZK0z8G44YX", "batchsize": 2}]}' + "project-FPfB9g0074YPQZ9J3YpQkQ4k", "batchsize": 2}]}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -387,21 +387,21 @@ interactions: method: POST uri: https://api.dnanexus.com/system/resolveDataObjects response: - body: {string: '{"results":[[{"project":"project-FP9kKjj0xvj61pZK0z8G44YX","id":"file-FP9kKk00xvj1kxQk1b9XV8yp"}]]}'} + body: {string: '{"results":[[{"project":"project-FPfB9g0074YPQZ9J3YpQkQ4k","id":"file-FPfB9g0074Y8Fpy33Zqxfx6Z"}]]}'} headers: Connection: [keep-alive] Content-Length: ['99'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:38:29 GMT'] + Date: ['Wed, 14 Nov 2018 22:42:39 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593509453-376403] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235359129-912811] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"project": "project-FP9kKjj0xvj61pZK0z8G44YX"}' + body: '{"project": "project-FPfB9g0074YPQZ9J3YpQkQ4k"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -421,23 +421,23 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kKk00xvj1kxQk1b9XV8yp/describe + uri: https://api.dnanexus.com/file-FPfB9g0074Y8Fpy33Zqxfx6Z/describe response: - body: {string: '{"id":"file-FP9kKk00xvj1kxQk1b9XV8yp","project":"project-FP9kKjj0xvj61pZK0z8G44YX","class":"file","sponsored":false,"name":"folder_file.txt","types":[],"state":"closing","hidden":false,"links":[],"folder":"/temp_folder","tags":[],"created":1540593508000,"modified":1540593509209,"createdBy":{"user":"user-akumar_counsyl"},"media":"","archivalState":"live"}'} + body: {string: '{"id":"file-FPfB9g0074Y8Fpy33Zqxfx6Z","project":"project-FPfB9g0074YPQZ9J3YpQkQ4k","class":"file","sponsored":false,"name":"folder_file.txt","types":[],"state":"closed","hidden":false,"links":[],"folder":"/temp_folder","tags":[],"created":1542235356000,"modified":1542235359059,"createdBy":{"user":"user-akumar_counsyl"},"media":"text/plain","archivalState":"live","size":5}'} headers: Connection: [keep-alive] - Content-Length: ['356'] + Content-Length: ['374'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:38:29 GMT'] + Date: ['Wed, 14 Nov 2018 22:42:39 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593509564-623804] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235359309-483279] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"name": "TestCopy.test_dx_to_dx_within_project_fail.df197674", "level": + body: '{"name": "TestCopy.test_dx_to_dx_within_project_fail.bdc087a4", "level": "VIEW", "limit": 2}' headers: ? !!binary | @@ -460,21 +460,21 @@ interactions: method: POST uri: https://api.dnanexus.com/system/findProjects response: - body: {string: '{"results":[{"id":"project-FP9kKjj0xvj61pZK0z8G44YX","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} + body: {string: '{"results":[{"id":"project-FPfB9g0074YPQZ9J3YpQkQ4k","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} headers: Connection: [keep-alive] Content-Length: ['147'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:38:29 GMT'] + Date: ['Wed, 14 Nov 2018 22:42:39 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593509670-824796] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235359491-847333] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"project": "project-FP9kKjj0xvj61pZK0z8G44YX"}' + body: '{"project": "project-FPfB9g0074YPQZ9J3YpQkQ4k"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -494,23 +494,23 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kKk00xvj1kxQk1b9XV8yp/describe + uri: https://api.dnanexus.com/file-FPfB9g0074Y8Fpy33Zqxfx6Z/describe response: - body: {string: '{"id":"file-FP9kKk00xvj1kxQk1b9XV8yp","project":"project-FP9kKjj0xvj61pZK0z8G44YX","class":"file","sponsored":false,"name":"folder_file.txt","types":[],"state":"closing","hidden":false,"links":[],"folder":"/temp_folder","tags":[],"created":1540593508000,"modified":1540593509209,"createdBy":{"user":"user-akumar_counsyl"},"media":"","archivalState":"live"}'} + body: {string: '{"id":"file-FPfB9g0074Y8Fpy33Zqxfx6Z","project":"project-FPfB9g0074YPQZ9J3YpQkQ4k","class":"file","sponsored":false,"name":"folder_file.txt","types":[],"state":"closed","hidden":false,"links":[],"folder":"/temp_folder","tags":[],"created":1542235356000,"modified":1542235359059,"createdBy":{"user":"user-akumar_counsyl"},"media":"text/plain","archivalState":"live","size":5}'} headers: Connection: [keep-alive] - Content-Length: ['356'] + Content-Length: ['374'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:38:29 GMT'] + Date: ['Wed, 14 Nov 2018 22:42:39 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593509794-25627] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235359701-325155] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"name": "TestCopy.test_dx_to_dx_within_project_fail.df197674", "level": + body: '{"name": "TestCopy.test_dx_to_dx_within_project_fail.bdc087a4", "level": "VIEW", "limit": 2}' headers: ? !!binary | @@ -533,17 +533,17 @@ interactions: method: POST uri: https://api.dnanexus.com/system/findProjects response: - body: {string: '{"results":[{"id":"project-FP9kKjj0xvj61pZK0z8G44YX","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} + body: {string: '{"results":[{"id":"project-FPfB9g0074YPQZ9J3YpQkQ4k","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} headers: Connection: [keep-alive] Content-Length: ['147'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:38:29 GMT'] + Date: ['Wed, 14 Nov 2018 22:42:39 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593509908-205613] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235359921-977539] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -567,19 +567,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kKjj0xvj61pZK0z8G44YX/destroy + uri: https://api.dnanexus.com/project-FPfB9g0074YPQZ9J3YpQkQ4k/destroy response: - body: {string: '{"id":"project-FP9kKjj0xvj61pZK0z8G44YX"}'} + body: {string: '{"id":"project-FPfB9g0074YPQZ9J3YpQkQ4k"}'} headers: Connection: [keep-alive] Content-Length: ['41'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:38:32 GMT'] + Date: ['Wed, 14 Nov 2018 22:42:42 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593510037-835825] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235360119-807697] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} version: 1 diff --git a/stor/tests/cassettes_py3/TestCopy/test_dx_to_dx_within_project_pass.yaml b/stor_dx/stor_dx/tests/cassettes_py3/TestCopy/test_dx_to_dx_within_project_pass.yaml similarity index 76% rename from stor/tests/cassettes_py3/TestCopy/test_dx_to_dx_within_project_pass.yaml rename to stor_dx/stor_dx/tests/cassettes_py3/TestCopy/test_dx_to_dx_within_project_pass.yaml index e5f69edb..21d62e5a 100644 --- a/stor/tests/cassettes_py3/TestCopy/test_dx_to_dx_within_project_pass.yaml +++ b/stor_dx/stor_dx/tests/cassettes_py3/TestCopy/test_dx_to_dx_within_project_pass.yaml @@ -1,6 +1,6 @@ interactions: - request: - body: '{"name": "TestCopy.test_dx_to_dx_within_project_pass.ce283519"}' + body: '{"name": "TestCopy.test_dx_to_dx_within_project_pass.e0097411"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -22,17 +22,17 @@ interactions: method: POST uri: https://api.dnanexus.com/project/new response: - body: {string: '{"id":"project-FP9kKp00VpKVkxQk1b9XV8yv"}'} + body: {string: '{"id":"project-FPfB9jj0YQ9qgzq03ZJpv0Xx"}'} headers: Connection: [keep-alive] Content-Length: ['41'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:38:32 GMT'] + Date: ['Wed, 14 Nov 2018 22:42:43 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593512740-686288] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235363227-160917] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -56,19 +56,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kKp00VpKVkxQk1b9XV8yv/describe + uri: https://api.dnanexus.com/project-FPfB9jj0YQ9qgzq03ZJpv0Xx/describe response: - body: {string: '{"id":"project-FP9kKp00VpKVkxQk1b9XV8yv","name":"TestCopy.test_dx_to_dx_within_project_pass.ce283519","class":"project","created":1540593512000,"modified":1540593512000,"billTo":"org-counsyl","level":"ADMINISTER","dataUsage":0,"sponsoredDataUsage":0,"region":"aws:us-east-1","summary":"","description":"","protected":false,"restricted":false,"downloadRestricted":false,"containsPHI":false,"createdBy":{"user":"user-akumar_counsyl"},"version":0,"storageCost":0,"pendingTransfer":null,"tags":[],"defaultInstanceType":"mem2_hdd2_x2","archivalState":"live","archivalProgress":null,"totalSponsoredEgressBytes":0,"consumedSponsoredEgressBytes":0,"atSpendingLimit":false}'} + body: {string: '{"id":"project-FPfB9jj0YQ9qgzq03ZJpv0Xx","name":"TestCopy.test_dx_to_dx_within_project_pass.e0097411","class":"project","created":1542235363000,"modified":1542235363000,"billTo":"org-counsyl","level":"ADMINISTER","dataUsage":0,"sponsoredDataUsage":0,"region":"aws:us-east-1","summary":"","description":"","protected":false,"restricted":false,"downloadRestricted":false,"containsPHI":false,"createdBy":{"user":"user-akumar_counsyl"},"version":0,"storageCost":0,"pendingTransfer":null,"tags":[],"defaultInstanceType":"mem2_hdd2_x2","archivalState":"live","archivalProgress":null,"totalSponsoredEgressBytes":0,"consumedSponsoredEgressBytes":0,"atSpendingLimit":false}'} headers: Connection: [keep-alive] Content-Length: ['664'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:38:32 GMT'] + Date: ['Wed, 14 Nov 2018 22:42:43 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593512879-380701] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235363326-761367] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -92,24 +92,24 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kKp00VpKVkxQk1b9XV8yv/newFolder + uri: https://api.dnanexus.com/project-FPfB9jj0YQ9qgzq03ZJpv0Xx/newFolder response: - body: {string: '{"id":"project-FP9kKp00VpKVkxQk1b9XV8yv"}'} + body: {string: '{"id":"project-FPfB9jj0YQ9qgzq03ZJpv0Xx"}'} headers: Connection: [keep-alive] Content-Length: ['41'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:38:33 GMT'] + Date: ['Wed, 14 Nov 2018 22:42:43 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593513030-490658] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235363435-322930] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"name": "file.txt", "folder": "/temp_folder", "project": "project-FP9kKp00VpKVkxQk1b9XV8yv", - "nonce": "b''12bd7be44f45de8112429465550496fe6e1d21eff149a069f6399b1edcc80cce''1540593513.099596"}' + body: '{"name": "file.txt", "folder": "/temp_folder", "project": "project-FPfB9jj0YQ9qgzq03ZJpv0Xx", + "nonce": "b''100632fa84cff4fbd1e9611c9fac7ddcaf3d7e0772b76b60778bee76c09b3b89''1542235363.498671"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -131,17 +131,17 @@ interactions: method: POST uri: https://api.dnanexus.com/file/new response: - body: {string: '{"id":"file-FP9kKp80VpKqq57K4PxxVB2Z"}'} + body: {string: '{"id":"file-FPfB9jj0YQ9X9yPf3YzJbGfB"}'} headers: Connection: [keep-alive] Content-Length: ['38'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:38:33 GMT'] + Date: ['Wed, 14 Nov 2018 22:42:43 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593513143-159518] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235363545-899081] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -165,19 +165,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kKp00VpKVkxQk1b9XV8yv/describe + uri: https://api.dnanexus.com/project-FPfB9jj0YQ9qgzq03ZJpv0Xx/describe response: - body: {string: '{"id":"project-FP9kKp00VpKVkxQk1b9XV8yv","fileUploadParameters":{"maximumPartSize":5368709120,"minimumPartSize":5242880,"maximumFileSize":5497558138880,"maximumNumParts":10000,"emptyLastPartAllowed":true}}'} + body: {string: '{"id":"project-FPfB9jj0YQ9qgzq03ZJpv0Xx","fileUploadParameters":{"maximumPartSize":5368709120,"minimumPartSize":5242880,"maximumFileSize":5497558138880,"maximumNumParts":10000,"emptyLastPartAllowed":true}}'} headers: Connection: [keep-alive] Content-Length: ['205'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:38:33 GMT'] + Date: ['Wed, 14 Nov 2018 22:42:43 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593513308-438473] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235363665-685985] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -201,19 +201,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kKp80VpKqq57K4PxxVB2Z/upload + uri: https://api.dnanexus.com/file-FPfB9jj0YQ9X9yPf3YzJbGfB/upload response: - body: {string: '{"url":"https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/52fd/file/open/file-FP9kKp80VpKqq57K4PxxVB2Z/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181026%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181026T223833Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=a7244bd2c461b613b7f1aac66dbc51da953dc7a487b78698ce5c2dcb8de84bc7","headers":{"host":"dnanexus-platform-upload-prod.s3.amazonaws.com","content-type":"binary/octet-stream","x-amz-server-side-encryption":"AES256","content-md5":"c9//V/4k6Ae9T7G8TgfNcw==","content-length":"5"},"expires":1540593633458}'} + body: {string: '{"url":"https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/7228/file/open/file-FPfB9jj0YQ9X9yPf3YzJbGfB/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181114%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181114T224243Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=4c10c6a3783044154cc00f0b10e0dacb2ec47c1d3251de839815f7562e367459","headers":{"host":"dnanexus-platform-upload-prod.s3.amazonaws.com","content-type":"binary/octet-stream","x-amz-server-side-encryption":"AES256","content-md5":"c9//V/4k6Ae9T7G8TgfNcw==","content-length":"5"},"expires":1542235483779}'} headers: Connection: [keep-alive] Content-Length: ['692'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:38:33 GMT'] + Date: ['Wed, 14 Nov 2018 22:42:43 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593513440-132318] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235363764-643973] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -241,21 +241,21 @@ interactions: : - !!binary | QUVTMjU2 method: PUT - uri: https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/52fd/file/open/file-FP9kKp80VpKqq57K4PxxVB2Z/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181026%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181026T223833Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=a7244bd2c461b613b7f1aac66dbc51da953dc7a487b78698ce5c2dcb8de84bc7 + uri: https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/7228/file/open/file-FPfB9jj0YQ9X9yPf3YzJbGfB/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181114%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181114T224243Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=4c10c6a3783044154cc00f0b10e0dacb2ec47c1d3251de839815f7562e367459 response: body: {string: ''} headers: Content-Length: ['0'] - Date: ['Fri, 26 Oct 2018 22:38:34 GMT'] + Date: ['Wed, 14 Nov 2018 22:42:45 GMT'] ETag: ['"73dfff57fe24e807bd4fb1bc4e07cd73"'] Server: [AmazonS3] - x-amz-expiration: ['expiry-date="Sat, 17 Nov 2018 00:00:00 GMT", rule-id="3weekpurge"'] - x-amz-id-2: [Cf+8IUW7Ialwb0kJSSffN/Oc2w1kGM655kIS0CJaRC8khvtX6QvUc6sSK3P6vfcA3ZtEKuxseYc=] - x-amz-request-id: [BFF70CB675942CB0] + x-amz-expiration: ['expiry-date="Thu, 06 Dec 2018 00:00:00 GMT", rule-id="3weekpurge"'] + x-amz-id-2: [jM0sMEoXfCNJzJ9YkWGJkl2S1m3JUVy+NL4kovlXqyUC3JOdsLtP+9rHNXvLTG2ikkFYANIEha4=] + x-amz-request-id: [4183942D0DDA5B1D] x-amz-server-side-encryption: [AES256] status: {code: 200, message: OK} - request: - body: '{"fields": {"state": true}, "project": "project-FP9kKp00VpKVkxQk1b9XV8yv"}' + body: '{"fields": {"state": true}, "project": "project-FPfB9jj0YQ9qgzq03ZJpv0Xx"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -275,19 +275,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kKp80VpKqq57K4PxxVB2Z/describe + uri: https://api.dnanexus.com/file-FPfB9jj0YQ9X9yPf3YzJbGfB/describe response: - body: {string: '{"id":"file-FP9kKp80VpKqq57K4PxxVB2Z","state":"open"}'} + body: {string: '{"id":"file-FPfB9jj0YQ9X9yPf3YzJbGfB","state":"open"}'} headers: Connection: [keep-alive] Content-Length: ['53'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:38:34 GMT'] + Date: ['Wed, 14 Nov 2018 22:42:44 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593514023-354983] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235364211-796472] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -311,23 +311,23 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kKp80VpKqq57K4PxxVB2Z/close + uri: https://api.dnanexus.com/file-FPfB9jj0YQ9X9yPf3YzJbGfB/close response: - body: {string: '{"id":"file-FP9kKp80VpKqq57K4PxxVB2Z"}'} + body: {string: '{"id":"file-FPfB9jj0YQ9X9yPf3YzJbGfB"}'} headers: Connection: [keep-alive] Content-Length: ['38'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:38:34 GMT'] + Date: ['Wed, 14 Nov 2018 22:42:44 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593514153-821973] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235364457-309117] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"name": "TestCopy.test_dx_to_dx_within_project_pass.ce283519", "level": + body: '{"name": "TestCopy.test_dx_to_dx_within_project_pass.e0097411", "level": "VIEW", "limit": 2}' headers: ? !!binary | @@ -350,22 +350,22 @@ interactions: method: POST uri: https://api.dnanexus.com/system/findProjects response: - body: {string: '{"results":[{"id":"project-FP9kKp00VpKVkxQk1b9XV8yv","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} + body: {string: '{"results":[{"id":"project-FPfB9jj0YQ9qgzq03ZJpv0Xx","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} headers: Connection: [keep-alive] Content-Length: ['147'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:38:34 GMT'] + Date: ['Wed, 14 Nov 2018 22:42:44 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593514300-994059] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235364627-533067] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: body: '{"objects": [{"name": "file.txt", "folder": "/temp_folder", "project": - "project-FP9kKp00VpKVkxQk1b9XV8yv", "batchsize": 2}]}' + "project-FPfB9jj0YQ9qgzq03ZJpv0Xx", "batchsize": 2}]}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -387,21 +387,21 @@ interactions: method: POST uri: https://api.dnanexus.com/system/resolveDataObjects response: - body: {string: '{"results":[[{"project":"project-FP9kKp00VpKVkxQk1b9XV8yv","id":"file-FP9kKp80VpKqq57K4PxxVB2Z"}]]}'} + body: {string: '{"results":[[{"project":"project-FPfB9jj0YQ9qgzq03ZJpv0Xx","id":"file-FPfB9jj0YQ9X9yPf3YzJbGfB"}]]}'} headers: Connection: [keep-alive] Content-Length: ['99'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:38:34 GMT'] + Date: ['Wed, 14 Nov 2018 22:42:44 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593514480-119749] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235364849-618118] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"project": "project-FP9kKp00VpKVkxQk1b9XV8yv"}' + body: '{"project": "project-FPfB9jj0YQ9qgzq03ZJpv0Xx"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -421,23 +421,23 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kKp80VpKqq57K4PxxVB2Z/describe + uri: https://api.dnanexus.com/file-FPfB9jj0YQ9X9yPf3YzJbGfB/describe response: - body: {string: '{"id":"file-FP9kKp80VpKqq57K4PxxVB2Z","project":"project-FP9kKp00VpKVkxQk1b9XV8yv","class":"file","sponsored":false,"name":"file.txt","types":[],"state":"closing","hidden":false,"links":[],"folder":"/temp_folder","tags":[],"created":1540593513000,"modified":1540593514173,"createdBy":{"user":"user-akumar_counsyl"},"media":"","archivalState":"live"}'} + body: {string: '{"id":"file-FPfB9jj0YQ9X9yPf3YzJbGfB","project":"project-FPfB9jj0YQ9qgzq03ZJpv0Xx","class":"file","sponsored":false,"name":"file.txt","types":[],"state":"closing","hidden":false,"links":[],"folder":"/temp_folder","tags":[],"created":1542235363000,"modified":1542235364469,"createdBy":{"user":"user-akumar_counsyl"},"media":"","archivalState":"live"}'} headers: Connection: [keep-alive] Content-Length: ['349'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:38:34 GMT'] + Date: ['Wed, 14 Nov 2018 22:42:44 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593514623-895422] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235364949-195054] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"name": "TestCopy.test_dx_to_dx_within_project_pass.ce283519", "level": + body: '{"name": "TestCopy.test_dx_to_dx_within_project_pass.e0097411", "level": "VIEW", "limit": 2}' headers: ? !!binary | @@ -460,17 +460,17 @@ interactions: method: POST uri: https://api.dnanexus.com/system/findProjects response: - body: {string: '{"results":[{"id":"project-FP9kKp00VpKVkxQk1b9XV8yv","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} + body: {string: '{"results":[{"id":"project-FPfB9jj0YQ9qgzq03ZJpv0Xx","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} headers: Connection: [keep-alive] Content-Length: ['147'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:38:34 GMT'] + Date: ['Wed, 14 Nov 2018 22:42:45 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593514749-583289] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235365050-863073] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -495,25 +495,25 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kKp00VpKVkxQk1b9XV8yv/listFolder + uri: https://api.dnanexus.com/project-FPfB9jj0YQ9qgzq03ZJpv0Xx/listFolder response: body: {string: '{"error":{"type":"ResourceNotFound","message":"The specified folder - could not be found in project-FP9kKp00VpKVkxQk1b9XV8yv"}}'} + could not be found in project-FPfB9jj0YQ9qgzq03ZJpv0Xx"}}'} headers: Connection: [keep-alive] Content-Type: [application/json] - Date: ['Fri, 26 Oct 2018 22:38:34 GMT'] + Date: ['Wed, 14 Nov 2018 22:42:45 GMT'] Server: [nginx] Transfer-Encoding: [chunked] Vary: [Accept-Encoding] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593514881-921631] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235365171-43688] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 404, message: Not Found} - request: - body: '{"name": "TestCopy.test_dx_to_dx_within_project_pass.ce283519", "level": + body: '{"name": "TestCopy.test_dx_to_dx_within_project_pass.e0097411", "level": "VIEW", "limit": 2}' headers: ? !!binary | @@ -536,17 +536,17 @@ interactions: method: POST uri: https://api.dnanexus.com/system/findProjects response: - body: {string: '{"results":[{"id":"project-FP9kKp00VpKVkxQk1b9XV8yv","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} + body: {string: '{"results":[{"id":"project-FPfB9jj0YQ9qgzq03ZJpv0Xx","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} headers: Connection: [keep-alive] Content-Length: ['147'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:38:35 GMT'] + Date: ['Wed, 14 Nov 2018 22:42:45 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593515303-577375] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235365550-620080] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -570,24 +570,24 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kKp00VpKVkxQk1b9XV8yv/newFolder + uri: https://api.dnanexus.com/project-FPfB9jj0YQ9qgzq03ZJpv0Xx/newFolder response: - body: {string: '{"id":"project-FP9kKp00VpKVkxQk1b9XV8yv"}'} + body: {string: '{"id":"project-FPfB9jj0YQ9qgzq03ZJpv0Xx"}'} headers: Connection: [keep-alive] Content-Length: ['41'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:38:35 GMT'] + Date: ['Wed, 14 Nov 2018 22:42:45 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593515468-809944] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235365669-864619] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: body: '{"objects": [{"name": "fold_file.txt", "folder": "/another_folder", "project": - "project-FP9kKp00VpKVkxQk1b9XV8yv", "batchsize": 2}]}' + "project-FPfB9jj0YQ9qgzq03ZJpv0Xx", "batchsize": 2}]}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -614,16 +614,16 @@ interactions: Connection: [keep-alive] Content-Length: ['16'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:38:35 GMT'] + Date: ['Wed, 14 Nov 2018 22:42:45 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593515584-798278] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235365778-560487] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"objects": ["file-FP9kKp80VpKqq57K4PxxVB2Z"], "destination": "/another_folder"}' + body: '{"objects": ["file-FPfB9jj0YQ9X9yPf3YzJbGfB"], "destination": "/another_folder"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -643,23 +643,23 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kKp00VpKVkxQk1b9XV8yv/move + uri: https://api.dnanexus.com/project-FPfB9jj0YQ9qgzq03ZJpv0Xx/move response: - body: {string: '{"id":"project-FP9kKp00VpKVkxQk1b9XV8yv"}'} + body: {string: '{"id":"project-FPfB9jj0YQ9qgzq03ZJpv0Xx"}'} headers: Connection: [keep-alive] Content-Length: ['41'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:38:35 GMT'] + Date: ['Wed, 14 Nov 2018 22:42:45 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593515721-380141] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235365890-923452] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"project": "project-FP9kKp00VpKVkxQk1b9XV8yv", "name": "fold_file.txt"}' + body: '{"project": "project-FPfB9jj0YQ9qgzq03ZJpv0Xx", "name": "fold_file.txt"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -679,23 +679,23 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kKp80VpKqq57K4PxxVB2Z/rename + uri: https://api.dnanexus.com/file-FPfB9jj0YQ9X9yPf3YzJbGfB/rename response: - body: {string: '{"id":"file-FP9kKp80VpKqq57K4PxxVB2Z"}'} + body: {string: '{"id":"file-FPfB9jj0YQ9X9yPf3YzJbGfB"}'} headers: Connection: [keep-alive] Content-Length: ['38'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:38:35 GMT'] + Date: ['Wed, 14 Nov 2018 22:42:46 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593515914-676246] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235366051-504429] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"name": "TestCopy.test_dx_to_dx_within_project_pass.ce283519", "level": + body: '{"name": "TestCopy.test_dx_to_dx_within_project_pass.e0097411", "level": "VIEW", "limit": 2}' headers: ? !!binary | @@ -718,22 +718,22 @@ interactions: method: POST uri: https://api.dnanexus.com/system/findProjects response: - body: {string: '{"results":[{"id":"project-FP9kKp00VpKVkxQk1b9XV8yv","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} + body: {string: '{"results":[{"id":"project-FPfB9jj0YQ9qgzq03ZJpv0Xx","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} headers: Connection: [keep-alive] Content-Length: ['147'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:38:36 GMT'] + Date: ['Wed, 14 Nov 2018 22:42:46 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593516049-181571] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235366146-647491] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: body: '{"objects": [{"name": "fold_file.txt", "folder": "/another_folder", "project": - "project-FP9kKp00VpKVkxQk1b9XV8yv", "batchsize": 2}]}' + "project-FPfB9jj0YQ9qgzq03ZJpv0Xx", "batchsize": 2}]}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -755,21 +755,21 @@ interactions: method: POST uri: https://api.dnanexus.com/system/resolveDataObjects response: - body: {string: '{"results":[[{"project":"project-FP9kKp00VpKVkxQk1b9XV8yv","id":"file-FP9kKp80VpKqq57K4PxxVB2Z"}]]}'} + body: {string: '{"results":[[{"project":"project-FPfB9jj0YQ9qgzq03ZJpv0Xx","id":"file-FPfB9jj0YQ9X9yPf3YzJbGfB"}]]}'} headers: Connection: [keep-alive] Content-Length: ['99'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:38:36 GMT'] + Date: ['Wed, 14 Nov 2018 22:42:46 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593516227-221154] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235366258-998995] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"project": "project-FP9kKp00VpKVkxQk1b9XV8yv"}' + body: '{"project": "project-FPfB9jj0YQ9qgzq03ZJpv0Xx"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -789,23 +789,23 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kKp80VpKqq57K4PxxVB2Z/describe + uri: https://api.dnanexus.com/file-FPfB9jj0YQ9X9yPf3YzJbGfB/describe response: - body: {string: '{"id":"file-FP9kKp80VpKqq57K4PxxVB2Z","project":"project-FP9kKp00VpKVkxQk1b9XV8yv","class":"file","sponsored":false,"name":"fold_file.txt","types":[],"state":"closed","hidden":false,"links":[],"folder":"/another_folder","tags":[],"created":1540593513000,"modified":1540593515950,"createdBy":{"user":"user-akumar_counsyl"},"media":"text/plain","archivalState":"live","size":5}'} + body: {string: '{"id":"file-FPfB9jj0YQ9X9yPf3YzJbGfB","project":"project-FPfB9jj0YQ9qgzq03ZJpv0Xx","class":"file","sponsored":false,"name":"fold_file.txt","types":[],"state":"closed","hidden":false,"links":[],"folder":"/another_folder","tags":[],"created":1542235363000,"modified":1542235366062,"createdBy":{"user":"user-akumar_counsyl"},"media":"text/plain","archivalState":"live","size":5}'} headers: Connection: [keep-alive] Content-Length: ['375'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:38:36 GMT'] + Date: ['Wed, 14 Nov 2018 22:42:46 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593516342-557966] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235366348-546254] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"name": "TestCopy.test_dx_to_dx_within_project_pass.ce283519", "level": + body: '{"name": "TestCopy.test_dx_to_dx_within_project_pass.e0097411", "level": "VIEW", "limit": 2}' headers: ? !!binary | @@ -828,22 +828,22 @@ interactions: method: POST uri: https://api.dnanexus.com/system/findProjects response: - body: {string: '{"results":[{"id":"project-FP9kKp00VpKVkxQk1b9XV8yv","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} + body: {string: '{"results":[{"id":"project-FPfB9jj0YQ9qgzq03ZJpv0Xx","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} headers: Connection: [keep-alive] Content-Length: ['147'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:38:36 GMT'] + Date: ['Wed, 14 Nov 2018 22:42:46 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593516460-625920] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235366446-885058] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: body: '{"objects": [{"name": "file.txt", "folder": "/temp_folder", "project": - "project-FP9kKp00VpKVkxQk1b9XV8yv", "batchsize": 2}]}' + "project-FPfB9jj0YQ9qgzq03ZJpv0Xx", "batchsize": 2}]}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -870,12 +870,12 @@ interactions: Connection: [keep-alive] Content-Length: ['16'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:38:36 GMT'] + Date: ['Wed, 14 Nov 2018 22:42:46 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593516964-75526] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235366626-97167] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -900,26 +900,26 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kKp00VpKVkxQk1b9XV8yv/listFolder + uri: https://api.dnanexus.com/project-FPfB9jj0YQ9qgzq03ZJpv0Xx/listFolder response: body: {string: '{"error":{"type":"ResourceNotFound","message":"The specified folder - could not be found in project-FP9kKp00VpKVkxQk1b9XV8yv"}}'} + could not be found in project-FPfB9jj0YQ9qgzq03ZJpv0Xx"}}'} headers: Connection: [keep-alive] Content-Type: [application/json] - Date: ['Fri, 26 Oct 2018 22:38:37 GMT'] + Date: ['Wed, 14 Nov 2018 22:42:46 GMT'] Server: [nginx] Transfer-Encoding: [chunked] Vary: [Accept-Encoding] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593517105-30396] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235366738-59435] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 404, message: Not Found} - request: body: '{"objects": [{"name": "file.txt", "folder": "/temp_folder", "project": - "project-FP9kKp00VpKVkxQk1b9XV8yv", "batchsize": 2}]}' + "project-FPfB9jj0YQ9qgzq03ZJpv0Xx", "batchsize": 2}]}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -946,16 +946,16 @@ interactions: Connection: [keep-alive] Content-Length: ['16'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:38:37 GMT'] + Date: ['Wed, 14 Nov 2018 22:42:47 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593517529-992752] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235367089-397388] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"project": "project-FP9kKp00VpKVkxQk1b9XV8yv"}' + body: '{"project": "project-FPfB9jj0YQ9qgzq03ZJpv0Xx"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -975,23 +975,23 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kKp80VpKqq57K4PxxVB2Z/describe + uri: https://api.dnanexus.com/file-FPfB9jj0YQ9X9yPf3YzJbGfB/describe response: - body: {string: '{"id":"file-FP9kKp80VpKqq57K4PxxVB2Z","project":"project-FP9kKp00VpKVkxQk1b9XV8yv","class":"file","sponsored":false,"name":"fold_file.txt","types":[],"state":"closed","hidden":false,"links":[],"folder":"/another_folder","tags":[],"created":1540593513000,"modified":1540593515950,"createdBy":{"user":"user-akumar_counsyl"},"media":"text/plain","archivalState":"live","size":5}'} + body: {string: '{"id":"file-FPfB9jj0YQ9X9yPf3YzJbGfB","project":"project-FPfB9jj0YQ9qgzq03ZJpv0Xx","class":"file","sponsored":false,"name":"fold_file.txt","types":[],"state":"closed","hidden":false,"links":[],"folder":"/another_folder","tags":[],"created":1542235363000,"modified":1542235366062,"createdBy":{"user":"user-akumar_counsyl"},"media":"text/plain","archivalState":"live","size":5}'} headers: Connection: [keep-alive] Content-Length: ['375'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:38:37 GMT'] + Date: ['Wed, 14 Nov 2018 22:42:47 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593517671-912008] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235367197-660720] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"name": "TestCopy.test_dx_to_dx_within_project_pass.ce283519", "level": + body: '{"name": "TestCopy.test_dx_to_dx_within_project_pass.e0097411", "level": "VIEW", "limit": 2}' headers: ? !!binary | @@ -1014,17 +1014,17 @@ interactions: method: POST uri: https://api.dnanexus.com/system/findProjects response: - body: {string: '{"results":[{"id":"project-FP9kKp00VpKVkxQk1b9XV8yv","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} + body: {string: '{"results":[{"id":"project-FPfB9jj0YQ9qgzq03ZJpv0Xx","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} headers: Connection: [keep-alive] Content-Length: ['147'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:38:37 GMT'] + Date: ['Wed, 14 Nov 2018 22:42:47 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593517809-881919] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235367308-284656] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -1049,25 +1049,25 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kKp00VpKVkxQk1b9XV8yv/listFolder + uri: https://api.dnanexus.com/project-FPfB9jj0YQ9qgzq03ZJpv0Xx/listFolder response: body: {string: '{"error":{"type":"ResourceNotFound","message":"The specified folder - could not be found in project-FP9kKp00VpKVkxQk1b9XV8yv"}}'} + could not be found in project-FPfB9jj0YQ9qgzq03ZJpv0Xx"}}'} headers: Connection: [keep-alive] Content-Type: [application/json] - Date: ['Fri, 26 Oct 2018 22:38:37 GMT'] + Date: ['Wed, 14 Nov 2018 22:42:47 GMT'] Server: [nginx] Transfer-Encoding: [chunked] Vary: [Accept-Encoding] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593517958-39124] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235367447-103237] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 404, message: Not Found} - request: - body: '{"name": "TestCopy.test_dx_to_dx_within_project_pass.ce283519", "level": + body: '{"name": "TestCopy.test_dx_to_dx_within_project_pass.e0097411", "level": "VIEW", "limit": 2}' headers: ? !!binary | @@ -1090,17 +1090,17 @@ interactions: method: POST uri: https://api.dnanexus.com/system/findProjects response: - body: {string: '{"results":[{"id":"project-FP9kKp00VpKVkxQk1b9XV8yv","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} + body: {string: '{"results":[{"id":"project-FPfB9jj0YQ9qgzq03ZJpv0Xx","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} headers: Connection: [keep-alive] Content-Length: ['147'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:38:38 GMT'] + Date: ['Wed, 14 Nov 2018 22:42:48 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593518361-851868] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235368065-998359] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -1124,24 +1124,24 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kKp00VpKVkxQk1b9XV8yv/newFolder + uri: https://api.dnanexus.com/project-FPfB9jj0YQ9qgzq03ZJpv0Xx/newFolder response: - body: {string: '{"id":"project-FP9kKp00VpKVkxQk1b9XV8yv"}'} + body: {string: '{"id":"project-FPfB9jj0YQ9qgzq03ZJpv0Xx"}'} headers: Connection: [keep-alive] Content-Length: ['41'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:38:38 GMT'] + Date: ['Wed, 14 Nov 2018 22:42:48 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593518554-50568] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235368309-884692] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: body: '{"objects": [{"name": "file.txt", "folder": "/temp_folder", "project": - "project-FP9kKp00VpKVkxQk1b9XV8yv", "batchsize": 2}]}' + "project-FPfB9jj0YQ9qgzq03ZJpv0Xx", "batchsize": 2}]}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -1168,16 +1168,16 @@ interactions: Connection: [keep-alive] Content-Length: ['16'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:38:38 GMT'] + Date: ['Wed, 14 Nov 2018 22:42:48 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593518682-17084] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235368407-882346] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"objects": ["file-FP9kKp80VpKqq57K4PxxVB2Z"], "destination": "/temp_folder"}' + body: '{"objects": ["file-FPfB9jj0YQ9X9yPf3YzJbGfB"], "destination": "/temp_folder"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -1197,23 +1197,23 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kKp00VpKVkxQk1b9XV8yv/move + uri: https://api.dnanexus.com/project-FPfB9jj0YQ9qgzq03ZJpv0Xx/move response: - body: {string: '{"id":"project-FP9kKp00VpKVkxQk1b9XV8yv"}'} + body: {string: '{"id":"project-FPfB9jj0YQ9qgzq03ZJpv0Xx"}'} headers: Connection: [keep-alive] Content-Length: ['41'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:38:38 GMT'] + Date: ['Wed, 14 Nov 2018 22:42:48 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593518831-86317] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235368534-112538] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"project": "project-FP9kKp00VpKVkxQk1b9XV8yv", "name": "file.txt"}' + body: '{"project": "project-FPfB9jj0YQ9qgzq03ZJpv0Xx", "name": "file.txt"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -1233,24 +1233,24 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kKp80VpKqq57K4PxxVB2Z/rename + uri: https://api.dnanexus.com/file-FPfB9jj0YQ9X9yPf3YzJbGfB/rename response: - body: {string: '{"id":"file-FP9kKp80VpKqq57K4PxxVB2Z"}'} + body: {string: '{"id":"file-FPfB9jj0YQ9X9yPf3YzJbGfB"}'} headers: Connection: [keep-alive] Content-Length: ['38'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:38:39 GMT'] + Date: ['Wed, 14 Nov 2018 22:42:48 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593519036-771719] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235368681-653238] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: body: '{"objects": [{"name": "file.txt", "folder": "/temp_folder", "project": - "project-FP9kKp00VpKVkxQk1b9XV8yv", "batchsize": 2}]}' + "project-FPfB9jj0YQ9qgzq03ZJpv0Xx", "batchsize": 2}]}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -1272,21 +1272,21 @@ interactions: method: POST uri: https://api.dnanexus.com/system/resolveDataObjects response: - body: {string: '{"results":[[{"project":"project-FP9kKp00VpKVkxQk1b9XV8yv","id":"file-FP9kKp80VpKqq57K4PxxVB2Z"}]]}'} + body: {string: '{"results":[[{"project":"project-FPfB9jj0YQ9qgzq03ZJpv0Xx","id":"file-FPfB9jj0YQ9X9yPf3YzJbGfB"}]]}'} headers: Connection: [keep-alive] Content-Length: ['99'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:38:39 GMT'] + Date: ['Wed, 14 Nov 2018 22:42:48 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593519152-664793] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235368787-128218] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"project": "project-FP9kKp00VpKVkxQk1b9XV8yv"}' + body: '{"project": "project-FPfB9jj0YQ9qgzq03ZJpv0Xx"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -1306,23 +1306,23 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kKp80VpKqq57K4PxxVB2Z/describe + uri: https://api.dnanexus.com/file-FPfB9jj0YQ9X9yPf3YzJbGfB/describe response: - body: {string: '{"id":"file-FP9kKp80VpKqq57K4PxxVB2Z","project":"project-FP9kKp00VpKVkxQk1b9XV8yv","class":"file","sponsored":false,"name":"file.txt","types":[],"state":"closed","hidden":false,"links":[],"folder":"/temp_folder","tags":[],"created":1540593513000,"modified":1540593519044,"createdBy":{"user":"user-akumar_counsyl"},"media":"text/plain","archivalState":"live","size":5}'} + body: {string: '{"id":"file-FPfB9jj0YQ9X9yPf3YzJbGfB","project":"project-FPfB9jj0YQ9qgzq03ZJpv0Xx","class":"file","sponsored":false,"name":"file.txt","types":[],"state":"closed","hidden":false,"links":[],"folder":"/temp_folder","tags":[],"created":1542235363000,"modified":1542235368691,"createdBy":{"user":"user-akumar_counsyl"},"media":"text/plain","archivalState":"live","size":5}'} headers: Connection: [keep-alive] Content-Length: ['367'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:38:39 GMT'] + Date: ['Wed, 14 Nov 2018 22:42:48 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593519264-246512] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235368886-437326] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"name": "TestCopy.test_dx_to_dx_within_project_pass.ce283519", "level": + body: '{"name": "TestCopy.test_dx_to_dx_within_project_pass.e0097411", "level": "VIEW", "limit": 2}' headers: ? !!binary | @@ -1345,17 +1345,17 @@ interactions: method: POST uri: https://api.dnanexus.com/system/findProjects response: - body: {string: '{"results":[{"id":"project-FP9kKp00VpKVkxQk1b9XV8yv","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} + body: {string: '{"results":[{"id":"project-FPfB9jj0YQ9qgzq03ZJpv0Xx","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} headers: Connection: [keep-alive] Content-Length: ['147'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:38:39 GMT'] + Date: ['Wed, 14 Nov 2018 22:42:49 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593519494-868391] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235368979-264883] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -1380,23 +1380,23 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kKp00VpKVkxQk1b9XV8yv/listFolder + uri: https://api.dnanexus.com/project-FPfB9jj0YQ9qgzq03ZJpv0Xx/listFolder response: body: {string: '{"folders":[]}'} headers: Connection: [keep-alive] Content-Length: ['14'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:38:39 GMT'] + Date: ['Wed, 14 Nov 2018 22:42:49 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593519661-28229] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235369099-745558] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"name": "TestCopy.test_dx_to_dx_within_project_pass.ce283519", "level": + body: '{"name": "TestCopy.test_dx_to_dx_within_project_pass.e0097411", "level": "VIEW", "limit": 2}' headers: ? !!binary | @@ -1419,22 +1419,22 @@ interactions: method: POST uri: https://api.dnanexus.com/system/findProjects response: - body: {string: '{"results":[{"id":"project-FP9kKp00VpKVkxQk1b9XV8yv","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} + body: {string: '{"results":[{"id":"project-FPfB9jj0YQ9qgzq03ZJpv0Xx","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} headers: Connection: [keep-alive] Content-Length: ['147'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:38:39 GMT'] + Date: ['Wed, 14 Nov 2018 22:42:49 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593519804-327329] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235369304-320554] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: body: '{"objects": [{"name": "file.txt", "folder": "/another_folder", "project": - "project-FP9kKp00VpKVkxQk1b9XV8yv", "batchsize": 2}]}' + "project-FPfB9jj0YQ9qgzq03ZJpv0Xx", "batchsize": 2}]}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -1461,16 +1461,16 @@ interactions: Connection: [keep-alive] Content-Length: ['16'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:38:39 GMT'] + Date: ['Wed, 14 Nov 2018 22:42:49 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593519939-89304] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235369451-591267] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"objects": ["file-FP9kKp80VpKqq57K4PxxVB2Z"], "destination": "/another_folder"}' + body: '{"objects": ["file-FPfB9jj0YQ9X9yPf3YzJbGfB"], "destination": "/another_folder"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -1490,23 +1490,23 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kKp00VpKVkxQk1b9XV8yv/move + uri: https://api.dnanexus.com/project-FPfB9jj0YQ9qgzq03ZJpv0Xx/move response: - body: {string: '{"id":"project-FP9kKp00VpKVkxQk1b9XV8yv"}'} + body: {string: '{"id":"project-FPfB9jj0YQ9qgzq03ZJpv0Xx"}'} headers: Connection: [keep-alive] Content-Length: ['41'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:38:40 GMT'] + Date: ['Wed, 14 Nov 2018 22:42:49 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593520059-642804] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235369577-661420] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"name": "TestCopy.test_dx_to_dx_within_project_pass.ce283519", "level": + body: '{"name": "TestCopy.test_dx_to_dx_within_project_pass.e0097411", "level": "VIEW", "limit": 2}' headers: ? !!binary | @@ -1529,22 +1529,22 @@ interactions: method: POST uri: https://api.dnanexus.com/system/findProjects response: - body: {string: '{"results":[{"id":"project-FP9kKp00VpKVkxQk1b9XV8yv","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} + body: {string: '{"results":[{"id":"project-FPfB9jj0YQ9qgzq03ZJpv0Xx","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} headers: Connection: [keep-alive] Content-Length: ['147'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:38:40 GMT'] + Date: ['Wed, 14 Nov 2018 22:42:49 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593520352-862180] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235369718-695985] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: body: '{"objects": [{"name": "file.txt", "folder": "/temp_folder", "project": - "project-FP9kKp00VpKVkxQk1b9XV8yv", "batchsize": 2}]}' + "project-FPfB9jj0YQ9qgzq03ZJpv0Xx", "batchsize": 2}]}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -1571,12 +1571,12 @@ interactions: Connection: [keep-alive] Content-Length: ['16'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:38:40 GMT'] + Date: ['Wed, 14 Nov 2018 22:42:49 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593520505-839671] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235369877-553938] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -1601,25 +1601,25 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kKp00VpKVkxQk1b9XV8yv/listFolder + uri: https://api.dnanexus.com/project-FPfB9jj0YQ9qgzq03ZJpv0Xx/listFolder response: body: {string: '{"error":{"type":"ResourceNotFound","message":"The specified folder - could not be found in project-FP9kKp00VpKVkxQk1b9XV8yv"}}'} + could not be found in project-FPfB9jj0YQ9qgzq03ZJpv0Xx"}}'} headers: Connection: [keep-alive] Content-Type: [application/json] - Date: ['Fri, 26 Oct 2018 22:38:40 GMT'] + Date: ['Wed, 14 Nov 2018 22:42:50 GMT'] Server: [nginx] Transfer-Encoding: [chunked] Vary: [Accept-Encoding] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593520649-578684] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235369991-5211] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 404, message: Not Found} - request: - body: '{"name": "TestCopy.test_dx_to_dx_within_project_pass.ce283519", "level": + body: '{"name": "TestCopy.test_dx_to_dx_within_project_pass.e0097411", "level": "VIEW", "limit": 2}' headers: ? !!binary | @@ -1642,22 +1642,22 @@ interactions: method: POST uri: https://api.dnanexus.com/system/findProjects response: - body: {string: '{"results":[{"id":"project-FP9kKp00VpKVkxQk1b9XV8yv","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} + body: {string: '{"results":[{"id":"project-FPfB9jj0YQ9qgzq03ZJpv0Xx","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} headers: Connection: [keep-alive] Content-Length: ['147'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:38:41 GMT'] + Date: ['Wed, 14 Nov 2018 22:42:50 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593521055-49756] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235370357-378927] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: body: '{"objects": [{"name": "file.txt", "folder": "/another_folder", "project": - "project-FP9kKp00VpKVkxQk1b9XV8yv", "batchsize": 2}]}' + "project-FPfB9jj0YQ9qgzq03ZJpv0Xx", "batchsize": 2}]}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -1679,21 +1679,21 @@ interactions: method: POST uri: https://api.dnanexus.com/system/resolveDataObjects response: - body: {string: '{"results":[[{"project":"project-FP9kKp00VpKVkxQk1b9XV8yv","id":"file-FP9kKp80VpKqq57K4PxxVB2Z"}]]}'} + body: {string: '{"results":[[{"project":"project-FPfB9jj0YQ9qgzq03ZJpv0Xx","id":"file-FPfB9jj0YQ9X9yPf3YzJbGfB"}]]}'} headers: Connection: [keep-alive] Content-Length: ['99'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:38:41 GMT'] + Date: ['Wed, 14 Nov 2018 22:42:50 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593521218-272061] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235370500-851272] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"project": "project-FP9kKp00VpKVkxQk1b9XV8yv"}' + body: '{"project": "project-FPfB9jj0YQ9qgzq03ZJpv0Xx"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -1713,19 +1713,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kKp80VpKqq57K4PxxVB2Z/describe + uri: https://api.dnanexus.com/file-FPfB9jj0YQ9X9yPf3YzJbGfB/describe response: - body: {string: '{"id":"file-FP9kKp80VpKqq57K4PxxVB2Z","project":"project-FP9kKp00VpKVkxQk1b9XV8yv","class":"file","sponsored":false,"name":"file.txt","types":[],"state":"closed","hidden":false,"links":[],"folder":"/another_folder","tags":[],"created":1540593513000,"modified":1540593519044,"createdBy":{"user":"user-akumar_counsyl"},"media":"text/plain","archivalState":"live","size":5}'} + body: {string: '{"id":"file-FPfB9jj0YQ9X9yPf3YzJbGfB","project":"project-FPfB9jj0YQ9qgzq03ZJpv0Xx","class":"file","sponsored":false,"name":"file.txt","types":[],"state":"closed","hidden":false,"links":[],"folder":"/another_folder","tags":[],"created":1542235363000,"modified":1542235368691,"createdBy":{"user":"user-akumar_counsyl"},"media":"text/plain","archivalState":"live","size":5}'} headers: Connection: [keep-alive] Content-Length: ['370'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:38:41 GMT'] + Date: ['Wed, 14 Nov 2018 22:42:50 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593521350-520330] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235370600-889946] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -1749,19 +1749,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kKp00VpKVkxQk1b9XV8yv/destroy + uri: https://api.dnanexus.com/project-FPfB9jj0YQ9qgzq03ZJpv0Xx/destroy response: - body: {string: '{"id":"project-FP9kKp00VpKVkxQk1b9XV8yv"}'} + body: {string: '{"id":"project-FPfB9jj0YQ9qgzq03ZJpv0Xx"}'} headers: Connection: [keep-alive] Content-Length: ['41'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:38:44 GMT'] + Date: ['Wed, 14 Nov 2018 22:42:53 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593521488-71541] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235370710-255439] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} version: 1 diff --git a/stor/tests/cassettes_py3/TestCopy/test_dx_to_other_obs.yaml b/stor_dx/stor_dx/tests/cassettes_py3/TestCopy/test_dx_to_other_obs.yaml similarity index 68% rename from stor/tests/cassettes_py3/TestCopy/test_dx_to_other_obs.yaml rename to stor_dx/stor_dx/tests/cassettes_py3/TestCopy/test_dx_to_other_obs.yaml index 45bb6cbd..0be83784 100644 --- a/stor/tests/cassettes_py3/TestCopy/test_dx_to_other_obs.yaml +++ b/stor_dx/stor_dx/tests/cassettes_py3/TestCopy/test_dx_to_other_obs.yaml @@ -1,6 +1,6 @@ interactions: - request: - body: '{"name": "TestCopy.test_dx_to_other_obs.dac213cc"}' + body: '{"name": "TestCopy.test_dx_to_other_obs.10bc37a9"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -22,17 +22,17 @@ interactions: method: POST uri: https://api.dnanexus.com/project/new response: - body: {string: '{"id":"project-FP9kKx00Qz561pZK0z8G44YY"}'} + body: {string: '{"id":"project-FPfB9q80gvKqgzq03ZJpv0Y0"}'} headers: Connection: [keep-alive] Content-Length: ['41'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:38:44 GMT'] + Date: ['Wed, 14 Nov 2018 22:42:53 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593524569-160811] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235373788-423491] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -56,19 +56,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kKx00Qz561pZK0z8G44YY/describe + uri: https://api.dnanexus.com/project-FPfB9q80gvKqgzq03ZJpv0Y0/describe response: - body: {string: '{"id":"project-FP9kKx00Qz561pZK0z8G44YY","name":"TestCopy.test_dx_to_other_obs.dac213cc","class":"project","created":1540593524000,"modified":1540593524000,"billTo":"org-counsyl","level":"ADMINISTER","dataUsage":0,"sponsoredDataUsage":0,"region":"aws:us-east-1","summary":"","description":"","protected":false,"restricted":false,"downloadRestricted":false,"containsPHI":false,"createdBy":{"user":"user-akumar_counsyl"},"version":0,"storageCost":0,"pendingTransfer":null,"tags":[],"defaultInstanceType":"mem2_hdd2_x2","archivalState":"live","archivalProgress":null,"totalSponsoredEgressBytes":0,"consumedSponsoredEgressBytes":0,"atSpendingLimit":false}'} + body: {string: '{"id":"project-FPfB9q80gvKqgzq03ZJpv0Y0","name":"TestCopy.test_dx_to_other_obs.10bc37a9","class":"project","created":1542235373000,"modified":1542235373000,"billTo":"org-counsyl","level":"ADMINISTER","dataUsage":0,"sponsoredDataUsage":0,"region":"aws:us-east-1","summary":"","description":"","protected":false,"restricted":false,"downloadRestricted":false,"containsPHI":false,"createdBy":{"user":"user-akumar_counsyl"},"version":0,"storageCost":0,"pendingTransfer":null,"tags":[],"defaultInstanceType":"mem2_hdd2_x2","archivalState":"live","archivalProgress":null,"totalSponsoredEgressBytes":0,"consumedSponsoredEgressBytes":0,"atSpendingLimit":false}'} headers: Connection: [keep-alive] Content-Length: ['651'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:38:44 GMT'] + Date: ['Wed, 14 Nov 2018 22:42:54 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593524753-138291] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235373916-256345] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -92,24 +92,24 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kKx00Qz561pZK0z8G44YY/newFolder + uri: https://api.dnanexus.com/project-FPfB9q80gvKqgzq03ZJpv0Y0/newFolder response: - body: {string: '{"id":"project-FP9kKx00Qz561pZK0z8G44YY"}'} + body: {string: '{"id":"project-FPfB9q80gvKqgzq03ZJpv0Y0"}'} headers: Connection: [keep-alive] Content-Length: ['41'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:38:44 GMT'] + Date: ['Wed, 14 Nov 2018 22:42:54 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593524923-646733] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235374115-617957] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"name": "folder_file.txt", "folder": "/temp_folder", "project": "project-FP9kKx00Qz561pZK0z8G44YY", - "nonce": "b''c01c2fa191cc14e986cb44ab5ba1a60d460915bdcd3619ac603c5e6fd7a72b47''1540593524.989814"}' + body: '{"name": "folder_file.txt", "folder": "/temp_folder", "project": "project-FPfB9q80gvKqgzq03ZJpv0Y0", + "nonce": "b''f047c45fa048a19d0454761775de67cdc200b8b90076bd94b387c70e65aff551''1542235374.481764"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -131,17 +131,17 @@ interactions: method: POST uri: https://api.dnanexus.com/file/new response: - body: {string: '{"id":"file-FP9kKx80Qz59yPz44YqJxVbB"}'} + body: {string: '{"id":"file-FPfB9qQ0gvKzQZ9J3YpQkQ54"}'} headers: Connection: [keep-alive] Content-Length: ['38'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:38:45 GMT'] + Date: ['Wed, 14 Nov 2018 22:42:55 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593525045-453785] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235374527-580632] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -165,19 +165,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kKx00Qz561pZK0z8G44YY/describe + uri: https://api.dnanexus.com/project-FPfB9q80gvKqgzq03ZJpv0Y0/describe response: - body: {string: '{"id":"project-FP9kKx00Qz561pZK0z8G44YY","fileUploadParameters":{"maximumPartSize":5368709120,"minimumPartSize":5242880,"maximumFileSize":5497558138880,"maximumNumParts":10000,"emptyLastPartAllowed":true}}'} + body: {string: '{"id":"project-FPfB9q80gvKqgzq03ZJpv0Y0","fileUploadParameters":{"maximumPartSize":5368709120,"minimumPartSize":5242880,"maximumFileSize":5497558138880,"maximumNumParts":10000,"emptyLastPartAllowed":true}}'} headers: Connection: [keep-alive] Content-Length: ['205'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:38:45 GMT'] + Date: ['Wed, 14 Nov 2018 22:42:55 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593525259-974987] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235375246-679638] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -201,19 +201,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kKx80Qz59yPz44YqJxVbB/upload + uri: https://api.dnanexus.com/file-FPfB9qQ0gvKzQZ9J3YpQkQ54/upload response: - body: {string: '{"url":"https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/2cb3/file/open/file-FP9kKx80Qz59yPz44YqJxVbB/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181026%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181026T223845Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=fbe0fd5584224636ec76d6af17f3a1ebf66b3ddc0bd1564e0bb6b0b71c609182","headers":{"host":"dnanexus-platform-upload-prod.s3.amazonaws.com","content-type":"binary/octet-stream","x-amz-server-side-encryption":"AES256","content-md5":"jXd/OF09/siBXSD3SWAm3A==","content-length":"4"},"expires":1540593645484}'} + body: {string: '{"url":"https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/2d2f/file/open/file-FPfB9qQ0gvKzQZ9J3YpQkQ54/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181114%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181114T224255Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=1be417047b973cad9ef7ee6a93923a35a721efdd8af7ff5e172b0c92053bccb7","headers":{"host":"dnanexus-platform-upload-prod.s3.amazonaws.com","content-type":"binary/octet-stream","x-amz-server-side-encryption":"AES256","content-md5":"jXd/OF09/siBXSD3SWAm3A==","content-length":"4"},"expires":1542235495374}'} headers: Connection: [keep-alive] Content-Length: ['692'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:38:45 GMT'] + Date: ['Wed, 14 Nov 2018 22:42:55 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593525411-44870] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235375364-28594] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -241,21 +241,21 @@ interactions: : - !!binary | QUVTMjU2 method: PUT - uri: https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/2cb3/file/open/file-FP9kKx80Qz59yPz44YqJxVbB/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181026%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181026T223845Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=fbe0fd5584224636ec76d6af17f3a1ebf66b3ddc0bd1564e0bb6b0b71c609182 + uri: https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/2d2f/file/open/file-FPfB9qQ0gvKzQZ9J3YpQkQ54/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181114%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181114T224255Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=1be417047b973cad9ef7ee6a93923a35a721efdd8af7ff5e172b0c92053bccb7 response: body: {string: ''} headers: Content-Length: ['0'] - Date: ['Fri, 26 Oct 2018 22:38:46 GMT'] + Date: ['Wed, 14 Nov 2018 22:42:56 GMT'] ETag: ['"8d777f385d3dfec8815d20f7496026dc"'] Server: [AmazonS3] - x-amz-expiration: ['expiry-date="Sat, 17 Nov 2018 00:00:00 GMT", rule-id="3weekpurge"'] - x-amz-id-2: [ZO/8E9YikqNIXrDUl7y3zkvbefR6xRk4C4DgueJ2/ok5ePKG9jlHhyU6AjJXu2XjaMp++DnecUw=] - x-amz-request-id: [EC381F35558DA37E] + x-amz-expiration: ['expiry-date="Thu, 06 Dec 2018 00:00:00 GMT", rule-id="3weekpurge"'] + x-amz-id-2: [A5WYs7pPbJJm+GvO6ed8uKSb08PngNOm3e8C6yljHMTnGTAyCm0oCbrK+sX/BV8VTQlZh795LVk=] + x-amz-request-id: [0C09306021D60589] x-amz-server-side-encryption: [AES256] status: {code: 200, message: OK} - request: - body: '{"fields": {"state": true}, "project": "project-FP9kKx00Qz561pZK0z8G44YY"}' + body: '{"fields": {"state": true}, "project": "project-FPfB9q80gvKqgzq03ZJpv0Y0"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -275,19 +275,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kKx80Qz59yPz44YqJxVbB/describe + uri: https://api.dnanexus.com/file-FPfB9qQ0gvKzQZ9J3YpQkQ54/describe response: - body: {string: '{"id":"file-FP9kKx80Qz59yPz44YqJxVbB","state":"open"}'} + body: {string: '{"id":"file-FPfB9qQ0gvKzQZ9J3YpQkQ54","state":"open"}'} headers: Connection: [keep-alive] Content-Length: ['53'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:38:46 GMT'] + Date: ['Wed, 14 Nov 2018 22:42:55 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593526055-610376] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235375857-957485] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -311,23 +311,23 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kKx80Qz59yPz44YqJxVbB/close + uri: https://api.dnanexus.com/file-FPfB9qQ0gvKzQZ9J3YpQkQ54/close response: - body: {string: '{"id":"file-FP9kKx80Qz59yPz44YqJxVbB"}'} + body: {string: '{"id":"file-FPfB9qQ0gvKzQZ9J3YpQkQ54"}'} headers: Connection: [keep-alive] Content-Length: ['38'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:38:46 GMT'] + Date: ['Wed, 14 Nov 2018 22:42:55 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593526312-871681] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235375957-651028] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"fields": {"state": true}, "project": "project-FP9kKx00Qz561pZK0z8G44YY"}' + body: '{"fields": {"state": true}, "project": "project-FPfB9q80gvKqgzq03ZJpv0Y0"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -347,23 +347,23 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kKx80Qz59yPz44YqJxVbB/describe + uri: https://api.dnanexus.com/file-FPfB9qQ0gvKzQZ9J3YpQkQ54/describe response: - body: {string: '{"id":"file-FP9kKx80Qz59yPz44YqJxVbB","state":"closing"}'} + body: {string: '{"id":"file-FPfB9qQ0gvKzQZ9J3YpQkQ54","state":"closing"}'} headers: Connection: [keep-alive] Content-Length: ['56'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:38:46 GMT'] + Date: ['Wed, 14 Nov 2018 22:42:56 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593526562-78659] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235376069-241633] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"fields": {"state": true}, "project": "project-FP9kKx00Qz561pZK0z8G44YY"}' + body: '{"fields": {"state": true}, "project": "project-FPfB9q80gvKqgzq03ZJpv0Y0"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -383,55 +383,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kKx80Qz59yPz44YqJxVbB/describe + uri: https://api.dnanexus.com/file-FPfB9qQ0gvKzQZ9J3YpQkQ54/describe response: - body: {string: '{"id":"file-FP9kKx80Qz59yPz44YqJxVbB","state":"closing"}'} - headers: - Connection: [keep-alive] - Content-Length: ['56'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:38:48 GMT'] - Server: [nginx] - X-Content-Type-Options: [nosniff] - X-Powered-By: [Express] - X-Request-ID: [1540593528819-273504] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. - You can download it from https://wiki.dnanexus.com/Downloads#Install'] - status: {code: 200, message: OK} -- request: - body: '{"fields": {"state": true}, "project": "project-FP9kKx00Qz561pZK0z8G44YY"}' - headers: - ? !!binary | - QXV0aG9yaXphdGlvbg== - : - !!binary | - YmVhcmVyIHh2aWtXSmY1RWZ5b0ZLN3RzNThLZzAxTTIzZWZsT0Fx - ? !!binary | - Q29udGVudC1UeXBl - : - !!binary | - YXBwbGljYXRpb24vanNvbg== - ? !!binary | - RE5BbmV4dXMtQVBJ - : - !!binary | - MS4wLjA= - ? !!binary | - VXNlci1BZ2VudA== - : - !!binary | - ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp - dCk= - method: POST - uri: https://api.dnanexus.com/file-FP9kKx80Qz59yPz44YqJxVbB/describe - response: - body: {string: '{"id":"file-FP9kKx80Qz59yPz44YqJxVbB","state":"closed"}'} + body: {string: '{"id":"file-FPfB9qQ0gvKzQZ9J3YpQkQ54","state":"closed"}'} headers: Connection: [keep-alive] Content-Length: ['55'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:38:51 GMT'] + Date: ['Wed, 14 Nov 2018 22:42:58 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593530966-759047] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235378191-982108] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -455,19 +419,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kKx00Qz561pZK0z8G44YY/destroy + uri: https://api.dnanexus.com/project-FPfB9q80gvKqgzq03ZJpv0Y0/destroy response: - body: {string: '{"id":"project-FP9kKx00Qz561pZK0z8G44YY"}'} + body: {string: '{"id":"project-FPfB9q80gvKqgzq03ZJpv0Y0"}'} headers: Connection: [keep-alive] Content-Length: ['41'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:38:53 GMT'] + Date: ['Wed, 14 Nov 2018 22:43:00 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593531190-559098] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235378358-826312] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} version: 1 diff --git a/stor/tests/cassettes_py3/TestCopy/test_dx_to_posix_file.yaml b/stor_dx/stor_dx/tests/cassettes_py3/TestCopy/test_dx_to_posix_file.yaml similarity index 73% rename from stor/tests/cassettes_py3/TestCopy/test_dx_to_posix_file.yaml rename to stor_dx/stor_dx/tests/cassettes_py3/TestCopy/test_dx_to_posix_file.yaml index aa08770a..0991bafb 100644 --- a/stor/tests/cassettes_py3/TestCopy/test_dx_to_posix_file.yaml +++ b/stor_dx/stor_dx/tests/cassettes_py3/TestCopy/test_dx_to_posix_file.yaml @@ -1,6 +1,6 @@ interactions: - request: - body: '{"name": "TestCopy.test_dx_to_posix_file.09b111d1"}' + body: '{"name": "TestCopy.test_dx_to_posix_file.fd947e18"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -22,17 +22,17 @@ interactions: method: POST uri: https://api.dnanexus.com/project/new response: - body: {string: '{"id":"project-FP9kKzQ0JQqqq57K4PxxVB2f"}'} + body: {string: '{"id":"project-FPfB9x80BVjjFpy33Zqxfx6v"}'} headers: Connection: [keep-alive] Content-Length: ['41'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:38:54 GMT'] + Date: ['Wed, 14 Nov 2018 22:43:01 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593534239-774041] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235381345-630136] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -56,19 +56,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kKzQ0JQqqq57K4PxxVB2f/describe + uri: https://api.dnanexus.com/project-FPfB9x80BVjjFpy33Zqxfx6v/describe response: - body: {string: '{"id":"project-FP9kKzQ0JQqqq57K4PxxVB2f","name":"TestCopy.test_dx_to_posix_file.09b111d1","class":"project","created":1540593534000,"modified":1540593534000,"billTo":"org-counsyl","level":"ADMINISTER","dataUsage":0,"sponsoredDataUsage":0,"region":"aws:us-east-1","summary":"","description":"","protected":false,"restricted":false,"downloadRestricted":false,"containsPHI":false,"createdBy":{"user":"user-akumar_counsyl"},"version":0,"storageCost":0,"pendingTransfer":null,"tags":[],"defaultInstanceType":"mem2_hdd2_x2","archivalState":"live","archivalProgress":null,"totalSponsoredEgressBytes":0,"consumedSponsoredEgressBytes":0,"atSpendingLimit":false}'} + body: {string: '{"id":"project-FPfB9x80BVjjFpy33Zqxfx6v","name":"TestCopy.test_dx_to_posix_file.fd947e18","class":"project","created":1542235381000,"modified":1542235381000,"billTo":"org-counsyl","level":"ADMINISTER","dataUsage":0,"sponsoredDataUsage":0,"region":"aws:us-east-1","summary":"","description":"","protected":false,"restricted":false,"downloadRestricted":false,"containsPHI":false,"createdBy":{"user":"user-akumar_counsyl"},"version":0,"storageCost":0,"pendingTransfer":null,"tags":[],"defaultInstanceType":"mem2_hdd2_x2","archivalState":"live","archivalProgress":null,"totalSponsoredEgressBytes":0,"consumedSponsoredEgressBytes":0,"atSpendingLimit":false}'} headers: Connection: [keep-alive] Content-Length: ['652'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:38:54 GMT'] + Date: ['Wed, 14 Nov 2018 22:43:01 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593534547-667460] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235381451-141924] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -92,24 +92,24 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kKzQ0JQqqq57K4PxxVB2f/newFolder + uri: https://api.dnanexus.com/project-FPfB9x80BVjjFpy33Zqxfx6v/newFolder response: - body: {string: '{"id":"project-FP9kKzQ0JQqqq57K4PxxVB2f"}'} + body: {string: '{"id":"project-FPfB9x80BVjjFpy33Zqxfx6v"}'} headers: Connection: [keep-alive] Content-Length: ['41'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:38:55 GMT'] + Date: ['Wed, 14 Nov 2018 22:43:01 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593534921-652499] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235381577-358362] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"name": "folder_file.txt", "folder": "/temp_folder", "project": "project-FP9kKzQ0JQqqq57K4PxxVB2f", - "nonce": "b''8175c267a4cbc51d547499c70119042c6c0264e8cb33fdcf57de9e7a8b60530d''1540593535.242235"}' + body: '{"name": "folder_file.txt", "folder": "/temp_folder", "project": "project-FPfB9x80BVjjFpy33Zqxfx6v", + "nonce": "b''0fe39eec2af356abe833dcd89ef2ffb0372b88c3b895901e0d75a062feb70251''1542235381.653530"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -131,17 +131,17 @@ interactions: method: POST uri: https://api.dnanexus.com/file/new response: - body: {string: '{"id":"file-FP9kKzj0JQqVkxQk1b9XV8yx"}'} + body: {string: '{"id":"file-FPfB9x80BVjzQZ9J3YpQkQ58"}'} headers: Connection: [keep-alive] Content-Length: ['38'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:38:55 GMT'] + Date: ['Wed, 14 Nov 2018 22:43:01 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593535306-584917] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235381700-486747] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -165,19 +165,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kKzQ0JQqqq57K4PxxVB2f/describe + uri: https://api.dnanexus.com/project-FPfB9x80BVjjFpy33Zqxfx6v/describe response: - body: {string: '{"id":"project-FP9kKzQ0JQqqq57K4PxxVB2f","fileUploadParameters":{"maximumPartSize":5368709120,"minimumPartSize":5242880,"maximumFileSize":5497558138880,"maximumNumParts":10000,"emptyLastPartAllowed":true}}'} + body: {string: '{"id":"project-FPfB9x80BVjjFpy33Zqxfx6v","fileUploadParameters":{"maximumPartSize":5368709120,"minimumPartSize":5242880,"maximumFileSize":5497558138880,"maximumNumParts":10000,"emptyLastPartAllowed":true}}'} headers: Connection: [keep-alive] Content-Length: ['205'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:38:56 GMT'] + Date: ['Wed, 14 Nov 2018 22:43:01 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593535810-570106] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235381870-195629] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -201,19 +201,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kKzj0JQqVkxQk1b9XV8yx/upload + uri: https://api.dnanexus.com/file-FPfB9x80BVjzQZ9J3YpQkQ58/upload response: - body: {string: '{"url":"https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/a8b4/file/open/file-FP9kKzj0JQqVkxQk1b9XV8yx/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181026%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181026T223856Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=410c80aad54e824d7e745d0dc87c8f7c09bc1e86ff956264a02561453986f693","headers":{"host":"dnanexus-platform-upload-prod.s3.amazonaws.com","content-type":"binary/octet-stream","x-amz-server-side-encryption":"AES256","content-md5":"jXd/OF09/siBXSD3SWAm3A==","content-length":"4"},"expires":1540593656454}'} + body: {string: '{"url":"https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/1656/file/open/file-FPfB9x80BVjzQZ9J3YpQkQ58/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181114%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181114T224302Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=ecf310a731942486442ddacbe94ccb8fecdd29a0cef5fff5ab92cad4ffda6acd","headers":{"host":"dnanexus-platform-upload-prod.s3.amazonaws.com","content-type":"binary/octet-stream","x-amz-server-side-encryption":"AES256","content-md5":"jXd/OF09/siBXSD3SWAm3A==","content-length":"4"},"expires":1542235502045}'} headers: Connection: [keep-alive] Content-Length: ['692'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:38:56 GMT'] + Date: ['Wed, 14 Nov 2018 22:43:02 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593536245-356630] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235382017-433323] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -241,21 +241,21 @@ interactions: : - !!binary | QUVTMjU2 method: PUT - uri: https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/a8b4/file/open/file-FP9kKzj0JQqVkxQk1b9XV8yx/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181026%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181026T223856Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=410c80aad54e824d7e745d0dc87c8f7c09bc1e86ff956264a02561453986f693 + uri: https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/1656/file/open/file-FPfB9x80BVjzQZ9J3YpQkQ58/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181114%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181114T224302Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=ecf310a731942486442ddacbe94ccb8fecdd29a0cef5fff5ab92cad4ffda6acd response: body: {string: ''} headers: Content-Length: ['0'] - Date: ['Fri, 26 Oct 2018 22:38:57 GMT'] + Date: ['Wed, 14 Nov 2018 22:43:03 GMT'] ETag: ['"8d777f385d3dfec8815d20f7496026dc"'] Server: [AmazonS3] - x-amz-expiration: ['expiry-date="Sat, 17 Nov 2018 00:00:00 GMT", rule-id="3weekpurge"'] - x-amz-id-2: [AUeQt+vrkvc3kL2KO1vEOmmDNEN29Fat6bRmIgRzh9Gwe1OIXWwt5l5RVhBKn/FgpPVILSA9swc=] - x-amz-request-id: [64FCAFF82F8EA41E] + x-amz-expiration: ['expiry-date="Thu, 06 Dec 2018 00:00:00 GMT", rule-id="3weekpurge"'] + x-amz-id-2: [dJ+RVOJtxTqPXmYdRUuriKTi+5GU5R+2/4+9I3FklmS9TLeW9lBRmGp9x8WPYUUzH6evuHTcL64=] + x-amz-request-id: [903E488D3819596F] x-amz-server-side-encryption: [AES256] status: {code: 200, message: OK} - request: - body: '{"fields": {"state": true}, "project": "project-FP9kKzQ0JQqqq57K4PxxVB2f"}' + body: '{"fields": {"state": true}, "project": "project-FPfB9x80BVjjFpy33Zqxfx6v"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -275,19 +275,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kKzj0JQqVkxQk1b9XV8yx/describe + uri: https://api.dnanexus.com/file-FPfB9x80BVjzQZ9J3YpQkQ58/describe response: - body: {string: '{"id":"file-FP9kKzj0JQqVkxQk1b9XV8yx","state":"open"}'} + body: {string: '{"id":"file-FPfB9x80BVjzQZ9J3YpQkQ58","state":"open"}'} headers: Connection: [keep-alive] Content-Length: ['53'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:38:57 GMT'] + Date: ['Wed, 14 Nov 2018 22:43:02 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593537057-610964] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235382543-256896] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -311,23 +311,23 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kKzj0JQqVkxQk1b9XV8yx/close + uri: https://api.dnanexus.com/file-FPfB9x80BVjzQZ9J3YpQkQ58/close response: - body: {string: '{"id":"file-FP9kKzj0JQqVkxQk1b9XV8yx"}'} + body: {string: '{"id":"file-FPfB9x80BVjzQZ9J3YpQkQ58"}'} headers: Connection: [keep-alive] Content-Length: ['38'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:38:57 GMT'] + Date: ['Wed, 14 Nov 2018 22:43:03 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593537317-470177] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235382716-564482] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"fields": {"state": true}, "project": "project-FP9kKzQ0JQqqq57K4PxxVB2f"}' + body: '{"fields": {"state": true}, "project": "project-FPfB9x80BVjjFpy33Zqxfx6v"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -347,23 +347,23 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kKzj0JQqVkxQk1b9XV8yx/describe + uri: https://api.dnanexus.com/file-FPfB9x80BVjzQZ9J3YpQkQ58/describe response: - body: {string: '{"id":"file-FP9kKzj0JQqVkxQk1b9XV8yx","state":"closing"}'} + body: {string: '{"id":"file-FPfB9x80BVjzQZ9J3YpQkQ58","state":"closing"}'} headers: Connection: [keep-alive] Content-Length: ['56'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:38:57 GMT'] + Date: ['Wed, 14 Nov 2018 22:43:03 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593537529-959634] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235383167-997841] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"fields": {"state": true}, "project": "project-FP9kKzQ0JQqqq57K4PxxVB2f"}' + body: '{"fields": {"state": true}, "project": "project-FPfB9x80BVjjFpy33Zqxfx6v"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -383,23 +383,23 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kKzj0JQqVkxQk1b9XV8yx/describe + uri: https://api.dnanexus.com/file-FPfB9x80BVjzQZ9J3YpQkQ58/describe response: - body: {string: '{"id":"file-FP9kKzj0JQqVkxQk1b9XV8yx","state":"closed"}'} + body: {string: '{"id":"file-FPfB9x80BVjzQZ9J3YpQkQ58","state":"closed"}'} headers: Connection: [keep-alive] Content-Length: ['55'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:38:59 GMT'] + Date: ['Wed, 14 Nov 2018 22:43:05 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593539690-207308] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235385296-413688] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"name": "TestCopy.test_dx_to_posix_file.09b111d1", "level": "VIEW", "limit": + body: '{"name": "TestCopy.test_dx_to_posix_file.fd947e18", "level": "VIEW", "limit": 2}' headers: ? !!binary | @@ -422,22 +422,22 @@ interactions: method: POST uri: https://api.dnanexus.com/system/findProjects response: - body: {string: '{"results":[{"id":"project-FP9kKzQ0JQqqq57K4PxxVB2f","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} + body: {string: '{"results":[{"id":"project-FPfB9x80BVjjFpy33Zqxfx6v","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} headers: Connection: [keep-alive] Content-Length: ['147'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:38:59 GMT'] + Date: ['Wed, 14 Nov 2018 22:43:06 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593539852-60500] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235385509-304280] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: body: '{"objects": [{"name": "folder_file.txt", "folder": "/temp_folder", "project": - "project-FP9kKzQ0JQqqq57K4PxxVB2f", "batchsize": 2}]}' + "project-FPfB9x80BVjjFpy33Zqxfx6v", "batchsize": 2}]}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -459,21 +459,21 @@ interactions: method: POST uri: https://api.dnanexus.com/system/resolveDataObjects response: - body: {string: '{"results":[[{"project":"project-FP9kKzQ0JQqqq57K4PxxVB2f","id":"file-FP9kKzj0JQqVkxQk1b9XV8yx"}]]}'} + body: {string: '{"results":[[{"project":"project-FPfB9x80BVjjFpy33Zqxfx6v","id":"file-FPfB9x80BVjzQZ9J3YpQkQ58"}]]}'} headers: Connection: [keep-alive] Content-Length: ['99'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:39:00 GMT'] + Date: ['Wed, 14 Nov 2018 22:43:06 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593540004-518174] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235386206-96485] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"defaultFields": true, "fields": {"parts": true}, "project": "project-FP9kKzQ0JQqqq57K4PxxVB2f"}' + body: '{"defaultFields": true, "fields": {"parts": true}, "project": "project-FPfB9x80BVjjFpy33Zqxfx6v"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -493,23 +493,23 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kKzj0JQqVkxQk1b9XV8yx/describe + uri: https://api.dnanexus.com/file-FPfB9x80BVjzQZ9J3YpQkQ58/describe response: - body: {string: '{"id":"file-FP9kKzj0JQqVkxQk1b9XV8yx","project":"project-FP9kKzQ0JQqqq57K4PxxVB2f","class":"file","sponsored":false,"name":"folder_file.txt","types":[],"state":"closed","hidden":false,"links":[],"folder":"/temp_folder","tags":[],"created":1540593535000,"modified":1540593537805,"createdBy":{"user":"user-akumar_counsyl"},"media":"text/plain","archivalState":"live","parts":{"1":{"state":"complete","size":4,"md5":"8d777f385d3dfec8815d20f7496026dc"}},"size":4}'} + body: {string: '{"id":"file-FPfB9x80BVjzQZ9J3YpQkQ58","project":"project-FPfB9x80BVjjFpy33Zqxfx6v","class":"file","sponsored":false,"name":"folder_file.txt","types":[],"state":"closed","hidden":false,"links":[],"folder":"/temp_folder","tags":[],"created":1542235381000,"modified":1542235383841,"createdBy":{"user":"user-akumar_counsyl"},"media":"text/plain","archivalState":"live","parts":{"1":{"state":"complete","size":4,"md5":"8d777f385d3dfec8815d20f7496026dc"}},"size":4}'} headers: Connection: [keep-alive] Content-Length: ['459'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:39:00 GMT'] + Date: ['Wed, 14 Nov 2018 22:43:06 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593540130-298765] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235386310-80858] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"preauthenticated": false, "project": "project-FP9kKzQ0JQqqq57K4PxxVB2f"}' + body: '{"preauthenticated": false, "project": "project-FPfB9x80BVjjFpy33Zqxfx6v"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -529,23 +529,23 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kKzj0JQqVkxQk1b9XV8yx/download + uri: https://api.dnanexus.com/file-FPfB9x80BVjzQZ9J3YpQkQ58/download response: - body: {string: '{"url":"https://dl.dnanex.us/F/D2PRJ/file-FP9kKzj0JQqVkxQk1b9XV8yx/project-FP9kKzQ0JQqqq57K4PxxVB2f","headers":{"X-Authorization":"xvikWJf5EfyoFK7ts58Kg01M23eflOAq"}}'} + body: {string: '{"url":"https://dl.dnanex.us/F/D2PRJ/file-FPfB9x80BVjzQZ9J3YpQkQ58/project-FPfB9x80BVjjFpy33Zqxfx6v","headers":{"X-Authorization":"xvikWJf5EfyoFK7ts58Kg01M23eflOAq"}}'} headers: Access-Control-Allow-Credentials: ['true'] Connection: [keep-alive] Content-Length: ['166'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:39:00 GMT'] + Date: ['Wed, 14 Nov 2018 22:43:06 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593540274-804681] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235386425-484035] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] set-cookie: [authorization=xvikWJf5EfyoFK7ts58Kg01M23eflOAq; Domain=dl.dnanex.us; - Path=/F/D2PRJ/file-FP9kKzj0JQqVkxQk1b9XV8yx/project-FP9kKzQ0JQqqq57K4PxxVB2f; + Path=/F/D2PRJ/file-FPfB9x80BVjzQZ9J3YpQkQ58/project-FPfB9x80BVjjFpy33Zqxfx6v; Max-Age=86400; HttpOnly; Secure] status: {code: 200, message: OK} - request: @@ -565,7 +565,7 @@ interactions: : - !!binary | eHZpa1dKZjVFZnlvRks3dHM1OEtnMDFNMjNlZmxPQXE= method: GET - uri: https://dl.dnanex.us/F/D2PRJ/file-FP9kKzj0JQqVkxQk1b9XV8yx/project-FP9kKzQ0JQqqq57K4PxxVB2f + uri: https://dl.dnanex.us/F/D2PRJ/file-FPfB9x80BVjzQZ9J3YpQkQ58/project-FPfB9x80BVjjFpy33Zqxfx6v response: body: {string: data} headers: @@ -575,8 +575,8 @@ interactions: Connection: [keep-alive] Content-Length: ['4'] Content-Type: [text/plain] - Date: ['Fri, 26 Oct 2018 22:39:00 GMT'] - Last-Modified: ['Fri, 26 Oct 2018 22:38:58 GMT'] + Date: ['Wed, 14 Nov 2018 22:43:06 GMT'] + Last-Modified: ['Wed, 14 Nov 2018 22:43:04 GMT'] content-disposition: [attachment] status: {code: 200, message: OK} - request: @@ -600,19 +600,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kKzQ0JQqqq57K4PxxVB2f/destroy + uri: https://api.dnanexus.com/project-FPfB9x80BVjjFpy33Zqxfx6v/destroy response: - body: {string: '{"id":"project-FP9kKzQ0JQqqq57K4PxxVB2f"}'} + body: {string: '{"id":"project-FPfB9x80BVjjFpy33Zqxfx6v"}'} headers: Connection: [keep-alive] Content-Length: ['41'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:39:03 GMT'] + Date: ['Wed, 14 Nov 2018 22:43:10 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593540953-570948] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235386960-26510] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} version: 1 diff --git a/stor/tests/cassettes_py3/TestCopy/test_dx_to_posix_file_folder_no_ext.yaml b/stor_dx/stor_dx/tests/cassettes_py3/TestCopy/test_dx_to_posix_file_folder_no_ext.yaml similarity index 74% rename from stor/tests/cassettes_py3/TestCopy/test_dx_to_posix_file_folder_no_ext.yaml rename to stor_dx/stor_dx/tests/cassettes_py3/TestCopy/test_dx_to_posix_file_folder_no_ext.yaml index 00e0d0e0..a8bd8d76 100644 --- a/stor/tests/cassettes_py3/TestCopy/test_dx_to_posix_file_folder_no_ext.yaml +++ b/stor_dx/stor_dx/tests/cassettes_py3/TestCopy/test_dx_to_posix_file_folder_no_ext.yaml @@ -1,6 +1,6 @@ interactions: - request: - body: '{"name": "TestCopy.test_dx_to_posix_file_folder_no_ext.cf465b32"}' + body: '{"name": "TestCopy.test_dx_to_posix_file_folder_no_ext.4ca0781f"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -22,17 +22,17 @@ interactions: method: POST uri: https://api.dnanexus.com/project/new response: - body: {string: '{"id":"project-FP9kP1j0FF2G717x1b2qfg8P"}'} + body: {string: '{"id":"project-FPfB9zj0Fq19F0362xZX6pBG"}'} headers: Connection: [keep-alive] Content-Length: ['41'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:39:03 GMT'] + Date: ['Wed, 14 Nov 2018 22:43:11 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593543638-875212] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235391066-583756] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -56,19 +56,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kP1j0FF2G717x1b2qfg8P/describe + uri: https://api.dnanexus.com/project-FPfB9zj0Fq19F0362xZX6pBG/describe response: - body: {string: '{"id":"project-FP9kP1j0FF2G717x1b2qfg8P","name":"TestCopy.test_dx_to_posix_file_folder_no_ext.cf465b32","class":"project","created":1540593543000,"modified":1540593543000,"billTo":"org-counsyl","level":"ADMINISTER","dataUsage":0,"sponsoredDataUsage":0,"region":"aws:us-east-1","summary":"","description":"","protected":false,"restricted":false,"downloadRestricted":false,"containsPHI":false,"createdBy":{"user":"user-akumar_counsyl"},"version":0,"storageCost":0,"pendingTransfer":null,"tags":[],"defaultInstanceType":"mem2_hdd2_x2","archivalState":"live","archivalProgress":null,"totalSponsoredEgressBytes":0,"consumedSponsoredEgressBytes":0,"atSpendingLimit":false}'} + body: {string: '{"id":"project-FPfB9zj0Fq19F0362xZX6pBG","name":"TestCopy.test_dx_to_posix_file_folder_no_ext.4ca0781f","class":"project","created":1542235391000,"modified":1542235391000,"billTo":"org-counsyl","level":"ADMINISTER","dataUsage":0,"sponsoredDataUsage":0,"region":"aws:us-east-1","summary":"","description":"","protected":false,"restricted":false,"downloadRestricted":false,"containsPHI":false,"createdBy":{"user":"user-akumar_counsyl"},"version":0,"storageCost":0,"pendingTransfer":null,"tags":[],"defaultInstanceType":"mem2_hdd2_x2","archivalState":"live","archivalProgress":null,"totalSponsoredEgressBytes":0,"consumedSponsoredEgressBytes":0,"atSpendingLimit":false}'} headers: Connection: [keep-alive] Content-Length: ['666'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:39:03 GMT'] + Date: ['Wed, 14 Nov 2018 22:43:11 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593543756-876145] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235391169-1805] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -92,24 +92,24 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kP1j0FF2G717x1b2qfg8P/newFolder + uri: https://api.dnanexus.com/project-FPfB9zj0Fq19F0362xZX6pBG/newFolder response: - body: {string: '{"id":"project-FP9kP1j0FF2G717x1b2qfg8P"}'} + body: {string: '{"id":"project-FPfB9zj0Fq19F0362xZX6pBG"}'} headers: Connection: [keep-alive] Content-Length: ['41'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:39:03 GMT'] + Date: ['Wed, 14 Nov 2018 22:43:11 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593543884-278143] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235391281-259624] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"name": "folder_file.txt", "folder": "/temp_folder", "project": "project-FP9kP1j0FF2G717x1b2qfg8P", - "nonce": "b''0b406428d09b9744c66d93a5a1e8350d39823d5df331ade3d2cfdfb6c4c30885''1540593543.950200"}' + body: '{"name": "folder_file.txt", "folder": "/temp_folder", "project": "project-FPfB9zj0Fq19F0362xZX6pBG", + "nonce": "b''0b8f950772b22614e2a8ca8ce0051a52d1cd43a3edc4e7cb5f7b3ba8401cf696''1542235391.333949"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -131,17 +131,17 @@ interactions: method: POST uri: https://api.dnanexus.com/file/new response: - body: {string: '{"id":"file-FP9kP1j0FF2GQbbj1bP1gJp4"}'} + body: {string: '{"id":"file-FPfB9zj0Fq1P59pY2z38q602"}'} headers: Connection: [keep-alive] Content-Length: ['38'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:39:04 GMT'] + Date: ['Wed, 14 Nov 2018 22:43:11 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593543994-592279] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235391381-39542] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -165,19 +165,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kP1j0FF2G717x1b2qfg8P/describe + uri: https://api.dnanexus.com/project-FPfB9zj0Fq19F0362xZX6pBG/describe response: - body: {string: '{"id":"project-FP9kP1j0FF2G717x1b2qfg8P","fileUploadParameters":{"maximumPartSize":5368709120,"minimumPartSize":5242880,"maximumFileSize":5497558138880,"maximumNumParts":10000,"emptyLastPartAllowed":true}}'} + body: {string: '{"id":"project-FPfB9zj0Fq19F0362xZX6pBG","fileUploadParameters":{"maximumPartSize":5368709120,"minimumPartSize":5242880,"maximumFileSize":5497558138880,"maximumNumParts":10000,"emptyLastPartAllowed":true}}'} headers: Connection: [keep-alive] Content-Length: ['205'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:39:04 GMT'] + Date: ['Wed, 14 Nov 2018 22:43:11 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593544143-425409] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235391544-727854] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -201,19 +201,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kP1j0FF2GQbbj1bP1gJp4/upload + uri: https://api.dnanexus.com/file-FPfB9zj0Fq1P59pY2z38q602/upload response: - body: {string: '{"url":"https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/c70e/file/open/file-FP9kP1j0FF2GQbbj1bP1gJp4/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181026%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181026T223904Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=5b6b8c4c82ca3f249da4943c0ff557b14016bc2eddb85cd3b634bfa55f3e64e9","headers":{"host":"dnanexus-platform-upload-prod.s3.amazonaws.com","content-type":"binary/octet-stream","x-amz-server-side-encryption":"AES256","content-md5":"jXd/OF09/siBXSD3SWAm3A==","content-length":"4"},"expires":1540593664266}'} + body: {string: '{"url":"https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/c7d8/file/open/file-FPfB9zj0Fq1P59pY2z38q602/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181114%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181114T224311Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=67a9258d705789698fe01066cf4a14bb0f54e27717555c2895a0a68f506af276","headers":{"host":"dnanexus-platform-upload-prod.s3.amazonaws.com","content-type":"binary/octet-stream","x-amz-server-side-encryption":"AES256","content-md5":"jXd/OF09/siBXSD3SWAm3A==","content-length":"4"},"expires":1542235511656}'} headers: Connection: [keep-alive] Content-Length: ['692'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:39:04 GMT'] + Date: ['Wed, 14 Nov 2018 22:43:11 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593544251-358662] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235391644-579519] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -241,21 +241,21 @@ interactions: : - !!binary | QUVTMjU2 method: PUT - uri: https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/c70e/file/open/file-FP9kP1j0FF2GQbbj1bP1gJp4/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181026%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181026T223904Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=5b6b8c4c82ca3f249da4943c0ff557b14016bc2eddb85cd3b634bfa55f3e64e9 + uri: https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/c7d8/file/open/file-FPfB9zj0Fq1P59pY2z38q602/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181114%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181114T224311Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=67a9258d705789698fe01066cf4a14bb0f54e27717555c2895a0a68f506af276 response: body: {string: ''} headers: Content-Length: ['0'] - Date: ['Fri, 26 Oct 2018 22:39:05 GMT'] + Date: ['Wed, 14 Nov 2018 22:43:12 GMT'] ETag: ['"8d777f385d3dfec8815d20f7496026dc"'] Server: [AmazonS3] - x-amz-expiration: ['expiry-date="Sat, 17 Nov 2018 00:00:00 GMT", rule-id="3weekpurge"'] - x-amz-id-2: [J3neeuXquIRmKiLaRTjjVeQ1OZDfUMhABhAK+/fSI4ryPmR/UmhO+Kx9Dh0LvLV7PX+Xvo+trqA=] - x-amz-request-id: [F9A7B3541C4C3FC1] + x-amz-expiration: ['expiry-date="Thu, 06 Dec 2018 00:00:00 GMT", rule-id="3weekpurge"'] + x-amz-id-2: [rsW8YTlzFU7bFkV96ZS7roY4q9C4fQ5odOYCIB86zWKd46LSzC8B7puDRBLrxnhQGEEV8mhe0Lk=] + x-amz-request-id: [504C4DF90299024A] x-amz-server-side-encryption: [AES256] status: {code: 200, message: OK} - request: - body: '{"fields": {"state": true}, "project": "project-FP9kP1j0FF2G717x1b2qfg8P"}' + body: '{"fields": {"state": true}, "project": "project-FPfB9zj0Fq19F0362xZX6pBG"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -275,19 +275,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kP1j0FF2GQbbj1bP1gJp4/describe + uri: https://api.dnanexus.com/file-FPfB9zj0Fq1P59pY2z38q602/describe response: - body: {string: '{"id":"file-FP9kP1j0FF2GQbbj1bP1gJp4","state":"open"}'} + body: {string: '{"id":"file-FPfB9zj0Fq1P59pY2z38q602","state":"open"}'} headers: Connection: [keep-alive] Content-Length: ['53'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:39:04 GMT'] + Date: ['Wed, 14 Nov 2018 22:43:12 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593544959-876978] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235392092-289151] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -311,23 +311,23 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kP1j0FF2GQbbj1bP1gJp4/close + uri: https://api.dnanexus.com/file-FPfB9zj0Fq1P59pY2z38q602/close response: - body: {string: '{"id":"file-FP9kP1j0FF2GQbbj1bP1gJp4"}'} + body: {string: '{"id":"file-FPfB9zj0Fq1P59pY2z38q602"}'} headers: Connection: [keep-alive] Content-Length: ['38'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:39:05 GMT'] + Date: ['Wed, 14 Nov 2018 22:43:12 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593545071-879999] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235392193-605454] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"fields": {"state": true}, "project": "project-FP9kP1j0FF2G717x1b2qfg8P"}' + body: '{"fields": {"state": true}, "project": "project-FPfB9zj0Fq19F0362xZX6pBG"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -347,23 +347,23 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kP1j0FF2GQbbj1bP1gJp4/describe + uri: https://api.dnanexus.com/file-FPfB9zj0Fq1P59pY2z38q602/describe response: - body: {string: '{"id":"file-FP9kP1j0FF2GQbbj1bP1gJp4","state":"closing"}'} + body: {string: '{"id":"file-FPfB9zj0Fq1P59pY2z38q602","state":"closing"}'} headers: Connection: [keep-alive] Content-Length: ['56'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:39:05 GMT'] + Date: ['Wed, 14 Nov 2018 22:43:12 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593545195-702851] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235392335-593180] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"fields": {"state": true}, "project": "project-FP9kP1j0FF2G717x1b2qfg8P"}' + body: '{"fields": {"state": true}, "project": "project-FPfB9zj0Fq19F0362xZX6pBG"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -383,23 +383,23 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kP1j0FF2GQbbj1bP1gJp4/describe + uri: https://api.dnanexus.com/file-FPfB9zj0Fq1P59pY2z38q602/describe response: - body: {string: '{"id":"file-FP9kP1j0FF2GQbbj1bP1gJp4","state":"closed"}'} + body: {string: '{"id":"file-FPfB9zj0Fq1P59pY2z38q602","state":"closed"}'} headers: Connection: [keep-alive] Content-Length: ['55'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:39:07 GMT'] + Date: ['Wed, 14 Nov 2018 22:43:14 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593547318-516811] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235394437-523728] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"name": "TestCopy.test_dx_to_posix_file_folder_no_ext.cf465b32", "level": + body: '{"name": "TestCopy.test_dx_to_posix_file_folder_no_ext.4ca0781f", "level": "VIEW", "limit": 2}' headers: ? !!binary | @@ -422,22 +422,22 @@ interactions: method: POST uri: https://api.dnanexus.com/system/findProjects response: - body: {string: '{"results":[{"id":"project-FP9kP1j0FF2G717x1b2qfg8P","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} + body: {string: '{"results":[{"id":"project-FPfB9zj0Fq19F0362xZX6pBG","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} headers: Connection: [keep-alive] Content-Length: ['147'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:39:07 GMT'] + Date: ['Wed, 14 Nov 2018 22:43:14 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593547430-93656] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235394604-696092] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: body: '{"objects": [{"name": "folder_file.txt", "folder": "/temp_folder", "project": - "project-FP9kP1j0FF2G717x1b2qfg8P", "batchsize": 2}]}' + "project-FPfB9zj0Fq19F0362xZX6pBG", "batchsize": 2}]}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -459,21 +459,21 @@ interactions: method: POST uri: https://api.dnanexus.com/system/resolveDataObjects response: - body: {string: '{"results":[[{"project":"project-FP9kP1j0FF2G717x1b2qfg8P","id":"file-FP9kP1j0FF2GQbbj1bP1gJp4"}]]}'} + body: {string: '{"results":[[{"project":"project-FPfB9zj0Fq19F0362xZX6pBG","id":"file-FPfB9zj0Fq1P59pY2z38q602"}]]}'} headers: Connection: [keep-alive] Content-Length: ['99'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:39:07 GMT'] + Date: ['Wed, 14 Nov 2018 22:43:14 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593547558-944347] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235394878-71073] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"defaultFields": true, "fields": {"parts": true}, "project": "project-FP9kP1j0FF2G717x1b2qfg8P"}' + body: '{"defaultFields": true, "fields": {"parts": true}, "project": "project-FPfB9zj0Fq19F0362xZX6pBG"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -493,23 +493,23 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kP1j0FF2GQbbj1bP1gJp4/describe + uri: https://api.dnanexus.com/file-FPfB9zj0Fq1P59pY2z38q602/describe response: - body: {string: '{"id":"file-FP9kP1j0FF2GQbbj1bP1gJp4","project":"project-FP9kP1j0FF2G717x1b2qfg8P","class":"file","sponsored":false,"name":"folder_file.txt","types":[],"state":"closed","hidden":false,"links":[],"folder":"/temp_folder","tags":[],"created":1540593543000,"modified":1540593546543,"createdBy":{"user":"user-akumar_counsyl"},"media":"text/plain","archivalState":"live","parts":{"1":{"state":"complete","size":4,"md5":"8d777f385d3dfec8815d20f7496026dc"}},"size":4}'} + body: {string: '{"id":"file-FPfB9zj0Fq1P59pY2z38q602","project":"project-FPfB9zj0Fq19F0362xZX6pBG","class":"file","sponsored":false,"name":"folder_file.txt","types":[],"state":"closed","hidden":false,"links":[],"folder":"/temp_folder","tags":[],"created":1542235391000,"modified":1542235392923,"createdBy":{"user":"user-akumar_counsyl"},"media":"text/plain","archivalState":"live","parts":{"1":{"state":"complete","size":4,"md5":"8d777f385d3dfec8815d20f7496026dc"}},"size":4}'} headers: Connection: [keep-alive] Content-Length: ['459'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:39:07 GMT'] + Date: ['Wed, 14 Nov 2018 22:43:14 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593547664-540732] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235394974-457263] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"preauthenticated": false, "project": "project-FP9kP1j0FF2G717x1b2qfg8P"}' + body: '{"preauthenticated": false, "project": "project-FPfB9zj0Fq19F0362xZX6pBG"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -529,23 +529,23 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kP1j0FF2GQbbj1bP1gJp4/download + uri: https://api.dnanexus.com/file-FPfB9zj0Fq1P59pY2z38q602/download response: - body: {string: '{"url":"https://dl.dnanex.us/F/D2PRJ/file-FP9kP1j0FF2GQbbj1bP1gJp4/project-FP9kP1j0FF2G717x1b2qfg8P","headers":{"X-Authorization":"xvikWJf5EfyoFK7ts58Kg01M23eflOAq"}}'} + body: {string: '{"url":"https://dl.dnanex.us/F/D2PRJ/file-FPfB9zj0Fq1P59pY2z38q602/project-FPfB9zj0Fq19F0362xZX6pBG","headers":{"X-Authorization":"xvikWJf5EfyoFK7ts58Kg01M23eflOAq"}}'} headers: Access-Control-Allow-Credentials: ['true'] Connection: [keep-alive] Content-Length: ['166'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:39:07 GMT'] + Date: ['Wed, 14 Nov 2018 22:43:15 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593547777-310720] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235395075-834918] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] set-cookie: [authorization=xvikWJf5EfyoFK7ts58Kg01M23eflOAq; Domain=dl.dnanex.us; - Path=/F/D2PRJ/file-FP9kP1j0FF2GQbbj1bP1gJp4/project-FP9kP1j0FF2G717x1b2qfg8P; + Path=/F/D2PRJ/file-FPfB9zj0Fq1P59pY2z38q602/project-FPfB9zj0Fq19F0362xZX6pBG; Max-Age=86400; HttpOnly; Secure] status: {code: 200, message: OK} - request: @@ -565,7 +565,7 @@ interactions: : - !!binary | eHZpa1dKZjVFZnlvRks3dHM1OEtnMDFNMjNlZmxPQXE= method: GET - uri: https://dl.dnanex.us/F/D2PRJ/file-FP9kP1j0FF2GQbbj1bP1gJp4/project-FP9kP1j0FF2G717x1b2qfg8P + uri: https://dl.dnanex.us/F/D2PRJ/file-FPfB9zj0Fq1P59pY2z38q602/project-FPfB9zj0Fq19F0362xZX6pBG response: body: {string: data} headers: @@ -575,12 +575,12 @@ interactions: Connection: [keep-alive] Content-Length: ['4'] Content-Type: [text/plain] - Date: ['Fri, 26 Oct 2018 22:39:08 GMT'] - Last-Modified: ['Fri, 26 Oct 2018 22:39:07 GMT'] + Date: ['Wed, 14 Nov 2018 22:43:15 GMT'] + Last-Modified: ['Wed, 14 Nov 2018 22:43:13 GMT'] content-disposition: [attachment] status: {code: 200, message: OK} - request: - body: '{"name": "TestCopy.test_dx_to_posix_file_folder_no_ext.cf465b32", "level": + body: '{"name": "TestCopy.test_dx_to_posix_file_folder_no_ext.4ca0781f", "level": "VIEW", "limit": 2}' headers: ? !!binary | @@ -603,22 +603,22 @@ interactions: method: POST uri: https://api.dnanexus.com/system/findProjects response: - body: {string: '{"results":[{"id":"project-FP9kP1j0FF2G717x1b2qfg8P","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} + body: {string: '{"results":[{"id":"project-FPfB9zj0Fq19F0362xZX6pBG","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} headers: Connection: [keep-alive] Content-Length: ['147'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:39:08 GMT'] + Date: ['Wed, 14 Nov 2018 22:43:15 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593548373-98567] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235395619-583194] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: body: '{"objects": [{"name": "folder_file.txt", "folder": "/temp_folder", "project": - "project-FP9kP1j0FF2G717x1b2qfg8P", "batchsize": 2}]}' + "project-FPfB9zj0Fq19F0362xZX6pBG", "batchsize": 2}]}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -640,21 +640,21 @@ interactions: method: POST uri: https://api.dnanexus.com/system/resolveDataObjects response: - body: {string: '{"results":[[{"project":"project-FP9kP1j0FF2G717x1b2qfg8P","id":"file-FP9kP1j0FF2GQbbj1bP1gJp4"}]]}'} + body: {string: '{"results":[[{"project":"project-FPfB9zj0Fq19F0362xZX6pBG","id":"file-FPfB9zj0Fq1P59pY2z38q602"}]]}'} headers: Connection: [keep-alive] Content-Length: ['99'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:39:08 GMT'] + Date: ['Wed, 14 Nov 2018 22:43:15 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593548507-380114] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235395734-338422] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"defaultFields": true, "fields": {"parts": true}, "project": "project-FP9kP1j0FF2G717x1b2qfg8P"}' + body: '{"defaultFields": true, "fields": {"parts": true}, "project": "project-FPfB9zj0Fq19F0362xZX6pBG"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -674,23 +674,23 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kP1j0FF2GQbbj1bP1gJp4/describe + uri: https://api.dnanexus.com/file-FPfB9zj0Fq1P59pY2z38q602/describe response: - body: {string: '{"id":"file-FP9kP1j0FF2GQbbj1bP1gJp4","project":"project-FP9kP1j0FF2G717x1b2qfg8P","class":"file","sponsored":false,"name":"folder_file.txt","types":[],"state":"closed","hidden":false,"links":[],"folder":"/temp_folder","tags":[],"created":1540593543000,"modified":1540593546543,"createdBy":{"user":"user-akumar_counsyl"},"media":"text/plain","archivalState":"live","parts":{"1":{"state":"complete","size":4,"md5":"8d777f385d3dfec8815d20f7496026dc"}},"size":4}'} + body: {string: '{"id":"file-FPfB9zj0Fq1P59pY2z38q602","project":"project-FPfB9zj0Fq19F0362xZX6pBG","class":"file","sponsored":false,"name":"folder_file.txt","types":[],"state":"closed","hidden":false,"links":[],"folder":"/temp_folder","tags":[],"created":1542235391000,"modified":1542235392923,"createdBy":{"user":"user-akumar_counsyl"},"media":"text/plain","archivalState":"live","parts":{"1":{"state":"complete","size":4,"md5":"8d777f385d3dfec8815d20f7496026dc"}},"size":4}'} headers: Connection: [keep-alive] Content-Length: ['459'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:39:08 GMT'] + Date: ['Wed, 14 Nov 2018 22:43:15 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593548614-857649] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235395831-691052] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"preauthenticated": false, "project": "project-FP9kP1j0FF2G717x1b2qfg8P"}' + body: '{"preauthenticated": false, "project": "project-FPfB9zj0Fq19F0362xZX6pBG"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -710,23 +710,23 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kP1j0FF2GQbbj1bP1gJp4/download + uri: https://api.dnanexus.com/file-FPfB9zj0Fq1P59pY2z38q602/download response: - body: {string: '{"url":"https://dl.dnanex.us/F/D2PRJ/file-FP9kP1j0FF2GQbbj1bP1gJp4/project-FP9kP1j0FF2G717x1b2qfg8P","headers":{"X-Authorization":"xvikWJf5EfyoFK7ts58Kg01M23eflOAq"}}'} + body: {string: '{"url":"https://dl.dnanex.us/F/D2PRJ/file-FPfB9zj0Fq1P59pY2z38q602/project-FPfB9zj0Fq19F0362xZX6pBG","headers":{"X-Authorization":"xvikWJf5EfyoFK7ts58Kg01M23eflOAq"}}'} headers: Access-Control-Allow-Credentials: ['true'] Connection: [keep-alive] Content-Length: ['166'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:39:08 GMT'] + Date: ['Wed, 14 Nov 2018 22:43:15 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593548737-2690] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235395930-481174] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] set-cookie: [authorization=xvikWJf5EfyoFK7ts58Kg01M23eflOAq; Domain=dl.dnanex.us; - Path=/F/D2PRJ/file-FP9kP1j0FF2GQbbj1bP1gJp4/project-FP9kP1j0FF2G717x1b2qfg8P; + Path=/F/D2PRJ/file-FPfB9zj0Fq1P59pY2z38q602/project-FPfB9zj0Fq19F0362xZX6pBG; Max-Age=86400; HttpOnly; Secure] status: {code: 200, message: OK} - request: @@ -746,7 +746,7 @@ interactions: : - !!binary | eHZpa1dKZjVFZnlvRks3dHM1OEtnMDFNMjNlZmxPQXE= method: GET - uri: https://dl.dnanex.us/F/D2PRJ/file-FP9kP1j0FF2GQbbj1bP1gJp4/project-FP9kP1j0FF2G717x1b2qfg8P + uri: https://dl.dnanex.us/F/D2PRJ/file-FPfB9zj0Fq1P59pY2z38q602/project-FPfB9zj0Fq19F0362xZX6pBG response: body: {string: data} headers: @@ -756,8 +756,8 @@ interactions: Connection: [keep-alive] Content-Length: ['4'] Content-Type: [text/plain] - Date: ['Fri, 26 Oct 2018 22:39:08 GMT'] - Last-Modified: ['Fri, 26 Oct 2018 22:39:07 GMT'] + Date: ['Wed, 14 Nov 2018 22:43:16 GMT'] + Last-Modified: ['Wed, 14 Nov 2018 22:43:13 GMT'] content-disposition: [attachment] status: {code: 200, message: OK} - request: @@ -781,19 +781,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kP1j0FF2G717x1b2qfg8P/destroy + uri: https://api.dnanexus.com/project-FPfB9zj0Fq19F0362xZX6pBG/destroy response: - body: {string: '{"id":"project-FP9kP1j0FF2G717x1b2qfg8P"}'} + body: {string: '{"id":"project-FPfB9zj0Fq19F0362xZX6pBG"}'} headers: Connection: [keep-alive] Content-Length: ['41'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:39:11 GMT'] + Date: ['Wed, 14 Nov 2018 22:43:19 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593548955-715634] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235396196-206369] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} version: 1 diff --git a/stor/tests/cassettes_py3/TestCopy/test_dx_to_posix_folder.yaml b/stor_dx/stor_dx/tests/cassettes_py3/TestCopy/test_dx_to_posix_folder.yaml similarity index 73% rename from stor/tests/cassettes_py3/TestCopy/test_dx_to_posix_folder.yaml rename to stor_dx/stor_dx/tests/cassettes_py3/TestCopy/test_dx_to_posix_folder.yaml index e538f6b0..5e30f8e2 100644 --- a/stor/tests/cassettes_py3/TestCopy/test_dx_to_posix_folder.yaml +++ b/stor_dx/stor_dx/tests/cassettes_py3/TestCopy/test_dx_to_posix_folder.yaml @@ -1,6 +1,6 @@ interactions: - request: - body: '{"name": "TestCopy.test_dx_to_posix_folder.e11112b0"}' + body: '{"name": "TestCopy.test_dx_to_posix_folder.6887ad53"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -22,17 +22,17 @@ interactions: method: POST uri: https://api.dnanexus.com/project/new response: - body: {string: '{"id":"project-FP9kP3j0FF975PY21Z8jFy7V"}'} + body: {string: '{"id":"project-FPfBB2008fkzQZ9J3YpQkQ5Z"}'} headers: Connection: [keep-alive] Content-Length: ['41'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:39:11 GMT'] + Date: ['Wed, 14 Nov 2018 22:43:20 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593551875-586381] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235400301-715767] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -56,19 +56,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kP3j0FF975PY21Z8jFy7V/describe + uri: https://api.dnanexus.com/project-FPfBB2008fkzQZ9J3YpQkQ5Z/describe response: - body: {string: '{"id":"project-FP9kP3j0FF975PY21Z8jFy7V","name":"TestCopy.test_dx_to_posix_folder.e11112b0","class":"project","created":1540593551000,"modified":1540593551000,"billTo":"org-counsyl","level":"ADMINISTER","dataUsage":0,"sponsoredDataUsage":0,"region":"aws:us-east-1","summary":"","description":"","protected":false,"restricted":false,"downloadRestricted":false,"containsPHI":false,"createdBy":{"user":"user-akumar_counsyl"},"version":0,"storageCost":0,"pendingTransfer":null,"tags":[],"defaultInstanceType":"mem2_hdd2_x2","archivalState":"live","archivalProgress":null,"totalSponsoredEgressBytes":0,"consumedSponsoredEgressBytes":0,"atSpendingLimit":false}'} + body: {string: '{"id":"project-FPfBB2008fkzQZ9J3YpQkQ5Z","name":"TestCopy.test_dx_to_posix_folder.6887ad53","class":"project","created":1542235400000,"modified":1542235400000,"billTo":"org-counsyl","level":"ADMINISTER","dataUsage":0,"sponsoredDataUsage":0,"region":"aws:us-east-1","summary":"","description":"","protected":false,"restricted":false,"downloadRestricted":false,"containsPHI":false,"createdBy":{"user":"user-akumar_counsyl"},"version":0,"storageCost":0,"pendingTransfer":null,"tags":[],"defaultInstanceType":"mem2_hdd2_x2","archivalState":"live","archivalProgress":null,"totalSponsoredEgressBytes":0,"consumedSponsoredEgressBytes":0,"atSpendingLimit":false}'} headers: Connection: [keep-alive] Content-Length: ['654'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:39:12 GMT'] + Date: ['Wed, 14 Nov 2018 22:43:20 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593551991-509543] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235400426-699135] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -92,24 +92,24 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kP3j0FF975PY21Z8jFy7V/newFolder + uri: https://api.dnanexus.com/project-FPfBB2008fkzQZ9J3YpQkQ5Z/newFolder response: - body: {string: '{"id":"project-FP9kP3j0FF975PY21Z8jFy7V"}'} + body: {string: '{"id":"project-FPfBB2008fkzQZ9J3YpQkQ5Z"}'} headers: Connection: [keep-alive] Content-Length: ['41'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:39:12 GMT'] + Date: ['Wed, 14 Nov 2018 22:43:20 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593552103-137003] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235400613-513904] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"name": "folder_file.txt", "folder": "/temp_folder", "project": "project-FP9kP3j0FF975PY21Z8jFy7V", - "nonce": "b''b7a83cfcdc97e5e8cee359e0b93b1c2b853a468977b5434039ca2c8dbed085f1''1540593552.168851"}' + body: '{"name": "folder_file.txt", "folder": "/temp_folder", "project": "project-FPfBB2008fkzQZ9J3YpQkQ5Z", + "nonce": "b''91d22f57b00675026874dfbec3ea228f99f8eb0dd5415cb830612cdfe765406f''1542235400.668028"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -131,17 +131,17 @@ interactions: method: POST uri: https://api.dnanexus.com/file/new response: - body: {string: '{"id":"file-FP9kP400FF99yPz44YqJxVbG"}'} + body: {string: '{"id":"file-FPfBB2008fkzQZ9J3YpQkQ5b"}'} headers: Connection: [keep-alive] Content-Length: ['38'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:39:12 GMT'] + Date: ['Wed, 14 Nov 2018 22:43:20 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593552218-50560] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235400728-702425] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -165,19 +165,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kP3j0FF975PY21Z8jFy7V/describe + uri: https://api.dnanexus.com/project-FPfBB2008fkzQZ9J3YpQkQ5Z/describe response: - body: {string: '{"id":"project-FP9kP3j0FF975PY21Z8jFy7V","fileUploadParameters":{"maximumPartSize":5368709120,"minimumPartSize":5242880,"maximumFileSize":5497558138880,"maximumNumParts":10000,"emptyLastPartAllowed":true}}'} + body: {string: '{"id":"project-FPfBB2008fkzQZ9J3YpQkQ5Z","fileUploadParameters":{"maximumPartSize":5368709120,"minimumPartSize":5242880,"maximumFileSize":5497558138880,"maximumNumParts":10000,"emptyLastPartAllowed":true}}'} headers: Connection: [keep-alive] Content-Length: ['205'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:39:12 GMT'] + Date: ['Wed, 14 Nov 2018 22:43:20 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593552375-745804] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235400941-112432] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -201,19 +201,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kP400FF99yPz44YqJxVbG/upload + uri: https://api.dnanexus.com/file-FPfBB2008fkzQZ9J3YpQkQ5b/upload response: - body: {string: '{"url":"https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/15ea/file/open/file-FP9kP400FF99yPz44YqJxVbG/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181026%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181026T223912Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=68a93e924a3913bf052eb327244e97940564ab3e439cb67c5078179654a42154","headers":{"host":"dnanexus-platform-upload-prod.s3.amazonaws.com","content-type":"binary/octet-stream","x-amz-server-side-encryption":"AES256","content-md5":"jXd/OF09/siBXSD3SWAm3A==","content-length":"4"},"expires":1540593672498}'} + body: {string: '{"url":"https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/5598/file/open/file-FPfBB2008fkzQZ9J3YpQkQ5b/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181114%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181114T224321Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=0bfb6bf8eefc8c1c0b5726412574b27debb42679cd1066e3f78769b4efe13b07","headers":{"host":"dnanexus-platform-upload-prod.s3.amazonaws.com","content-type":"binary/octet-stream","x-amz-server-side-encryption":"AES256","content-md5":"jXd/OF09/siBXSD3SWAm3A==","content-length":"4"},"expires":1542235521070}'} headers: Connection: [keep-alive] Content-Length: ['692'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:39:12 GMT'] + Date: ['Wed, 14 Nov 2018 22:43:21 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593552486-303550] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235401050-885635] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -241,21 +241,21 @@ interactions: : - !!binary | QUVTMjU2 method: PUT - uri: https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/15ea/file/open/file-FP9kP400FF99yPz44YqJxVbG/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181026%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181026T223912Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=68a93e924a3913bf052eb327244e97940564ab3e439cb67c5078179654a42154 + uri: https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/5598/file/open/file-FPfBB2008fkzQZ9J3YpQkQ5b/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181114%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181114T224321Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=0bfb6bf8eefc8c1c0b5726412574b27debb42679cd1066e3f78769b4efe13b07 response: body: {string: ''} headers: Content-Length: ['0'] - Date: ['Fri, 26 Oct 2018 22:39:13 GMT'] + Date: ['Wed, 14 Nov 2018 22:43:22 GMT'] ETag: ['"8d777f385d3dfec8815d20f7496026dc"'] Server: [AmazonS3] - x-amz-expiration: ['expiry-date="Sat, 17 Nov 2018 00:00:00 GMT", rule-id="3weekpurge"'] - x-amz-id-2: [QWrp/am1vJdjbDoEklfL4l97mZ6twfjb4imS/lD79Qge+0DHh2q504E0UdI3TVGdAuikXearvNY=] - x-amz-request-id: [294D4456AA5B3EC2] + x-amz-expiration: ['expiry-date="Thu, 06 Dec 2018 00:00:00 GMT", rule-id="3weekpurge"'] + x-amz-id-2: [Af1i3vt1n0i/lq4sAuV6H+DYaEuis8vAjRLoR/3ASi2MlZVxDBdCTruZCmA0R3CHvwSXvcCvvbY=] + x-amz-request-id: [D0EC418426AA1855] x-amz-server-side-encryption: [AES256] status: {code: 200, message: OK} - request: - body: '{"fields": {"state": true}, "project": "project-FP9kP3j0FF975PY21Z8jFy7V"}' + body: '{"fields": {"state": true}, "project": "project-FPfBB2008fkzQZ9J3YpQkQ5Z"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -275,19 +275,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kP400FF99yPz44YqJxVbG/describe + uri: https://api.dnanexus.com/file-FPfBB2008fkzQZ9J3YpQkQ5b/describe response: - body: {string: '{"id":"file-FP9kP400FF99yPz44YqJxVbG","state":"open"}'} + body: {string: '{"id":"file-FPfBB2008fkzQZ9J3YpQkQ5b","state":"open"}'} headers: Connection: [keep-alive] Content-Length: ['53'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:39:13 GMT'] + Date: ['Wed, 14 Nov 2018 22:43:21 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593553026-242818] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235401546-466389] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -311,23 +311,23 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kP400FF99yPz44YqJxVbG/close + uri: https://api.dnanexus.com/file-FPfBB2008fkzQZ9J3YpQkQ5b/close response: - body: {string: '{"id":"file-FP9kP400FF99yPz44YqJxVbG"}'} + body: {string: '{"id":"file-FPfBB2008fkzQZ9J3YpQkQ5b"}'} headers: Connection: [keep-alive] Content-Length: ['38'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:39:13 GMT'] + Date: ['Wed, 14 Nov 2018 22:43:21 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593553151-949913] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235401672-975880] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"fields": {"state": true}, "project": "project-FP9kP3j0FF975PY21Z8jFy7V"}' + body: '{"fields": {"state": true}, "project": "project-FPfBB2008fkzQZ9J3YpQkQ5Z"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -347,23 +347,23 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kP400FF99yPz44YqJxVbG/describe + uri: https://api.dnanexus.com/file-FPfBB2008fkzQZ9J3YpQkQ5b/describe response: - body: {string: '{"id":"file-FP9kP400FF99yPz44YqJxVbG","state":"closing"}'} + body: {string: '{"id":"file-FPfBB2008fkzQZ9J3YpQkQ5b","state":"closing"}'} headers: Connection: [keep-alive] Content-Length: ['56'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:39:13 GMT'] + Date: ['Wed, 14 Nov 2018 22:43:21 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593553288-786383] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235401819-513657] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"fields": {"state": true}, "project": "project-FP9kP3j0FF975PY21Z8jFy7V"}' + body: '{"fields": {"state": true}, "project": "project-FPfBB2008fkzQZ9J3YpQkQ5Z"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -383,23 +383,23 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kP400FF99yPz44YqJxVbG/describe + uri: https://api.dnanexus.com/file-FPfBB2008fkzQZ9J3YpQkQ5b/describe response: - body: {string: '{"id":"file-FP9kP400FF99yPz44YqJxVbG","state":"closed"}'} + body: {string: '{"id":"file-FPfBB2008fkzQZ9J3YpQkQ5b","state":"closed"}'} headers: Connection: [keep-alive] Content-Length: ['55'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:39:15 GMT'] + Date: ['Wed, 14 Nov 2018 22:43:24 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593555404-598102] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235403983-905606] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"name": "TestCopy.test_dx_to_posix_folder.e11112b0", "level": "VIEW", + body: '{"name": "TestCopy.test_dx_to_posix_folder.6887ad53", "level": "VIEW", "limit": 2}' headers: ? !!binary | @@ -422,22 +422,22 @@ interactions: method: POST uri: https://api.dnanexus.com/system/findProjects response: - body: {string: '{"results":[{"id":"project-FP9kP3j0FF975PY21Z8jFy7V","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} + body: {string: '{"results":[{"id":"project-FPfBB2008fkzQZ9J3YpQkQ5Z","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} headers: Connection: [keep-alive] Content-Length: ['147'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:39:15 GMT'] + Date: ['Wed, 14 Nov 2018 22:43:24 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593555521-20635] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235404201-595390] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: body: '{"objects": [{"name": "folder_file.txt", "folder": "/temp_folder", "project": - "project-FP9kP3j0FF975PY21Z8jFy7V", "batchsize": 2}]}' + "project-FPfBB2008fkzQZ9J3YpQkQ5Z", "batchsize": 2}]}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -459,21 +459,21 @@ interactions: method: POST uri: https://api.dnanexus.com/system/resolveDataObjects response: - body: {string: '{"results":[[{"project":"project-FP9kP3j0FF975PY21Z8jFy7V","id":"file-FP9kP400FF99yPz44YqJxVbG"}]]}'} + body: {string: '{"results":[[{"project":"project-FPfBB2008fkzQZ9J3YpQkQ5Z","id":"file-FPfBB2008fkzQZ9J3YpQkQ5b"}]]}'} headers: Connection: [keep-alive] Content-Length: ['99'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:39:15 GMT'] + Date: ['Wed, 14 Nov 2018 22:43:24 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593555643-583109] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235404351-980474] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"defaultFields": true, "fields": {"parts": true}, "project": "project-FP9kP3j0FF975PY21Z8jFy7V"}' + body: '{"defaultFields": true, "fields": {"parts": true}, "project": "project-FPfBB2008fkzQZ9J3YpQkQ5Z"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -493,23 +493,23 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kP400FF99yPz44YqJxVbG/describe + uri: https://api.dnanexus.com/file-FPfBB2008fkzQZ9J3YpQkQ5b/describe response: - body: {string: '{"id":"file-FP9kP400FF99yPz44YqJxVbG","project":"project-FP9kP3j0FF975PY21Z8jFy7V","class":"file","sponsored":false,"name":"folder_file.txt","types":[],"state":"closed","hidden":false,"links":[],"folder":"/temp_folder","tags":[],"created":1540593552000,"modified":1540593554317,"createdBy":{"user":"user-akumar_counsyl"},"media":"text/plain","archivalState":"live","parts":{"1":{"state":"complete","size":4,"md5":"8d777f385d3dfec8815d20f7496026dc"}},"size":4}'} + body: {string: '{"id":"file-FPfBB2008fkzQZ9J3YpQkQ5b","project":"project-FPfBB2008fkzQZ9J3YpQkQ5Z","class":"file","sponsored":false,"name":"folder_file.txt","types":[],"state":"closed","hidden":false,"links":[],"folder":"/temp_folder","tags":[],"created":1542235400000,"modified":1542235402615,"createdBy":{"user":"user-akumar_counsyl"},"media":"text/plain","archivalState":"live","parts":{"1":{"state":"complete","size":4,"md5":"8d777f385d3dfec8815d20f7496026dc"}},"size":4}'} headers: Connection: [keep-alive] Content-Length: ['459'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:39:15 GMT'] + Date: ['Wed, 14 Nov 2018 22:43:24 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593555754-142793] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235404463-383798] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"preauthenticated": false, "project": "project-FP9kP3j0FF975PY21Z8jFy7V"}' + body: '{"preauthenticated": false, "project": "project-FPfBB2008fkzQZ9J3YpQkQ5Z"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -529,23 +529,23 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kP400FF99yPz44YqJxVbG/download + uri: https://api.dnanexus.com/file-FPfBB2008fkzQZ9J3YpQkQ5b/download response: - body: {string: '{"url":"https://dl.dnanex.us/F/D2PRJ/file-FP9kP400FF99yPz44YqJxVbG/project-FP9kP3j0FF975PY21Z8jFy7V","headers":{"X-Authorization":"xvikWJf5EfyoFK7ts58Kg01M23eflOAq"}}'} + body: {string: '{"url":"https://dl.dnanex.us/F/D2PRJ/file-FPfBB2008fkzQZ9J3YpQkQ5b/project-FPfBB2008fkzQZ9J3YpQkQ5Z","headers":{"X-Authorization":"xvikWJf5EfyoFK7ts58Kg01M23eflOAq"}}'} headers: Access-Control-Allow-Credentials: ['true'] Connection: [keep-alive] Content-Length: ['166'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:39:15 GMT'] + Date: ['Wed, 14 Nov 2018 22:43:24 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593555877-377164] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235404576-991715] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] set-cookie: [authorization=xvikWJf5EfyoFK7ts58Kg01M23eflOAq; Domain=dl.dnanex.us; - Path=/F/D2PRJ/file-FP9kP400FF99yPz44YqJxVbG/project-FP9kP3j0FF975PY21Z8jFy7V; + Path=/F/D2PRJ/file-FPfBB2008fkzQZ9J3YpQkQ5b/project-FPfBB2008fkzQZ9J3YpQkQ5Z; Max-Age=86400; HttpOnly; Secure] status: {code: 200, message: OK} - request: @@ -565,7 +565,7 @@ interactions: : - !!binary | eHZpa1dKZjVFZnlvRks3dHM1OEtnMDFNMjNlZmxPQXE= method: GET - uri: https://dl.dnanex.us/F/D2PRJ/file-FP9kP400FF99yPz44YqJxVbG/project-FP9kP3j0FF975PY21Z8jFy7V + uri: https://dl.dnanex.us/F/D2PRJ/file-FPfBB2008fkzQZ9J3YpQkQ5b/project-FPfBB2008fkzQZ9J3YpQkQ5Z response: body: {string: data} headers: @@ -575,8 +575,8 @@ interactions: Connection: [keep-alive] Content-Length: ['4'] Content-Type: [text/plain] - Date: ['Fri, 26 Oct 2018 22:39:16 GMT'] - Last-Modified: ['Fri, 26 Oct 2018 22:39:14 GMT'] + Date: ['Wed, 14 Nov 2018 22:43:25 GMT'] + Last-Modified: ['Wed, 14 Nov 2018 22:43:23 GMT'] content-disposition: [attachment] status: {code: 200, message: OK} - request: @@ -600,19 +600,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kP3j0FF975PY21Z8jFy7V/destroy + uri: https://api.dnanexus.com/project-FPfBB2008fkzQZ9J3YpQkQ5Z/destroy response: - body: {string: '{"id":"project-FP9kP3j0FF975PY21Z8jFy7V"}'} + body: {string: '{"id":"project-FPfBB2008fkzQZ9J3YpQkQ5Z"}'} headers: Connection: [keep-alive] Content-Length: ['41'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:39:18 GMT'] + Date: ['Wed, 14 Nov 2018 22:43:29 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593556485-939563] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235405568-408550] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} version: 1 diff --git a/stor/tests/cassettes_py3/TestCopy/test_dx_to_same_dx_pass.yaml b/stor_dx/stor_dx/tests/cassettes_py3/TestCopy/test_dx_to_same_dx_pass.yaml similarity index 73% rename from stor/tests/cassettes_py3/TestCopy/test_dx_to_same_dx_pass.yaml rename to stor_dx/stor_dx/tests/cassettes_py3/TestCopy/test_dx_to_same_dx_pass.yaml index 95ae33c0..ee72352f 100644 --- a/stor/tests/cassettes_py3/TestCopy/test_dx_to_same_dx_pass.yaml +++ b/stor_dx/stor_dx/tests/cassettes_py3/TestCopy/test_dx_to_same_dx_pass.yaml @@ -1,6 +1,6 @@ interactions: - request: - body: '{"name": "TestCopy.test_dx_to_same_dx_pass.c1d6e387"}' + body: '{"name": "TestCopy.test_dx_to_same_dx_pass.f28f8ee8"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -22,17 +22,17 @@ interactions: method: POST uri: https://api.dnanexus.com/project/new response: - body: {string: '{"id":"project-FP9kP5j0XX7g5PY21Z8jFy7Z"}'} + body: {string: '{"id":"project-FPfBB4Q09qKG39QfGzjfYykv"}'} headers: Connection: [keep-alive] Content-Length: ['41'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:39:19 GMT'] + Date: ['Wed, 14 Nov 2018 22:43:30 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593559272-3733] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235410423-661446] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -56,19 +56,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kP5j0XX7g5PY21Z8jFy7Z/describe + uri: https://api.dnanexus.com/project-FPfBB4Q09qKG39QfGzjfYykv/describe response: - body: {string: '{"id":"project-FP9kP5j0XX7g5PY21Z8jFy7Z","name":"TestCopy.test_dx_to_same_dx_pass.c1d6e387","class":"project","created":1540593559000,"modified":1540593559000,"billTo":"org-counsyl","level":"ADMINISTER","dataUsage":0,"sponsoredDataUsage":0,"region":"aws:us-east-1","summary":"","description":"","protected":false,"restricted":false,"downloadRestricted":false,"containsPHI":false,"createdBy":{"user":"user-akumar_counsyl"},"version":0,"storageCost":0,"pendingTransfer":null,"tags":[],"defaultInstanceType":"mem2_hdd2_x2","archivalState":"live","archivalProgress":null,"totalSponsoredEgressBytes":0,"consumedSponsoredEgressBytes":0,"atSpendingLimit":false}'} + body: {string: '{"id":"project-FPfBB4Q09qKG39QfGzjfYykv","name":"TestCopy.test_dx_to_same_dx_pass.f28f8ee8","class":"project","created":1542235410000,"modified":1542235410000,"billTo":"org-counsyl","level":"ADMINISTER","dataUsage":0,"sponsoredDataUsage":0,"region":"aws:us-east-1","summary":"","description":"","protected":false,"restricted":false,"downloadRestricted":false,"containsPHI":false,"createdBy":{"user":"user-akumar_counsyl"},"version":0,"storageCost":0,"pendingTransfer":null,"tags":[],"defaultInstanceType":"mem2_hdd2_x2","archivalState":"live","archivalProgress":null,"totalSponsoredEgressBytes":0,"consumedSponsoredEgressBytes":0,"atSpendingLimit":false}'} headers: Connection: [keep-alive] Content-Length: ['654'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:39:19 GMT'] + Date: ['Wed, 14 Nov 2018 22:43:30 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593559393-465891] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235410525-680904] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -92,24 +92,24 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kP5j0XX7g5PY21Z8jFy7Z/newFolder + uri: https://api.dnanexus.com/project-FPfBB4Q09qKG39QfGzjfYykv/newFolder response: - body: {string: '{"id":"project-FP9kP5j0XX7g5PY21Z8jFy7Z"}'} + body: {string: '{"id":"project-FPfBB4Q09qKG39QfGzjfYykv"}'} headers: Connection: [keep-alive] Content-Length: ['41'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:39:19 GMT'] + Date: ['Wed, 14 Nov 2018 22:43:30 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593559514-130301] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235410642-583349] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"name": "folder_file.txt", "folder": "/temp_folder", "project": "project-FP9kP5j0XX7g5PY21Z8jFy7Z", - "nonce": "b''3a3a75d8ad805b14485fc30bc9368478a2ba2095897dfffa69d26381cc5d44be''1540593559.588342"}' + body: '{"name": "folder_file.txt", "folder": "/temp_folder", "project": "project-FPfBB4Q09qKG39QfGzjfYykv", + "nonce": "b''f01f55f13440c4a6df0852f7c75447acc75f7a8b29d13618cff76bdf0b6da8a0''1542235410.693614"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -131,17 +131,17 @@ interactions: method: POST uri: https://api.dnanexus.com/file/new response: - body: {string: '{"id":"file-FP9kP5j0XX7vQbbj1bP1gJp6"}'} + body: {string: '{"id":"file-FPfBB4Q09qK74q7PJ0y9q3yq"}'} headers: Connection: [keep-alive] Content-Length: ['38'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:39:19 GMT'] + Date: ['Wed, 14 Nov 2018 22:43:30 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593559638-843647] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235410742-225780] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -165,19 +165,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kP5j0XX7g5PY21Z8jFy7Z/describe + uri: https://api.dnanexus.com/project-FPfBB4Q09qKG39QfGzjfYykv/describe response: - body: {string: '{"id":"project-FP9kP5j0XX7g5PY21Z8jFy7Z","fileUploadParameters":{"maximumPartSize":5368709120,"minimumPartSize":5242880,"maximumFileSize":5497558138880,"maximumNumParts":10000,"emptyLastPartAllowed":true}}'} + body: {string: '{"id":"project-FPfBB4Q09qKG39QfGzjfYykv","fileUploadParameters":{"maximumPartSize":5368709120,"minimumPartSize":5242880,"maximumFileSize":5497558138880,"maximumNumParts":10000,"emptyLastPartAllowed":true}}'} headers: Connection: [keep-alive] Content-Length: ['205'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:39:19 GMT'] + Date: ['Wed, 14 Nov 2018 22:43:30 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593559768-273053] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235410931-991501] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -201,19 +201,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kP5j0XX7vQbbj1bP1gJp6/upload + uri: https://api.dnanexus.com/file-FPfBB4Q09qK74q7PJ0y9q3yq/upload response: - body: {string: '{"url":"https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/ff54/file/open/file-FP9kP5j0XX7vQbbj1bP1gJp6/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181026%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181026T223919Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=a28335441dd322ff044b3a6042c3e9f122f5ff7a0f9571fda3d1bb472d0f7290","headers":{"host":"dnanexus-platform-upload-prod.s3.amazonaws.com","content-type":"binary/octet-stream","x-amz-server-side-encryption":"AES256","content-md5":"jXd/OF09/siBXSD3SWAm3A==","content-length":"4"},"expires":1540593679895}'} + body: {string: '{"url":"https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/4956/file/open/file-FPfBB4Q09qK74q7PJ0y9q3yq/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181114%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181114T224331Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=5963baedf6ab4e457c71200ef6245f313306e9b8959f89f1e294ed9ee285758c","headers":{"host":"dnanexus-platform-upload-prod.s3.amazonaws.com","content-type":"binary/octet-stream","x-amz-server-side-encryption":"AES256","content-md5":"jXd/OF09/siBXSD3SWAm3A==","content-length":"4"},"expires":1542235531073}'} headers: Connection: [keep-alive] Content-Length: ['692'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:39:19 GMT'] + Date: ['Wed, 14 Nov 2018 22:43:31 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593559884-564238] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235411060-459901] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -241,21 +241,21 @@ interactions: : - !!binary | QUVTMjU2 method: PUT - uri: https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/ff54/file/open/file-FP9kP5j0XX7vQbbj1bP1gJp6/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181026%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181026T223919Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=a28335441dd322ff044b3a6042c3e9f122f5ff7a0f9571fda3d1bb472d0f7290 + uri: https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/4956/file/open/file-FPfBB4Q09qK74q7PJ0y9q3yq/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181114%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181114T224331Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=5963baedf6ab4e457c71200ef6245f313306e9b8959f89f1e294ed9ee285758c response: body: {string: ''} headers: Content-Length: ['0'] - Date: ['Fri, 26 Oct 2018 22:39:21 GMT'] + Date: ['Wed, 14 Nov 2018 22:43:33 GMT'] ETag: ['"8d777f385d3dfec8815d20f7496026dc"'] Server: [AmazonS3] - x-amz-expiration: ['expiry-date="Sat, 17 Nov 2018 00:00:00 GMT", rule-id="3weekpurge"'] - x-amz-id-2: [0M0txA73b5Yf7afs4LU7EracTUWKO4ZfCZJ/4mPDWpxqaWAGpWzLFBxQRX4tKDcKu2E5LS73Urg=] - x-amz-request-id: [600553C8E56D50B4] + x-amz-expiration: ['expiry-date="Thu, 06 Dec 2018 00:00:00 GMT", rule-id="3weekpurge"'] + x-amz-id-2: [JhJH+TkT1l0A5xiGOTbUP4fWSXPvTCFQulHsGPH6ZUzPO2XGLe05ZPP8iXoneW4NwwlK+KNW0gY=] + x-amz-request-id: [8EAB1BF7AF3C2DFC] x-amz-server-side-encryption: [AES256] status: {code: 200, message: OK} - request: - body: '{"fields": {"state": true}, "project": "project-FP9kP5j0XX7g5PY21Z8jFy7Z"}' + body: '{"fields": {"state": true}, "project": "project-FPfBB4Q09qKG39QfGzjfYykv"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -275,19 +275,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kP5j0XX7vQbbj1bP1gJp6/describe + uri: https://api.dnanexus.com/file-FPfBB4Q09qK74q7PJ0y9q3yq/describe response: - body: {string: '{"id":"file-FP9kP5j0XX7vQbbj1bP1gJp6","state":"open"}'} + body: {string: '{"id":"file-FPfBB4Q09qK74q7PJ0y9q3yq","state":"open"}'} headers: Connection: [keep-alive] Content-Length: ['53'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:39:20 GMT'] + Date: ['Wed, 14 Nov 2018 22:43:32 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593560477-988228] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235412255-570548] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -311,23 +311,23 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kP5j0XX7vQbbj1bP1gJp6/close + uri: https://api.dnanexus.com/file-FPfBB4Q09qK74q7PJ0y9q3yq/close response: - body: {string: '{"id":"file-FP9kP5j0XX7vQbbj1bP1gJp6"}'} + body: {string: '{"id":"file-FPfBB4Q09qK74q7PJ0y9q3yq"}'} headers: Connection: [keep-alive] Content-Length: ['38'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:39:20 GMT'] + Date: ['Wed, 14 Nov 2018 22:43:32 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593560588-316766] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235412353-641812] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"fields": {"state": true}, "project": "project-FP9kP5j0XX7g5PY21Z8jFy7Z"}' + body: '{"fields": {"state": true}, "project": "project-FPfBB4Q09qKG39QfGzjfYykv"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -347,23 +347,23 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kP5j0XX7vQbbj1bP1gJp6/describe + uri: https://api.dnanexus.com/file-FPfBB4Q09qK74q7PJ0y9q3yq/describe response: - body: {string: '{"id":"file-FP9kP5j0XX7vQbbj1bP1gJp6","state":"closing"}'} + body: {string: '{"id":"file-FPfBB4Q09qK74q7PJ0y9q3yq","state":"closing"}'} headers: Connection: [keep-alive] Content-Length: ['56'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:39:20 GMT'] + Date: ['Wed, 14 Nov 2018 22:43:32 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593560726-86371] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235412471-688623] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"fields": {"state": true}, "project": "project-FP9kP5j0XX7g5PY21Z8jFy7Z"}' + body: '{"fields": {"state": true}, "project": "project-FPfBB4Q09qKG39QfGzjfYykv"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -383,23 +383,23 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kP5j0XX7vQbbj1bP1gJp6/describe + uri: https://api.dnanexus.com/file-FPfBB4Q09qK74q7PJ0y9q3yq/describe response: - body: {string: '{"id":"file-FP9kP5j0XX7vQbbj1bP1gJp6","state":"closed"}'} + body: {string: '{"id":"file-FPfBB4Q09qK74q7PJ0y9q3yq","state":"closed"}'} headers: Connection: [keep-alive] Content-Length: ['55'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:39:22 GMT'] + Date: ['Wed, 14 Nov 2018 22:43:34 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593562903-412603] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235414590-991716] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"name": "TestCopy.test_dx_to_same_dx_pass.c1d6e387", "level": "VIEW", + body: '{"name": "TestCopy.test_dx_to_same_dx_pass.f28f8ee8", "level": "VIEW", "limit": 2}' headers: ? !!binary | @@ -422,22 +422,22 @@ interactions: method: POST uri: https://api.dnanexus.com/system/findProjects response: - body: {string: '{"results":[{"id":"project-FP9kP5j0XX7g5PY21Z8jFy7Z","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} + body: {string: '{"results":[{"id":"project-FPfBB4Q09qKG39QfGzjfYykv","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} headers: Connection: [keep-alive] Content-Length: ['147'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:39:23 GMT'] + Date: ['Wed, 14 Nov 2018 22:43:34 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593563047-35355] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235414704-304062] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: body: '{"objects": [{"name": "folder_file.txt", "folder": "/temp_folder", "project": - "project-FP9kP5j0XX7g5PY21Z8jFy7Z", "batchsize": 2}]}' + "project-FPfBB4Q09qKG39QfGzjfYykv", "batchsize": 2}]}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -459,21 +459,21 @@ interactions: method: POST uri: https://api.dnanexus.com/system/resolveDataObjects response: - body: {string: '{"results":[[{"project":"project-FP9kP5j0XX7g5PY21Z8jFy7Z","id":"file-FP9kP5j0XX7vQbbj1bP1gJp6"}]]}'} + body: {string: '{"results":[[{"project":"project-FPfBB4Q09qKG39QfGzjfYykv","id":"file-FPfBB4Q09qK74q7PJ0y9q3yq"}]]}'} headers: Connection: [keep-alive] Content-Length: ['99'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:39:23 GMT'] + Date: ['Wed, 14 Nov 2018 22:43:34 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593563228-775692] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235414817-424399] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"project": "project-FP9kP5j0XX7g5PY21Z8jFy7Z"}' + body: '{"project": "project-FPfBB4Q09qKG39QfGzjfYykv"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -493,23 +493,23 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kP5j0XX7vQbbj1bP1gJp6/describe + uri: https://api.dnanexus.com/file-FPfBB4Q09qK74q7PJ0y9q3yq/describe response: - body: {string: '{"id":"file-FP9kP5j0XX7vQbbj1bP1gJp6","project":"project-FP9kP5j0XX7g5PY21Z8jFy7Z","class":"file","sponsored":false,"name":"folder_file.txt","types":[],"state":"closed","hidden":false,"links":[],"folder":"/temp_folder","tags":[],"created":1540593559000,"modified":1540593561564,"createdBy":{"user":"user-akumar_counsyl"},"media":"text/plain","archivalState":"live","size":4}'} + body: {string: '{"id":"file-FPfBB4Q09qK74q7PJ0y9q3yq","project":"project-FPfBB4Q09qKG39QfGzjfYykv","class":"file","sponsored":false,"name":"folder_file.txt","types":[],"state":"closed","hidden":false,"links":[],"folder":"/temp_folder","tags":[],"created":1542235410000,"modified":1542235413033,"createdBy":{"user":"user-akumar_counsyl"},"media":"text/plain","archivalState":"live","size":4}'} headers: Connection: [keep-alive] Content-Length: ['374'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:39:23 GMT'] + Date: ['Wed, 14 Nov 2018 22:43:34 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593563410-740700] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235414909-664965] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"name": "TestCopy.test_dx_to_same_dx_pass.c1d6e387", "level": "VIEW", + body: '{"name": "TestCopy.test_dx_to_same_dx_pass.f28f8ee8", "level": "VIEW", "limit": 2}' headers: ? !!binary | @@ -532,21 +532,21 @@ interactions: method: POST uri: https://api.dnanexus.com/system/findProjects response: - body: {string: '{"results":[{"id":"project-FP9kP5j0XX7g5PY21Z8jFy7Z","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} + body: {string: '{"results":[{"id":"project-FPfBB4Q09qKG39QfGzjfYykv","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} headers: Connection: [keep-alive] Content-Length: ['147'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:39:23 GMT'] + Date: ['Wed, 14 Nov 2018 22:43:35 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593563582-98589] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235415061-591545] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"project": "project-FP9kP5j0XX7g5PY21Z8jFy7Z"}' + body: '{"project": "project-FPfBB4Q09qKG39QfGzjfYykv"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -566,19 +566,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kP5j0XX7vQbbj1bP1gJp6/describe + uri: https://api.dnanexus.com/file-FPfBB4Q09qK74q7PJ0y9q3yq/describe response: - body: {string: '{"id":"file-FP9kP5j0XX7vQbbj1bP1gJp6","project":"project-FP9kP5j0XX7g5PY21Z8jFy7Z","class":"file","sponsored":false,"name":"folder_file.txt","types":[],"state":"closed","hidden":false,"links":[],"folder":"/temp_folder","tags":[],"created":1540593559000,"modified":1540593561564,"createdBy":{"user":"user-akumar_counsyl"},"media":"text/plain","archivalState":"live","size":4}'} + body: {string: '{"id":"file-FPfBB4Q09qK74q7PJ0y9q3yq","project":"project-FPfBB4Q09qKG39QfGzjfYykv","class":"file","sponsored":false,"name":"folder_file.txt","types":[],"state":"closed","hidden":false,"links":[],"folder":"/temp_folder","tags":[],"created":1542235410000,"modified":1542235413033,"createdBy":{"user":"user-akumar_counsyl"},"media":"text/plain","archivalState":"live","size":4}'} headers: Connection: [keep-alive] Content-Length: ['374'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:39:23 GMT'] + Date: ['Wed, 14 Nov 2018 22:43:35 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593563766-589489] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235415263-564594] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -602,19 +602,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kP5j0XX7g5PY21Z8jFy7Z/destroy + uri: https://api.dnanexus.com/project-FPfBB4Q09qKG39QfGzjfYykv/destroy response: - body: {string: '{"id":"project-FP9kP5j0XX7g5PY21Z8jFy7Z"}'} + body: {string: '{"id":"project-FPfBB4Q09qKG39QfGzjfYykv"}'} headers: Connection: [keep-alive] Content-Length: ['41'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:39:26 GMT'] + Date: ['Wed, 14 Nov 2018 22:43:39 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593564084-902784] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235415361-578360] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} version: 1 diff --git a/stor/tests/cassettes_py3/TestCopy/test_move_diff_project_fail.yaml b/stor_dx/stor_dx/tests/cassettes_py3/TestCopy/test_move_diff_project_fail.yaml similarity index 74% rename from stor/tests/cassettes_py3/TestCopy/test_move_diff_project_fail.yaml rename to stor_dx/stor_dx/tests/cassettes_py3/TestCopy/test_move_diff_project_fail.yaml index f1b9f726..335c6d27 100644 --- a/stor/tests/cassettes_py3/TestCopy/test_move_diff_project_fail.yaml +++ b/stor_dx/stor_dx/tests/cassettes_py3/TestCopy/test_move_diff_project_fail.yaml @@ -1,6 +1,6 @@ interactions: - request: - body: '{"name": "TestCopy.test_move_diff_project_fail.0bc06b4f"}' + body: '{"name": "TestCopy.test_move_diff_project_fail.92bb6fd0"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -22,17 +22,17 @@ interactions: method: POST uri: https://api.dnanexus.com/project/new response: - body: {string: '{"id":"project-FP9kP7Q0K7yg9xPX1ZFQgF3V"}'} + body: {string: '{"id":"project-FPfBB6j04vZxXKkQ3Z455Gzg"}'} headers: Connection: [keep-alive] Content-Length: ['41'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:39:26 GMT'] + Date: ['Wed, 14 Nov 2018 22:43:39 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593566842-598647] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235419452-815121] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -56,19 +56,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kP7Q0K7yg9xPX1ZFQgF3V/describe + uri: https://api.dnanexus.com/project-FPfBB6j04vZxXKkQ3Z455Gzg/describe response: - body: {string: '{"id":"project-FP9kP7Q0K7yg9xPX1ZFQgF3V","name":"TestCopy.test_move_diff_project_fail.0bc06b4f","class":"project","created":1540593566000,"modified":1540593566000,"billTo":"org-counsyl","level":"ADMINISTER","dataUsage":0,"sponsoredDataUsage":0,"region":"aws:us-east-1","summary":"","description":"","protected":false,"restricted":false,"downloadRestricted":false,"containsPHI":false,"createdBy":{"user":"user-akumar_counsyl"},"version":0,"storageCost":0,"pendingTransfer":null,"tags":[],"defaultInstanceType":"mem2_hdd2_x2","archivalState":"live","archivalProgress":null,"totalSponsoredEgressBytes":0,"consumedSponsoredEgressBytes":0,"atSpendingLimit":false}'} + body: {string: '{"id":"project-FPfBB6j04vZxXKkQ3Z455Gzg","name":"TestCopy.test_move_diff_project_fail.92bb6fd0","class":"project","created":1542235419000,"modified":1542235419000,"billTo":"org-counsyl","level":"ADMINISTER","dataUsage":0,"sponsoredDataUsage":0,"region":"aws:us-east-1","summary":"","description":"","protected":false,"restricted":false,"downloadRestricted":false,"containsPHI":false,"createdBy":{"user":"user-akumar_counsyl"},"version":0,"storageCost":0,"pendingTransfer":null,"tags":[],"defaultInstanceType":"mem2_hdd2_x2","archivalState":"live","archivalProgress":null,"totalSponsoredEgressBytes":0,"consumedSponsoredEgressBytes":0,"atSpendingLimit":false}'} headers: Connection: [keep-alive] Content-Length: ['658'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:39:27 GMT'] + Date: ['Wed, 14 Nov 2018 22:43:40 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593566973-123360] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235419990-620110] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -92,24 +92,24 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kP7Q0K7yg9xPX1ZFQgF3V/newFolder + uri: https://api.dnanexus.com/project-FPfBB6j04vZxXKkQ3Z455Gzg/newFolder response: - body: {string: '{"id":"project-FP9kP7Q0K7yg9xPX1ZFQgF3V"}'} + body: {string: '{"id":"project-FPfBB6j04vZxXKkQ3Z455Gzg"}'} headers: Connection: [keep-alive] Content-Length: ['41'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:39:27 GMT'] + Date: ['Wed, 14 Nov 2018 22:43:40 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593567097-901080] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235420106-153102] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"name": "folder_file.txt", "folder": "/", "project": "project-FP9kP7Q0K7yg9xPX1ZFQgF3V", - "nonce": "b''76a4f02acb6d727ceed0ba0347ad8c82122e949df97e5e90b66c76b6c0e7a3a8''1540593567.160095"}' + body: '{"name": "folder_file.txt", "folder": "/", "project": "project-FPfBB6j04vZxXKkQ3Z455Gzg", + "nonce": "b''ce8f9117b101ae48416699ff29b7da73abf900ef3b7be7a6d8cde9a8b67d08b5''1542235420.329419"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -131,17 +131,17 @@ interactions: method: POST uri: https://api.dnanexus.com/file/new response: - body: {string: '{"id":"file-FP9kP7j0K7ykyPz44YqJxVbK"}'} + body: {string: '{"id":"file-FPfBB7004vZxXKkQ3Z455Gzp"}'} headers: Connection: [keep-alive] Content-Length: ['38'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:39:27 GMT'] + Date: ['Wed, 14 Nov 2018 22:43:40 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593567256-741533] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235420374-320346] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -165,19 +165,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kP7Q0K7yg9xPX1ZFQgF3V/describe + uri: https://api.dnanexus.com/project-FPfBB6j04vZxXKkQ3Z455Gzg/describe response: - body: {string: '{"id":"project-FP9kP7Q0K7yg9xPX1ZFQgF3V","fileUploadParameters":{"maximumPartSize":5368709120,"minimumPartSize":5242880,"maximumFileSize":5497558138880,"maximumNumParts":10000,"emptyLastPartAllowed":true}}'} + body: {string: '{"id":"project-FPfBB6j04vZxXKkQ3Z455Gzg","fileUploadParameters":{"maximumPartSize":5368709120,"minimumPartSize":5242880,"maximumFileSize":5497558138880,"maximumNumParts":10000,"emptyLastPartAllowed":true}}'} headers: Connection: [keep-alive] Content-Length: ['205'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:39:27 GMT'] + Date: ['Wed, 14 Nov 2018 22:43:40 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593567409-650344] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235420646-868308] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -201,19 +201,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kP7j0K7ykyPz44YqJxVbK/upload + uri: https://api.dnanexus.com/file-FPfBB7004vZxXKkQ3Z455Gzp/upload response: - body: {string: '{"url":"https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/f2d9/file/open/file-FP9kP7j0K7ykyPz44YqJxVbK/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181026%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181026T223927Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=86d86a7c5d5ab4fe520f155115690f3ae141c39b286e0678b17ec3e6c4c049a3","headers":{"host":"dnanexus-platform-upload-prod.s3.amazonaws.com","content-type":"binary/octet-stream","x-amz-server-side-encryption":"AES256","content-md5":"jXd/OF09/siBXSD3SWAm3A==","content-length":"4"},"expires":1540593687536}'} + body: {string: '{"url":"https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/78a8/file/open/file-FPfBB7004vZxXKkQ3Z455Gzp/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181114%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181114T224341Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=2bf9ba7ec63f4b54cadb0be3c0d69cabbc82e3779c6a9149566d274744085526","headers":{"host":"dnanexus-platform-upload-prod.s3.amazonaws.com","content-type":"binary/octet-stream","x-amz-server-side-encryption":"AES256","content-md5":"jXd/OF09/siBXSD3SWAm3A==","content-length":"4"},"expires":1542235541026}'} headers: Connection: [keep-alive] Content-Length: ['692'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:39:27 GMT'] + Date: ['Wed, 14 Nov 2018 22:43:41 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593567523-676764] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235420959-878058] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -241,21 +241,21 @@ interactions: : - !!binary | QUVTMjU2 method: PUT - uri: https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/f2d9/file/open/file-FP9kP7j0K7ykyPz44YqJxVbK/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181026%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181026T223927Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=86d86a7c5d5ab4fe520f155115690f3ae141c39b286e0678b17ec3e6c4c049a3 + uri: https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/78a8/file/open/file-FPfBB7004vZxXKkQ3Z455Gzp/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181114%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181114T224341Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=2bf9ba7ec63f4b54cadb0be3c0d69cabbc82e3779c6a9149566d274744085526 response: body: {string: ''} headers: Content-Length: ['0'] - Date: ['Fri, 26 Oct 2018 22:39:28 GMT'] + Date: ['Wed, 14 Nov 2018 22:43:42 GMT'] ETag: ['"8d777f385d3dfec8815d20f7496026dc"'] Server: [AmazonS3] - x-amz-expiration: ['expiry-date="Sat, 17 Nov 2018 00:00:00 GMT", rule-id="3weekpurge"'] - x-amz-id-2: [Sda/sgFDQhhj9fusbGxKiSC/ZnsclkG5qTSobhjUwZnKw0w16Df8kbYFh+JTC720EZPLu4yTKIY=] - x-amz-request-id: [11DBC03CAC740F56] + x-amz-expiration: ['expiry-date="Thu, 06 Dec 2018 00:00:00 GMT", rule-id="3weekpurge"'] + x-amz-id-2: [Qx92iYN7yOyRp2Q6mf7YkVVkwPPcwrurTZ98aoKk+YXCZB6pbupZfxrGD1L2c1eS+aUkrRruvCk=] + x-amz-request-id: [AD133B30B5DC54C6] x-amz-server-side-encryption: [AES256] status: {code: 200, message: OK} - request: - body: '{"fields": {"state": true}, "project": "project-FP9kP7Q0K7yg9xPX1ZFQgF3V"}' + body: '{"fields": {"state": true}, "project": "project-FPfBB6j04vZxXKkQ3Z455Gzg"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -275,19 +275,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kP7j0K7ykyPz44YqJxVbK/describe + uri: https://api.dnanexus.com/file-FPfBB7004vZxXKkQ3Z455Gzp/describe response: - body: {string: '{"id":"file-FP9kP7j0K7ykyPz44YqJxVbK","state":"open"}'} + body: {string: '{"id":"file-FPfBB7004vZxXKkQ3Z455Gzp","state":"open"}'} headers: Connection: [keep-alive] Content-Length: ['53'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:39:28 GMT'] + Date: ['Wed, 14 Nov 2018 22:43:42 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593568083-721794] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235422184-804235] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -311,23 +311,23 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kP7j0K7ykyPz44YqJxVbK/close + uri: https://api.dnanexus.com/file-FPfBB7004vZxXKkQ3Z455Gzp/close response: - body: {string: '{"id":"file-FP9kP7j0K7ykyPz44YqJxVbK"}'} + body: {string: '{"id":"file-FPfBB7004vZxXKkQ3Z455Gzp"}'} headers: Connection: [keep-alive] Content-Length: ['38'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:39:28 GMT'] + Date: ['Wed, 14 Nov 2018 22:43:42 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593568199-204812] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235422367-510697] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"fields": {"state": true}, "project": "project-FP9kP7Q0K7yg9xPX1ZFQgF3V"}' + body: '{"fields": {"state": true}, "project": "project-FPfBB6j04vZxXKkQ3Z455Gzg"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -347,23 +347,23 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kP7j0K7ykyPz44YqJxVbK/describe + uri: https://api.dnanexus.com/file-FPfBB7004vZxXKkQ3Z455Gzp/describe response: - body: {string: '{"id":"file-FP9kP7j0K7ykyPz44YqJxVbK","state":"closing"}'} + body: {string: '{"id":"file-FPfBB7004vZxXKkQ3Z455Gzp","state":"closing"}'} headers: Connection: [keep-alive] Content-Length: ['56'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:39:28 GMT'] + Date: ['Wed, 14 Nov 2018 22:43:42 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593568340-335035] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235422556-427614] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"fields": {"state": true}, "project": "project-FP9kP7Q0K7yg9xPX1ZFQgF3V"}' + body: '{"fields": {"state": true}, "project": "project-FPfBB6j04vZxXKkQ3Z455Gzg"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -383,19 +383,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kP7j0K7ykyPz44YqJxVbK/describe + uri: https://api.dnanexus.com/file-FPfBB7004vZxXKkQ3Z455Gzp/describe response: - body: {string: '{"id":"file-FP9kP7j0K7ykyPz44YqJxVbK","state":"closed"}'} + body: {string: '{"id":"file-FPfBB7004vZxXKkQ3Z455Gzp","state":"closed"}'} headers: Connection: [keep-alive] Content-Length: ['55'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:39:30 GMT'] + Date: ['Wed, 14 Nov 2018 22:43:44 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593570465-702850] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235424741-216966] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -421,17 +421,17 @@ interactions: method: POST uri: https://api.dnanexus.com/project/new response: - body: {string: '{"id":"project-FP9kP8Q0F3BFq57K4PxxVB2g"}'} + body: {string: '{"id":"project-FPfBB80057J44Y2v3YJZF83g"}'} headers: Connection: [keep-alive] Content-Length: ['41'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:39:30 GMT'] + Date: ['Wed, 14 Nov 2018 22:43:44 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593570584-247097] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235424893-350509] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -458,21 +458,21 @@ interactions: method: POST uri: https://api.dnanexus.com/system/findProjects response: - body: {string: '{"results":[{"id":"project-FP9kP8Q0F3BFq57K4PxxVB2g","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} + body: {string: '{"results":[{"id":"project-FPfBB80057J44Y2v3YJZF83g","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} headers: Connection: [keep-alive] Content-Length: ['147'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:39:30 GMT'] + Date: ['Wed, 14 Nov 2018 22:43:45 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593570709-460398] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235425146-335324] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"name": "TestCopy.test_move_diff_project_fail.0bc06b4f", "level": "VIEW", + body: '{"name": "TestCopy.test_move_diff_project_fail.92bb6fd0", "level": "VIEW", "limit": 2}' headers: ? !!binary | @@ -495,17 +495,17 @@ interactions: method: POST uri: https://api.dnanexus.com/system/findProjects response: - body: {string: '{"results":[{"id":"project-FP9kP7Q0K7yg9xPX1ZFQgF3V","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} + body: {string: '{"results":[{"id":"project-FPfBB6j04vZxXKkQ3Z455Gzg","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} headers: Connection: [keep-alive] Content-Length: ['147'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:39:30 GMT'] + Date: ['Wed, 14 Nov 2018 22:43:45 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593570845-178958] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235425630-642790] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -529,19 +529,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kP8Q0F3BFq57K4PxxVB2g/destroy + uri: https://api.dnanexus.com/project-FPfBB80057J44Y2v3YJZF83g/destroy response: - body: {string: '{"id":"project-FP9kP8Q0F3BFq57K4PxxVB2g"}'} + body: {string: '{"id":"project-FPfBB80057J44Y2v3YJZF83g"}'} headers: Connection: [keep-alive] Content-Length: ['41'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:39:33 GMT'] + Date: ['Wed, 14 Nov 2018 22:43:48 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593570977-46624] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235425746-447901] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -565,19 +565,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kP7Q0K7yg9xPX1ZFQgF3V/destroy + uri: https://api.dnanexus.com/project-FPfBB6j04vZxXKkQ3Z455Gzg/destroy response: - body: {string: '{"id":"project-FP9kP7Q0K7yg9xPX1ZFQgF3V"}'} + body: {string: '{"id":"project-FPfBB6j04vZxXKkQ3Z455Gzg"}'} headers: Connection: [keep-alive] Content-Length: ['41'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:39:35 GMT'] + Date: ['Wed, 14 Nov 2018 22:43:52 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593573187-30988] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235429007-521202] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} version: 1 diff --git a/stor/tests/cassettes_py3/TestCopy/test_other_obs_to_dx.yaml b/stor_dx/stor_dx/tests/cassettes_py3/TestCopy/test_other_obs_to_dx.yaml similarity index 73% rename from stor/tests/cassettes_py3/TestCopy/test_other_obs_to_dx.yaml rename to stor_dx/stor_dx/tests/cassettes_py3/TestCopy/test_other_obs_to_dx.yaml index 40b48430..0117274e 100644 --- a/stor/tests/cassettes_py3/TestCopy/test_other_obs_to_dx.yaml +++ b/stor_dx/stor_dx/tests/cassettes_py3/TestCopy/test_other_obs_to_dx.yaml @@ -1,6 +1,6 @@ interactions: - request: - body: '{"name": "TestCopy.test_other_obs_to_dx.9a728bbb"}' + body: '{"name": "TestCopy.test_other_obs_to_dx.782494a2"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -22,17 +22,17 @@ interactions: method: POST uri: https://api.dnanexus.com/project/new response: - body: {string: '{"id":"project-FP9kPB00gGGv717x1b2qfg8Q"}'} + body: {string: '{"id":"project-FPfBBB00f78KYK2Q3YV9b2B4"}'} headers: Connection: [keep-alive] Content-Length: ['41'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:39:36 GMT'] + Date: ['Wed, 14 Nov 2018 22:43:52 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593576073-100492] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235432853-810701] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -56,19 +56,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kPB00gGGv717x1b2qfg8Q/describe + uri: https://api.dnanexus.com/project-FPfBBB00f78KYK2Q3YV9b2B4/describe response: - body: {string: '{"id":"project-FP9kPB00gGGv717x1b2qfg8Q","name":"TestCopy.test_other_obs_to_dx.9a728bbb","class":"project","created":1540593576000,"modified":1540593576000,"billTo":"org-counsyl","level":"ADMINISTER","dataUsage":0,"sponsoredDataUsage":0,"region":"aws:us-east-1","summary":"","description":"","protected":false,"restricted":false,"downloadRestricted":false,"containsPHI":false,"createdBy":{"user":"user-akumar_counsyl"},"version":0,"storageCost":0,"pendingTransfer":null,"tags":[],"defaultInstanceType":"mem2_hdd2_x2","archivalState":"live","archivalProgress":null,"totalSponsoredEgressBytes":0,"consumedSponsoredEgressBytes":0,"atSpendingLimit":false}'} + body: {string: '{"id":"project-FPfBBB00f78KYK2Q3YV9b2B4","name":"TestCopy.test_other_obs_to_dx.782494a2","class":"project","created":1542235432000,"modified":1542235432000,"billTo":"org-counsyl","level":"ADMINISTER","dataUsage":0,"sponsoredDataUsage":0,"region":"aws:us-east-1","summary":"","description":"","protected":false,"restricted":false,"downloadRestricted":false,"containsPHI":false,"createdBy":{"user":"user-akumar_counsyl"},"version":0,"storageCost":0,"pendingTransfer":null,"tags":[],"defaultInstanceType":"mem2_hdd2_x2","archivalState":"live","archivalProgress":null,"totalSponsoredEgressBytes":0,"consumedSponsoredEgressBytes":0,"atSpendingLimit":false}'} headers: Connection: [keep-alive] Content-Length: ['651'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:39:36 GMT'] + Date: ['Wed, 14 Nov 2018 22:43:53 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593576214-158451] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235432969-705368] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -92,24 +92,24 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kPB00gGGv717x1b2qfg8Q/newFolder + uri: https://api.dnanexus.com/project-FPfBBB00f78KYK2Q3YV9b2B4/newFolder response: - body: {string: '{"id":"project-FP9kPB00gGGv717x1b2qfg8Q"}'} + body: {string: '{"id":"project-FPfBBB00f78KYK2Q3YV9b2B4"}'} headers: Connection: [keep-alive] Content-Length: ['41'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:39:36 GMT'] + Date: ['Wed, 14 Nov 2018 22:43:53 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593576347-258399] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235433107-312202] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"name": "folder_file.txt", "folder": "/temp_folder", "project": "project-FP9kPB00gGGv717x1b2qfg8Q", - "nonce": "b''76bb4c82c17e9faf90180e365eadd561399e5a6a85d5d5038e429c43c3078683''1540593576.419975"}' + body: '{"name": "folder_file.txt", "folder": "/temp_folder", "project": "project-FPfBBB00f78KYK2Q3YV9b2B4", + "nonce": "b''0a2dc843ca5f74b54adfd53a714ecf411c0175550340faa8cb1d3091c87610ec''1542235433.157884"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -131,17 +131,17 @@ interactions: method: POST uri: https://api.dnanexus.com/file/new response: - body: {string: '{"id":"file-FP9kPB00gGGkyPz44YqJxVbQ"}'} + body: {string: '{"id":"file-FPfBBB80f78Fgzq03ZJpv0YF"}'} headers: Connection: [keep-alive] Content-Length: ['38'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:39:36 GMT'] + Date: ['Wed, 14 Nov 2018 22:43:53 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593576468-269293] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235433204-848433] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -165,19 +165,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kPB00gGGv717x1b2qfg8Q/describe + uri: https://api.dnanexus.com/project-FPfBBB00f78KYK2Q3YV9b2B4/describe response: - body: {string: '{"id":"project-FP9kPB00gGGv717x1b2qfg8Q","fileUploadParameters":{"maximumPartSize":5368709120,"minimumPartSize":5242880,"maximumFileSize":5497558138880,"maximumNumParts":10000,"emptyLastPartAllowed":true}}'} + body: {string: '{"id":"project-FPfBBB00f78KYK2Q3YV9b2B4","fileUploadParameters":{"maximumPartSize":5368709120,"minimumPartSize":5242880,"maximumFileSize":5497558138880,"maximumNumParts":10000,"emptyLastPartAllowed":true}}'} headers: Connection: [keep-alive] Content-Length: ['205'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:39:36 GMT'] + Date: ['Wed, 14 Nov 2018 22:43:53 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593576625-352576] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235433362-37447] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -201,19 +201,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kPB00gGGkyPz44YqJxVbQ/upload + uri: https://api.dnanexus.com/file-FPfBBB80f78Fgzq03ZJpv0YF/upload response: - body: {string: '{"url":"https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/7e60/file/open/file-FP9kPB00gGGkyPz44YqJxVbQ/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181026%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181026T223936Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=d6b19e0dbfbb56d5a36f7cab1005b11445ef8c206965ba97150dc38309625081","headers":{"host":"dnanexus-platform-upload-prod.s3.amazonaws.com","content-type":"binary/octet-stream","x-amz-server-side-encryption":"AES256","content-md5":"jXd/OF09/siBXSD3SWAm3A==","content-length":"4"},"expires":1540593696757}'} + body: {string: '{"url":"https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/135e/file/open/file-FPfBBB80f78Fgzq03ZJpv0YF/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181114%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181114T224353Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=94c60370176d38a62334271d08c8f6fd947411f120b21726afd7c1ce69bf1837","headers":{"host":"dnanexus-platform-upload-prod.s3.amazonaws.com","content-type":"binary/octet-stream","x-amz-server-side-encryption":"AES256","content-md5":"jXd/OF09/siBXSD3SWAm3A==","content-length":"4"},"expires":1542235553485}'} headers: Connection: [keep-alive] Content-Length: ['692'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:39:36 GMT'] + Date: ['Wed, 14 Nov 2018 22:43:53 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593576740-224286] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235433466-382145] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -241,21 +241,21 @@ interactions: : - !!binary | QUVTMjU2 method: PUT - uri: https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/7e60/file/open/file-FP9kPB00gGGkyPz44YqJxVbQ/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181026%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181026T223936Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=d6b19e0dbfbb56d5a36f7cab1005b11445ef8c206965ba97150dc38309625081 + uri: https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/135e/file/open/file-FPfBBB80f78Fgzq03ZJpv0YF/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181114%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181114T224353Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=94c60370176d38a62334271d08c8f6fd947411f120b21726afd7c1ce69bf1837 response: body: {string: ''} headers: Content-Length: ['0'] - Date: ['Fri, 26 Oct 2018 22:39:38 GMT'] + Date: ['Wed, 14 Nov 2018 22:43:54 GMT'] ETag: ['"8d777f385d3dfec8815d20f7496026dc"'] Server: [AmazonS3] - x-amz-expiration: ['expiry-date="Sat, 17 Nov 2018 00:00:00 GMT", rule-id="3weekpurge"'] - x-amz-id-2: [kZrZ4VvyXuBIwkMdurBYGF5yjLDpCsKQ6lkn3EOcE56JUHx0iQmRqewJXqui/TnXEm5czrWECjo=] - x-amz-request-id: [81E1A6C4538160EB] + x-amz-expiration: ['expiry-date="Thu, 06 Dec 2018 00:00:00 GMT", rule-id="3weekpurge"'] + x-amz-id-2: [sJcMdXPeHtIGni7/4bjj8SxRCqEm93loy/cJ/pwSJqYU17JwhZKZSzxb8I/yMs/82jq/cbg8HN8=] + x-amz-request-id: [97CD990B0C6DEE95] x-amz-server-side-encryption: [AES256] status: {code: 200, message: OK} - request: - body: '{"fields": {"state": true}, "project": "project-FP9kPB00gGGv717x1b2qfg8Q"}' + body: '{"fields": {"state": true}, "project": "project-FPfBBB00f78KYK2Q3YV9b2B4"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -275,19 +275,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kPB00gGGkyPz44YqJxVbQ/describe + uri: https://api.dnanexus.com/file-FPfBBB80f78Fgzq03ZJpv0YF/describe response: - body: {string: '{"id":"file-FP9kPB00gGGkyPz44YqJxVbQ","state":"open"}'} + body: {string: '{"id":"file-FPfBBB80f78Fgzq03ZJpv0YF","state":"open"}'} headers: Connection: [keep-alive] Content-Length: ['53'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:39:37 GMT'] + Date: ['Wed, 14 Nov 2018 22:43:54 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593577315-197469] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235433982-370662] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -311,23 +311,23 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kPB00gGGkyPz44YqJxVbQ/close + uri: https://api.dnanexus.com/file-FPfBBB80f78Fgzq03ZJpv0YF/close response: - body: {string: '{"id":"file-FP9kPB00gGGkyPz44YqJxVbQ"}'} + body: {string: '{"id":"file-FPfBBB80f78Fgzq03ZJpv0YF"}'} headers: Connection: [keep-alive] Content-Length: ['38'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:39:37 GMT'] + Date: ['Wed, 14 Nov 2018 22:43:54 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593577426-209553] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235434087-469126] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"fields": {"state": true}, "project": "project-FP9kPB00gGGv717x1b2qfg8Q"}' + body: '{"fields": {"state": true}, "project": "project-FPfBBB00f78KYK2Q3YV9b2B4"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -347,23 +347,23 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kPB00gGGkyPz44YqJxVbQ/describe + uri: https://api.dnanexus.com/file-FPfBBB80f78Fgzq03ZJpv0YF/describe response: - body: {string: '{"id":"file-FP9kPB00gGGkyPz44YqJxVbQ","state":"closing"}'} + body: {string: '{"id":"file-FPfBBB80f78Fgzq03ZJpv0YF","state":"closing"}'} headers: Connection: [keep-alive] Content-Length: ['56'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:39:37 GMT'] + Date: ['Wed, 14 Nov 2018 22:43:54 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593577555-753316] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235434397-438379] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"fields": {"state": true}, "project": "project-FP9kPB00gGGv717x1b2qfg8Q"}' + body: '{"fields": {"state": true}, "project": "project-FPfBBB00f78KYK2Q3YV9b2B4"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -383,19 +383,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kPB00gGGkyPz44YqJxVbQ/describe + uri: https://api.dnanexus.com/file-FPfBBB80f78Fgzq03ZJpv0YF/describe response: - body: {string: '{"id":"file-FP9kPB00gGGkyPz44YqJxVbQ","state":"closed"}'} + body: {string: '{"id":"file-FPfBBB80f78Fgzq03ZJpv0YF","state":"closed"}'} headers: Connection: [keep-alive] Content-Length: ['55'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:39:39 GMT'] + Date: ['Wed, 14 Nov 2018 22:43:56 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593579676-960905] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235436563-408738] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -419,19 +419,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kPB00gGGv717x1b2qfg8Q/destroy + uri: https://api.dnanexus.com/project-FPfBBB00f78KYK2Q3YV9b2B4/destroy response: - body: {string: '{"id":"project-FP9kPB00gGGv717x1b2qfg8Q"}'} + body: {string: '{"id":"project-FPfBBB00f78KYK2Q3YV9b2B4"}'} headers: Connection: [keep-alive] Content-Length: ['41'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:39:42 GMT'] + Date: ['Wed, 14 Nov 2018 22:43:59 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593579792-965] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235436710-886127] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} version: 1 diff --git a/stor/tests/cassettes_py3/TestCopy/test_posix_to_dx_fail.yaml b/stor_dx/stor_dx/tests/cassettes_py3/TestCopy/test_posix_to_dx_fail.yaml similarity index 60% rename from stor/tests/cassettes_py3/TestCopy/test_posix_to_dx_fail.yaml rename to stor_dx/stor_dx/tests/cassettes_py3/TestCopy/test_posix_to_dx_fail.yaml index c4305e90..125615c4 100644 --- a/stor/tests/cassettes_py3/TestCopy/test_posix_to_dx_fail.yaml +++ b/stor_dx/stor_dx/tests/cassettes_py3/TestCopy/test_posix_to_dx_fail.yaml @@ -1,6 +1,6 @@ interactions: - request: - body: '{"name": "TestCopy.test_posix_to_dx_fail.0d82c743"}' + body: '{"name": "TestCopy.test_posix_to_dx_fail.a9e9f8b4"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -22,17 +22,17 @@ interactions: method: POST uri: https://api.dnanexus.com/project/new response: - body: {string: '{"id":"project-FP9kPFj0bg4vQbbj1bP1gJp8"}'} + body: {string: '{"id":"project-FPfBBFj06pzFgzq03ZJpv0YJ"}'} headers: Connection: [keep-alive] Content-Length: ['41'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:39:43 GMT'] + Date: ['Wed, 14 Nov 2018 22:43:59 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593583016-663397] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235439513-639149] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -56,23 +56,23 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kPFj0bg4vQbbj1bP1gJp8/describe + uri: https://api.dnanexus.com/project-FPfBBFj06pzFgzq03ZJpv0YJ/describe response: - body: {string: '{"id":"project-FP9kPFj0bg4vQbbj1bP1gJp8","name":"TestCopy.test_posix_to_dx_fail.0d82c743","class":"project","created":1540593583000,"modified":1540593583000,"billTo":"org-counsyl","level":"ADMINISTER","dataUsage":0,"sponsoredDataUsage":0,"region":"aws:us-east-1","summary":"","description":"","protected":false,"restricted":false,"downloadRestricted":false,"containsPHI":false,"createdBy":{"user":"user-akumar_counsyl"},"version":0,"storageCost":0,"pendingTransfer":null,"tags":[],"defaultInstanceType":"mem2_hdd2_x2","archivalState":"live","archivalProgress":null,"totalSponsoredEgressBytes":0,"consumedSponsoredEgressBytes":0,"atSpendingLimit":false}'} + body: {string: '{"id":"project-FPfBBFj06pzFgzq03ZJpv0YJ","name":"TestCopy.test_posix_to_dx_fail.a9e9f8b4","class":"project","created":1542235439000,"modified":1542235439000,"billTo":"org-counsyl","level":"ADMINISTER","dataUsage":0,"sponsoredDataUsage":0,"region":"aws:us-east-1","summary":"","description":"","protected":false,"restricted":false,"downloadRestricted":false,"containsPHI":false,"createdBy":{"user":"user-akumar_counsyl"},"version":0,"storageCost":0,"pendingTransfer":null,"tags":[],"defaultInstanceType":"mem2_hdd2_x2","archivalState":"live","archivalProgress":null,"totalSponsoredEgressBytes":0,"consumedSponsoredEgressBytes":0,"atSpendingLimit":false}'} headers: Connection: [keep-alive] Content-Length: ['652'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:39:43 GMT'] + Date: ['Wed, 14 Nov 2018 22:43:59 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593583134-54509] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235439616-52175] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"name": "TestCopy.test_posix_to_dx_fail.0d82c743", "level": "VIEW", "limit": + body: '{"name": "TestCopy.test_posix_to_dx_fail.a9e9f8b4", "level": "VIEW", "limit": 2}' headers: ? !!binary | @@ -95,19 +95,58 @@ interactions: method: POST uri: https://api.dnanexus.com/system/findProjects response: - body: {string: '{"results":[{"id":"project-FP9kPFj0bg4vQbbj1bP1gJp8","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} + body: {string: '{"results":[{"id":"project-FPfBBFj06pzFgzq03ZJpv0YJ","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} headers: Connection: [keep-alive] Content-Length: ['147'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:39:43 GMT'] + Date: ['Wed, 14 Nov 2018 22:43:59 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593583249-236291] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235439805-781327] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} +- request: + body: '{"folder": "/random", "describe": {"fields": {"name": true, "folder": true}}, + "only": "folders", "includeHidden": false}' + headers: + ? !!binary | + QXV0aG9yaXphdGlvbg== + : - !!binary | + YmVhcmVyIHh2aWtXSmY1RWZ5b0ZLN3RzNThLZzAxTTIzZWZsT0Fx + ? !!binary | + Q29udGVudC1UeXBl + : - !!binary | + YXBwbGljYXRpb24vanNvbg== + ? !!binary | + RE5BbmV4dXMtQVBJ + : - !!binary | + MS4wLjA= + ? !!binary | + VXNlci1BZ2VudA== + : - !!binary | + ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp + dCk= + method: POST + uri: https://api.dnanexus.com/project-FPfBBFj06pzFgzq03ZJpv0YJ/listFolder + response: + body: {string: '{"error":{"type":"ResourceNotFound","message":"The specified folder + could not be found in project-FPfBBFj06pzFgzq03ZJpv0YJ"}}'} + headers: + Connection: [keep-alive] + Content-Type: [application/json] + Date: ['Wed, 14 Nov 2018 22:43:59 GMT'] + Server: [nginx] + Transfer-Encoding: [chunked] + Vary: [Accept-Encoding] + X-Content-Type-Options: [nosniff] + X-Powered-By: [Express] + X-Request-ID: [1542235439956-186283] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. + You can download it from https://wiki.dnanexus.com/Downloads#Install'] + status: {code: 404, message: Not Found} - request: body: '{}' headers: @@ -129,19 +168,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kPFj0bg4vQbbj1bP1gJp8/destroy + uri: https://api.dnanexus.com/project-FPfBBFj06pzFgzq03ZJpv0YJ/destroy response: - body: {string: '{"id":"project-FP9kPFj0bg4vQbbj1bP1gJp8"}'} + body: {string: '{"id":"project-FPfBBFj06pzFgzq03ZJpv0YJ"}'} headers: Connection: [keep-alive] Content-Length: ['41'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:39:45 GMT'] + Date: ['Wed, 14 Nov 2018 22:44:03 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593583380-30950] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235440327-189366] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} version: 1 diff --git a/stor/tests/cassettes_py3/TestCopy/test_posix_to_dx_file.yaml b/stor_dx/stor_dx/tests/cassettes_py3/TestCopy/test_posix_to_dx_file.yaml similarity index 69% rename from stor/tests/cassettes_py3/TestCopy/test_posix_to_dx_file.yaml rename to stor_dx/stor_dx/tests/cassettes_py3/TestCopy/test_posix_to_dx_file.yaml index 950f2674..781a88c0 100644 --- a/stor/tests/cassettes_py3/TestCopy/test_posix_to_dx_file.yaml +++ b/stor_dx/stor_dx/tests/cassettes_py3/TestCopy/test_posix_to_dx_file.yaml @@ -1,6 +1,6 @@ interactions: - request: - body: '{"name": "TestCopy.test_posix_to_dx_file.89367e97"}' + body: '{"name": "TestCopy.test_posix_to_dx_file.97279790"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -22,17 +22,17 @@ interactions: method: POST uri: https://api.dnanexus.com/project/new response: - body: {string: '{"id":"project-FP9kPG801j59yPz44YqJxVbX"}'} + body: {string: '{"id":"project-FPfBBJ0059xZ4Y2v3YJZF83j"}'} headers: Connection: [keep-alive] Content-Length: ['41'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:39:45 GMT'] + Date: ['Wed, 14 Nov 2018 22:44:04 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593585881-148249] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235444334-405700] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -56,23 +56,23 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kPG801j59yPz44YqJxVbX/describe + uri: https://api.dnanexus.com/project-FPfBBJ0059xZ4Y2v3YJZF83j/describe response: - body: {string: '{"id":"project-FP9kPG801j59yPz44YqJxVbX","name":"TestCopy.test_posix_to_dx_file.89367e97","class":"project","created":1540593585000,"modified":1540593585000,"billTo":"org-counsyl","level":"ADMINISTER","dataUsage":0,"sponsoredDataUsage":0,"region":"aws:us-east-1","summary":"","description":"","protected":false,"restricted":false,"downloadRestricted":false,"containsPHI":false,"createdBy":{"user":"user-akumar_counsyl"},"version":0,"storageCost":0,"pendingTransfer":null,"tags":[],"defaultInstanceType":"mem2_hdd2_x2","archivalState":"live","archivalProgress":null,"totalSponsoredEgressBytes":0,"consumedSponsoredEgressBytes":0,"atSpendingLimit":false}'} + body: {string: '{"id":"project-FPfBBJ0059xZ4Y2v3YJZF83j","name":"TestCopy.test_posix_to_dx_file.97279790","class":"project","created":1542235444000,"modified":1542235444000,"billTo":"org-counsyl","level":"ADMINISTER","dataUsage":0,"sponsoredDataUsage":0,"region":"aws:us-east-1","summary":"","description":"","protected":false,"restricted":false,"downloadRestricted":false,"containsPHI":false,"createdBy":{"user":"user-akumar_counsyl"},"version":0,"storageCost":0,"pendingTransfer":null,"tags":[],"defaultInstanceType":"mem2_hdd2_x2","archivalState":"live","archivalProgress":null,"totalSponsoredEgressBytes":0,"consumedSponsoredEgressBytes":0,"atSpendingLimit":false}'} headers: Connection: [keep-alive] Content-Length: ['652'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:39:46 GMT'] + Date: ['Wed, 14 Nov 2018 22:44:04 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593586052-816511] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235444451-926722] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"name": "TestCopy.test_posix_to_dx_file.89367e97", "level": "VIEW", "limit": + body: '{"name": "TestCopy.test_posix_to_dx_file.97279790", "level": "VIEW", "limit": 2}' headers: ? !!binary | @@ -95,17 +95,17 @@ interactions: method: POST uri: https://api.dnanexus.com/system/findProjects response: - body: {string: '{"results":[{"id":"project-FP9kPG801j59yPz44YqJxVbX","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} + body: {string: '{"results":[{"id":"project-FPfBBJ0059xZ4Y2v3YJZF83j","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} headers: Connection: [keep-alive] Content-Length: ['147'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:39:46 GMT'] + Date: ['Wed, 14 Nov 2018 22:44:04 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593586176-491904] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235444634-611013] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -130,63 +130,26 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kPG801j59yPz44YqJxVbX/listFolder + uri: https://api.dnanexus.com/project-FPfBBJ0059xZ4Y2v3YJZF83j/listFolder response: body: {string: '{"error":{"type":"ResourceNotFound","message":"The specified folder - could not be found in project-FP9kPG801j59yPz44YqJxVbX"}}'} + could not be found in project-FPfBBJ0059xZ4Y2v3YJZF83j"}}'} headers: Connection: [keep-alive] Content-Type: [application/json] - Date: ['Fri, 26 Oct 2018 22:39:46 GMT'] + Date: ['Wed, 14 Nov 2018 22:44:04 GMT'] Server: [nginx] Transfer-Encoding: [chunked] Vary: [Accept-Encoding] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593586310-532184] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235444753-402406] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 404, message: Not Found} -- request: - body: '{"name": "TestCopy.test_posix_to_dx_file.89367e97", "level": "VIEW", "limit": - 2}' - headers: - ? !!binary | - QXV0aG9yaXphdGlvbg== - : - !!binary | - YmVhcmVyIHh2aWtXSmY1RWZ5b0ZLN3RzNThLZzAxTTIzZWZsT0Fx - ? !!binary | - Q29udGVudC1UeXBl - : - !!binary | - YXBwbGljYXRpb24vanNvbg== - ? !!binary | - RE5BbmV4dXMtQVBJ - : - !!binary | - MS4wLjA= - ? !!binary | - VXNlci1BZ2VudA== - : - !!binary | - ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp - dCk= - method: POST - uri: https://api.dnanexus.com/system/findProjects - response: - body: {string: '{"results":[{"id":"project-FP9kPG801j59yPz44YqJxVbX","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} - headers: - Connection: [keep-alive] - Content-Length: ['147'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:39:46 GMT'] - Server: [nginx] - X-Content-Type-Options: [nosniff] - X-Powered-By: [Express] - X-Request-ID: [1540593586709-657020] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. - You can download it from https://wiki.dnanexus.com/Downloads#Install'] - status: {code: 200, message: OK} - request: body: '{"objects": [{"name": "folder_file.txt", "folder": "/temp_folder", "project": - "project-FP9kPG801j59yPz44YqJxVbX", "batchsize": 2}]}' + "project-FPfBBJ0059xZ4Y2v3YJZF83j", "batchsize": 2}]}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -213,17 +176,17 @@ interactions: Connection: [keep-alive] Content-Length: ['16'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:39:46 GMT'] + Date: ['Wed, 14 Nov 2018 22:44:05 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593586850-508295] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235445121-156404] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"project": "project-FP9kPG801j59yPz44YqJxVbX", "folder": "/temp_folder", - "parents": true, "name": "folder_file.txt", "nonce": "b''981d1b522e0764432f18ff4da0343d2b1f3b66e76f5b8a30f52548a68fc13f55''1540593586.912314"}' + body: '{"project": "project-FPfBBJ0059xZ4Y2v3YJZF83j", "folder": "/temp_folder", + "parents": true, "name": "folder_file.txt", "nonce": "b''37de7bedb4b2110cce24a29b4ef543938a9acb278507b57feb4f7533711c67f2''1542235445.189254"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -245,17 +208,17 @@ interactions: method: POST uri: https://api.dnanexus.com/file/new response: - body: {string: '{"id":"file-FP9kPGQ01j5G717x1b2qfg8V"}'} + body: {string: '{"id":"file-FPfBBJ8059xZ4Y2v3YJZF83k"}'} headers: Connection: [keep-alive] Content-Length: ['38'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:39:47 GMT'] + Date: ['Wed, 14 Nov 2018 22:44:05 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593586964-894924] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235445233-365584] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -279,19 +242,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kPG801j59yPz44YqJxVbX/describe + uri: https://api.dnanexus.com/project-FPfBBJ0059xZ4Y2v3YJZF83j/describe response: - body: {string: '{"id":"project-FP9kPG801j59yPz44YqJxVbX","fileUploadParameters":{"maximumPartSize":5368709120,"minimumPartSize":5242880,"maximumFileSize":5497558138880,"maximumNumParts":10000,"emptyLastPartAllowed":true}}'} + body: {string: '{"id":"project-FPfBBJ0059xZ4Y2v3YJZF83j","fileUploadParameters":{"maximumPartSize":5368709120,"minimumPartSize":5242880,"maximumFileSize":5497558138880,"maximumNumParts":10000,"emptyLastPartAllowed":true}}'} headers: Connection: [keep-alive] Content-Length: ['205'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:39:47 GMT'] + Date: ['Wed, 14 Nov 2018 22:44:05 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593587415-972605] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235445370-332447] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -315,19 +278,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kPGQ01j5G717x1b2qfg8V/upload + uri: https://api.dnanexus.com/file-FPfBBJ8059xZ4Y2v3YJZF83k/upload response: - body: {string: '{"url":"https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/ea19/file/open/file-FP9kPGQ01j5G717x1b2qfg8V/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181026%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181026T223947Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=5b79405e206354807b0349e821d4d55667f4fd61f268aaa34470ff0b37f9e95f","headers":{"host":"dnanexus-platform-upload-prod.s3.amazonaws.com","content-type":"binary/octet-stream","x-amz-server-side-encryption":"AES256","content-md5":"c9//V/4k6Ae9T7G8TgfNcw==","content-length":"5"},"expires":1540593707562}'} + body: {string: '{"url":"https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/7d1c/file/open/file-FPfBBJ8059xZ4Y2v3YJZF83k/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181114%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181114T224405Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=a6db361b338486cb4a4c7b4a4ce5ec2a1efdc945f65b27bb8ef30999ae4ba70b","headers":{"host":"dnanexus-platform-upload-prod.s3.amazonaws.com","content-type":"binary/octet-stream","x-amz-server-side-encryption":"AES256","content-md5":"c9//V/4k6Ae9T7G8TgfNcw==","content-length":"5"},"expires":1542235565499}'} headers: Connection: [keep-alive] Content-Length: ['692'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:39:47 GMT'] + Date: ['Wed, 14 Nov 2018 22:44:05 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593587552-654075] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235445486-652660] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -355,17 +318,17 @@ interactions: : - !!binary | QUVTMjU2 method: PUT - uri: https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/ea19/file/open/file-FP9kPGQ01j5G717x1b2qfg8V/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181026%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181026T223947Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=5b79405e206354807b0349e821d4d55667f4fd61f268aaa34470ff0b37f9e95f + uri: https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/7d1c/file/open/file-FPfBBJ8059xZ4Y2v3YJZF83k/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181114%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181114T224405Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=a6db361b338486cb4a4c7b4a4ce5ec2a1efdc945f65b27bb8ef30999ae4ba70b response: body: {string: ''} headers: Content-Length: ['0'] - Date: ['Fri, 26 Oct 2018 22:39:48 GMT'] + Date: ['Wed, 14 Nov 2018 22:44:06 GMT'] ETag: ['"73dfff57fe24e807bd4fb1bc4e07cd73"'] Server: [AmazonS3] - x-amz-expiration: ['expiry-date="Sat, 17 Nov 2018 00:00:00 GMT", rule-id="3weekpurge"'] - x-amz-id-2: [qjQZM+zwWe7cMMVKisU9I0ODWY2rs8U8GTUiBgMlNiQMgr5k5rT7dj5S3fAOit91tKqvsrUN5xY=] - x-amz-request-id: [78A463854B5D258E] + x-amz-expiration: ['expiry-date="Thu, 06 Dec 2018 00:00:00 GMT", rule-id="3weekpurge"'] + x-amz-id-2: [/oNm0+Cwq4xY0+lT8HYfyvc9kU+hJzFCXCQWugsqnUnF5XRkK09PYXOH3Vkxmeyt+Nh1Z1xAKwI=] + x-amz-request-id: [940BE5F47C8EDACA] x-amz-server-side-encryption: [AES256] status: {code: 200, message: OK} - request: @@ -389,23 +352,23 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kPGQ01j5G717x1b2qfg8V/close + uri: https://api.dnanexus.com/file-FPfBBJ8059xZ4Y2v3YJZF83k/close response: - body: {string: '{"id":"file-FP9kPGQ01j5G717x1b2qfg8V"}'} + body: {string: '{"id":"file-FPfBBJ8059xZ4Y2v3YJZF83k"}'} headers: Connection: [keep-alive] Content-Length: ['38'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:39:48 GMT'] + Date: ['Wed, 14 Nov 2018 22:44:06 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593588200-113953] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235445966-427207] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"name": "TestCopy.test_posix_to_dx_file.89367e97", "level": "VIEW", "limit": + body: '{"name": "TestCopy.test_posix_to_dx_file.97279790", "level": "VIEW", "limit": 2}' headers: ? !!binary | @@ -428,22 +391,22 @@ interactions: method: POST uri: https://api.dnanexus.com/system/findProjects response: - body: {string: '{"results":[{"id":"project-FP9kPG801j59yPz44YqJxVbX","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} + body: {string: '{"results":[{"id":"project-FPfBBJ0059xZ4Y2v3YJZF83j","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} headers: Connection: [keep-alive] Content-Length: ['147'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:39:48 GMT'] + Date: ['Wed, 14 Nov 2018 22:44:06 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593588328-410729] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235446088-430625] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: body: '{"objects": [{"name": "folder_file.txt", "folder": "/temp_folder", "project": - "project-FP9kPG801j59yPz44YqJxVbX", "batchsize": 2}]}' + "project-FPfBBJ0059xZ4Y2v3YJZF83j", "batchsize": 2}]}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -465,21 +428,21 @@ interactions: method: POST uri: https://api.dnanexus.com/system/resolveDataObjects response: - body: {string: '{"results":[[{"project":"project-FP9kPG801j59yPz44YqJxVbX","id":"file-FP9kPGQ01j5G717x1b2qfg8V"}]]}'} + body: {string: '{"results":[[{"project":"project-FPfBBJ0059xZ4Y2v3YJZF83j","id":"file-FPfBBJ8059xZ4Y2v3YJZF83k"}]]}'} headers: Connection: [keep-alive] Content-Length: ['99'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:39:48 GMT'] + Date: ['Wed, 14 Nov 2018 22:44:06 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593588458-937468] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235446202-352985] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"project": "project-FP9kPG801j59yPz44YqJxVbX"}' + body: '{"project": "project-FPfBBJ0059xZ4Y2v3YJZF83j"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -499,19 +462,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kPGQ01j5G717x1b2qfg8V/describe + uri: https://api.dnanexus.com/file-FPfBBJ8059xZ4Y2v3YJZF83k/describe response: - body: {string: '{"id":"file-FP9kPGQ01j5G717x1b2qfg8V","project":"project-FP9kPG801j59yPz44YqJxVbX","class":"file","sponsored":false,"name":"folder_file.txt","types":[],"state":"closing","hidden":false,"links":[],"folder":"/temp_folder","tags":[],"created":1540593586000,"modified":1540593588211,"createdBy":{"user":"user-akumar_counsyl"},"media":"","archivalState":"live"}'} + body: {string: '{"id":"file-FPfBBJ8059xZ4Y2v3YJZF83k","project":"project-FPfBBJ0059xZ4Y2v3YJZF83j","class":"file","sponsored":false,"name":"folder_file.txt","types":[],"state":"closing","hidden":false,"links":[],"folder":"/temp_folder","tags":[],"created":1542235445000,"modified":1542235445982,"createdBy":{"user":"user-akumar_counsyl"},"media":"","archivalState":"live"}'} headers: Connection: [keep-alive] Content-Length: ['356'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:39:48 GMT'] + Date: ['Wed, 14 Nov 2018 22:44:06 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593588565-275936] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235446299-151813] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -535,19 +498,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kPG801j59yPz44YqJxVbX/destroy + uri: https://api.dnanexus.com/project-FPfBBJ0059xZ4Y2v3YJZF83j/destroy response: - body: {string: '{"id":"project-FP9kPG801j59yPz44YqJxVbX"}'} + body: {string: '{"id":"project-FPfBBJ0059xZ4Y2v3YJZF83j"}'} headers: Connection: [keep-alive] Content-Length: ['41'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:39:50 GMT'] + Date: ['Wed, 14 Nov 2018 22:44:09 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593588680-554087] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235446451-6250] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} version: 1 diff --git a/stor/tests/cassettes_py3/TestCopy/test_posix_to_dx_file_folder_no_ext.yaml b/stor_dx/stor_dx/tests/cassettes_py3/TestCopy/test_posix_to_dx_file_folder_no_ext.yaml similarity index 70% rename from stor/tests/cassettes_py3/TestCopy/test_posix_to_dx_file_folder_no_ext.yaml rename to stor_dx/stor_dx/tests/cassettes_py3/TestCopy/test_posix_to_dx_file_folder_no_ext.yaml index fc4b78a9..03ebe03a 100644 --- a/stor/tests/cassettes_py3/TestCopy/test_posix_to_dx_file_folder_no_ext.yaml +++ b/stor_dx/stor_dx/tests/cassettes_py3/TestCopy/test_posix_to_dx_file_folder_no_ext.yaml @@ -1,6 +1,6 @@ interactions: - request: - body: '{"name": "TestCopy.test_posix_to_dx_file_folder_no_ext.3471d15c"}' + body: '{"name": "TestCopy.test_posix_to_dx_file_folder_no_ext.92f405d0"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -22,17 +22,17 @@ interactions: method: POST uri: https://api.dnanexus.com/project/new response: - body: {string: '{"id":"project-FP9kPJj066g75PY21Z8jFy7b"}'} + body: {string: '{"id":"project-FPfBBK806kp44Y2v3YJZF83q"}'} headers: Connection: [keep-alive] Content-Length: ['41'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:39:51 GMT'] + Date: ['Wed, 14 Nov 2018 22:44:09 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593591146-127441] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235449844-794302] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -56,23 +56,23 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kPJj066g75PY21Z8jFy7b/describe + uri: https://api.dnanexus.com/project-FPfBBK806kp44Y2v3YJZF83q/describe response: - body: {string: '{"id":"project-FP9kPJj066g75PY21Z8jFy7b","name":"TestCopy.test_posix_to_dx_file_folder_no_ext.3471d15c","class":"project","created":1540593591000,"modified":1540593591000,"billTo":"org-counsyl","level":"ADMINISTER","dataUsage":0,"sponsoredDataUsage":0,"region":"aws:us-east-1","summary":"","description":"","protected":false,"restricted":false,"downloadRestricted":false,"containsPHI":false,"createdBy":{"user":"user-akumar_counsyl"},"version":0,"storageCost":0,"pendingTransfer":null,"tags":[],"defaultInstanceType":"mem2_hdd2_x2","archivalState":"live","archivalProgress":null,"totalSponsoredEgressBytes":0,"consumedSponsoredEgressBytes":0,"atSpendingLimit":false}'} + body: {string: '{"id":"project-FPfBBK806kp44Y2v3YJZF83q","name":"TestCopy.test_posix_to_dx_file_folder_no_ext.92f405d0","class":"project","created":1542235449000,"modified":1542235449000,"billTo":"org-counsyl","level":"ADMINISTER","dataUsage":0,"sponsoredDataUsage":0,"region":"aws:us-east-1","summary":"","description":"","protected":false,"restricted":false,"downloadRestricted":false,"containsPHI":false,"createdBy":{"user":"user-akumar_counsyl"},"version":0,"storageCost":0,"pendingTransfer":null,"tags":[],"defaultInstanceType":"mem2_hdd2_x2","archivalState":"live","archivalProgress":null,"totalSponsoredEgressBytes":0,"consumedSponsoredEgressBytes":0,"atSpendingLimit":false}'} headers: Connection: [keep-alive] Content-Length: ['666'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:39:51 GMT'] + Date: ['Wed, 14 Nov 2018 22:44:09 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593591272-491877] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235449950-60303] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"name": "TestCopy.test_posix_to_dx_file_folder_no_ext.3471d15c", "level": + body: '{"name": "TestCopy.test_posix_to_dx_file_folder_no_ext.92f405d0", "level": "VIEW", "limit": 2}' headers: ? !!binary | @@ -95,17 +95,17 @@ interactions: method: POST uri: https://api.dnanexus.com/system/findProjects response: - body: {string: '{"results":[{"id":"project-FP9kPJj066g75PY21Z8jFy7b","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} + body: {string: '{"results":[{"id":"project-FPfBBK806kp44Y2v3YJZF83q","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} headers: Connection: [keep-alive] Content-Length: ['147'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:39:51 GMT'] + Date: ['Wed, 14 Nov 2018 22:44:10 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593591409-337525] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235450136-950892] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -130,63 +130,26 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kPJj066g75PY21Z8jFy7b/listFolder + uri: https://api.dnanexus.com/project-FPfBBK806kp44Y2v3YJZF83q/listFolder response: body: {string: '{"error":{"type":"ResourceNotFound","message":"The specified folder - could not be found in project-FP9kPJj066g75PY21Z8jFy7b"}}'} + could not be found in project-FPfBBK806kp44Y2v3YJZF83q"}}'} headers: Connection: [keep-alive] Content-Type: [application/json] - Date: ['Fri, 26 Oct 2018 22:39:51 GMT'] + Date: ['Wed, 14 Nov 2018 22:44:10 GMT'] Server: [nginx] Transfer-Encoding: [chunked] Vary: [Accept-Encoding] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593591545-635642] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235450252-289261] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 404, message: Not Found} -- request: - body: '{"name": "TestCopy.test_posix_to_dx_file_folder_no_ext.3471d15c", "level": - "VIEW", "limit": 2}' - headers: - ? !!binary | - QXV0aG9yaXphdGlvbg== - : - !!binary | - YmVhcmVyIHh2aWtXSmY1RWZ5b0ZLN3RzNThLZzAxTTIzZWZsT0Fx - ? !!binary | - Q29udGVudC1UeXBl - : - !!binary | - YXBwbGljYXRpb24vanNvbg== - ? !!binary | - RE5BbmV4dXMtQVBJ - : - !!binary | - MS4wLjA= - ? !!binary | - VXNlci1BZ2VudA== - : - !!binary | - ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp - dCk= - method: POST - uri: https://api.dnanexus.com/system/findProjects - response: - body: {string: '{"results":[{"id":"project-FP9kPJj066g75PY21Z8jFy7b","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} - headers: - Connection: [keep-alive] - Content-Length: ['147'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:39:52 GMT'] - Server: [nginx] - X-Content-Type-Options: [nosniff] - X-Powered-By: [Express] - X-Request-ID: [1540593592047-729177] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. - You can download it from https://wiki.dnanexus.com/Downloads#Install'] - status: {code: 200, message: OK} - request: body: '{"objects": [{"name": "folder_file", "folder": "/temp_folder", "project": - "project-FP9kPJj066g75PY21Z8jFy7b", "batchsize": 2}]}' + "project-FPfBBK806kp44Y2v3YJZF83q", "batchsize": 2}]}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -213,17 +176,17 @@ interactions: Connection: [keep-alive] Content-Length: ['16'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:39:52 GMT'] + Date: ['Wed, 14 Nov 2018 22:44:10 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593592241-631128] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235450615-105852] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"project": "project-FP9kPJj066g75PY21Z8jFy7b", "folder": "/temp_folder", - "parents": true, "name": "folder_file", "nonce": "b''8702e41a6ac73e59fadae545bb7ef208bc90dea73b4ecaf9ddc17084f59a6bc5''1540593592.305202"}' + body: '{"project": "project-FPfBBK806kp44Y2v3YJZF83q", "folder": "/temp_folder", + "parents": true, "name": "folder_file", "nonce": "b''04e93e7e4c0acba1b7f9a05d73b861e4eea50566fc17f728e8a4a2daecda2374''1542235450.690459"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -245,17 +208,17 @@ interactions: method: POST uri: https://api.dnanexus.com/file/new response: - body: {string: '{"id":"file-FP9kPK0066g75PY21Z8jFy7f"}'} + body: {string: '{"id":"file-FPfBBKQ06kpPQZ9J3YpQkQ5x"}'} headers: Connection: [keep-alive] Content-Length: ['38'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:39:52 GMT'] + Date: ['Wed, 14 Nov 2018 22:44:10 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593592354-994039] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235450735-376972] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -279,19 +242,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kPJj066g75PY21Z8jFy7b/describe + uri: https://api.dnanexus.com/project-FPfBBK806kp44Y2v3YJZF83q/describe response: - body: {string: '{"id":"project-FP9kPJj066g75PY21Z8jFy7b","fileUploadParameters":{"maximumPartSize":5368709120,"minimumPartSize":5242880,"maximumFileSize":5497558138880,"maximumNumParts":10000,"emptyLastPartAllowed":true}}'} + body: {string: '{"id":"project-FPfBBK806kp44Y2v3YJZF83q","fileUploadParameters":{"maximumPartSize":5368709120,"minimumPartSize":5242880,"maximumFileSize":5497558138880,"maximumNumParts":10000,"emptyLastPartAllowed":true}}'} headers: Connection: [keep-alive] Content-Length: ['205'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:39:52 GMT'] + Date: ['Wed, 14 Nov 2018 22:44:10 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593592532-704739] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235450890-843191] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -315,19 +278,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kPK0066g75PY21Z8jFy7f/upload + uri: https://api.dnanexus.com/file-FPfBBKQ06kpPQZ9J3YpQkQ5x/upload response: - body: {string: '{"url":"https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/365f/file/open/file-FP9kPK0066g75PY21Z8jFy7f/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181026%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181026T223952Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=af6f0e3ac9daef64b0c1833016357e6a3e54bbb35b5cdbbadc029ab193c28170","headers":{"host":"dnanexus-platform-upload-prod.s3.amazonaws.com","content-type":"binary/octet-stream","x-amz-server-side-encryption":"AES256","content-md5":"c9//V/4k6Ae9T7G8TgfNcw==","content-length":"5"},"expires":1540593712676}'} + body: {string: '{"url":"https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/13a2/file/open/file-FPfBBKQ06kpPQZ9J3YpQkQ5x/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181114%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181114T224411Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=2f97fd723c2d6083794d099c6f14b8689a2e75a2540e682d671112545ba81968","headers":{"host":"dnanexus-platform-upload-prod.s3.amazonaws.com","content-type":"binary/octet-stream","x-amz-server-side-encryption":"AES256","content-md5":"c9//V/4k6Ae9T7G8TgfNcw==","content-length":"5"},"expires":1542235571035}'} headers: Connection: [keep-alive] Content-Length: ['692'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:39:52 GMT'] + Date: ['Wed, 14 Nov 2018 22:44:11 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593592664-111675] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235451016-777790] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -355,17 +318,17 @@ interactions: : - !!binary | QUVTMjU2 method: PUT - uri: https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/365f/file/open/file-FP9kPK0066g75PY21Z8jFy7f/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181026%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181026T223952Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=af6f0e3ac9daef64b0c1833016357e6a3e54bbb35b5cdbbadc029ab193c28170 + uri: https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/13a2/file/open/file-FPfBBKQ06kpPQZ9J3YpQkQ5x/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181114%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181114T224411Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=2f97fd723c2d6083794d099c6f14b8689a2e75a2540e682d671112545ba81968 response: body: {string: ''} headers: Content-Length: ['0'] - Date: ['Fri, 26 Oct 2018 22:39:54 GMT'] + Date: ['Wed, 14 Nov 2018 22:44:12 GMT'] ETag: ['"73dfff57fe24e807bd4fb1bc4e07cd73"'] Server: [AmazonS3] - x-amz-expiration: ['expiry-date="Sat, 17 Nov 2018 00:00:00 GMT", rule-id="3weekpurge"'] - x-amz-id-2: [Z2dKnjPJLvBV/uq5r/MD8o9R44MflPumpWcPZ78i3i519Hkj0jJAL0xCWkyk4evXbDo5uKAq/lI=] - x-amz-request-id: [082C01B52EE7CF51] + x-amz-expiration: ['expiry-date="Thu, 06 Dec 2018 00:00:00 GMT", rule-id="3weekpurge"'] + x-amz-id-2: [5DJm64KbnVumfU76fwQZoV+46mQ8NBNxRqEuAYrn5bWqy9u3Oj0hnN0ngLFNowlo9/o2vHY+sD8=] + x-amz-request-id: [BA141E597D3A413F] x-amz-server-side-encryption: [AES256] status: {code: 200, message: OK} - request: @@ -389,23 +352,23 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kPK0066g75PY21Z8jFy7f/close + uri: https://api.dnanexus.com/file-FPfBBKQ06kpPQZ9J3YpQkQ5x/close response: - body: {string: '{"id":"file-FP9kPK0066g75PY21Z8jFy7f"}'} + body: {string: '{"id":"file-FPfBBKQ06kpPQZ9J3YpQkQ5x"}'} headers: Connection: [keep-alive] Content-Length: ['38'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:39:53 GMT'] + Date: ['Wed, 14 Nov 2018 22:44:11 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593593262-337955] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235451454-420949] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"name": "TestCopy.test_posix_to_dx_file_folder_no_ext.3471d15c", "level": + body: '{"name": "TestCopy.test_posix_to_dx_file_folder_no_ext.92f405d0", "level": "VIEW", "limit": 2}' headers: ? !!binary | @@ -428,22 +391,22 @@ interactions: method: POST uri: https://api.dnanexus.com/system/findProjects response: - body: {string: '{"results":[{"id":"project-FP9kPJj066g75PY21Z8jFy7b","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} + body: {string: '{"results":[{"id":"project-FPfBBK806kp44Y2v3YJZF83q","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} headers: Connection: [keep-alive] Content-Length: ['147'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:39:53 GMT'] + Date: ['Wed, 14 Nov 2018 22:44:11 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593593421-48163] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235451577-629602] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: body: '{"objects": [{"name": "folder_file", "folder": "/temp_folder", "project": - "project-FP9kPJj066g75PY21Z8jFy7b", "batchsize": 2}]}' + "project-FPfBBK806kp44Y2v3YJZF83q", "batchsize": 2}]}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -465,21 +428,21 @@ interactions: method: POST uri: https://api.dnanexus.com/system/resolveDataObjects response: - body: {string: '{"results":[[{"project":"project-FP9kPJj066g75PY21Z8jFy7b","id":"file-FP9kPK0066g75PY21Z8jFy7f"}]]}'} + body: {string: '{"results":[[{"project":"project-FPfBBK806kp44Y2v3YJZF83q","id":"file-FPfBBKQ06kpPQZ9J3YpQkQ5x"}]]}'} headers: Connection: [keep-alive] Content-Length: ['99'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:39:53 GMT'] + Date: ['Wed, 14 Nov 2018 22:44:11 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593593580-959330] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235451694-956172] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"project": "project-FP9kPJj066g75PY21Z8jFy7b"}' + body: '{"project": "project-FPfBBK806kp44Y2v3YJZF83q"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -499,19 +462,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kPK0066g75PY21Z8jFy7f/describe + uri: https://api.dnanexus.com/file-FPfBBKQ06kpPQZ9J3YpQkQ5x/describe response: - body: {string: '{"id":"file-FP9kPK0066g75PY21Z8jFy7f","project":"project-FP9kPJj066g75PY21Z8jFy7b","class":"file","sponsored":false,"name":"folder_file","types":[],"state":"closing","hidden":false,"links":[],"folder":"/temp_folder","tags":[],"created":1540593592000,"modified":1540593593279,"createdBy":{"user":"user-akumar_counsyl"},"media":"","archivalState":"live"}'} + body: {string: '{"id":"file-FPfBBKQ06kpPQZ9J3YpQkQ5x","project":"project-FPfBBK806kp44Y2v3YJZF83q","class":"file","sponsored":false,"name":"folder_file","types":[],"state":"closing","hidden":false,"links":[],"folder":"/temp_folder","tags":[],"created":1542235450000,"modified":1542235451467,"createdBy":{"user":"user-akumar_counsyl"},"media":"","archivalState":"live"}'} headers: Connection: [keep-alive] Content-Length: ['352'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:39:53 GMT'] + Date: ['Wed, 14 Nov 2018 22:44:11 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593593706-747652] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235451790-173330] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -536,25 +499,25 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kPJj066g75PY21Z8jFy7b/listFolder + uri: https://api.dnanexus.com/project-FPfBBK806kp44Y2v3YJZF83q/listFolder response: body: {string: '{"error":{"type":"ResourceNotFound","message":"The specified folder - could not be found in project-FP9kPJj066g75PY21Z8jFy7b"}}'} + could not be found in project-FPfBBK806kp44Y2v3YJZF83q"}}'} headers: Connection: [keep-alive] Content-Type: [application/json] - Date: ['Fri, 26 Oct 2018 22:39:53 GMT'] + Date: ['Wed, 14 Nov 2018 22:44:11 GMT'] Server: [nginx] Transfer-Encoding: [chunked] Vary: [Accept-Encoding] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593593826-488130] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235451891-846219] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 404, message: Not Found} - request: - body: '{"name": "TestCopy.test_posix_to_dx_file_folder_no_ext.3471d15c", "level": + body: '{"name": "TestCopy.test_posix_to_dx_file_folder_no_ext.92f405d0", "level": "VIEW", "limit": 2}' headers: ? !!binary | @@ -577,22 +540,22 @@ interactions: method: POST uri: https://api.dnanexus.com/system/findProjects response: - body: {string: '{"results":[{"id":"project-FP9kPJj066g75PY21Z8jFy7b","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} + body: {string: '{"results":[{"id":"project-FPfBBK806kp44Y2v3YJZF83q","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} headers: Connection: [keep-alive] Content-Length: ['147'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:39:54 GMT'] + Date: ['Wed, 14 Nov 2018 22:44:12 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593594257-594945] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235452233-377349] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: body: '{"objects": [{"name": "random.txt", "folder": "/temp_folder/folder_file", - "project": "project-FP9kPJj066g75PY21Z8jFy7b", "batchsize": 2}]}' + "project": "project-FPfBBK806kp44Y2v3YJZF83q", "batchsize": 2}]}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -619,12 +582,12 @@ interactions: Connection: [keep-alive] Content-Length: ['16'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:39:54 GMT'] + Date: ['Wed, 14 Nov 2018 22:44:12 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593594386-113901] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235452351-916840] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -649,25 +612,25 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kPJj066g75PY21Z8jFy7b/listFolder + uri: https://api.dnanexus.com/project-FPfBBK806kp44Y2v3YJZF83q/listFolder response: body: {string: '{"error":{"type":"ResourceNotFound","message":"The specified folder - could not be found in project-FP9kPJj066g75PY21Z8jFy7b"}}'} + could not be found in project-FPfBBK806kp44Y2v3YJZF83q"}}'} headers: Connection: [keep-alive] Content-Type: [application/json] - Date: ['Fri, 26 Oct 2018 22:39:54 GMT'] + Date: ['Wed, 14 Nov 2018 22:44:12 GMT'] Server: [nginx] Transfer-Encoding: [chunked] Vary: [Accept-Encoding] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593594492-501559] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235452446-595457] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 404, message: Not Found} - request: - body: '{"name": "TestCopy.test_posix_to_dx_file_folder_no_ext.3471d15c", "level": + body: '{"name": "TestCopy.test_posix_to_dx_file_folder_no_ext.92f405d0", "level": "VIEW", "limit": 2}' headers: ? !!binary | @@ -690,17 +653,17 @@ interactions: method: POST uri: https://api.dnanexus.com/system/findProjects response: - body: {string: '{"results":[{"id":"project-FP9kPJj066g75PY21Z8jFy7b","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} + body: {string: '{"results":[{"id":"project-FPfBBK806kp44Y2v3YJZF83q","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} headers: Connection: [keep-alive] Content-Length: ['147'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:39:54 GMT'] + Date: ['Wed, 14 Nov 2018 22:44:12 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593594890-312540] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235452845-434903] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -725,61 +688,24 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kPJj066g75PY21Z8jFy7b/listFolder + uri: https://api.dnanexus.com/project-FPfBBK806kp44Y2v3YJZF83q/listFolder response: body: {string: '{"folders":[]}'} headers: Connection: [keep-alive] Content-Length: ['14'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:39:55 GMT'] - Server: [nginx] - X-Content-Type-Options: [nosniff] - X-Powered-By: [Express] - X-Request-ID: [1540593595037-567534] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. - You can download it from https://wiki.dnanexus.com/Downloads#Install'] - status: {code: 200, message: OK} -- request: - body: '{"name": "TestCopy.test_posix_to_dx_file_folder_no_ext.3471d15c", "level": - "VIEW", "limit": 2}' - headers: - ? !!binary | - QXV0aG9yaXphdGlvbg== - : - !!binary | - YmVhcmVyIHh2aWtXSmY1RWZ5b0ZLN3RzNThLZzAxTTIzZWZsT0Fx - ? !!binary | - Q29udGVudC1UeXBl - : - !!binary | - YXBwbGljYXRpb24vanNvbg== - ? !!binary | - RE5BbmV4dXMtQVBJ - : - !!binary | - MS4wLjA= - ? !!binary | - VXNlci1BZ2VudA== - : - !!binary | - ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp - dCk= - method: POST - uri: https://api.dnanexus.com/system/findProjects - response: - body: {string: '{"results":[{"id":"project-FP9kPJj066g75PY21Z8jFy7b","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} - headers: - Connection: [keep-alive] - Content-Length: ['147'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:39:55 GMT'] + Date: ['Wed, 14 Nov 2018 22:44:13 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593595145-449835] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235452994-167408] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: body: '{"objects": [{"name": "random.txt", "folder": "/temp_folder", "project": - "project-FP9kPJj066g75PY21Z8jFy7b", "batchsize": 2}]}' + "project-FPfBBK806kp44Y2v3YJZF83q", "batchsize": 2}]}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -806,17 +732,17 @@ interactions: Connection: [keep-alive] Content-Length: ['16'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:39:55 GMT'] + Date: ['Wed, 14 Nov 2018 22:44:13 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593595293-418000] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235453114-341508] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"project": "project-FP9kPJj066g75PY21Z8jFy7b", "folder": "/temp_folder", - "parents": true, "name": "random.txt", "nonce": "b''3070122346e767b3d0a199a8819579f2ee2229d8600e7e61d497ad2c7b163788''1540593595.356798"}' + body: '{"project": "project-FPfBBK806kp44Y2v3YJZF83q", "folder": "/temp_folder", + "parents": true, "name": "random.txt", "nonce": "b''0b359d061aa2b8390e68e3cac24faa729681852c99c17c2c9c0ba70723ee4804''1542235453.179866"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -838,17 +764,17 @@ interactions: method: POST uri: https://api.dnanexus.com/file/new response: - body: {string: '{"id":"file-FP9kPKj066gFq57K4PxxVB2p"}'} + body: {string: '{"id":"file-FPfBBP806kpFgzq03ZJpv0YK"}'} headers: Connection: [keep-alive] Content-Length: ['38'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:39:55 GMT'] + Date: ['Wed, 14 Nov 2018 22:44:13 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593595405-760621] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235453226-580516] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -872,19 +798,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kPJj066g75PY21Z8jFy7b/describe + uri: https://api.dnanexus.com/project-FPfBBK806kp44Y2v3YJZF83q/describe response: - body: {string: '{"id":"project-FP9kPJj066g75PY21Z8jFy7b","fileUploadParameters":{"maximumPartSize":5368709120,"minimumPartSize":5242880,"maximumFileSize":5497558138880,"maximumNumParts":10000,"emptyLastPartAllowed":true}}'} + body: {string: '{"id":"project-FPfBBK806kp44Y2v3YJZF83q","fileUploadParameters":{"maximumPartSize":5368709120,"minimumPartSize":5242880,"maximumFileSize":5497558138880,"maximumNumParts":10000,"emptyLastPartAllowed":true}}'} headers: Connection: [keep-alive] Content-Length: ['205'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:39:55 GMT'] + Date: ['Wed, 14 Nov 2018 22:44:13 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593595567-842236] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235453361-451329] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -908,19 +834,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kPKj066gFq57K4PxxVB2p/upload + uri: https://api.dnanexus.com/file-FPfBBP806kpFgzq03ZJpv0YK/upload response: - body: {string: '{"url":"https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/4269/file/open/file-FP9kPKj066gFq57K4PxxVB2p/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181026%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181026T223955Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=ae693bfeadf0b658ac35e8b73bc16c4e2c7e4d543de369e036e37f6976e65a80","headers":{"host":"dnanexus-platform-upload-prod.s3.amazonaws.com","content-type":"binary/octet-stream","x-amz-server-side-encryption":"AES256","content-md5":"c9//V/4k6Ae9T7G8TgfNcw==","content-length":"5"},"expires":1540593715698}'} + body: {string: '{"url":"https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/1461/file/open/file-FPfBBP806kpFgzq03ZJpv0YK/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181114%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181114T224413Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=d32a42494e66fc0221cf00c22f891b7b48d69d751b9e0ed90ad04599758ab6cd","headers":{"host":"dnanexus-platform-upload-prod.s3.amazonaws.com","content-type":"binary/octet-stream","x-amz-server-side-encryption":"AES256","content-md5":"c9//V/4k6Ae9T7G8TgfNcw==","content-length":"5"},"expires":1542235573486}'} headers: Connection: [keep-alive] Content-Length: ['692'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:39:55 GMT'] + Date: ['Wed, 14 Nov 2018 22:44:13 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593595685-156579] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235453473-707858] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -948,17 +874,17 @@ interactions: : - !!binary | QUVTMjU2 method: PUT - uri: https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/4269/file/open/file-FP9kPKj066gFq57K4PxxVB2p/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181026%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181026T223955Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=ae693bfeadf0b658ac35e8b73bc16c4e2c7e4d543de369e036e37f6976e65a80 + uri: https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/1461/file/open/file-FPfBBP806kpFgzq03ZJpv0YK/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181114%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181114T224413Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=d32a42494e66fc0221cf00c22f891b7b48d69d751b9e0ed90ad04599758ab6cd response: body: {string: ''} headers: Content-Length: ['0'] - Date: ['Fri, 26 Oct 2018 22:39:57 GMT'] + Date: ['Wed, 14 Nov 2018 22:44:14 GMT'] ETag: ['"73dfff57fe24e807bd4fb1bc4e07cd73"'] Server: [AmazonS3] - x-amz-expiration: ['expiry-date="Sat, 17 Nov 2018 00:00:00 GMT", rule-id="3weekpurge"'] - x-amz-id-2: [dV93V059ssJXiEMj6iI0zXDgxfN58kus6eGznP7A2af5T8lePcQ+7ErEvc453kuQmRNdbQuJR0U=] - x-amz-request-id: [43E8B610FBE72135] + x-amz-expiration: ['expiry-date="Thu, 06 Dec 2018 00:00:00 GMT", rule-id="3weekpurge"'] + x-amz-id-2: [T8opxFEuHYhCZ2w9PHUCKBTccpY5fn4Y/VkFD1diG2neWcMkRiuQ09u3bWUFdx2JhYmCmmTz/s8=] + x-amz-request-id: [0AC37E3396083C4C] x-amz-server-side-encryption: [AES256] status: {code: 200, message: OK} - request: @@ -982,23 +908,23 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kPKj066gFq57K4PxxVB2p/close + uri: https://api.dnanexus.com/file-FPfBBP806kpFgzq03ZJpv0YK/close response: - body: {string: '{"id":"file-FP9kPKj066gFq57K4PxxVB2p"}'} + body: {string: '{"id":"file-FPfBBP806kpFgzq03ZJpv0YK"}'} headers: Connection: [keep-alive] Content-Length: ['38'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:39:56 GMT'] + Date: ['Wed, 14 Nov 2018 22:44:13 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593596359-411446] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235453932-439366] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"name": "TestCopy.test_posix_to_dx_file_folder_no_ext.3471d15c", "level": + body: '{"name": "TestCopy.test_posix_to_dx_file_folder_no_ext.92f405d0", "level": "VIEW", "limit": 2}' headers: ? !!binary | @@ -1021,22 +947,22 @@ interactions: method: POST uri: https://api.dnanexus.com/system/findProjects response: - body: {string: '{"results":[{"id":"project-FP9kPJj066g75PY21Z8jFy7b","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} + body: {string: '{"results":[{"id":"project-FPfBBK806kp44Y2v3YJZF83q","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} headers: Connection: [keep-alive] Content-Length: ['147'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:39:56 GMT'] + Date: ['Wed, 14 Nov 2018 22:44:14 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593596495-358203] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235454060-53696] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: body: '{"objects": [{"name": "random.txt", "folder": "/temp_folder", "project": - "project-FP9kPJj066g75PY21Z8jFy7b", "batchsize": 2}]}' + "project-FPfBBK806kp44Y2v3YJZF83q", "batchsize": 2}]}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -1058,21 +984,21 @@ interactions: method: POST uri: https://api.dnanexus.com/system/resolveDataObjects response: - body: {string: '{"results":[[{"project":"project-FP9kPJj066g75PY21Z8jFy7b","id":"file-FP9kPKj066gFq57K4PxxVB2p"}]]}'} + body: {string: '{"results":[[{"project":"project-FPfBBK806kp44Y2v3YJZF83q","id":"file-FPfBBP806kpFgzq03ZJpv0YK"}]]}'} headers: Connection: [keep-alive] Content-Length: ['99'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:39:56 GMT'] + Date: ['Wed, 14 Nov 2018 22:44:14 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593596637-235427] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235454191-85176] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"project": "project-FP9kPJj066g75PY21Z8jFy7b"}' + body: '{"project": "project-FPfBBK806kp44Y2v3YJZF83q"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -1092,19 +1018,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kPKj066gFq57K4PxxVB2p/describe + uri: https://api.dnanexus.com/file-FPfBBP806kpFgzq03ZJpv0YK/describe response: - body: {string: '{"id":"file-FP9kPKj066gFq57K4PxxVB2p","project":"project-FP9kPJj066g75PY21Z8jFy7b","class":"file","sponsored":false,"name":"random.txt","types":[],"state":"closing","hidden":false,"links":[],"folder":"/temp_folder","tags":[],"created":1540593595000,"modified":1540593596379,"createdBy":{"user":"user-akumar_counsyl"},"media":"","archivalState":"live"}'} + body: {string: '{"id":"file-FPfBBP806kpFgzq03ZJpv0YK","project":"project-FPfBBK806kp44Y2v3YJZF83q","class":"file","sponsored":false,"name":"random.txt","types":[],"state":"closing","hidden":false,"links":[],"folder":"/temp_folder","tags":[],"created":1542235453000,"modified":1542235453945,"createdBy":{"user":"user-akumar_counsyl"},"media":"","archivalState":"live"}'} headers: Connection: [keep-alive] Content-Length: ['351'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:39:56 GMT'] + Date: ['Wed, 14 Nov 2018 22:44:14 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593596765-610657] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235454294-663830] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -1128,19 +1054,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kPJj066g75PY21Z8jFy7b/destroy + uri: https://api.dnanexus.com/project-FPfBBK806kp44Y2v3YJZF83q/destroy response: - body: {string: '{"id":"project-FP9kPJj066g75PY21Z8jFy7b"}'} + body: {string: '{"id":"project-FPfBBK806kp44Y2v3YJZF83q"}'} headers: Connection: [keep-alive] Content-Length: ['41'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:40:00 GMT'] + Date: ['Wed, 14 Nov 2018 22:44:17 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593596909-563382] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235454410-625932] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} version: 1 diff --git a/stor/tests/cassettes_py3/TestCopy/test_posix_to_dx_folder.yaml b/stor_dx/stor_dx/tests/cassettes_py3/TestCopy/test_posix_to_dx_folder.yaml similarity index 68% rename from stor/tests/cassettes_py3/TestCopy/test_posix_to_dx_folder.yaml rename to stor_dx/stor_dx/tests/cassettes_py3/TestCopy/test_posix_to_dx_folder.yaml index c6fa2eab..c073888e 100644 --- a/stor/tests/cassettes_py3/TestCopy/test_posix_to_dx_folder.yaml +++ b/stor_dx/stor_dx/tests/cassettes_py3/TestCopy/test_posix_to_dx_folder.yaml @@ -1,6 +1,6 @@ interactions: - request: - body: '{"name": "TestCopy.test_posix_to_dx_folder.a18f65eb"}' + body: '{"name": "TestCopy.test_posix_to_dx_folder.af89cc15"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -22,17 +22,17 @@ interactions: method: POST uri: https://api.dnanexus.com/project/new response: - body: {string: '{"id":"project-FP9kPQ00vbPkyPz44YqJxVbY"}'} + body: {string: '{"id":"project-FPfBBQ80xP1JXKkQ3Z455J02"}'} headers: Connection: [keep-alive] Content-Length: ['41'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:40:00 GMT'] + Date: ['Wed, 14 Nov 2018 22:44:17 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593600660-2544] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235457784-735084] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -56,23 +56,23 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kPQ00vbPkyPz44YqJxVbY/describe + uri: https://api.dnanexus.com/project-FPfBBQ80xP1JXKkQ3Z455J02/describe response: - body: {string: '{"id":"project-FP9kPQ00vbPkyPz44YqJxVbY","name":"TestCopy.test_posix_to_dx_folder.a18f65eb","class":"project","created":1540593600000,"modified":1540593600000,"billTo":"org-counsyl","level":"ADMINISTER","dataUsage":0,"sponsoredDataUsage":0,"region":"aws:us-east-1","summary":"","description":"","protected":false,"restricted":false,"downloadRestricted":false,"containsPHI":false,"createdBy":{"user":"user-akumar_counsyl"},"version":0,"storageCost":0,"pendingTransfer":null,"tags":[],"defaultInstanceType":"mem2_hdd2_x2","archivalState":"live","archivalProgress":null,"totalSponsoredEgressBytes":0,"consumedSponsoredEgressBytes":0,"atSpendingLimit":false}'} + body: {string: '{"id":"project-FPfBBQ80xP1JXKkQ3Z455J02","name":"TestCopy.test_posix_to_dx_folder.af89cc15","class":"project","created":1542235457000,"modified":1542235457000,"billTo":"org-counsyl","level":"ADMINISTER","dataUsage":0,"sponsoredDataUsage":0,"region":"aws:us-east-1","summary":"","description":"","protected":false,"restricted":false,"downloadRestricted":false,"containsPHI":false,"createdBy":{"user":"user-akumar_counsyl"},"version":0,"storageCost":0,"pendingTransfer":null,"tags":[],"defaultInstanceType":"mem2_hdd2_x2","archivalState":"live","archivalProgress":null,"totalSponsoredEgressBytes":0,"consumedSponsoredEgressBytes":0,"atSpendingLimit":false}'} headers: Connection: [keep-alive] Content-Length: ['654'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:40:00 GMT'] + Date: ['Wed, 14 Nov 2018 22:44:17 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593600816-633872] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235457896-565141] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"name": "TestCopy.test_posix_to_dx_folder.a18f65eb", "level": "VIEW", + body: '{"name": "TestCopy.test_posix_to_dx_folder.af89cc15", "level": "VIEW", "limit": 2}' headers: ? !!binary | @@ -95,22 +95,61 @@ interactions: method: POST uri: https://api.dnanexus.com/system/findProjects response: - body: {string: '{"results":[{"id":"project-FP9kPQ00vbPkyPz44YqJxVbY","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} + body: {string: '{"results":[{"id":"project-FPfBBQ80xP1JXKkQ3Z455J02","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} headers: Connection: [keep-alive] Content-Length: ['147'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:40:00 GMT'] + Date: ['Wed, 14 Nov 2018 22:44:18 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593600958-604422] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235458114-168554] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} +- request: + body: '{"folder": "/temp_folder/random.txt", "describe": {"fields": {"name": true, + "folder": true}}, "only": "folders", "includeHidden": false}' + headers: + ? !!binary | + QXV0aG9yaXphdGlvbg== + : - !!binary | + YmVhcmVyIHh2aWtXSmY1RWZ5b0ZLN3RzNThLZzAxTTIzZWZsT0Fx + ? !!binary | + Q29udGVudC1UeXBl + : - !!binary | + YXBwbGljYXRpb24vanNvbg== + ? !!binary | + RE5BbmV4dXMtQVBJ + : - !!binary | + MS4wLjA= + ? !!binary | + VXNlci1BZ2VudA== + : - !!binary | + ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp + dCk= + method: POST + uri: https://api.dnanexus.com/project-FPfBBQ80xP1JXKkQ3Z455J02/listFolder + response: + body: {string: '{"error":{"type":"ResourceNotFound","message":"The specified folder + could not be found in project-FPfBBQ80xP1JXKkQ3Z455J02"}}'} + headers: + Connection: [keep-alive] + Content-Type: [application/json] + Date: ['Wed, 14 Nov 2018 22:44:18 GMT'] + Server: [nginx] + Transfer-Encoding: [chunked] + Vary: [Accept-Encoding] + X-Content-Type-Options: [nosniff] + X-Powered-By: [Express] + X-Request-ID: [1542235458224-946839] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. + You can download it from https://wiki.dnanexus.com/Downloads#Install'] + status: {code: 404, message: Not Found} - request: body: '{"objects": [{"name": "random.txt", "folder": "/temp_folder", "project": - "project-FP9kPQ00vbPkyPz44YqJxVbY", "batchsize": 2}]}' + "project-FPfBBQ80xP1JXKkQ3Z455J02", "batchsize": 2}]}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -137,17 +176,17 @@ interactions: Connection: [keep-alive] Content-Length: ['16'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:40:01 GMT'] + Date: ['Wed, 14 Nov 2018 22:44:18 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593601093-263574] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235458581-376150] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"project": "project-FP9kPQ00vbPkyPz44YqJxVbY", "folder": "/temp_folder", - "parents": true, "name": "random.txt", "nonce": "b''1df5c90ac500af6e12a5012090699515c281cf8e956c06174520056491e6fa96''1540593601.159414"}' + body: '{"project": "project-FPfBBQ80xP1JXKkQ3Z455J02", "folder": "/temp_folder", + "parents": true, "name": "random.txt", "nonce": "b''281b34b3493da853190ff1a4fc0a9d79bf32b124025184e7492ea3adba8cdb04''1542235458.646515"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -169,17 +208,17 @@ interactions: method: POST uri: https://api.dnanexus.com/file/new response: - body: {string: '{"id":"file-FP9kPQ80vbPg9xPX1ZFQgF3X"}'} + body: {string: '{"id":"file-FPfBBQQ0xP129yPf3YzJbGg7"}'} headers: Connection: [keep-alive] Content-Length: ['38'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:40:01 GMT'] + Date: ['Wed, 14 Nov 2018 22:44:18 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593601214-652861] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235458691-750482] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -203,19 +242,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kPQ00vbPkyPz44YqJxVbY/describe + uri: https://api.dnanexus.com/project-FPfBBQ80xP1JXKkQ3Z455J02/describe response: - body: {string: '{"id":"project-FP9kPQ00vbPkyPz44YqJxVbY","fileUploadParameters":{"maximumPartSize":5368709120,"minimumPartSize":5242880,"maximumFileSize":5497558138880,"maximumNumParts":10000,"emptyLastPartAllowed":true}}'} + body: {string: '{"id":"project-FPfBBQ80xP1JXKkQ3Z455J02","fileUploadParameters":{"maximumPartSize":5368709120,"minimumPartSize":5242880,"maximumFileSize":5497558138880,"maximumNumParts":10000,"emptyLastPartAllowed":true}}'} headers: Connection: [keep-alive] Content-Length: ['205'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:40:01 GMT'] + Date: ['Wed, 14 Nov 2018 22:44:18 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593601396-513958] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235458827-153603] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -239,19 +278,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kPQ80vbPg9xPX1ZFQgF3X/upload + uri: https://api.dnanexus.com/file-FPfBBQQ0xP129yPf3YzJbGg7/upload response: - body: {string: '{"url":"https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/330b/file/open/file-FP9kPQ80vbPg9xPX1ZFQgF3X/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181026%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181026T224001Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=f3c4045f012dd01cc0e64b6b9454aa8c51a87da2511623e1f58bf28c536b015c","headers":{"host":"dnanexus-platform-upload-prod.s3.amazonaws.com","content-type":"binary/octet-stream","x-amz-server-side-encryption":"AES256","content-md5":"c9//V/4k6Ae9T7G8TgfNcw==","content-length":"5"},"expires":1540593721543}'} + body: {string: '{"url":"https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/eb13/file/open/file-FPfBBQQ0xP129yPf3YzJbGg7/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181114%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181114T224418Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=18ab5fdd5bbb8ff8f790985d334f90700bbd0703cda07d0d1c27ae9a8f6c92d2","headers":{"host":"dnanexus-platform-upload-prod.s3.amazonaws.com","content-type":"binary/octet-stream","x-amz-server-side-encryption":"AES256","content-md5":"c9//V/4k6Ae9T7G8TgfNcw==","content-length":"5"},"expires":1542235578947}'} headers: Connection: [keep-alive] Content-Length: ['692'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:40:01 GMT'] + Date: ['Wed, 14 Nov 2018 22:44:18 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593601532-367754] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235458937-117011] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -279,17 +318,17 @@ interactions: : - !!binary | QUVTMjU2 method: PUT - uri: https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/330b/file/open/file-FP9kPQ80vbPg9xPX1ZFQgF3X/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181026%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181026T224001Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=f3c4045f012dd01cc0e64b6b9454aa8c51a87da2511623e1f58bf28c536b015c + uri: https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/eb13/file/open/file-FPfBBQQ0xP129yPf3YzJbGg7/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181114%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181114T224418Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=18ab5fdd5bbb8ff8f790985d334f90700bbd0703cda07d0d1c27ae9a8f6c92d2 response: body: {string: ''} headers: Content-Length: ['0'] - Date: ['Fri, 26 Oct 2018 22:40:02 GMT'] + Date: ['Wed, 14 Nov 2018 22:44:20 GMT'] ETag: ['"73dfff57fe24e807bd4fb1bc4e07cd73"'] Server: [AmazonS3] - x-amz-expiration: ['expiry-date="Sat, 17 Nov 2018 00:00:00 GMT", rule-id="3weekpurge"'] - x-amz-id-2: [wPh1k32KjJ/fd+BrEpLHPYc96m0g2KUXeAYiRI9Xkc8Y5mZ2Eiu8BpFvEqYgwCC2NBHHkog1KLw=] - x-amz-request-id: [2F61AA4957A8342B] + x-amz-expiration: ['expiry-date="Thu, 06 Dec 2018 00:00:00 GMT", rule-id="3weekpurge"'] + x-amz-id-2: [s6l2dmSCcY90bqKBai1gUnCx8Y4KAxuvPi5T+yh1rTcEFErHeVOGUb6+XM3nBGCN/JKOO5vRzb0=] + x-amz-request-id: [48B247B2D7348C0E] x-amz-server-side-encryption: [AES256] status: {code: 200, message: OK} - request: @@ -313,23 +352,23 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kPQ80vbPg9xPX1ZFQgF3X/close + uri: https://api.dnanexus.com/file-FPfBBQQ0xP129yPf3YzJbGg7/close response: - body: {string: '{"id":"file-FP9kPQ80vbPg9xPX1ZFQgF3X"}'} + body: {string: '{"id":"file-FPfBBQQ0xP129yPf3YzJbGg7"}'} headers: Connection: [keep-alive] Content-Length: ['38'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:40:02 GMT'] + Date: ['Wed, 14 Nov 2018 22:44:19 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593602094-191636] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235459382-506054] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"name": "TestCopy.test_posix_to_dx_folder.a18f65eb", "level": "VIEW", + body: '{"name": "TestCopy.test_posix_to_dx_folder.af89cc15", "level": "VIEW", "limit": 2}' headers: ? !!binary | @@ -352,22 +391,22 @@ interactions: method: POST uri: https://api.dnanexus.com/system/findProjects response: - body: {string: '{"results":[{"id":"project-FP9kPQ00vbPkyPz44YqJxVbY","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} + body: {string: '{"results":[{"id":"project-FPfBBQ80xP1JXKkQ3Z455J02","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} headers: Connection: [keep-alive] Content-Length: ['147'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:40:02 GMT'] + Date: ['Wed, 14 Nov 2018 22:44:19 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593602220-546628] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235459511-582283] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: body: '{"objects": [{"name": "random.txt", "folder": "/temp_folder", "project": - "project-FP9kPQ00vbPkyPz44YqJxVbY", "batchsize": 2}]}' + "project-FPfBBQ80xP1JXKkQ3Z455J02", "batchsize": 2}]}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -389,21 +428,21 @@ interactions: method: POST uri: https://api.dnanexus.com/system/resolveDataObjects response: - body: {string: '{"results":[[{"project":"project-FP9kPQ00vbPkyPz44YqJxVbY","id":"file-FP9kPQ80vbPg9xPX1ZFQgF3X"}]]}'} + body: {string: '{"results":[[{"project":"project-FPfBBQ80xP1JXKkQ3Z455J02","id":"file-FPfBBQQ0xP129yPf3YzJbGg7"}]]}'} headers: Connection: [keep-alive] Content-Length: ['99'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:40:02 GMT'] + Date: ['Wed, 14 Nov 2018 22:44:19 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593602353-206284] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235459621-40597] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"project": "project-FP9kPQ00vbPkyPz44YqJxVbY"}' + body: '{"project": "project-FPfBBQ80xP1JXKkQ3Z455J02"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -423,19 +462,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kPQ80vbPg9xPX1ZFQgF3X/describe + uri: https://api.dnanexus.com/file-FPfBBQQ0xP129yPf3YzJbGg7/describe response: - body: {string: '{"id":"file-FP9kPQ80vbPg9xPX1ZFQgF3X","project":"project-FP9kPQ00vbPkyPz44YqJxVbY","class":"file","sponsored":false,"name":"random.txt","types":[],"state":"closing","hidden":false,"links":[],"folder":"/temp_folder","tags":[],"created":1540593601000,"modified":1540593602104,"createdBy":{"user":"user-akumar_counsyl"},"media":"","archivalState":"live"}'} + body: {string: '{"id":"file-FPfBBQQ0xP129yPf3YzJbGg7","project":"project-FPfBBQ80xP1JXKkQ3Z455J02","class":"file","sponsored":false,"name":"random.txt","types":[],"state":"closing","hidden":false,"links":[],"folder":"/temp_folder","tags":[],"created":1542235458000,"modified":1542235459401,"createdBy":{"user":"user-akumar_counsyl"},"media":"","archivalState":"live"}'} headers: Connection: [keep-alive] Content-Length: ['351'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:40:02 GMT'] + Date: ['Wed, 14 Nov 2018 22:44:19 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593602474-508530] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235459724-521984] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -459,19 +498,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kPQ00vbPkyPz44YqJxVbY/destroy + uri: https://api.dnanexus.com/project-FPfBBQ80xP1JXKkQ3Z455J02/destroy response: - body: {string: '{"id":"project-FP9kPQ00vbPkyPz44YqJxVbY"}'} + body: {string: '{"id":"project-FPfBBQ80xP1JXKkQ3Z455J02"}'} headers: Connection: [keep-alive] Content-Length: ['41'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:40:05 GMT'] + Date: ['Wed, 14 Nov 2018 22:44:22 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593602621-95083] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235459828-804791] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} version: 1 diff --git a/stor/tests/cassettes_py3/TestCopy/test_posix_to_existing_dx_fail.yaml b/stor_dx/stor_dx/tests/cassettes_py3/TestCopy/test_posix_to_existing_dx_fail.yaml similarity index 68% rename from stor/tests/cassettes_py3/TestCopy/test_posix_to_existing_dx_fail.yaml rename to stor_dx/stor_dx/tests/cassettes_py3/TestCopy/test_posix_to_existing_dx_fail.yaml index 9ae52afc..067d4bac 100644 --- a/stor/tests/cassettes_py3/TestCopy/test_posix_to_existing_dx_fail.yaml +++ b/stor_dx/stor_dx/tests/cassettes_py3/TestCopy/test_posix_to_existing_dx_fail.yaml @@ -1,6 +1,6 @@ interactions: - request: - body: '{"name": "TestCopy.test_posix_to_existing_dx_fail.021e7345"}' + body: '{"name": "TestCopy.test_posix_to_existing_dx_fail.f1de51d6"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -22,17 +22,17 @@ interactions: method: POST uri: https://api.dnanexus.com/project/new response: - body: {string: '{"id":"project-FP9kPV80KVYqq57K4PxxVB2v"}'} + body: {string: '{"id":"project-FPfBBVj0G7jz59pY2z38q605"}'} headers: Connection: [keep-alive] Content-Length: ['41'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:40:05 GMT'] + Date: ['Wed, 14 Nov 2018 22:44:23 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593605739-760568] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235463257-24646] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -56,19 +56,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kPV80KVYqq57K4PxxVB2v/describe + uri: https://api.dnanexus.com/project-FPfBBVj0G7jz59pY2z38q605/describe response: - body: {string: '{"id":"project-FP9kPV80KVYqq57K4PxxVB2v","name":"TestCopy.test_posix_to_existing_dx_fail.021e7345","class":"project","created":1540593605000,"modified":1540593605000,"billTo":"org-counsyl","level":"ADMINISTER","dataUsage":0,"sponsoredDataUsage":0,"region":"aws:us-east-1","summary":"","description":"","protected":false,"restricted":false,"downloadRestricted":false,"containsPHI":false,"createdBy":{"user":"user-akumar_counsyl"},"version":0,"storageCost":0,"pendingTransfer":null,"tags":[],"defaultInstanceType":"mem2_hdd2_x2","archivalState":"live","archivalProgress":null,"totalSponsoredEgressBytes":0,"consumedSponsoredEgressBytes":0,"atSpendingLimit":false}'} + body: {string: '{"id":"project-FPfBBVj0G7jz59pY2z38q605","name":"TestCopy.test_posix_to_existing_dx_fail.f1de51d6","class":"project","created":1542235463000,"modified":1542235463000,"billTo":"org-counsyl","level":"ADMINISTER","dataUsage":0,"sponsoredDataUsage":0,"region":"aws:us-east-1","summary":"","description":"","protected":false,"restricted":false,"downloadRestricted":false,"containsPHI":false,"createdBy":{"user":"user-akumar_counsyl"},"version":0,"storageCost":0,"pendingTransfer":null,"tags":[],"defaultInstanceType":"mem2_hdd2_x2","archivalState":"live","archivalProgress":null,"totalSponsoredEgressBytes":0,"consumedSponsoredEgressBytes":0,"atSpendingLimit":false}'} headers: Connection: [keep-alive] Content-Length: ['661'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:40:05 GMT'] + Date: ['Wed, 14 Nov 2018 22:44:23 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593605852-856727] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235463361-432158] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -92,24 +92,24 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kPV80KVYqq57K4PxxVB2v/newFolder + uri: https://api.dnanexus.com/project-FPfBBVj0G7jz59pY2z38q605/newFolder response: - body: {string: '{"id":"project-FP9kPV80KVYqq57K4PxxVB2v"}'} + body: {string: '{"id":"project-FPfBBVj0G7jz59pY2z38q605"}'} headers: Connection: [keep-alive] Content-Length: ['41'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:40:05 GMT'] + Date: ['Wed, 14 Nov 2018 22:44:23 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593605977-537514] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235463478-704418] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"name": "file.txt", "folder": "/temp_folder", "project": "project-FP9kPV80KVYqq57K4PxxVB2v", - "nonce": "b''c237a957ec9a1e5e358c7349ae11a0381d50007ebf4c24abd2135b2497f7654b''1540593606.045901"}' + body: '{"name": "file.txt", "folder": "/temp_folder", "project": "project-FPfBBVj0G7jz59pY2z38q605", + "nonce": "b''04e9d38640a41d77d7e5b6f75aa8daadbcc6c2795884082089cd1d3ded67c392''1542235463.529141"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -131,17 +131,17 @@ interactions: method: POST uri: https://api.dnanexus.com/file/new response: - body: {string: '{"id":"file-FP9kPVQ0KVYVkxQk1b9XV8z3"}'} + body: {string: '{"id":"file-FPfBBVj0G7jkF0362xZX6pBV"}'} headers: Connection: [keep-alive] Content-Length: ['38'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:40:06 GMT'] + Date: ['Wed, 14 Nov 2018 22:44:23 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593606089-853672] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235463574-645934] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -165,19 +165,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kPV80KVYqq57K4PxxVB2v/describe + uri: https://api.dnanexus.com/project-FPfBBVj0G7jz59pY2z38q605/describe response: - body: {string: '{"id":"project-FP9kPV80KVYqq57K4PxxVB2v","fileUploadParameters":{"maximumPartSize":5368709120,"minimumPartSize":5242880,"maximumFileSize":5497558138880,"maximumNumParts":10000,"emptyLastPartAllowed":true}}'} + body: {string: '{"id":"project-FPfBBVj0G7jz59pY2z38q605","fileUploadParameters":{"maximumPartSize":5368709120,"minimumPartSize":5242880,"maximumFileSize":5497558138880,"maximumNumParts":10000,"emptyLastPartAllowed":true}}'} headers: Connection: [keep-alive] Content-Length: ['205'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:40:06 GMT'] + Date: ['Wed, 14 Nov 2018 22:44:23 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593606237-116932] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235463717-959339] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -201,19 +201,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kPVQ0KVYVkxQk1b9XV8z3/upload + uri: https://api.dnanexus.com/file-FPfBBVj0G7jkF0362xZX6pBV/upload response: - body: {string: '{"url":"https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/a27d/file/open/file-FP9kPVQ0KVYVkxQk1b9XV8z3/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181026%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181026T224006Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=b67196ed84d5baba8da2ff4196c84e6220f81bb23e289229492d9026d72d740c","headers":{"host":"dnanexus-platform-upload-prod.s3.amazonaws.com","content-type":"binary/octet-stream","x-amz-server-side-encryption":"AES256","content-md5":"c9//V/4k6Ae9T7G8TgfNcw==","content-length":"5"},"expires":1540593726368}'} + body: {string: '{"url":"https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/d554/file/open/file-FPfBBVj0G7jkF0362xZX6pBV/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181114%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181114T224423Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=15716365c398113b7e6e6bf25b92ea997735c22a292225deb3d2e8bd1ee1e25c","headers":{"host":"dnanexus-platform-upload-prod.s3.amazonaws.com","content-type":"binary/octet-stream","x-amz-server-side-encryption":"AES256","content-md5":"c9//V/4k6Ae9T7G8TgfNcw==","content-length":"5"},"expires":1542235583823}'} headers: Connection: [keep-alive] Content-Length: ['692'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:40:06 GMT'] + Date: ['Wed, 14 Nov 2018 22:44:23 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593606354-149245] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235463811-758044] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -241,21 +241,21 @@ interactions: : - !!binary | QUVTMjU2 method: PUT - uri: https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/a27d/file/open/file-FP9kPVQ0KVYVkxQk1b9XV8z3/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181026%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181026T224006Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=b67196ed84d5baba8da2ff4196c84e6220f81bb23e289229492d9026d72d740c + uri: https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/d554/file/open/file-FPfBBVj0G7jkF0362xZX6pBV/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181114%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181114T224423Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=15716365c398113b7e6e6bf25b92ea997735c22a292225deb3d2e8bd1ee1e25c response: body: {string: ''} headers: Content-Length: ['0'] - Date: ['Fri, 26 Oct 2018 22:40:07 GMT'] + Date: ['Wed, 14 Nov 2018 22:44:25 GMT'] ETag: ['"73dfff57fe24e807bd4fb1bc4e07cd73"'] Server: [AmazonS3] - x-amz-expiration: ['expiry-date="Sat, 17 Nov 2018 00:00:00 GMT", rule-id="3weekpurge"'] - x-amz-id-2: [IgjEK85hBrKF61IElhHXcXPTyrLhv1t3oQzKkgOi9jYvTxTGwbnUMirKNZ2YIlay4MbxwZg2cbo=] - x-amz-request-id: [9EC1072E862E008F] + x-amz-expiration: ['expiry-date="Thu, 06 Dec 2018 00:00:00 GMT", rule-id="3weekpurge"'] + x-amz-id-2: [WZJ94ZQqq7VHVq5mPtVYpjSDoSOy7TgLxKOml8WhDKjag6eRfMGD54R/0jr3pLlHJ6VHGNh5zRQ=] + x-amz-request-id: [32ECB53DE3028141] x-amz-server-side-encryption: [AES256] status: {code: 200, message: OK} - request: - body: '{"fields": {"state": true}, "project": "project-FP9kPV80KVYqq57K4PxxVB2v"}' + body: '{"fields": {"state": true}, "project": "project-FPfBBVj0G7jz59pY2z38q605"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -275,19 +275,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kPVQ0KVYVkxQk1b9XV8z3/describe + uri: https://api.dnanexus.com/file-FPfBBVj0G7jkF0362xZX6pBV/describe response: - body: {string: '{"id":"file-FP9kPVQ0KVYVkxQk1b9XV8z3","state":"open"}'} + body: {string: '{"id":"file-FPfBBVj0G7jkF0362xZX6pBV","state":"open"}'} headers: Connection: [keep-alive] Content-Length: ['53'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:40:06 GMT'] + Date: ['Wed, 14 Nov 2018 22:44:24 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593606922-289577] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235464338-398311] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -311,23 +311,23 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kPVQ0KVYVkxQk1b9XV8z3/close + uri: https://api.dnanexus.com/file-FPfBBVj0G7jkF0362xZX6pBV/close response: - body: {string: '{"id":"file-FP9kPVQ0KVYVkxQk1b9XV8z3"}'} + body: {string: '{"id":"file-FPfBBVj0G7jkF0362xZX6pBV"}'} headers: Connection: [keep-alive] Content-Length: ['38'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:40:07 GMT'] + Date: ['Wed, 14 Nov 2018 22:44:24 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593607039-182780] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235464437-102842] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"name": "TestCopy.test_posix_to_existing_dx_fail.021e7345", "level": "VIEW", + body: '{"name": "TestCopy.test_posix_to_existing_dx_fail.f1de51d6", "level": "VIEW", "limit": 2}' headers: ? !!binary | @@ -350,17 +350,17 @@ interactions: method: POST uri: https://api.dnanexus.com/system/findProjects response: - body: {string: '{"results":[{"id":"project-FP9kPV80KVYqq57K4PxxVB2v","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} + body: {string: '{"results":[{"id":"project-FPfBBVj0G7jz59pY2z38q605","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} headers: Connection: [keep-alive] Content-Length: ['147'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:40:07 GMT'] + Date: ['Wed, 14 Nov 2018 22:44:24 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593607184-102693] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235464631-331768] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -385,61 +385,24 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kPV80KVYqq57K4PxxVB2v/listFolder + uri: https://api.dnanexus.com/project-FPfBBVj0G7jz59pY2z38q605/listFolder response: body: {string: '{"folders":[]}'} headers: Connection: [keep-alive] Content-Length: ['14'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:40:07 GMT'] + Date: ['Wed, 14 Nov 2018 22:44:24 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593607319-22100] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. - You can download it from https://wiki.dnanexus.com/Downloads#Install'] - status: {code: 200, message: OK} -- request: - body: '{"name": "TestCopy.test_posix_to_existing_dx_fail.021e7345", "level": "VIEW", - "limit": 2}' - headers: - ? !!binary | - QXV0aG9yaXphdGlvbg== - : - !!binary | - YmVhcmVyIHh2aWtXSmY1RWZ5b0ZLN3RzNThLZzAxTTIzZWZsT0Fx - ? !!binary | - Q29udGVudC1UeXBl - : - !!binary | - YXBwbGljYXRpb24vanNvbg== - ? !!binary | - RE5BbmV4dXMtQVBJ - : - !!binary | - MS4wLjA= - ? !!binary | - VXNlci1BZ2VudA== - : - !!binary | - ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp - dCk= - method: POST - uri: https://api.dnanexus.com/system/findProjects - response: - body: {string: '{"results":[{"id":"project-FP9kPV80KVYqq57K4PxxVB2v","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} - headers: - Connection: [keep-alive] - Content-Length: ['147'] - Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:40:07 GMT'] - Server: [nginx] - X-Content-Type-Options: [nosniff] - X-Powered-By: [Express] - X-Request-ID: [1540593607442-537731] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235464811-743224] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: body: '{"objects": [{"name": "file.txt", "folder": "/temp_folder", "project": - "project-FP9kPV80KVYqq57K4PxxVB2v", "batchsize": 2}]}' + "project-FPfBBVj0G7jz59pY2z38q605", "batchsize": 2}]}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -461,21 +424,21 @@ interactions: method: POST uri: https://api.dnanexus.com/system/resolveDataObjects response: - body: {string: '{"results":[[{"project":"project-FP9kPV80KVYqq57K4PxxVB2v","id":"file-FP9kPVQ0KVYVkxQk1b9XV8z3"}]]}'} + body: {string: '{"results":[[{"project":"project-FPfBBVj0G7jz59pY2z38q605","id":"file-FPfBBVj0G7jkF0362xZX6pBV"}]]}'} headers: Connection: [keep-alive] Content-Length: ['99'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:40:07 GMT'] + Date: ['Wed, 14 Nov 2018 22:44:24 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593607873-205140] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235464930-496646] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"project": "project-FP9kPV80KVYqq57K4PxxVB2v"}' + body: '{"project": "project-FPfBBVj0G7jz59pY2z38q605"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -495,19 +458,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kPVQ0KVYVkxQk1b9XV8z3/describe + uri: https://api.dnanexus.com/file-FPfBBVj0G7jkF0362xZX6pBV/describe response: - body: {string: '{"id":"file-FP9kPVQ0KVYVkxQk1b9XV8z3","project":"project-FP9kPV80KVYqq57K4PxxVB2v","class":"file","sponsored":false,"name":"file.txt","types":[],"state":"closed","hidden":false,"links":[],"folder":"/temp_folder","tags":[],"created":1540593606000,"modified":1540593607504,"createdBy":{"user":"user-akumar_counsyl"},"media":"text/plain","archivalState":"live","size":5}'} + body: {string: '{"id":"file-FPfBBVj0G7jkF0362xZX6pBV","project":"project-FPfBBVj0G7jz59pY2z38q605","class":"file","sponsored":false,"name":"file.txt","types":[],"state":"closed","hidden":false,"links":[],"folder":"/temp_folder","tags":[],"created":1542235463000,"modified":1542235464985,"createdBy":{"user":"user-akumar_counsyl"},"media":"text/plain","archivalState":"live","size":5}'} headers: Connection: [keep-alive] Content-Length: ['367'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:40:08 GMT'] + Date: ['Wed, 14 Nov 2018 22:44:25 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593607984-912315] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235465026-240651] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -531,19 +494,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kPV80KVYqq57K4PxxVB2v/destroy + uri: https://api.dnanexus.com/project-FPfBBVj0G7jz59pY2z38q605/destroy response: - body: {string: '{"id":"project-FP9kPV80KVYqq57K4PxxVB2v"}'} + body: {string: '{"id":"project-FPfBBVj0G7jz59pY2z38q605"}'} headers: Connection: [keep-alive] Content-Length: ['41'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:40:10 GMT'] + Date: ['Wed, 14 Nov 2018 22:44:27 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593608101-153585] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235465133-622900] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} version: 1 diff --git a/stor/tests/cassettes_py3/TestCopyTree/test_clonetree_within_project_fail.yaml b/stor_dx/stor_dx/tests/cassettes_py3/TestCopyTree/test_clonetree_within_project_fail.yaml similarity index 73% rename from stor/tests/cassettes_py3/TestCopyTree/test_clonetree_within_project_fail.yaml rename to stor_dx/stor_dx/tests/cassettes_py3/TestCopyTree/test_clonetree_within_project_fail.yaml index 108272b8..5b941590 100644 --- a/stor/tests/cassettes_py3/TestCopyTree/test_clonetree_within_project_fail.yaml +++ b/stor_dx/stor_dx/tests/cassettes_py3/TestCopyTree/test_clonetree_within_project_fail.yaml @@ -1,6 +1,6 @@ interactions: - request: - body: '{"name": "TestCopyTree.test_clonetree_within_project_fail.3d2b8fcb"}' + body: '{"name": "TestCopyTree.test_clonetree_within_project_fail.0388b2f5"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -22,17 +22,17 @@ interactions: method: POST uri: https://api.dnanexus.com/project/new response: - body: {string: '{"id":"project-FP9kPXQ0vv5GQbbj1bP1gJpF"}'} + body: {string: '{"id":"project-FPfBBY00yBJbPx212xgzzZyz"}'} headers: Connection: [keep-alive] Content-Length: ['41'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:40:10 GMT'] + Date: ['Wed, 14 Nov 2018 22:44:28 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593610846-503373] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235468367-493040] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -56,19 +56,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kPXQ0vv5GQbbj1bP1gJpF/describe + uri: https://api.dnanexus.com/project-FPfBBY00yBJbPx212xgzzZyz/describe response: - body: {string: '{"id":"project-FP9kPXQ0vv5GQbbj1bP1gJpF","name":"TestCopyTree.test_clonetree_within_project_fail.3d2b8fcb","class":"project","created":1540593610000,"modified":1540593610000,"billTo":"org-counsyl","level":"ADMINISTER","dataUsage":0,"sponsoredDataUsage":0,"region":"aws:us-east-1","summary":"","description":"","protected":false,"restricted":false,"downloadRestricted":false,"containsPHI":false,"createdBy":{"user":"user-akumar_counsyl"},"version":0,"storageCost":0,"pendingTransfer":null,"tags":[],"defaultInstanceType":"mem2_hdd2_x2","archivalState":"live","archivalProgress":null,"totalSponsoredEgressBytes":0,"consumedSponsoredEgressBytes":0,"atSpendingLimit":false}'} + body: {string: '{"id":"project-FPfBBY00yBJbPx212xgzzZyz","name":"TestCopyTree.test_clonetree_within_project_fail.0388b2f5","class":"project","created":1542235468000,"modified":1542235468000,"billTo":"org-counsyl","level":"ADMINISTER","dataUsage":0,"sponsoredDataUsage":0,"region":"aws:us-east-1","summary":"","description":"","protected":false,"restricted":false,"downloadRestricted":false,"containsPHI":false,"createdBy":{"user":"user-akumar_counsyl"},"version":0,"storageCost":0,"pendingTransfer":null,"tags":[],"defaultInstanceType":"mem2_hdd2_x2","archivalState":"live","archivalProgress":null,"totalSponsoredEgressBytes":0,"consumedSponsoredEgressBytes":0,"atSpendingLimit":false}'} headers: Connection: [keep-alive] Content-Length: ['669'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:40:11 GMT'] + Date: ['Wed, 14 Nov 2018 22:44:28 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593611047-457559] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235468513-370784] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -92,24 +92,24 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kPXQ0vv5GQbbj1bP1gJpF/newFolder + uri: https://api.dnanexus.com/project-FPfBBY00yBJbPx212xgzzZyz/newFolder response: - body: {string: '{"id":"project-FP9kPXQ0vv5GQbbj1bP1gJpF"}'} + body: {string: '{"id":"project-FPfBBY00yBJbPx212xgzzZyz"}'} headers: Connection: [keep-alive] Content-Length: ['41'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:40:11 GMT'] + Date: ['Wed, 14 Nov 2018 22:44:28 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593611174-826512] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235468631-720701] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"name": "folder_file.txt", "folder": "/temp_folder", "project": "project-FP9kPXQ0vv5GQbbj1bP1gJpF", - "nonce": "b''86c13bb27955b4f8f7170fd4649681c01fec617dad4f378a8a4442248d975a30''1540593611.253642"}' + body: '{"name": "folder_file.txt", "folder": "/temp_folder", "project": "project-FPfBBY00yBJbPx212xgzzZyz", + "nonce": "b''f848f0fd644e94d72f1f573a55bca74bf3827124cad1fc2146bea27ed8d0ce26''1542235468.693369"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -131,17 +131,17 @@ interactions: method: POST uri: https://api.dnanexus.com/file/new response: - body: {string: '{"id":"file-FP9kPXj0vv5Fq57K4PxxVB2z"}'} + body: {string: '{"id":"file-FPfBBY00yBJz59pY2z38q606"}'} headers: Connection: [keep-alive] Content-Length: ['38'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:40:11 GMT'] + Date: ['Wed, 14 Nov 2018 22:44:28 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593611304-956756] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235468739-512897] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -165,19 +165,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kPXQ0vv5GQbbj1bP1gJpF/describe + uri: https://api.dnanexus.com/project-FPfBBY00yBJbPx212xgzzZyz/describe response: - body: {string: '{"id":"project-FP9kPXQ0vv5GQbbj1bP1gJpF","fileUploadParameters":{"maximumPartSize":5368709120,"minimumPartSize":5242880,"maximumFileSize":5497558138880,"maximumNumParts":10000,"emptyLastPartAllowed":true}}'} + body: {string: '{"id":"project-FPfBBY00yBJbPx212xgzzZyz","fileUploadParameters":{"maximumPartSize":5368709120,"minimumPartSize":5242880,"maximumFileSize":5497558138880,"maximumNumParts":10000,"emptyLastPartAllowed":true}}'} headers: Connection: [keep-alive] Content-Length: ['205'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:40:11 GMT'] + Date: ['Wed, 14 Nov 2018 22:44:28 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593611463-549487] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235468870-328276] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -201,19 +201,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kPXj0vv5Fq57K4PxxVB2z/upload + uri: https://api.dnanexus.com/file-FPfBBY00yBJz59pY2z38q606/upload response: - body: {string: '{"url":"https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/c2e7/file/open/file-FP9kPXj0vv5Fq57K4PxxVB2z/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181026%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181026T224011Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=5bc21a51b94a4d67b8d38abb82909f52890bf8efdc222bd5899280ac5b81dfba","headers":{"host":"dnanexus-platform-upload-prod.s3.amazonaws.com","content-type":"binary/octet-stream","x-amz-server-side-encryption":"AES256","content-md5":"jXd/OF09/siBXSD3SWAm3A==","content-length":"4"},"expires":1540593731682}'} + body: {string: '{"url":"https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/9abf/file/open/file-FPfBBY00yBJz59pY2z38q606/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181114%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181114T224429Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=537fe78e07b4324cc0d53af4650bcb2bfdb9a7ecb33329b35446bb3ef2d4aedb","headers":{"host":"dnanexus-platform-upload-prod.s3.amazonaws.com","content-type":"binary/octet-stream","x-amz-server-side-encryption":"AES256","content-md5":"jXd/OF09/siBXSD3SWAm3A==","content-length":"4"},"expires":1542235589022}'} headers: Connection: [keep-alive] Content-Length: ['692'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:40:11 GMT'] + Date: ['Wed, 14 Nov 2018 22:44:29 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593611631-871018] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235468972-483321] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -241,21 +241,21 @@ interactions: : - !!binary | QUVTMjU2 method: PUT - uri: https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/c2e7/file/open/file-FP9kPXj0vv5Fq57K4PxxVB2z/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181026%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181026T224011Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=5bc21a51b94a4d67b8d38abb82909f52890bf8efdc222bd5899280ac5b81dfba + uri: https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/9abf/file/open/file-FPfBBY00yBJz59pY2z38q606/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181114%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181114T224429Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=537fe78e07b4324cc0d53af4650bcb2bfdb9a7ecb33329b35446bb3ef2d4aedb response: body: {string: ''} headers: Content-Length: ['0'] - Date: ['Fri, 26 Oct 2018 22:40:13 GMT'] + Date: ['Wed, 14 Nov 2018 22:44:30 GMT'] ETag: ['"8d777f385d3dfec8815d20f7496026dc"'] Server: [AmazonS3] - x-amz-expiration: ['expiry-date="Sat, 17 Nov 2018 00:00:00 GMT", rule-id="3weekpurge"'] - x-amz-id-2: [VUbTWi2vsAfLxPpXwAjjYjzz9eTpVCIu8qMXazM/fEuUqhnFDN+GZAbLtyPLUm5uVxwvywsDgyI=] - x-amz-request-id: [B1CB38FD7EC21B07] + x-amz-expiration: ['expiry-date="Thu, 06 Dec 2018 00:00:00 GMT", rule-id="3weekpurge"'] + x-amz-id-2: [NcK9bxmGCqgXUik7oS7xf1WreQt2B60F9nWnwmoGt3fz0MxMeZIm8sH/xooyhUOdqD2OYTPB7Ho=] + x-amz-request-id: [7F415C68FE22E774] x-amz-server-side-encryption: [AES256] status: {code: 200, message: OK} - request: - body: '{"fields": {"state": true}, "project": "project-FP9kPXQ0vv5GQbbj1bP1gJpF"}' + body: '{"fields": {"state": true}, "project": "project-FPfBBY00yBJbPx212xgzzZyz"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -275,19 +275,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kPXj0vv5Fq57K4PxxVB2z/describe + uri: https://api.dnanexus.com/file-FPfBBY00yBJz59pY2z38q606/describe response: - body: {string: '{"id":"file-FP9kPXj0vv5Fq57K4PxxVB2z","state":"open"}'} + body: {string: '{"id":"file-FPfBBY00yBJz59pY2z38q606","state":"open"}'} headers: Connection: [keep-alive] Content-Length: ['53'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:40:12 GMT'] + Date: ['Wed, 14 Nov 2018 22:44:29 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593612248-506645] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235469520-42769] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -311,23 +311,23 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kPXj0vv5Fq57K4PxxVB2z/close + uri: https://api.dnanexus.com/file-FPfBBY00yBJz59pY2z38q606/close response: - body: {string: '{"id":"file-FP9kPXj0vv5Fq57K4PxxVB2z"}'} + body: {string: '{"id":"file-FPfBBY00yBJz59pY2z38q606"}'} headers: Connection: [keep-alive] Content-Length: ['38'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:40:12 GMT'] + Date: ['Wed, 14 Nov 2018 22:44:29 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593612374-960152] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235469640-15563] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"fields": {"state": true}, "project": "project-FP9kPXQ0vv5GQbbj1bP1gJpF"}' + body: '{"fields": {"state": true}, "project": "project-FPfBBY00yBJbPx212xgzzZyz"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -347,23 +347,23 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kPXj0vv5Fq57K4PxxVB2z/describe + uri: https://api.dnanexus.com/file-FPfBBY00yBJz59pY2z38q606/describe response: - body: {string: '{"id":"file-FP9kPXj0vv5Fq57K4PxxVB2z","state":"closing"}'} + body: {string: '{"id":"file-FPfBBY00yBJz59pY2z38q606","state":"closing"}'} headers: Connection: [keep-alive] Content-Length: ['56'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:40:12 GMT'] + Date: ['Wed, 14 Nov 2018 22:44:29 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593612590-140975] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235469759-634957] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"fields": {"state": true}, "project": "project-FP9kPXQ0vv5GQbbj1bP1gJpF"}' + body: '{"fields": {"state": true}, "project": "project-FPfBBY00yBJbPx212xgzzZyz"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -383,19 +383,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kPXj0vv5Fq57K4PxxVB2z/describe + uri: https://api.dnanexus.com/file-FPfBBY00yBJz59pY2z38q606/describe response: - body: {string: '{"id":"file-FP9kPXj0vv5Fq57K4PxxVB2z","state":"closed"}'} + body: {string: '{"id":"file-FPfBBY00yBJz59pY2z38q606","state":"closed"}'} headers: Connection: [keep-alive] Content-Length: ['55'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:40:14 GMT'] + Date: ['Wed, 14 Nov 2018 22:44:31 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593614740-390895] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235471868-319796] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -419,24 +419,24 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kPXQ0vv5GQbbj1bP1gJpF/newFolder + uri: https://api.dnanexus.com/project-FPfBBY00yBJbPx212xgzzZyz/newFolder response: - body: {string: '{"id":"project-FP9kPXQ0vv5GQbbj1bP1gJpF"}'} + body: {string: '{"id":"project-FPfBBY00yBJbPx212xgzzZyz"}'} headers: Connection: [keep-alive] Content-Length: ['41'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:40:14 GMT'] + Date: ['Wed, 14 Nov 2018 22:44:32 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593614883-982301] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235471977-281062] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"name": "folder_file.txt", "folder": "/temp_folder2", "project": "project-FP9kPXQ0vv5GQbbj1bP1gJpF", - "nonce": "b''7c2b33cd8272bbc37c62a14e6470625c72ea16b5bca7329bc2aab6f333136714''1540593615.018028"}' + body: '{"name": "folder_file.txt", "folder": "/temp_folder2", "project": "project-FPfBBY00yBJbPx212xgzzZyz", + "nonce": "b''c77e5d0aa06cac8788922cb7acac4c97549d098f5d20b141e9436ad2ffc0f6ba''1542235472.037913"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -458,17 +458,17 @@ interactions: method: POST uri: https://api.dnanexus.com/file/new response: - body: {string: '{"id":"file-FP9kPYj0vv5Fq57K4PxxVB31"}'} + body: {string: '{"id":"file-FPfBBZ00yBJgx9Yb2yF88jBz"}'} headers: Connection: [keep-alive] Content-Length: ['38'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:40:15 GMT'] + Date: ['Wed, 14 Nov 2018 22:44:32 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593615070-89004] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235472083-368412] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -492,19 +492,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kPXQ0vv5GQbbj1bP1gJpF/describe + uri: https://api.dnanexus.com/project-FPfBBY00yBJbPx212xgzzZyz/describe response: - body: {string: '{"id":"project-FP9kPXQ0vv5GQbbj1bP1gJpF","fileUploadParameters":{"maximumPartSize":5368709120,"minimumPartSize":5242880,"maximumFileSize":5497558138880,"maximumNumParts":10000,"emptyLastPartAllowed":true}}'} + body: {string: '{"id":"project-FPfBBY00yBJbPx212xgzzZyz","fileUploadParameters":{"maximumPartSize":5368709120,"minimumPartSize":5242880,"maximumFileSize":5497558138880,"maximumNumParts":10000,"emptyLastPartAllowed":true}}'} headers: Connection: [keep-alive] Content-Length: ['205'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:40:15 GMT'] + Date: ['Wed, 14 Nov 2018 22:44:32 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593615280-541569] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235472225-296151] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -528,19 +528,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kPYj0vv5Fq57K4PxxVB31/upload + uri: https://api.dnanexus.com/file-FPfBBZ00yBJgx9Yb2yF88jBz/upload response: - body: {string: '{"url":"https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/1ae9/file/open/file-FP9kPYj0vv5Fq57K4PxxVB31/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181026%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181026T224015Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=c9daea6ad18c90c863358832cd4ecd388c95033d924d76cdadef875af5a6a58a","headers":{"host":"dnanexus-platform-upload-prod.s3.amazonaws.com","content-type":"binary/octet-stream","x-amz-server-side-encryption":"AES256","content-md5":"jXd/OF09/siBXSD3SWAm3A==","content-length":"4"},"expires":1540593735472}'} + body: {string: '{"url":"https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/483b/file/open/file-FPfBBZ00yBJgx9Yb2yF88jBz/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181114%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181114T224432Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=6c645d726f3e2ecab3b1e51be1a334b82811f4b1294c71f829e06af177b2524c","headers":{"host":"dnanexus-platform-upload-prod.s3.amazonaws.com","content-type":"binary/octet-stream","x-amz-server-side-encryption":"AES256","content-md5":"jXd/OF09/siBXSD3SWAm3A==","content-length":"4"},"expires":1542235592349}'} headers: Connection: [keep-alive] Content-Length: ['692'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:40:15 GMT'] + Date: ['Wed, 14 Nov 2018 22:44:32 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593615427-778285] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235472328-246770] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -568,21 +568,21 @@ interactions: : - !!binary | QUVTMjU2 method: PUT - uri: https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/1ae9/file/open/file-FP9kPYj0vv5Fq57K4PxxVB31/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181026%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181026T224015Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=c9daea6ad18c90c863358832cd4ecd388c95033d924d76cdadef875af5a6a58a + uri: https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/483b/file/open/file-FPfBBZ00yBJgx9Yb2yF88jBz/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181114%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181114T224432Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=6c645d726f3e2ecab3b1e51be1a334b82811f4b1294c71f829e06af177b2524c response: body: {string: ''} headers: Content-Length: ['0'] - Date: ['Fri, 26 Oct 2018 22:40:16 GMT'] + Date: ['Wed, 14 Nov 2018 22:44:33 GMT'] ETag: ['"8d777f385d3dfec8815d20f7496026dc"'] Server: [AmazonS3] - x-amz-expiration: ['expiry-date="Sat, 17 Nov 2018 00:00:00 GMT", rule-id="3weekpurge"'] - x-amz-id-2: [T1uSOwW+JGS4sTjuzDTh1nPv9rzb2bzpht/GjjfTW+fFdZrvzmE/bBGyn0F0HwndGpZBlcjB/nE=] - x-amz-request-id: [04BA3398D153BD48] + x-amz-expiration: ['expiry-date="Thu, 06 Dec 2018 00:00:00 GMT", rule-id="3weekpurge"'] + x-amz-id-2: [bk6buNhPnUPbgCkoQO15sGuQuC0xCJfLTbA/t7wFNlUNkas+04j8yuGwkDCdnrGtzv1KGK7j8Sw=] + x-amz-request-id: [E37E83255AEFC800] x-amz-server-side-encryption: [AES256] status: {code: 200, message: OK} - request: - body: '{"fields": {"state": true}, "project": "project-FP9kPXQ0vv5GQbbj1bP1gJpF"}' + body: '{"fields": {"state": true}, "project": "project-FPfBBY00yBJbPx212xgzzZyz"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -602,19 +602,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kPYj0vv5Fq57K4PxxVB31/describe + uri: https://api.dnanexus.com/file-FPfBBZ00yBJgx9Yb2yF88jBz/describe response: - body: {string: '{"id":"file-FP9kPYj0vv5Fq57K4PxxVB31","state":"open"}'} + body: {string: '{"id":"file-FPfBBZ00yBJgx9Yb2yF88jBz","state":"open"}'} headers: Connection: [keep-alive] Content-Length: ['53'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:40:15 GMT'] + Date: ['Wed, 14 Nov 2018 22:44:32 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593615706-500929] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235472655-496843] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -638,23 +638,23 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kPYj0vv5Fq57K4PxxVB31/close + uri: https://api.dnanexus.com/file-FPfBBZ00yBJgx9Yb2yF88jBz/close response: - body: {string: '{"id":"file-FP9kPYj0vv5Fq57K4PxxVB31"}'} + body: {string: '{"id":"file-FPfBBZ00yBJgx9Yb2yF88jBz"}'} headers: Connection: [keep-alive] Content-Length: ['38'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:40:15 GMT'] + Date: ['Wed, 14 Nov 2018 22:44:33 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593615919-676257] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235472956-331791] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"fields": {"state": true}, "project": "project-FP9kPXQ0vv5GQbbj1bP1gJpF"}' + body: '{"fields": {"state": true}, "project": "project-FPfBBY00yBJbPx212xgzzZyz"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -674,23 +674,23 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kPYj0vv5Fq57K4PxxVB31/describe + uri: https://api.dnanexus.com/file-FPfBBZ00yBJgx9Yb2yF88jBz/describe response: - body: {string: '{"id":"file-FP9kPYj0vv5Fq57K4PxxVB31","state":"closing"}'} + body: {string: '{"id":"file-FPfBBZ00yBJgx9Yb2yF88jBz","state":"closing"}'} headers: Connection: [keep-alive] Content-Length: ['56'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:40:16 GMT'] + Date: ['Wed, 14 Nov 2018 22:44:33 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593616077-103773] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235473189-718884] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"fields": {"state": true}, "project": "project-FP9kPXQ0vv5GQbbj1bP1gJpF"}' + body: '{"fields": {"state": true}, "project": "project-FPfBBY00yBJbPx212xgzzZyz"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -710,23 +710,23 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kPYj0vv5Fq57K4PxxVB31/describe + uri: https://api.dnanexus.com/file-FPfBBZ00yBJgx9Yb2yF88jBz/describe response: - body: {string: '{"id":"file-FP9kPYj0vv5Fq57K4PxxVB31","state":"closed"}'} + body: {string: '{"id":"file-FPfBBZ00yBJgx9Yb2yF88jBz","state":"closed"}'} headers: Connection: [keep-alive] Content-Length: ['55'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:40:18 GMT'] + Date: ['Wed, 14 Nov 2018 22:44:36 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593618256-911972] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235475351-399238] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"name": "TestCopyTree.test_clonetree_within_project_fail.3d2b8fcb", "level": + body: '{"name": "TestCopyTree.test_clonetree_within_project_fail.0388b2f5", "level": "VIEW", "limit": 2}' headers: ? !!binary | @@ -749,21 +749,21 @@ interactions: method: POST uri: https://api.dnanexus.com/system/findProjects response: - body: {string: '{"results":[{"id":"project-FP9kPXQ0vv5GQbbj1bP1gJpF","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} + body: {string: '{"results":[{"id":"project-FPfBBY00yBJbPx212xgzzZyz","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} headers: Connection: [keep-alive] Content-Length: ['147'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:40:18 GMT'] + Date: ['Wed, 14 Nov 2018 22:44:36 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593618505-560144] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235476239-961720] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"name": "TestCopyTree.test_clonetree_within_project_fail.3d2b8fcb", "level": + body: '{"name": "TestCopyTree.test_clonetree_within_project_fail.0388b2f5", "level": "VIEW", "limit": 2}' headers: ? !!binary | @@ -786,17 +786,17 @@ interactions: method: POST uri: https://api.dnanexus.com/system/findProjects response: - body: {string: '{"results":[{"id":"project-FP9kPXQ0vv5GQbbj1bP1gJpF","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} + body: {string: '{"results":[{"id":"project-FPfBBY00yBJbPx212xgzzZyz","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} headers: Connection: [keep-alive] Content-Length: ['147'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:40:18 GMT'] + Date: ['Wed, 14 Nov 2018 22:44:36 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593618703-750484] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235476389-493891] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -820,19 +820,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kPXQ0vv5GQbbj1bP1gJpF/destroy + uri: https://api.dnanexus.com/project-FPfBBY00yBJbPx212xgzzZyz/destroy response: - body: {string: '{"id":"project-FP9kPXQ0vv5GQbbj1bP1gJpF"}'} + body: {string: '{"id":"project-FPfBBY00yBJbPx212xgzzZyz"}'} headers: Connection: [keep-alive] Content-Length: ['41'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:40:21 GMT'] + Date: ['Wed, 14 Nov 2018 22:44:40 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593618928-452220] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235476516-842474] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} version: 1 diff --git a/stor/tests/cassettes_py3/TestCopyTree/test_dx_dir_to_dx_dir.yaml b/stor_dx/stor_dx/tests/cassettes_py3/TestCopyTree/test_dx_dir_to_dx_dir.yaml similarity index 74% rename from stor/tests/cassettes_py3/TestCopyTree/test_dx_dir_to_dx_dir.yaml rename to stor_dx/stor_dx/tests/cassettes_py3/TestCopyTree/test_dx_dir_to_dx_dir.yaml index 6ddb1f7f..0e3edd3f 100644 --- a/stor/tests/cassettes_py3/TestCopyTree/test_dx_dir_to_dx_dir.yaml +++ b/stor_dx/stor_dx/tests/cassettes_py3/TestCopyTree/test_dx_dir_to_dx_dir.yaml @@ -1,6 +1,6 @@ interactions: - request: - body: '{"name": "TestCopyTree.test_dx_dir_to_dx_dir.115a2c7f"}' + body: '{"name": "TestCopyTree.test_dx_dir_to_dx_dir.df19d549"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -22,17 +22,17 @@ interactions: method: POST uri: https://api.dnanexus.com/project/new response: - body: {string: '{"id":"project-FP9kPb80yKX75PY21Z8jFy7j"}'} + body: {string: '{"id":"project-FPfBBf00J2xP8B282y1pk0j5"}'} headers: Connection: [keep-alive] Content-Length: ['41'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:40:21 GMT'] + Date: ['Wed, 14 Nov 2018 22:44:40 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593621552-150291] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235480901-1365] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -56,19 +56,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kPb80yKX75PY21Z8jFy7j/describe + uri: https://api.dnanexus.com/project-FPfBBf00J2xP8B282y1pk0j5/describe response: - body: {string: '{"id":"project-FP9kPb80yKX75PY21Z8jFy7j","name":"TestCopyTree.test_dx_dir_to_dx_dir.115a2c7f","class":"project","created":1540593621000,"modified":1540593621000,"billTo":"org-counsyl","level":"ADMINISTER","dataUsage":0,"sponsoredDataUsage":0,"region":"aws:us-east-1","summary":"","description":"","protected":false,"restricted":false,"downloadRestricted":false,"containsPHI":false,"createdBy":{"user":"user-akumar_counsyl"},"version":0,"storageCost":0,"pendingTransfer":null,"tags":[],"defaultInstanceType":"mem2_hdd2_x2","archivalState":"live","archivalProgress":null,"totalSponsoredEgressBytes":0,"consumedSponsoredEgressBytes":0,"atSpendingLimit":false}'} + body: {string: '{"id":"project-FPfBBf00J2xP8B282y1pk0j5","name":"TestCopyTree.test_dx_dir_to_dx_dir.df19d549","class":"project","created":1542235480000,"modified":1542235480000,"billTo":"org-counsyl","level":"ADMINISTER","dataUsage":0,"sponsoredDataUsage":0,"region":"aws:us-east-1","summary":"","description":"","protected":false,"restricted":false,"downloadRestricted":false,"containsPHI":false,"createdBy":{"user":"user-akumar_counsyl"},"version":0,"storageCost":0,"pendingTransfer":null,"tags":[],"defaultInstanceType":"mem2_hdd2_x2","archivalState":"live","archivalProgress":null,"totalSponsoredEgressBytes":0,"consumedSponsoredEgressBytes":0,"atSpendingLimit":false}'} headers: Connection: [keep-alive] Content-Length: ['656'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:40:21 GMT'] + Date: ['Wed, 14 Nov 2018 22:44:41 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593621693-463617] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235481014-137585] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -92,24 +92,24 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kPb80yKX75PY21Z8jFy7j/newFolder + uri: https://api.dnanexus.com/project-FPfBBf00J2xP8B282y1pk0j5/newFolder response: - body: {string: '{"id":"project-FP9kPb80yKX75PY21Z8jFy7j"}'} + body: {string: '{"id":"project-FPfBBf00J2xP8B282y1pk0j5"}'} headers: Connection: [keep-alive] Content-Length: ['41'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:40:21 GMT'] + Date: ['Wed, 14 Nov 2018 22:44:41 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593621837-748346] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235481137-166821] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"name": "folder_file", "folder": "/temp_folder", "project": "project-FP9kPb80yKX75PY21Z8jFy7j", - "nonce": "b''4fd98f9ddaec9fc64a426083121a38e0126dc838aee632894676ad23274d03b1''1540593621.904084"}' + body: '{"name": "folder_file", "folder": "/temp_folder", "project": "project-FPfBBf00J2xP8B282y1pk0j5", + "nonce": "b''f2a021a6835cc9f99d177dc9c69c6bd46290b8d0103fa8e49b5e7f547a6c21ff''1542235481.192462"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -131,17 +131,17 @@ interactions: method: POST uri: https://api.dnanexus.com/file/new response: - body: {string: '{"id":"file-FP9kPb80yKX9yPz44YqJxVbf"}'} + body: {string: '{"id":"file-FPfBBf80J2xP8B282y1pk0j6"}'} headers: Connection: [keep-alive] Content-Length: ['38'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:40:22 GMT'] + Date: ['Wed, 14 Nov 2018 22:44:41 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593621947-227033] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235481238-529531] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -165,19 +165,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kPb80yKX75PY21Z8jFy7j/describe + uri: https://api.dnanexus.com/project-FPfBBf00J2xP8B282y1pk0j5/describe response: - body: {string: '{"id":"project-FP9kPb80yKX75PY21Z8jFy7j","fileUploadParameters":{"maximumPartSize":5368709120,"minimumPartSize":5242880,"maximumFileSize":5497558138880,"maximumNumParts":10000,"emptyLastPartAllowed":true}}'} + body: {string: '{"id":"project-FPfBBf00J2xP8B282y1pk0j5","fileUploadParameters":{"maximumPartSize":5368709120,"minimumPartSize":5242880,"maximumFileSize":5497558138880,"maximumNumParts":10000,"emptyLastPartAllowed":true}}'} headers: Connection: [keep-alive] Content-Length: ['205'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:40:22 GMT'] + Date: ['Wed, 14 Nov 2018 22:44:41 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593622100-914102] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235481373-724304] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -201,19 +201,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kPb80yKX9yPz44YqJxVbf/upload + uri: https://api.dnanexus.com/file-FPfBBf80J2xP8B282y1pk0j6/upload response: - body: {string: '{"url":"https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/bee3/file/open/file-FP9kPb80yKX9yPz44YqJxVbf/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181026%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181026T224022Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=09857e01b51273671e75dd481dc955c45bf17f2c8a789a743de63eacac049d4f","headers":{"host":"dnanexus-platform-upload-prod.s3.amazonaws.com","content-type":"binary/octet-stream","x-amz-server-side-encryption":"AES256","content-md5":"jXd/OF09/siBXSD3SWAm3A==","content-length":"4"},"expires":1540593742266}'} + body: {string: '{"url":"https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/1891/file/open/file-FPfBBf80J2xP8B282y1pk0j6/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181114%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181114T224441Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=a0e009b075b2b859cee1cf9188b092342520fea2833a9ce5de3f07ce51511966","headers":{"host":"dnanexus-platform-upload-prod.s3.amazonaws.com","content-type":"binary/octet-stream","x-amz-server-side-encryption":"AES256","content-md5":"jXd/OF09/siBXSD3SWAm3A==","content-length":"4"},"expires":1542235601506}'} headers: Connection: [keep-alive] Content-Length: ['692'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:40:22 GMT'] + Date: ['Wed, 14 Nov 2018 22:44:41 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593622237-495825] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235481489-868219] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -241,21 +241,21 @@ interactions: : - !!binary | QUVTMjU2 method: PUT - uri: https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/bee3/file/open/file-FP9kPb80yKX9yPz44YqJxVbf/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181026%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181026T224022Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=09857e01b51273671e75dd481dc955c45bf17f2c8a789a743de63eacac049d4f + uri: https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/1891/file/open/file-FPfBBf80J2xP8B282y1pk0j6/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181114%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181114T224441Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=a0e009b075b2b859cee1cf9188b092342520fea2833a9ce5de3f07ce51511966 response: body: {string: ''} headers: Content-Length: ['0'] - Date: ['Fri, 26 Oct 2018 22:40:23 GMT'] + Date: ['Wed, 14 Nov 2018 22:44:42 GMT'] ETag: ['"8d777f385d3dfec8815d20f7496026dc"'] Server: [AmazonS3] - x-amz-expiration: ['expiry-date="Sat, 17 Nov 2018 00:00:00 GMT", rule-id="3weekpurge"'] - x-amz-id-2: [GXdH6PlqxKMNBrfK7gs/TqSOhY1/UC1M8o5UihUddoUEAc79vwyQTHUpEe6Zmb98YYh+ormKDj8=] - x-amz-request-id: [704207497A1B70CD] + x-amz-expiration: ['expiry-date="Thu, 06 Dec 2018 00:00:00 GMT", rule-id="3weekpurge"'] + x-amz-id-2: [5v2et8+1px64vLeqWPh70E+xrc74Is366exrsXJveUVmoPY656FsU1qCmUGSbq8WTIoL2ygW8ck=] + x-amz-request-id: [678004EBC0958CC6] x-amz-server-side-encryption: [AES256] status: {code: 200, message: OK} - request: - body: '{"fields": {"state": true}, "project": "project-FP9kPb80yKX75PY21Z8jFy7j"}' + body: '{"fields": {"state": true}, "project": "project-FPfBBf00J2xP8B282y1pk0j5"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -275,19 +275,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kPb80yKX9yPz44YqJxVbf/describe + uri: https://api.dnanexus.com/file-FPfBBf80J2xP8B282y1pk0j6/describe response: - body: {string: '{"id":"file-FP9kPb80yKX9yPz44YqJxVbf","state":"open"}'} + body: {string: '{"id":"file-FPfBBf80J2xP8B282y1pk0j6","state":"open"}'} headers: Connection: [keep-alive] Content-Length: ['53'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:40:22 GMT'] + Date: ['Wed, 14 Nov 2018 22:44:42 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593622829-879710] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235481977-505607] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -311,23 +311,23 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kPb80yKX9yPz44YqJxVbf/close + uri: https://api.dnanexus.com/file-FPfBBf80J2xP8B282y1pk0j6/close response: - body: {string: '{"id":"file-FP9kPb80yKX9yPz44YqJxVbf"}'} + body: {string: '{"id":"file-FPfBBf80J2xP8B282y1pk0j6"}'} headers: Connection: [keep-alive] Content-Length: ['38'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:40:23 GMT'] + Date: ['Wed, 14 Nov 2018 22:44:42 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593623063-892820] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235482089-933078] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"fields": {"state": true}, "project": "project-FP9kPb80yKX75PY21Z8jFy7j"}' + body: '{"fields": {"state": true}, "project": "project-FPfBBf00J2xP8B282y1pk0j5"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -347,23 +347,23 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kPb80yKX9yPz44YqJxVbf/describe + uri: https://api.dnanexus.com/file-FPfBBf80J2xP8B282y1pk0j6/describe response: - body: {string: '{"id":"file-FP9kPb80yKX9yPz44YqJxVbf","state":"closing"}'} + body: {string: '{"id":"file-FPfBBf80J2xP8B282y1pk0j6","state":"closing"}'} headers: Connection: [keep-alive] Content-Length: ['56'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:40:23 GMT'] + Date: ['Wed, 14 Nov 2018 22:44:42 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593623217-377977] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235482215-395466] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"fields": {"state": true}, "project": "project-FP9kPb80yKX75PY21Z8jFy7j"}' + body: '{"fields": {"state": true}, "project": "project-FPfBBf00J2xP8B282y1pk0j5"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -383,19 +383,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kPb80yKX9yPz44YqJxVbf/describe + uri: https://api.dnanexus.com/file-FPfBBf80J2xP8B282y1pk0j6/describe response: - body: {string: '{"id":"file-FP9kPb80yKX9yPz44YqJxVbf","state":"closed"}'} + body: {string: '{"id":"file-FPfBBf80J2xP8B282y1pk0j6","state":"closed"}'} headers: Connection: [keep-alive] Content-Length: ['55'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:40:25 GMT'] + Date: ['Wed, 14 Nov 2018 22:44:44 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593625337-269920] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235484447-584807] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -419,24 +419,24 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kPb80yKX75PY21Z8jFy7j/newFolder + uri: https://api.dnanexus.com/project-FPfBBf00J2xP8B282y1pk0j5/newFolder response: - body: {string: '{"id":"project-FP9kPb80yKX75PY21Z8jFy7j"}'} + body: {string: '{"id":"project-FPfBBf00J2xP8B282y1pk0j5"}'} headers: Connection: [keep-alive] Content-Length: ['41'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:40:25 GMT'] + Date: ['Wed, 14 Nov 2018 22:44:44 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593625449-481064] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235484743-89132] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: body: '{"name": "temp_file.txt", "folder": "/temp_folder/another_folder", "project": - "project-FP9kPb80yKX75PY21Z8jFy7j", "nonce": "b''b1007ac14c8a93f618e564d650387672ab71d1be82952d08c92315a0e58429b7''1540593625.513008"}' + "project-FPfBBf00J2xP8B282y1pk0j5", "nonce": "b''514c4748128b5467e5dbdac0ef8098762be0b92bd38519ff97426abf22833891''1542235484.999234"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -458,17 +458,17 @@ interactions: method: POST uri: https://api.dnanexus.com/file/new response: - body: {string: '{"id":"file-FP9kPf80yKXG717x1b2qfg8Y"}'} + body: {string: '{"id":"file-FPfBBg80J2x2jKPq2yYBZQpK"}'} headers: Connection: [keep-alive] Content-Length: ['38'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:40:25 GMT'] + Date: ['Wed, 14 Nov 2018 22:44:45 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593625555-277754] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235485058-439496] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -492,19 +492,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kPb80yKX75PY21Z8jFy7j/describe + uri: https://api.dnanexus.com/project-FPfBBf00J2xP8B282y1pk0j5/describe response: - body: {string: '{"id":"project-FP9kPb80yKX75PY21Z8jFy7j","fileUploadParameters":{"maximumPartSize":5368709120,"minimumPartSize":5242880,"maximumFileSize":5497558138880,"maximumNumParts":10000,"emptyLastPartAllowed":true}}'} + body: {string: '{"id":"project-FPfBBf00J2xP8B282y1pk0j5","fileUploadParameters":{"maximumPartSize":5368709120,"minimumPartSize":5242880,"maximumFileSize":5497558138880,"maximumNumParts":10000,"emptyLastPartAllowed":true}}'} headers: Connection: [keep-alive] Content-Length: ['205'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:40:25 GMT'] + Date: ['Wed, 14 Nov 2018 22:44:45 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593625877-895452] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235485413-9515] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -528,19 +528,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kPf80yKXG717x1b2qfg8Y/upload + uri: https://api.dnanexus.com/file-FPfBBg80J2x2jKPq2yYBZQpK/upload response: - body: {string: '{"url":"https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/4922/file/open/file-FP9kPf80yKXG717x1b2qfg8Y/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181026%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181026T224026Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=eb0fa13fb4bd6be55eca8953a096b022b18634dced311038a415c0b204464804","headers":{"host":"dnanexus-platform-upload-prod.s3.amazonaws.com","content-type":"binary/octet-stream","x-amz-server-side-encryption":"AES256","content-md5":"jXd/OF09/siBXSD3SWAm3A==","content-length":"4"},"expires":1540593745999}'} + body: {string: '{"url":"https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/fb0d/file/open/file-FPfBBg80J2x2jKPq2yYBZQpK/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181114%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181114T224445Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=6153b2283d29cbac6f631ea0adf3973183f9193aad70a0421d9b76648b5a82ad","headers":{"host":"dnanexus-platform-upload-prod.s3.amazonaws.com","content-type":"binary/octet-stream","x-amz-server-side-encryption":"AES256","content-md5":"jXd/OF09/siBXSD3SWAm3A==","content-length":"4"},"expires":1542235605886}'} headers: Connection: [keep-alive] Content-Length: ['692'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:40:26 GMT'] + Date: ['Wed, 14 Nov 2018 22:44:45 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593625987-34397] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235485845-234647] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -568,21 +568,21 @@ interactions: : - !!binary | QUVTMjU2 method: PUT - uri: https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/4922/file/open/file-FP9kPf80yKXG717x1b2qfg8Y/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181026%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181026T224026Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=eb0fa13fb4bd6be55eca8953a096b022b18634dced311038a415c0b204464804 + uri: https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/fb0d/file/open/file-FPfBBg80J2x2jKPq2yYBZQpK/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181114%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181114T224445Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=6153b2283d29cbac6f631ea0adf3973183f9193aad70a0421d9b76648b5a82ad response: body: {string: ''} headers: Content-Length: ['0'] - Date: ['Fri, 26 Oct 2018 22:40:27 GMT'] + Date: ['Wed, 14 Nov 2018 22:44:47 GMT'] ETag: ['"8d777f385d3dfec8815d20f7496026dc"'] Server: [AmazonS3] - x-amz-expiration: ['expiry-date="Sat, 17 Nov 2018 00:00:00 GMT", rule-id="3weekpurge"'] - x-amz-id-2: [lGOaYbMLzq+vsaqmpU6M/rfYzytT46nmIYVfvh6ZasjGbgHYneWCINrefjzT5I65aYD9CGAr8ok=] - x-amz-request-id: [810EA13A4EEB2F3A] + x-amz-expiration: ['expiry-date="Thu, 06 Dec 2018 00:00:00 GMT", rule-id="3weekpurge"'] + x-amz-id-2: [ykTkGRsfsF8dkNI7gDzLskw+zVTdDtNSpNd2FO/SOh8DA3NHoD6P9z6LBMKV71d69orNTfma8tE=] + x-amz-request-id: [DE227FD81A24BFF1] x-amz-server-side-encryption: [AES256] status: {code: 200, message: OK} - request: - body: '{"fields": {"state": true}, "project": "project-FP9kPb80yKX75PY21Z8jFy7j"}' + body: '{"fields": {"state": true}, "project": "project-FPfBBf00J2xP8B282y1pk0j5"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -602,19 +602,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kPf80yKXG717x1b2qfg8Y/describe + uri: https://api.dnanexus.com/file-FPfBBg80J2x2jKPq2yYBZQpK/describe response: - body: {string: '{"id":"file-FP9kPf80yKXG717x1b2qfg8Y","state":"open"}'} + body: {string: '{"id":"file-FPfBBg80J2x2jKPq2yYBZQpK","state":"open"}'} headers: Connection: [keep-alive] Content-Length: ['53'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:40:26 GMT'] + Date: ['Wed, 14 Nov 2018 22:44:46 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593626221-604255] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235486285-886387] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -638,23 +638,23 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kPf80yKXG717x1b2qfg8Y/close + uri: https://api.dnanexus.com/file-FPfBBg80J2x2jKPq2yYBZQpK/close response: - body: {string: '{"id":"file-FP9kPf80yKXG717x1b2qfg8Y"}'} + body: {string: '{"id":"file-FPfBBg80J2x2jKPq2yYBZQpK"}'} headers: Connection: [keep-alive] Content-Length: ['38'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:40:26 GMT'] + Date: ['Wed, 14 Nov 2018 22:44:46 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593626332-486833] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235486465-189688] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"fields": {"state": true}, "project": "project-FP9kPb80yKX75PY21Z8jFy7j"}' + body: '{"fields": {"state": true}, "project": "project-FPfBBf00J2xP8B282y1pk0j5"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -674,23 +674,23 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kPf80yKXG717x1b2qfg8Y/describe + uri: https://api.dnanexus.com/file-FPfBBg80J2x2jKPq2yYBZQpK/describe response: - body: {string: '{"id":"file-FP9kPf80yKXG717x1b2qfg8Y","state":"closing"}'} + body: {string: '{"id":"file-FPfBBg80J2x2jKPq2yYBZQpK","state":"closing"}'} headers: Connection: [keep-alive] Content-Length: ['56'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:40:26 GMT'] + Date: ['Wed, 14 Nov 2018 22:44:46 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593626465-346901] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235486658-674344] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"fields": {"state": true}, "project": "project-FP9kPb80yKX75PY21Z8jFy7j"}' + body: '{"fields": {"state": true}, "project": "project-FPfBBf00J2xP8B282y1pk0j5"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -710,19 +710,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kPf80yKXG717x1b2qfg8Y/describe + uri: https://api.dnanexus.com/file-FPfBBg80J2x2jKPq2yYBZQpK/describe response: - body: {string: '{"id":"file-FP9kPf80yKXG717x1b2qfg8Y","state":"closed"}'} + body: {string: '{"id":"file-FPfBBg80J2x2jKPq2yYBZQpK","state":"closed"}'} headers: Connection: [keep-alive] Content-Length: ['55'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:40:28 GMT'] + Date: ['Wed, 14 Nov 2018 22:44:48 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593628586-325638] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235488840-647653] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -748,21 +748,21 @@ interactions: method: POST uri: https://api.dnanexus.com/project/new response: - body: {string: '{"id":"project-FP9kPg00xbyv717x1b2qfg8b"}'} + body: {string: '{"id":"project-FPfBBj009qQGjK1k2yqz9PpF"}'} headers: Connection: [keep-alive] Content-Length: ['41'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:40:28 GMT'] + Date: ['Wed, 14 Nov 2018 22:44:48 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593628693-934478] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235488939-101318] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"name": "TestCopyTree.test_dx_dir_to_dx_dir.115a2c7f", "level": "VIEW", + body: '{"name": "TestCopyTree.test_dx_dir_to_dx_dir.df19d549", "level": "VIEW", "limit": 2}' headers: ? !!binary | @@ -785,17 +785,17 @@ interactions: method: POST uri: https://api.dnanexus.com/system/findProjects response: - body: {string: '{"results":[{"id":"project-FP9kPb80yKX75PY21Z8jFy7j","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} + body: {string: '{"results":[{"id":"project-FPfBBf00J2xP8B282y1pk0j5","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} headers: Connection: [keep-alive] Content-Length: ['147'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:40:28 GMT'] + Date: ['Wed, 14 Nov 2018 22:44:49 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593628813-723440] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235489083-234114] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -820,19 +820,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kPb80yKX75PY21Z8jFy7j/listFolder + uri: https://api.dnanexus.com/project-FPfBBf00J2xP8B282y1pk0j5/listFolder response: body: {string: '{"folders":["/temp_folder/another_folder"]}'} headers: Connection: [keep-alive] Content-Length: ['43'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:40:28 GMT'] + Date: ['Wed, 14 Nov 2018 22:44:49 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593628944-221771] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235489201-398880] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -858,17 +858,17 @@ interactions: method: POST uri: https://api.dnanexus.com/system/findProjects response: - body: {string: '{"results":[{"id":"project-FP9kPg00xbyv717x1b2qfg8b","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} + body: {string: '{"results":[{"id":"project-FPfBBj009qQGjK1k2yqz9PpF","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} headers: Connection: [keep-alive] Content-Length: ['147'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:40:29 GMT'] + Date: ['Wed, 14 Nov 2018 22:44:49 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593629061-232388] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235489314-241100] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -893,25 +893,25 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kPg00xbyv717x1b2qfg8b/listFolder + uri: https://api.dnanexus.com/project-FPfBBj009qQGjK1k2yqz9PpF/listFolder response: body: {string: '{"error":{"type":"ResourceNotFound","message":"The specified folder - could not be found in project-FP9kPg00xbyv717x1b2qfg8b"}}'} + could not be found in project-FPfBBj009qQGjK1k2yqz9PpF"}}'} headers: Connection: [keep-alive] Content-Type: [application/json] - Date: ['Fri, 26 Oct 2018 22:40:29 GMT'] + Date: ['Wed, 14 Nov 2018 22:44:49 GMT'] Server: [nginx] Transfer-Encoding: [chunked] Vary: [Accept-Encoding] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593629229-954454] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235489491-658480] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 404, message: Not Found} - request: - body: '{"objects": [], "folders": ["/temp_folder"], "project": "project-FP9kPg00xbyv717x1b2qfg8b", + body: '{"objects": [], "folders": ["/temp_folder"], "project": "project-FPfBBj009qQGjK1k2yqz9PpF", "destination": "/", "parents": false}' headers: ? !!binary | @@ -932,19 +932,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kPb80yKX75PY21Z8jFy7j/clone + uri: https://api.dnanexus.com/project-FPfBBf00J2xP8B282y1pk0j5/clone response: - body: {string: '{"id":"project-FP9kPb80yKX75PY21Z8jFy7j","project":"project-FP9kPg00xbyv717x1b2qfg8b","exists":[]}'} + body: {string: '{"id":"project-FPfBBf00J2xP8B282y1pk0j5","project":"project-FPfBBj009qQGjK1k2yqz9PpF","exists":[]}'} headers: Connection: [keep-alive] Content-Length: ['98'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:40:29 GMT'] + Date: ['Wed, 14 Nov 2018 22:44:50 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593629639-219008] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235489892-763853] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -968,19 +968,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kPg00xbyv717x1b2qfg8b/renameFolder + uri: https://api.dnanexus.com/project-FPfBBj009qQGjK1k2yqz9PpF/renameFolder response: - body: {string: '{"id":"project-FP9kPg00xbyv717x1b2qfg8b"}'} + body: {string: '{"id":"project-FPfBBj009qQGjK1k2yqz9PpF"}'} headers: Connection: [keep-alive] Content-Length: ['41'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:40:29 GMT'] + Date: ['Wed, 14 Nov 2018 22:44:50 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593629889-376289] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235490095-15636] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -1006,17 +1006,17 @@ interactions: method: POST uri: https://api.dnanexus.com/system/findProjects response: - body: {string: '{"results":[{"id":"project-FP9kPg00xbyv717x1b2qfg8b","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} + body: {string: '{"results":[{"id":"project-FPfBBj009qQGjK1k2yqz9PpF","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} headers: Connection: [keep-alive] Content-Length: ['147'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:40:30 GMT'] + Date: ['Wed, 14 Nov 2018 22:44:50 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593630048-965195] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235490233-411745] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -1041,19 +1041,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kPg00xbyv717x1b2qfg8b/listFolder + uri: https://api.dnanexus.com/project-FPfBBj009qQGjK1k2yqz9PpF/listFolder response: body: {string: '{"folders":["/random.txt/another_folder"]}'} headers: Connection: [keep-alive] Content-Length: ['42'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:40:30 GMT'] + Date: ['Wed, 14 Nov 2018 22:44:50 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593630424-743336] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235490344-169620] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -1079,22 +1079,22 @@ interactions: method: POST uri: https://api.dnanexus.com/system/findProjects response: - body: {string: '{"results":[{"id":"project-FP9kPg00xbyv717x1b2qfg8b","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} + body: {string: '{"results":[{"id":"project-FPfBBj009qQGjK1k2yqz9PpF","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} headers: Connection: [keep-alive] Content-Length: ['147'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:40:30 GMT'] + Date: ['Wed, 14 Nov 2018 22:44:50 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593630537-892431] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235490466-335789] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: body: '{"objects": [{"name": "folder_file", "folder": "/random.txt", "project": - "project-FP9kPg00xbyv717x1b2qfg8b", "batchsize": 2}]}' + "project-FPfBBj009qQGjK1k2yqz9PpF", "batchsize": 2}]}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -1116,21 +1116,21 @@ interactions: method: POST uri: https://api.dnanexus.com/system/resolveDataObjects response: - body: {string: '{"results":[[{"project":"project-FP9kPg00xbyv717x1b2qfg8b","id":"file-FP9kPb80yKX9yPz44YqJxVbf"}]]}'} + body: {string: '{"results":[[{"project":"project-FPfBBj009qQGjK1k2yqz9PpF","id":"file-FPfBBf80J2xP8B282y1pk0j6"}]]}'} headers: Connection: [keep-alive] Content-Length: ['99'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:40:30 GMT'] + Date: ['Wed, 14 Nov 2018 22:44:50 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593630671-65871] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235490588-691253] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"project": "project-FP9kPg00xbyv717x1b2qfg8b"}' + body: '{"project": "project-FPfBBj009qQGjK1k2yqz9PpF"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -1150,19 +1150,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kPb80yKX9yPz44YqJxVbf/describe + uri: https://api.dnanexus.com/file-FPfBBf80J2xP8B282y1pk0j6/describe response: - body: {string: '{"id":"file-FP9kPb80yKX9yPz44YqJxVbf","project":"project-FP9kPg00xbyv717x1b2qfg8b","class":"file","sponsored":false,"name":"folder_file","types":[],"state":"closed","hidden":false,"links":[],"folder":"/random.txt","tags":[],"created":1540593621000,"modified":1540593629764,"createdBy":{"user":"user-akumar_counsyl"},"media":"text/plain","archivalState":"live","size":4}'} + body: {string: '{"id":"file-FPfBBf80J2xP8B282y1pk0j6","project":"project-FPfBBj009qQGjK1k2yqz9PpF","class":"file","sponsored":false,"name":"folder_file","types":[],"state":"closed","hidden":false,"links":[],"folder":"/random.txt","tags":[],"created":1542235481000,"modified":1542235489984,"createdBy":{"user":"user-akumar_counsyl"},"media":"text/plain","archivalState":"live","size":4}'} headers: Connection: [keep-alive] Content-Length: ['369'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:40:30 GMT'] + Date: ['Wed, 14 Nov 2018 22:44:50 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593630784-552343] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235490685-148881] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -1186,19 +1186,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kPg00xbyv717x1b2qfg8b/destroy + uri: https://api.dnanexus.com/project-FPfBBj009qQGjK1k2yqz9PpF/destroy response: - body: {string: '{"id":"project-FP9kPg00xbyv717x1b2qfg8b"}'} + body: {string: '{"id":"project-FPfBBj009qQGjK1k2yqz9PpF"}'} headers: Connection: [keep-alive] Content-Length: ['41'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:40:33 GMT'] + Date: ['Wed, 14 Nov 2018 22:44:54 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593630968-915448] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235490788-492316] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -1222,19 +1222,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kPb80yKX75PY21Z8jFy7j/destroy + uri: https://api.dnanexus.com/project-FPfBBf00J2xP8B282y1pk0j5/destroy response: - body: {string: '{"id":"project-FP9kPb80yKX75PY21Z8jFy7j"}'} + body: {string: '{"id":"project-FPfBBf00J2xP8B282y1pk0j5"}'} headers: Connection: [keep-alive] Content-Length: ['41'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:40:35 GMT'] + Date: ['Wed, 14 Nov 2018 22:44:57 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593633605-180926] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235494411-701585] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} version: 1 diff --git a/stor/tests/cassettes_py3/TestCopyTree/test_dx_dir_to_dx_dir_same_project.yaml b/stor_dx/stor_dx/tests/cassettes_py3/TestCopyTree/test_dx_dir_to_dx_dir_same_project.yaml similarity index 76% rename from stor/tests/cassettes_py3/TestCopyTree/test_dx_dir_to_dx_dir_same_project.yaml rename to stor_dx/stor_dx/tests/cassettes_py3/TestCopyTree/test_dx_dir_to_dx_dir_same_project.yaml index b8f22adc..768dbc87 100644 --- a/stor/tests/cassettes_py3/TestCopyTree/test_dx_dir_to_dx_dir_same_project.yaml +++ b/stor_dx/stor_dx/tests/cassettes_py3/TestCopyTree/test_dx_dir_to_dx_dir_same_project.yaml @@ -1,6 +1,6 @@ interactions: - request: - body: '{"name": "TestCopyTree.test_dx_dir_to_dx_dir_same_project.84db0ed0"}' + body: '{"name": "TestCopyTree.test_dx_dir_to_dx_dir_same_project.6030a7ae"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -22,17 +22,17 @@ interactions: method: POST uri: https://api.dnanexus.com/project/new response: - body: {string: '{"id":"project-FP9kPk00B44g5PY21Z8jFy7k"}'} + body: {string: '{"id":"project-FPfBBp80jpfgx9Yb2yF88jF1"}'} headers: Connection: [keep-alive] Content-Length: ['41'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:40:36 GMT'] + Date: ['Wed, 14 Nov 2018 22:44:57 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593636126-283689] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235497489-450625] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -56,19 +56,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kPk00B44g5PY21Z8jFy7k/describe + uri: https://api.dnanexus.com/project-FPfBBp80jpfgx9Yb2yF88jF1/describe response: - body: {string: '{"id":"project-FP9kPk00B44g5PY21Z8jFy7k","name":"TestCopyTree.test_dx_dir_to_dx_dir_same_project.84db0ed0","class":"project","created":1540593636000,"modified":1540593636000,"billTo":"org-counsyl","level":"ADMINISTER","dataUsage":0,"sponsoredDataUsage":0,"region":"aws:us-east-1","summary":"","description":"","protected":false,"restricted":false,"downloadRestricted":false,"containsPHI":false,"createdBy":{"user":"user-akumar_counsyl"},"version":0,"storageCost":0,"pendingTransfer":null,"tags":[],"defaultInstanceType":"mem2_hdd2_x2","archivalState":"live","archivalProgress":null,"totalSponsoredEgressBytes":0,"consumedSponsoredEgressBytes":0,"atSpendingLimit":false}'} + body: {string: '{"id":"project-FPfBBp80jpfgx9Yb2yF88jF1","name":"TestCopyTree.test_dx_dir_to_dx_dir_same_project.6030a7ae","class":"project","created":1542235497000,"modified":1542235497000,"billTo":"org-counsyl","level":"ADMINISTER","dataUsage":0,"sponsoredDataUsage":0,"region":"aws:us-east-1","summary":"","description":"","protected":false,"restricted":false,"downloadRestricted":false,"containsPHI":false,"createdBy":{"user":"user-akumar_counsyl"},"version":0,"storageCost":0,"pendingTransfer":null,"tags":[],"defaultInstanceType":"mem2_hdd2_x2","archivalState":"live","archivalProgress":null,"totalSponsoredEgressBytes":0,"consumedSponsoredEgressBytes":0,"atSpendingLimit":false}'} headers: Connection: [keep-alive] Content-Length: ['669'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:40:36 GMT'] + Date: ['Wed, 14 Nov 2018 22:44:57 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593636456-101926] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235497599-490276] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -92,24 +92,24 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kPk00B44g5PY21Z8jFy7k/newFolder + uri: https://api.dnanexus.com/project-FPfBBp80jpfgx9Yb2yF88jF1/newFolder response: - body: {string: '{"id":"project-FP9kPk00B44g5PY21Z8jFy7k"}'} + body: {string: '{"id":"project-FPfBBp80jpfgx9Yb2yF88jF1"}'} headers: Connection: [keep-alive] Content-Length: ['41'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:40:36 GMT'] + Date: ['Wed, 14 Nov 2018 22:44:57 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593636722-577584] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235497714-392642] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"name": "folder_file", "folder": "/temp_folder", "project": "project-FP9kPk00B44g5PY21Z8jFy7k", - "nonce": "b''075fc86353c1b625726bc130237b78a9d3bd0f04ac39a2dd8ec829f64e26fb74''1540593636.806607"}' + body: '{"name": "folder_file", "folder": "/temp_folder", "project": "project-FPfBBp80jpfgx9Yb2yF88jF1", + "nonce": "b''b3afbc81170869649c2622686cd4315396f76bfb7026a5aee70ab336e273370a''1542235497.771704"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -131,17 +131,17 @@ interactions: method: POST uri: https://api.dnanexus.com/file/new response: - body: {string: '{"id":"file-FP9kPk00B44vQbbj1bP1gJpK"}'} + body: {string: '{"id":"file-FPfBBp80jpfpq1y12xxjPZk7"}'} headers: Connection: [keep-alive] Content-Length: ['38'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:40:36 GMT'] + Date: ['Wed, 14 Nov 2018 22:44:57 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593636857-732614] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235497819-558229] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -165,19 +165,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kPk00B44g5PY21Z8jFy7k/describe + uri: https://api.dnanexus.com/project-FPfBBp80jpfgx9Yb2yF88jF1/describe response: - body: {string: '{"id":"project-FP9kPk00B44g5PY21Z8jFy7k","fileUploadParameters":{"maximumPartSize":5368709120,"minimumPartSize":5242880,"maximumFileSize":5497558138880,"maximumNumParts":10000,"emptyLastPartAllowed":true}}'} + body: {string: '{"id":"project-FPfBBp80jpfgx9Yb2yF88jF1","fileUploadParameters":{"maximumPartSize":5368709120,"minimumPartSize":5242880,"maximumFileSize":5497558138880,"maximumNumParts":10000,"emptyLastPartAllowed":true}}'} headers: Connection: [keep-alive] Content-Length: ['205'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:40:37 GMT'] + Date: ['Wed, 14 Nov 2018 22:44:57 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593637033-452734] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235497963-244745] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -201,19 +201,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kPk00B44vQbbj1bP1gJpK/upload + uri: https://api.dnanexus.com/file-FPfBBp80jpfpq1y12xxjPZk7/upload response: - body: {string: '{"url":"https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/0027/file/open/file-FP9kPk00B44vQbbj1bP1gJpK/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181026%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181026T224037Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=4313ff48d90a4a6d1b1df95de11b21bc58ea37ee84e3ee7a9cd5b2d0983a0a01","headers":{"host":"dnanexus-platform-upload-prod.s3.amazonaws.com","content-type":"binary/octet-stream","x-amz-server-side-encryption":"AES256","content-md5":"c9//V/4k6Ae9T7G8TgfNcw==","content-length":"5"},"expires":1540593757443}'} + body: {string: '{"url":"https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/2fc5/file/open/file-FPfBBp80jpfpq1y12xxjPZk7/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181114%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181114T224458Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=5bc46664634b4041d8a2ff55912cb0c60ef62df6b1cf92d011e23f2102c8cf89","headers":{"host":"dnanexus-platform-upload-prod.s3.amazonaws.com","content-type":"binary/octet-stream","x-amz-server-side-encryption":"AES256","content-md5":"c9//V/4k6Ae9T7G8TgfNcw==","content-length":"5"},"expires":1542235618076}'} headers: Connection: [keep-alive] Content-Length: ['692'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:40:37 GMT'] + Date: ['Wed, 14 Nov 2018 22:44:58 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593637265-331160] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235498064-527390] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -241,21 +241,21 @@ interactions: : - !!binary | QUVTMjU2 method: PUT - uri: https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/0027/file/open/file-FP9kPk00B44vQbbj1bP1gJpK/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181026%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181026T224037Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=4313ff48d90a4a6d1b1df95de11b21bc58ea37ee84e3ee7a9cd5b2d0983a0a01 + uri: https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/2fc5/file/open/file-FPfBBp80jpfpq1y12xxjPZk7/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181114%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181114T224458Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=5bc46664634b4041d8a2ff55912cb0c60ef62df6b1cf92d011e23f2102c8cf89 response: body: {string: ''} headers: Content-Length: ['0'] - Date: ['Fri, 26 Oct 2018 22:40:38 GMT'] + Date: ['Wed, 14 Nov 2018 22:44:59 GMT'] ETag: ['"73dfff57fe24e807bd4fb1bc4e07cd73"'] Server: [AmazonS3] - x-amz-expiration: ['expiry-date="Sat, 17 Nov 2018 00:00:00 GMT", rule-id="3weekpurge"'] - x-amz-id-2: [Yl7MFy53o/8MOorrvfun0DXm3H+mHrcm9Oa47mZwtlTfrBYvTCvUVeapIcIA/EXQ753URaBVY2Y=] - x-amz-request-id: [E5E1E98E89DEBCF1] + x-amz-expiration: ['expiry-date="Thu, 06 Dec 2018 00:00:00 GMT", rule-id="3weekpurge"'] + x-amz-id-2: [HjQadGYx5Trrza1M/AKp61v1qPdqHSLhWLUqa18ePm3fzt+YZql01pvwKkkH6km8EA/QBkEawN4=] + x-amz-request-id: [235E79DFDFF22EEE] x-amz-server-side-encryption: [AES256] status: {code: 200, message: OK} - request: - body: '{"fields": {"state": true}, "project": "project-FP9kPk00B44g5PY21Z8jFy7k"}' + body: '{"fields": {"state": true}, "project": "project-FPfBBp80jpfgx9Yb2yF88jF1"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -275,19 +275,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kPk00B44vQbbj1bP1gJpK/describe + uri: https://api.dnanexus.com/file-FPfBBp80jpfpq1y12xxjPZk7/describe response: - body: {string: '{"id":"file-FP9kPk00B44vQbbj1bP1gJpK","state":"open"}'} + body: {string: '{"id":"file-FPfBBp80jpfpq1y12xxjPZk7","state":"open"}'} headers: Connection: [keep-alive] Content-Length: ['53'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:40:38 GMT'] + Date: ['Wed, 14 Nov 2018 22:44:58 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593638019-638068] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235498576-769164] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -311,23 +311,23 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kPk00B44vQbbj1bP1gJpK/close + uri: https://api.dnanexus.com/file-FPfBBp80jpfpq1y12xxjPZk7/close response: - body: {string: '{"id":"file-FP9kPk00B44vQbbj1bP1gJpK"}'} + body: {string: '{"id":"file-FPfBBp80jpfpq1y12xxjPZk7"}'} headers: Connection: [keep-alive] Content-Length: ['38'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:40:38 GMT'] + Date: ['Wed, 14 Nov 2018 22:44:58 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593638204-632037] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235498681-424081] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"name": "TestCopyTree.test_dx_dir_to_dx_dir_same_project.84db0ed0", "level": + body: '{"name": "TestCopyTree.test_dx_dir_to_dx_dir_same_project.6030a7ae", "level": "VIEW", "limit": 2}' headers: ? !!binary | @@ -350,17 +350,17 @@ interactions: method: POST uri: https://api.dnanexus.com/system/findProjects response: - body: {string: '{"results":[{"id":"project-FP9kPk00B44g5PY21Z8jFy7k","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} + body: {string: '{"results":[{"id":"project-FPfBBp80jpfgx9Yb2yF88jF1","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} headers: Connection: [keep-alive] Content-Length: ['147'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:40:38 GMT'] + Date: ['Wed, 14 Nov 2018 22:44:58 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593638620-683969] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235498865-824459] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -385,23 +385,23 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kPk00B44g5PY21Z8jFy7k/listFolder + uri: https://api.dnanexus.com/project-FPfBBp80jpfgx9Yb2yF88jF1/listFolder response: body: {string: '{"folders":[]}'} headers: Connection: [keep-alive] Content-Length: ['14'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:40:38 GMT'] + Date: ['Wed, 14 Nov 2018 22:44:58 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593638844-829163] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235498982-527996] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"name": "TestCopyTree.test_dx_dir_to_dx_dir_same_project.84db0ed0", "level": + body: '{"name": "TestCopyTree.test_dx_dir_to_dx_dir_same_project.6030a7ae", "level": "VIEW", "limit": 2}' headers: ? !!binary | @@ -424,17 +424,17 @@ interactions: method: POST uri: https://api.dnanexus.com/system/findProjects response: - body: {string: '{"results":[{"id":"project-FP9kPk00B44g5PY21Z8jFy7k","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} + body: {string: '{"results":[{"id":"project-FPfBBp80jpfgx9Yb2yF88jF1","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} headers: Connection: [keep-alive] Content-Length: ['147'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:40:39 GMT'] + Date: ['Wed, 14 Nov 2018 22:44:59 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593638974-249539] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235499080-750026] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -459,25 +459,25 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kPk00B44g5PY21Z8jFy7k/listFolder + uri: https://api.dnanexus.com/project-FPfBBp80jpfgx9Yb2yF88jF1/listFolder response: body: {string: '{"error":{"type":"ResourceNotFound","message":"The specified folder - could not be found in project-FP9kPk00B44g5PY21Z8jFy7k"}}'} + could not be found in project-FPfBBp80jpfgx9Yb2yF88jF1"}}'} headers: Connection: [keep-alive] Content-Type: [application/json] - Date: ['Fri, 26 Oct 2018 22:40:39 GMT'] + Date: ['Wed, 14 Nov 2018 22:44:59 GMT'] Server: [nginx] Transfer-Encoding: [chunked] Vary: [Accept-Encoding] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593639259-444731] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235499204-263077] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 404, message: Not Found} - request: - body: '{"name": "TestCopyTree.test_dx_dir_to_dx_dir_same_project.84db0ed0", "level": + body: '{"name": "TestCopyTree.test_dx_dir_to_dx_dir_same_project.6030a7ae", "level": "VIEW", "limit": 2}' headers: ? !!binary | @@ -500,17 +500,17 @@ interactions: method: POST uri: https://api.dnanexus.com/system/findProjects response: - body: {string: '{"results":[{"id":"project-FP9kPk00B44g5PY21Z8jFy7k","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} + body: {string: '{"results":[{"id":"project-FPfBBp80jpfgx9Yb2yF88jF1","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} headers: Connection: [keep-alive] Content-Length: ['147'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:40:40 GMT'] + Date: ['Wed, 14 Nov 2018 22:44:59 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593639938-439010] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235499589-249081] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -534,19 +534,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kPk00B44g5PY21Z8jFy7k/newFolder + uri: https://api.dnanexus.com/project-FPfBBp80jpfgx9Yb2yF88jF1/newFolder response: - body: {string: '{"id":"project-FP9kPk00B44g5PY21Z8jFy7k"}'} + body: {string: '{"id":"project-FPfBBp80jpfgx9Yb2yF88jF1"}'} headers: Connection: [keep-alive] Content-Length: ['41'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:40:40 GMT'] + Date: ['Wed, 14 Nov 2018 22:44:59 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593640321-653665] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235499699-46638] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -570,19 +570,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kPk00B44g5PY21Z8jFy7k/move + uri: https://api.dnanexus.com/project-FPfBBp80jpfgx9Yb2yF88jF1/move response: - body: {string: '{"id":"project-FP9kPk00B44g5PY21Z8jFy7k"}'} + body: {string: '{"id":"project-FPfBBp80jpfgx9Yb2yF88jF1"}'} headers: Connection: [keep-alive] Content-Length: ['41'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:40:40 GMT'] + Date: ['Wed, 14 Nov 2018 22:44:59 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593640881-465286] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235499849-675304] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -606,23 +606,23 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kPk00B44g5PY21Z8jFy7k/renameFolder + uri: https://api.dnanexus.com/project-FPfBBp80jpfgx9Yb2yF88jF1/renameFolder response: - body: {string: '{"id":"project-FP9kPk00B44g5PY21Z8jFy7k"}'} + body: {string: '{"id":"project-FPfBBp80jpfgx9Yb2yF88jF1"}'} headers: Connection: [keep-alive] Content-Length: ['41'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:40:41 GMT'] + Date: ['Wed, 14 Nov 2018 22:45:00 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593641091-377250] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235499980-29854] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"name": "TestCopyTree.test_dx_dir_to_dx_dir_same_project.84db0ed0", "level": + body: '{"name": "TestCopyTree.test_dx_dir_to_dx_dir_same_project.6030a7ae", "level": "VIEW", "limit": 2}' headers: ? !!binary | @@ -645,17 +645,17 @@ interactions: method: POST uri: https://api.dnanexus.com/system/findProjects response: - body: {string: '{"results":[{"id":"project-FP9kPk00B44g5PY21Z8jFy7k","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} + body: {string: '{"results":[{"id":"project-FPfBBp80jpfgx9Yb2yF88jF1","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} headers: Connection: [keep-alive] Content-Length: ['147'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:40:41 GMT'] + Date: ['Wed, 14 Nov 2018 22:45:00 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593641685-845267] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235500119-264873] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -680,23 +680,23 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kPk00B44g5PY21Z8jFy7k/listFolder + uri: https://api.dnanexus.com/project-FPfBBp80jpfgx9Yb2yF88jF1/listFolder response: body: {string: '{"folders":[]}'} headers: Connection: [keep-alive] Content-Length: ['14'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:40:41 GMT'] + Date: ['Wed, 14 Nov 2018 22:45:00 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593641847-575887] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235500338-595470] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"name": "TestCopyTree.test_dx_dir_to_dx_dir_same_project.84db0ed0", "level": + body: '{"name": "TestCopyTree.test_dx_dir_to_dx_dir_same_project.6030a7ae", "level": "VIEW", "limit": 2}' headers: ? !!binary | @@ -719,22 +719,22 @@ interactions: method: POST uri: https://api.dnanexus.com/system/findProjects response: - body: {string: '{"results":[{"id":"project-FP9kPk00B44g5PY21Z8jFy7k","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} + body: {string: '{"results":[{"id":"project-FPfBBp80jpfgx9Yb2yF88jF1","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} headers: Connection: [keep-alive] Content-Length: ['147'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:40:42 GMT'] + Date: ['Wed, 14 Nov 2018 22:45:00 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593641975-892694] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235500445-540293] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: body: '{"objects": [{"name": "folder_file", "folder": "/new_folder/folder2", "project": - "project-FP9kPk00B44g5PY21Z8jFy7k", "batchsize": 2}]}' + "project-FPfBBp80jpfgx9Yb2yF88jF1", "batchsize": 2}]}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -756,21 +756,21 @@ interactions: method: POST uri: https://api.dnanexus.com/system/resolveDataObjects response: - body: {string: '{"results":[[{"project":"project-FP9kPk00B44g5PY21Z8jFy7k","id":"file-FP9kPk00B44vQbbj1bP1gJpK"}]]}'} + body: {string: '{"results":[[{"project":"project-FPfBBp80jpfgx9Yb2yF88jF1","id":"file-FPfBBp80jpfpq1y12xxjPZk7"}]]}'} headers: Connection: [keep-alive] Content-Length: ['99'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:40:42 GMT'] + Date: ['Wed, 14 Nov 2018 22:45:00 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593642335-799493] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235500564-317904] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"project": "project-FP9kPk00B44g5PY21Z8jFy7k"}' + body: '{"project": "project-FPfBBp80jpfgx9Yb2yF88jF1"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -790,19 +790,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kPk00B44vQbbj1bP1gJpK/describe + uri: https://api.dnanexus.com/file-FPfBBp80jpfpq1y12xxjPZk7/describe response: - body: {string: '{"id":"file-FP9kPk00B44vQbbj1bP1gJpK","project":"project-FP9kPk00B44g5PY21Z8jFy7k","class":"file","sponsored":false,"name":"folder_file","types":[],"state":"closed","hidden":false,"links":[],"folder":"/new_folder/folder2","tags":[],"created":1540593636000,"modified":1540593638969,"createdBy":{"user":"user-akumar_counsyl"},"media":"text/plain","archivalState":"live","size":5}'} + body: {string: '{"id":"file-FPfBBp80jpfpq1y12xxjPZk7","project":"project-FPfBBp80jpfgx9Yb2yF88jF1","class":"file","sponsored":false,"name":"folder_file","types":[],"state":"closed","hidden":false,"links":[],"folder":"/new_folder/folder2","tags":[],"created":1542235497000,"modified":1542235499286,"createdBy":{"user":"user-akumar_counsyl"},"media":"text/plain","archivalState":"live","size":5}'} headers: Connection: [keep-alive] Content-Length: ['377'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:40:42 GMT'] + Date: ['Wed, 14 Nov 2018 22:45:00 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593642554-247400] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235500678-351279] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -826,19 +826,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kPk00B44g5PY21Z8jFy7k/destroy + uri: https://api.dnanexus.com/project-FPfBBp80jpfgx9Yb2yF88jF1/destroy response: - body: {string: '{"id":"project-FP9kPk00B44g5PY21Z8jFy7k"}'} + body: {string: '{"id":"project-FPfBBp80jpfgx9Yb2yF88jF1"}'} headers: Connection: [keep-alive] Content-Length: ['41'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:40:44 GMT'] + Date: ['Wed, 14 Nov 2018 22:45:04 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593642678-48340] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235500831-902214] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} version: 1 diff --git a/stor/tests/cassettes_py3/TestCopyTree/test_dx_dir_to_dx_dir_same_project_fail.yaml b/stor_dx/stor_dx/tests/cassettes_py3/TestCopyTree/test_dx_dir_to_dx_dir_same_project_fail.yaml similarity index 75% rename from stor/tests/cassettes_py3/TestCopyTree/test_dx_dir_to_dx_dir_same_project_fail.yaml rename to stor_dx/stor_dx/tests/cassettes_py3/TestCopyTree/test_dx_dir_to_dx_dir_same_project_fail.yaml index 7f8887e6..fbe16d38 100644 --- a/stor/tests/cassettes_py3/TestCopyTree/test_dx_dir_to_dx_dir_same_project_fail.yaml +++ b/stor_dx/stor_dx/tests/cassettes_py3/TestCopyTree/test_dx_dir_to_dx_dir_same_project_fail.yaml @@ -1,6 +1,6 @@ interactions: - request: - body: '{"name": "TestCopyTree.test_dx_dir_to_dx_dir_same_project_fail.e46d9c5d"}' + body: '{"name": "TestCopyTree.test_dx_dir_to_dx_dir_same_project_fail.6f886a09"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -22,17 +22,17 @@ interactions: method: POST uri: https://api.dnanexus.com/project/new response: - body: {string: '{"id":"project-FP9kPq8057QvQbbj1bP1gJpQ"}'} + body: {string: '{"id":"project-FPfBBv0093kkF0362xZX6pBb"}'} headers: Connection: [keep-alive] Content-Length: ['41'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:40:45 GMT'] + Date: ['Wed, 14 Nov 2018 22:45:04 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593645481-279062] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235504757-74887] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -56,19 +56,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kPq8057QvQbbj1bP1gJpQ/describe + uri: https://api.dnanexus.com/project-FPfBBv0093kkF0362xZX6pBb/describe response: - body: {string: '{"id":"project-FP9kPq8057QvQbbj1bP1gJpQ","name":"TestCopyTree.test_dx_dir_to_dx_dir_same_project_fail.e46d9c5d","class":"project","created":1540593645000,"modified":1540593645000,"billTo":"org-counsyl","level":"ADMINISTER","dataUsage":0,"sponsoredDataUsage":0,"region":"aws:us-east-1","summary":"","description":"","protected":false,"restricted":false,"downloadRestricted":false,"containsPHI":false,"createdBy":{"user":"user-akumar_counsyl"},"version":0,"storageCost":0,"pendingTransfer":null,"tags":[],"defaultInstanceType":"mem2_hdd2_x2","archivalState":"live","archivalProgress":null,"totalSponsoredEgressBytes":0,"consumedSponsoredEgressBytes":0,"atSpendingLimit":false}'} + body: {string: '{"id":"project-FPfBBv0093kkF0362xZX6pBb","name":"TestCopyTree.test_dx_dir_to_dx_dir_same_project_fail.6f886a09","class":"project","created":1542235504000,"modified":1542235504000,"billTo":"org-counsyl","level":"ADMINISTER","dataUsage":0,"sponsoredDataUsage":0,"region":"aws:us-east-1","summary":"","description":"","protected":false,"restricted":false,"downloadRestricted":false,"containsPHI":false,"createdBy":{"user":"user-akumar_counsyl"},"version":0,"storageCost":0,"pendingTransfer":null,"tags":[],"defaultInstanceType":"mem2_hdd2_x2","archivalState":"live","archivalProgress":null,"totalSponsoredEgressBytes":0,"consumedSponsoredEgressBytes":0,"atSpendingLimit":false}'} headers: Connection: [keep-alive] Content-Length: ['674'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:40:45 GMT'] + Date: ['Wed, 14 Nov 2018 22:45:04 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593645616-409456] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235504864-607264] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -92,24 +92,24 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kPq8057QvQbbj1bP1gJpQ/newFolder + uri: https://api.dnanexus.com/project-FPfBBv0093kkF0362xZX6pBb/newFolder response: - body: {string: '{"id":"project-FP9kPq8057QvQbbj1bP1gJpQ"}'} + body: {string: '{"id":"project-FPfBBv0093kkF0362xZX6pBb"}'} headers: Connection: [keep-alive] Content-Length: ['41'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:40:45 GMT'] + Date: ['Wed, 14 Nov 2018 22:45:05 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593645870-24813] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235504993-743816] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"name": "folder_file", "folder": "/temp_folder", "project": "project-FP9kPq8057QvQbbj1bP1gJpQ", - "nonce": "b''c46761b0ec51afec3dc365a113591da706862dd481473f7594f90e8039b8f1e0''1540593646.035820"}' + body: '{"name": "folder_file", "folder": "/temp_folder", "project": "project-FPfBBv0093kkF0362xZX6pBb", + "nonce": "b''f89630ae9a206fdc4181585e2da24df467c9e44a99d5390e15790412e9dbe145''1542235505.047183"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -131,17 +131,17 @@ interactions: method: POST uri: https://api.dnanexus.com/file/new response: - body: {string: '{"id":"file-FP9kPqQ057QvQbbj1bP1gJpV"}'} + body: {string: '{"id":"file-FPfBBv8093kXjKPq2yYBZQpQ"}'} headers: Connection: [keep-alive] Content-Length: ['38'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:40:46 GMT'] + Date: ['Wed, 14 Nov 2018 22:45:05 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593646107-182513] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235505094-210547] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -165,19 +165,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kPq8057QvQbbj1bP1gJpQ/describe + uri: https://api.dnanexus.com/project-FPfBBv0093kkF0362xZX6pBb/describe response: - body: {string: '{"id":"project-FP9kPq8057QvQbbj1bP1gJpQ","fileUploadParameters":{"maximumPartSize":5368709120,"minimumPartSize":5242880,"maximumFileSize":5497558138880,"maximumNumParts":10000,"emptyLastPartAllowed":true}}'} + body: {string: '{"id":"project-FPfBBv0093kkF0362xZX6pBb","fileUploadParameters":{"maximumPartSize":5368709120,"minimumPartSize":5242880,"maximumFileSize":5497558138880,"maximumNumParts":10000,"emptyLastPartAllowed":true}}'} headers: Connection: [keep-alive] Content-Length: ['205'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:40:46 GMT'] + Date: ['Wed, 14 Nov 2018 22:45:05 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593646607-950434] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235505244-927649] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -201,19 +201,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kPqQ057QvQbbj1bP1gJpV/upload + uri: https://api.dnanexus.com/file-FPfBBv8093kXjKPq2yYBZQpQ/upload response: - body: {string: '{"url":"https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/6226/file/open/file-FP9kPqQ057QvQbbj1bP1gJpV/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181026%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181026T224046Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=8dff689590919d5f367b3458f8e343b541275b0082bc57dc0c52185412486fd6","headers":{"host":"dnanexus-platform-upload-prod.s3.amazonaws.com","content-type":"binary/octet-stream","x-amz-server-side-encryption":"AES256","content-md5":"c9//V/4k6Ae9T7G8TgfNcw==","content-length":"5"},"expires":1540593766815}'} + body: {string: '{"url":"https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/0071/file/open/file-FPfBBv8093kXjKPq2yYBZQpQ/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181114%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181114T224505Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=b9ebebd1389c99eed5b2008028bff8911a963ac555f296edcd057754b42036c4","headers":{"host":"dnanexus-platform-upload-prod.s3.amazonaws.com","content-type":"binary/octet-stream","x-amz-server-side-encryption":"AES256","content-md5":"c9//V/4k6Ae9T7G8TgfNcw==","content-length":"5"},"expires":1542235625361}'} headers: Connection: [keep-alive] Content-Length: ['692'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:40:46 GMT'] + Date: ['Wed, 14 Nov 2018 22:45:05 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593646759-959586] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235505348-386642] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -241,21 +241,21 @@ interactions: : - !!binary | QUVTMjU2 method: PUT - uri: https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/6226/file/open/file-FP9kPqQ057QvQbbj1bP1gJpV/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181026%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181026T224046Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=8dff689590919d5f367b3458f8e343b541275b0082bc57dc0c52185412486fd6 + uri: https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/0071/file/open/file-FPfBBv8093kXjKPq2yYBZQpQ/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181114%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181114T224505Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=b9ebebd1389c99eed5b2008028bff8911a963ac555f296edcd057754b42036c4 response: body: {string: ''} headers: Content-Length: ['0'] - Date: ['Fri, 26 Oct 2018 22:40:48 GMT'] + Date: ['Wed, 14 Nov 2018 22:45:06 GMT'] ETag: ['"73dfff57fe24e807bd4fb1bc4e07cd73"'] Server: [AmazonS3] - x-amz-expiration: ['expiry-date="Sat, 17 Nov 2018 00:00:00 GMT", rule-id="3weekpurge"'] - x-amz-id-2: [4fWO/D4HKWhWEZxdP9syu21KSZkd0uhrK6+qYKxq4odfVmlz5t94DnZN1+75E8CDkcFJy38Vel4=] - x-amz-request-id: [CFAAA7693A4AB5A6] + x-amz-expiration: ['expiry-date="Thu, 06 Dec 2018 00:00:00 GMT", rule-id="3weekpurge"'] + x-amz-id-2: [DsQbmLKXI8Id+P8lWNdE3iMxvo4/jxjAJajcSuFOgvDau6MHff0ShW8vzKShqtQ8NBMiMQPXiB4=] + x-amz-request-id: [637FDEFA66D4D54B] x-amz-server-side-encryption: [AES256] status: {code: 200, message: OK} - request: - body: '{"fields": {"state": true}, "project": "project-FP9kPq8057QvQbbj1bP1gJpQ"}' + body: '{"fields": {"state": true}, "project": "project-FPfBBv0093kkF0362xZX6pBb"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -275,19 +275,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kPqQ057QvQbbj1bP1gJpV/describe + uri: https://api.dnanexus.com/file-FPfBBv8093kXjKPq2yYBZQpQ/describe response: - body: {string: '{"id":"file-FP9kPqQ057QvQbbj1bP1gJpV","state":"open"}'} + body: {string: '{"id":"file-FPfBBv8093kXjKPq2yYBZQpQ","state":"open"}'} headers: Connection: [keep-alive] Content-Length: ['53'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:40:47 GMT'] + Date: ['Wed, 14 Nov 2018 22:45:05 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593647373-283237] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235505811-972699] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -311,19 +311,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kPqQ057QvQbbj1bP1gJpV/close + uri: https://api.dnanexus.com/file-FPfBBv8093kXjKPq2yYBZQpQ/close response: - body: {string: '{"id":"file-FP9kPqQ057QvQbbj1bP1gJpV"}'} + body: {string: '{"id":"file-FPfBBv8093kXjKPq2yYBZQpQ"}'} headers: Connection: [keep-alive] Content-Length: ['38'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:40:48 GMT'] + Date: ['Wed, 14 Nov 2018 22:45:05 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593647620-827614] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235505917-323944] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -347,24 +347,24 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kPq8057QvQbbj1bP1gJpQ/newFolder + uri: https://api.dnanexus.com/project-FPfBBv0093kkF0362xZX6pBb/newFolder response: - body: {string: '{"id":"project-FP9kPq8057QvQbbj1bP1gJpQ"}'} + body: {string: '{"id":"project-FPfBBv0093kkF0362xZX6pBb"}'} headers: Connection: [keep-alive] Content-Length: ['41'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:40:49 GMT'] + Date: ['Wed, 14 Nov 2018 22:45:06 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593648955-632692] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235506037-35] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: body: '{"name": "temp_file.txt", "folder": "/another_folder/temp_folder", "project": - "project-FP9kPq8057QvQbbj1bP1gJpQ", "nonce": "b''ffff53072ea7194b2e441675487c63f71cbf249c54e608c7ec00aff1aaa0606e''1540593649.064509"}' + "project-FPfBBv0093kkF0362xZX6pBb", "nonce": "b''7d3ee0e0361e30329bd5b9909324ca42e55cbb86f7e23fa5f7346435deb6c4d0''1542235506.090553"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -386,17 +386,17 @@ interactions: method: POST uri: https://api.dnanexus.com/file/new response: - body: {string: '{"id":"file-FP9kPv8057Qqq57K4PxxVB33"}'} + body: {string: '{"id":"file-FPfBBvQ093kz8B282y1pk0j8"}'} headers: Connection: [keep-alive] Content-Length: ['38'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:40:49 GMT'] + Date: ['Wed, 14 Nov 2018 22:45:06 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593649119-620508] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235506134-114995] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -420,19 +420,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kPq8057QvQbbj1bP1gJpQ/describe + uri: https://api.dnanexus.com/project-FPfBBv0093kkF0362xZX6pBb/describe response: - body: {string: '{"id":"project-FP9kPq8057QvQbbj1bP1gJpQ","fileUploadParameters":{"maximumPartSize":5368709120,"minimumPartSize":5242880,"maximumFileSize":5497558138880,"maximumNumParts":10000,"emptyLastPartAllowed":true}}'} + body: {string: '{"id":"project-FPfBBv0093kkF0362xZX6pBb","fileUploadParameters":{"maximumPartSize":5368709120,"minimumPartSize":5242880,"maximumFileSize":5497558138880,"maximumNumParts":10000,"emptyLastPartAllowed":true}}'} headers: Connection: [keep-alive] Content-Length: ['205'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:40:49 GMT'] + Date: ['Wed, 14 Nov 2018 22:45:06 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593649401-847457] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235506251-287026] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -456,19 +456,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kPv8057Qqq57K4PxxVB33/upload + uri: https://api.dnanexus.com/file-FPfBBvQ093kz8B282y1pk0j8/upload response: - body: {string: '{"url":"https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/859d/file/open/file-FP9kPv8057Qqq57K4PxxVB33/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181026%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181026T224049Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=116ba2f69c688692e18e11ac85219226038cf35651f00c5e71a1822956192343","headers":{"host":"dnanexus-platform-upload-prod.s3.amazonaws.com","content-type":"binary/octet-stream","x-amz-server-side-encryption":"AES256","content-md5":"idkDvDXe3nJP1SxRQ3/1/Q==","content-length":"5"},"expires":1540593769622}'} + body: {string: '{"url":"https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/3886/file/open/file-FPfBBvQ093kz8B282y1pk0j8/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181114%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181114T224506Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=6c0db48b6a98bc05f8dea05f615699cb1d9e09d6caba302445088bc33abf04af","headers":{"host":"dnanexus-platform-upload-prod.s3.amazonaws.com","content-type":"binary/octet-stream","x-amz-server-side-encryption":"AES256","content-md5":"idkDvDXe3nJP1SxRQ3/1/Q==","content-length":"5"},"expires":1542235626364}'} headers: Connection: [keep-alive] Content-Length: ['692'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:40:49 GMT'] + Date: ['Wed, 14 Nov 2018 22:45:06 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593649581-665028] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235506351-910378] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -496,21 +496,21 @@ interactions: : - !!binary | QUVTMjU2 method: PUT - uri: https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/859d/file/open/file-FP9kPv8057Qqq57K4PxxVB33/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181026%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181026T224049Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=116ba2f69c688692e18e11ac85219226038cf35651f00c5e71a1822956192343 + uri: https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/3886/file/open/file-FPfBBvQ093kz8B282y1pk0j8/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181114%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181114T224506Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=6c0db48b6a98bc05f8dea05f615699cb1d9e09d6caba302445088bc33abf04af response: body: {string: ''} headers: Content-Length: ['0'] - Date: ['Fri, 26 Oct 2018 22:40:50 GMT'] + Date: ['Wed, 14 Nov 2018 22:45:07 GMT'] ETag: ['"89d903bc35dede724fd52c51437ff5fd"'] Server: [AmazonS3] - x-amz-expiration: ['expiry-date="Sat, 17 Nov 2018 00:00:00 GMT", rule-id="3weekpurge"'] - x-amz-id-2: [VnaknVCufLRnlwDir2KpEZMwJNOuX1cb2ZeM0f6JIwAMD2GR3O5mrJf1PjWBqJpHOH6nUEKoJxg=] - x-amz-request-id: [677FD5B9E9BCFC3B] + x-amz-expiration: ['expiry-date="Thu, 06 Dec 2018 00:00:00 GMT", rule-id="3weekpurge"'] + x-amz-id-2: [MuVl9OhNc9onvbsRCrl7Y5BWE17I/fHhjLt2lXFhcqNTg9gZOZyDlntzlib/GxWjzHUWSteylRc=] + x-amz-request-id: [96D155B5CC87D000] x-amz-server-side-encryption: [AES256] status: {code: 200, message: OK} - request: - body: '{"fields": {"state": true}, "project": "project-FP9kPq8057QvQbbj1bP1gJpQ"}' + body: '{"fields": {"state": true}, "project": "project-FPfBBv0093kkF0362xZX6pBb"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -530,19 +530,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kPv8057Qqq57K4PxxVB33/describe + uri: https://api.dnanexus.com/file-FPfBBvQ093kz8B282y1pk0j8/describe response: - body: {string: '{"id":"file-FP9kPv8057Qqq57K4PxxVB33","state":"open"}'} + body: {string: '{"id":"file-FPfBBvQ093kz8B282y1pk0j8","state":"open"}'} headers: Connection: [keep-alive] Content-Length: ['53'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:40:49 GMT'] + Date: ['Wed, 14 Nov 2018 22:45:06 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593649852-71658] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235506600-447373] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -566,23 +566,23 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kPv8057Qqq57K4PxxVB33/close + uri: https://api.dnanexus.com/file-FPfBBvQ093kz8B282y1pk0j8/close response: - body: {string: '{"id":"file-FP9kPv8057Qqq57K4PxxVB33"}'} + body: {string: '{"id":"file-FPfBBvQ093kz8B282y1pk0j8"}'} headers: Connection: [keep-alive] Content-Length: ['38'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:40:50 GMT'] + Date: ['Wed, 14 Nov 2018 22:45:06 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593650041-47266] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235506704-978209] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"name": "TestCopyTree.test_dx_dir_to_dx_dir_same_project_fail.e46d9c5d", + body: '{"name": "TestCopyTree.test_dx_dir_to_dx_dir_same_project_fail.6f886a09", "level": "VIEW", "limit": 2}' headers: ? !!binary | @@ -605,17 +605,17 @@ interactions: method: POST uri: https://api.dnanexus.com/system/findProjects response: - body: {string: '{"results":[{"id":"project-FP9kPq8057QvQbbj1bP1gJpQ","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} + body: {string: '{"results":[{"id":"project-FPfBBv0093kkF0362xZX6pBb","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} headers: Connection: [keep-alive] Content-Length: ['147'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:40:50 GMT'] + Date: ['Wed, 14 Nov 2018 22:45:06 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593650269-255812] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235506846-346014] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -640,23 +640,23 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kPq8057QvQbbj1bP1gJpQ/listFolder + uri: https://api.dnanexus.com/project-FPfBBv0093kkF0362xZX6pBb/listFolder response: body: {string: '{"folders":[]}'} headers: Connection: [keep-alive] Content-Length: ['14'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:40:50 GMT'] + Date: ['Wed, 14 Nov 2018 22:45:06 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593650555-880842] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235506961-795879] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"name": "TestCopyTree.test_dx_dir_to_dx_dir_same_project_fail.e46d9c5d", + body: '{"name": "TestCopyTree.test_dx_dir_to_dx_dir_same_project_fail.6f886a09", "level": "VIEW", "limit": 2}' headers: ? !!binary | @@ -679,17 +679,17 @@ interactions: method: POST uri: https://api.dnanexus.com/system/findProjects response: - body: {string: '{"results":[{"id":"project-FP9kPq8057QvQbbj1bP1gJpQ","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} + body: {string: '{"results":[{"id":"project-FPfBBv0093kkF0362xZX6pBb","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} headers: Connection: [keep-alive] Content-Length: ['147'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:40:50 GMT'] + Date: ['Wed, 14 Nov 2018 22:45:07 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593650722-54041] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235507065-994420] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -714,23 +714,23 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kPq8057QvQbbj1bP1gJpQ/listFolder + uri: https://api.dnanexus.com/project-FPfBBv0093kkF0362xZX6pBb/listFolder response: body: {string: '{"folders":[]}'} headers: Connection: [keep-alive] Content-Length: ['14'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:40:50 GMT'] + Date: ['Wed, 14 Nov 2018 22:45:07 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593650887-52672] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235507199-792554] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"name": "TestCopyTree.test_dx_dir_to_dx_dir_same_project_fail.e46d9c5d", + body: '{"name": "TestCopyTree.test_dx_dir_to_dx_dir_same_project_fail.6f886a09", "level": "VIEW", "limit": 2}' headers: ? !!binary | @@ -753,17 +753,17 @@ interactions: method: POST uri: https://api.dnanexus.com/system/findProjects response: - body: {string: '{"results":[{"id":"project-FP9kPq8057QvQbbj1bP1gJpQ","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} + body: {string: '{"results":[{"id":"project-FPfBBv0093kkF0362xZX6pBb","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} headers: Connection: [keep-alive] Content-Length: ['147'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:40:51 GMT'] + Date: ['Wed, 14 Nov 2018 22:45:07 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593651025-240484] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235507297-595109] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -788,23 +788,23 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kPq8057QvQbbj1bP1gJpQ/listFolder + uri: https://api.dnanexus.com/project-FPfBBv0093kkF0362xZX6pBb/listFolder response: body: {string: '{"folders":["/another_folder/temp_folder"]}'} headers: Connection: [keep-alive] Content-Length: ['43'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:40:51 GMT'] + Date: ['Wed, 14 Nov 2018 22:45:07 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593651626-813445] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235507427-706991] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"name": "TestCopyTree.test_dx_dir_to_dx_dir_same_project_fail.e46d9c5d", + body: '{"name": "TestCopyTree.test_dx_dir_to_dx_dir_same_project_fail.6f886a09", "level": "VIEW", "limit": 2}' headers: ? !!binary | @@ -827,17 +827,17 @@ interactions: method: POST uri: https://api.dnanexus.com/system/findProjects response: - body: {string: '{"results":[{"id":"project-FP9kPq8057QvQbbj1bP1gJpQ","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} + body: {string: '{"results":[{"id":"project-FPfBBv0093kkF0362xZX6pBb","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} headers: Connection: [keep-alive] Content-Length: ['147'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:40:52 GMT'] + Date: ['Wed, 14 Nov 2018 22:45:07 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593651997-960855] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235507551-101486] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -862,19 +862,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kPq8057QvQbbj1bP1gJpQ/listFolder + uri: https://api.dnanexus.com/project-FPfBBv0093kkF0362xZX6pBb/listFolder response: body: {string: '{"folders":[]}'} headers: Connection: [keep-alive] Content-Length: ['14'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:40:52 GMT'] + Date: ['Wed, 14 Nov 2018 22:45:07 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593652442-853306] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235507663-764776] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -898,19 +898,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kPq8057QvQbbj1bP1gJpQ/destroy + uri: https://api.dnanexus.com/project-FPfBBv0093kkF0362xZX6pBb/destroy response: - body: {string: '{"id":"project-FP9kPq8057QvQbbj1bP1gJpQ"}'} + body: {string: '{"id":"project-FPfBBv0093kkF0362xZX6pBb"}'} headers: Connection: [keep-alive] Content-Length: ['41'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:40:55 GMT'] + Date: ['Wed, 14 Nov 2018 22:45:11 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593652644-812901] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235507760-336195] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} version: 1 diff --git a/stor/tests/cassettes_py3/TestCopyTree/test_dx_dir_to_dx_dir_w_slash.yaml b/stor_dx/stor_dx/tests/cassettes_py3/TestCopyTree/test_dx_dir_to_dx_dir_w_slash.yaml similarity index 75% rename from stor/tests/cassettes_py3/TestCopyTree/test_dx_dir_to_dx_dir_w_slash.yaml rename to stor_dx/stor_dx/tests/cassettes_py3/TestCopyTree/test_dx_dir_to_dx_dir_w_slash.yaml index 47df225f..7aef3ce9 100644 --- a/stor/tests/cassettes_py3/TestCopyTree/test_dx_dir_to_dx_dir_w_slash.yaml +++ b/stor_dx/stor_dx/tests/cassettes_py3/TestCopyTree/test_dx_dir_to_dx_dir_w_slash.yaml @@ -1,6 +1,6 @@ interactions: - request: - body: '{"name": "TestCopyTree.test_dx_dir_to_dx_dir_w_slash.4c4515c0"}' + body: '{"name": "TestCopyTree.test_dx_dir_to_dx_dir_w_slash.bfee4c6b"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -22,17 +22,17 @@ interactions: method: POST uri: https://api.dnanexus.com/project/new response: - body: {string: '{"id":"project-FP9kPxj0ZG761pZK0z8G44Yj"}'} + body: {string: '{"id":"project-FPfBBxj0q8Gz59pY2z38q608"}'} headers: Connection: [keep-alive] Content-Length: ['41'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:40:55 GMT'] + Date: ['Wed, 14 Nov 2018 22:45:11 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593655737-892794] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235511816-179324] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -56,19 +56,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kPxj0ZG761pZK0z8G44Yj/describe + uri: https://api.dnanexus.com/project-FPfBBxj0q8Gz59pY2z38q608/describe response: - body: {string: '{"id":"project-FP9kPxj0ZG761pZK0z8G44Yj","name":"TestCopyTree.test_dx_dir_to_dx_dir_w_slash.4c4515c0","class":"project","created":1540593655000,"modified":1540593655000,"billTo":"org-counsyl","level":"ADMINISTER","dataUsage":0,"sponsoredDataUsage":0,"region":"aws:us-east-1","summary":"","description":"","protected":false,"restricted":false,"downloadRestricted":false,"containsPHI":false,"createdBy":{"user":"user-akumar_counsyl"},"version":0,"storageCost":0,"pendingTransfer":null,"tags":[],"defaultInstanceType":"mem2_hdd2_x2","archivalState":"live","archivalProgress":null,"totalSponsoredEgressBytes":0,"consumedSponsoredEgressBytes":0,"atSpendingLimit":false}'} + body: {string: '{"id":"project-FPfBBxj0q8Gz59pY2z38q608","name":"TestCopyTree.test_dx_dir_to_dx_dir_w_slash.bfee4c6b","class":"project","created":1542235511000,"modified":1542235511000,"billTo":"org-counsyl","level":"ADMINISTER","dataUsage":0,"sponsoredDataUsage":0,"region":"aws:us-east-1","summary":"","description":"","protected":false,"restricted":false,"downloadRestricted":false,"containsPHI":false,"createdBy":{"user":"user-akumar_counsyl"},"version":0,"storageCost":0,"pendingTransfer":null,"tags":[],"defaultInstanceType":"mem2_hdd2_x2","archivalState":"live","archivalProgress":null,"totalSponsoredEgressBytes":0,"consumedSponsoredEgressBytes":0,"atSpendingLimit":false}'} headers: Connection: [keep-alive] Content-Length: ['664'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:40:56 GMT'] + Date: ['Wed, 14 Nov 2018 22:45:12 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593655959-152004] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235511952-167570] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -92,24 +92,24 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kPxj0ZG761pZK0z8G44Yj/newFolder + uri: https://api.dnanexus.com/project-FPfBBxj0q8Gz59pY2z38q608/newFolder response: - body: {string: '{"id":"project-FP9kPxj0ZG761pZK0z8G44Yj"}'} + body: {string: '{"id":"project-FPfBBxj0q8Gz59pY2z38q608"}'} headers: Connection: [keep-alive] Content-Length: ['41'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:40:56 GMT'] + Date: ['Wed, 14 Nov 2018 22:45:12 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593656192-701309] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235512217-290236] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"name": "folder_file", "folder": "/temp_folder", "project": "project-FP9kPxj0ZG761pZK0z8G44Yj", - "nonce": "b''aa3ffa6058e2ed52ff85e5cd00b8db83ac52ccca0f53a6b8daafaa9ce377f206''1540593656.361585"}' + body: '{"name": "folder_file", "folder": "/temp_folder", "project": "project-FPfBBxj0q8Gz59pY2z38q608", + "nonce": "b''1b79c2dcd583775d7e131e299611883b2284f55e737cc7bf603717cd5b30355b''1542235512.274777"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -131,17 +131,17 @@ interactions: method: POST uri: https://api.dnanexus.com/file/new response: - body: {string: '{"id":"file-FP9kPy00ZG775PY21Z8jFy7p"}'} + body: {string: '{"id":"file-FPfBBy00q8Gpq1y12xxjPZk9"}'} headers: Connection: [keep-alive] Content-Length: ['38'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:40:56 GMT'] + Date: ['Wed, 14 Nov 2018 22:45:12 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593656419-111941] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235512323-719497] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -165,19 +165,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kPxj0ZG761pZK0z8G44Yj/describe + uri: https://api.dnanexus.com/project-FPfBBxj0q8Gz59pY2z38q608/describe response: - body: {string: '{"id":"project-FP9kPxj0ZG761pZK0z8G44Yj","fileUploadParameters":{"maximumPartSize":5368709120,"minimumPartSize":5242880,"maximumFileSize":5497558138880,"maximumNumParts":10000,"emptyLastPartAllowed":true}}'} + body: {string: '{"id":"project-FPfBBxj0q8Gz59pY2z38q608","fileUploadParameters":{"maximumPartSize":5368709120,"minimumPartSize":5242880,"maximumFileSize":5497558138880,"maximumNumParts":10000,"emptyLastPartAllowed":true}}'} headers: Connection: [keep-alive] Content-Length: ['205'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:40:56 GMT'] + Date: ['Wed, 14 Nov 2018 22:45:12 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593656783-524443] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235512454-425402] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -201,19 +201,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kPy00ZG775PY21Z8jFy7p/upload + uri: https://api.dnanexus.com/file-FPfBBy00q8Gpq1y12xxjPZk9/upload response: - body: {string: '{"url":"https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/cb26/file/open/file-FP9kPy00ZG775PY21Z8jFy7p/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181026%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181026T224057Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=3d054090e3d3bcb1707d1ee3dc7c51af190d4d2d7e60f3b5448aa9a35c2b989a","headers":{"host":"dnanexus-platform-upload-prod.s3.amazonaws.com","content-type":"binary/octet-stream","x-amz-server-side-encryption":"AES256","content-md5":"jXd/OF09/siBXSD3SWAm3A==","content-length":"4"},"expires":1540593777176}'} + body: {string: '{"url":"https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/ba11/file/open/file-FPfBBy00q8Gpq1y12xxjPZk9/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181114%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181114T224512Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=8cda10d4636bed6a8b9b0692466502daef0bc9a1e9f5cf65d3ab4e1356e98da3","headers":{"host":"dnanexus-platform-upload-prod.s3.amazonaws.com","content-type":"binary/octet-stream","x-amz-server-side-encryption":"AES256","content-md5":"jXd/OF09/siBXSD3SWAm3A==","content-length":"4"},"expires":1542235632562}'} headers: Connection: [keep-alive] Content-Length: ['692'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:40:57 GMT'] + Date: ['Wed, 14 Nov 2018 22:45:12 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593656971-462902] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235512549-929568] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -241,21 +241,21 @@ interactions: : - !!binary | QUVTMjU2 method: PUT - uri: https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/cb26/file/open/file-FP9kPy00ZG775PY21Z8jFy7p/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181026%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181026T224057Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=3d054090e3d3bcb1707d1ee3dc7c51af190d4d2d7e60f3b5448aa9a35c2b989a + uri: https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/ba11/file/open/file-FPfBBy00q8Gpq1y12xxjPZk9/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181114%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181114T224512Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=8cda10d4636bed6a8b9b0692466502daef0bc9a1e9f5cf65d3ab4e1356e98da3 response: body: {string: ''} headers: Content-Length: ['0'] - Date: ['Fri, 26 Oct 2018 22:40:59 GMT'] + Date: ['Wed, 14 Nov 2018 22:45:13 GMT'] ETag: ['"8d777f385d3dfec8815d20f7496026dc"'] Server: [AmazonS3] - x-amz-expiration: ['expiry-date="Sat, 17 Nov 2018 00:00:00 GMT", rule-id="3weekpurge"'] - x-amz-id-2: [bClWjJxHnXxX+oVoGUQdaiyjNnCq+nwL+o6NVKF5J6UizLqnXYdUMz2M3LjyGgUMCRKMK7Tugcc=] - x-amz-request-id: [8FC6904A39260D67] + x-amz-expiration: ['expiry-date="Thu, 06 Dec 2018 00:00:00 GMT", rule-id="3weekpurge"'] + x-amz-id-2: [tTv+DF3j+Yq2LA0uUq3r1zwQOFUSwBtJ5xJFyEWhPLw/mluwIB14h8FPxapol7aXJSsv1PE5cr4=] + x-amz-request-id: [7E2B6E9693180E43] x-amz-server-side-encryption: [AES256] status: {code: 200, message: OK} - request: - body: '{"fields": {"state": true}, "project": "project-FP9kPxj0ZG761pZK0z8G44Yj"}' + body: '{"fields": {"state": true}, "project": "project-FPfBBxj0q8Gz59pY2z38q608"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -275,19 +275,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kPy00ZG775PY21Z8jFy7p/describe + uri: https://api.dnanexus.com/file-FPfBBy00q8Gpq1y12xxjPZk9/describe response: - body: {string: '{"id":"file-FP9kPy00ZG775PY21Z8jFy7p","state":"open"}'} + body: {string: '{"id":"file-FPfBBy00q8Gpq1y12xxjPZk9","state":"open"}'} headers: Connection: [keep-alive] Content-Length: ['53'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:40:59 GMT'] + Date: ['Wed, 14 Nov 2018 22:45:13 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593659715-696103] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235513006-555778] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -311,23 +311,23 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kPy00ZG775PY21Z8jFy7p/close + uri: https://api.dnanexus.com/file-FPfBBy00q8Gpq1y12xxjPZk9/close response: - body: {string: '{"id":"file-FP9kPy00ZG775PY21Z8jFy7p"}'} + body: {string: '{"id":"file-FPfBBy00q8Gpq1y12xxjPZk9"}'} headers: Connection: [keep-alive] Content-Length: ['38'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:41:00 GMT'] + Date: ['Wed, 14 Nov 2018 22:45:13 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593660020-318540] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235513112-457226] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"fields": {"state": true}, "project": "project-FP9kPxj0ZG761pZK0z8G44Yj"}' + body: '{"fields": {"state": true}, "project": "project-FPfBBxj0q8Gz59pY2z38q608"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -347,23 +347,23 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kPy00ZG775PY21Z8jFy7p/describe + uri: https://api.dnanexus.com/file-FPfBBy00q8Gpq1y12xxjPZk9/describe response: - body: {string: '{"id":"file-FP9kPy00ZG775PY21Z8jFy7p","state":"closing"}'} + body: {string: '{"id":"file-FPfBBy00q8Gpq1y12xxjPZk9","state":"closing"}'} headers: Connection: [keep-alive] Content-Length: ['56'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:41:01 GMT'] + Date: ['Wed, 14 Nov 2018 22:45:13 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593660781-567283] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235513241-886071] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"fields": {"state": true}, "project": "project-FP9kPxj0ZG761pZK0z8G44Yj"}' + body: '{"fields": {"state": true}, "project": "project-FPfBBxj0q8Gz59pY2z38q608"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -383,19 +383,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kPy00ZG775PY21Z8jFy7p/describe + uri: https://api.dnanexus.com/file-FPfBBy00q8Gpq1y12xxjPZk9/describe response: - body: {string: '{"id":"file-FP9kPy00ZG775PY21Z8jFy7p","state":"closed"}'} + body: {string: '{"id":"file-FPfBBy00q8Gpq1y12xxjPZk9","state":"closed"}'} headers: Connection: [keep-alive] Content-Length: ['55'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:41:03 GMT'] + Date: ['Wed, 14 Nov 2018 22:45:15 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593663164-88970] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235515344-613875] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -419,24 +419,24 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kPxj0ZG761pZK0z8G44Yj/newFolder + uri: https://api.dnanexus.com/project-FPfBBxj0q8Gz59pY2z38q608/newFolder response: - body: {string: '{"id":"project-FP9kPxj0ZG761pZK0z8G44Yj"}'} + body: {string: '{"id":"project-FPfBBxj0q8Gz59pY2z38q608"}'} headers: Connection: [keep-alive] Content-Length: ['41'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:41:03 GMT'] + Date: ['Wed, 14 Nov 2018 22:45:15 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593663278-496111] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235515452-276532] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: body: '{"name": "temp_file.txt", "folder": "/temp_folder/another_folder", "project": - "project-FP9kPxj0ZG761pZK0z8G44Yj", "nonce": "b''2b98770014bf4fc532ff2d30755f119281114e2cc7b7826854f11d62959741db''1540593663.351005"}' + "project-FPfBBxj0q8Gz59pY2z38q608", "nonce": "b''be67556aebe4e39bc621303d188e66a838d19343ba64a00aa60593ad42013c26''1542235515.521750"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -458,17 +458,17 @@ interactions: method: POST uri: https://api.dnanexus.com/file/new response: - body: {string: '{"id":"file-FP9kPzj0ZG779xPX1ZFQgF3v"}'} + body: {string: '{"id":"file-FPfBByj0q8GXjKPq2yYBZQpb"}'} headers: Connection: [keep-alive] Content-Length: ['38'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:41:03 GMT'] + Date: ['Wed, 14 Nov 2018 22:45:15 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593663403-558560] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235515568-430872] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -492,19 +492,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kPxj0ZG761pZK0z8G44Yj/describe + uri: https://api.dnanexus.com/project-FPfBBxj0q8Gz59pY2z38q608/describe response: - body: {string: '{"id":"project-FP9kPxj0ZG761pZK0z8G44Yj","fileUploadParameters":{"maximumPartSize":5368709120,"minimumPartSize":5242880,"maximumFileSize":5497558138880,"maximumNumParts":10000,"emptyLastPartAllowed":true}}'} + body: {string: '{"id":"project-FPfBBxj0q8Gz59pY2z38q608","fileUploadParameters":{"maximumPartSize":5368709120,"minimumPartSize":5242880,"maximumFileSize":5497558138880,"maximumNumParts":10000,"emptyLastPartAllowed":true}}'} headers: Connection: [keep-alive] Content-Length: ['205'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:41:03 GMT'] + Date: ['Wed, 14 Nov 2018 22:45:15 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593663570-987497] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235515696-328919] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -528,19 +528,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kPzj0ZG779xPX1ZFQgF3v/upload + uri: https://api.dnanexus.com/file-FPfBByj0q8GXjKPq2yYBZQpb/upload response: - body: {string: '{"url":"https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/4de8/file/open/file-FP9kPzj0ZG779xPX1ZFQgF3v/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181026%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181026T224103Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=0f7398bb054468a40be3d4c4c5d8c9c93dc3d28b8aa20e4f8dca5febeda56e3c","headers":{"host":"dnanexus-platform-upload-prod.s3.amazonaws.com","content-type":"binary/octet-stream","x-amz-server-side-encryption":"AES256","content-md5":"jXd/OF09/siBXSD3SWAm3A==","content-length":"4"},"expires":1540593783711}'} + body: {string: '{"url":"https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/08bb/file/open/file-FPfBByj0q8GXjKPq2yYBZQpb/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181114%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181114T224515Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=001edc4bf6752a6be9ce0c31a1ece40d9247ceb6835ee13c67ba12864d5f7564","headers":{"host":"dnanexus-platform-upload-prod.s3.amazonaws.com","content-type":"binary/octet-stream","x-amz-server-side-encryption":"AES256","content-md5":"jXd/OF09/siBXSD3SWAm3A==","content-length":"4"},"expires":1542235635835}'} headers: Connection: [keep-alive] Content-Length: ['692'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:41:03 GMT'] + Date: ['Wed, 14 Nov 2018 22:45:15 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593663695-587753] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235515821-994178] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -568,21 +568,21 @@ interactions: : - !!binary | QUVTMjU2 method: PUT - uri: https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/4de8/file/open/file-FP9kPzj0ZG779xPX1ZFQgF3v/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181026%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181026T224103Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=0f7398bb054468a40be3d4c4c5d8c9c93dc3d28b8aa20e4f8dca5febeda56e3c + uri: https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/08bb/file/open/file-FPfBByj0q8GXjKPq2yYBZQpb/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181114%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181114T224515Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=001edc4bf6752a6be9ce0c31a1ece40d9247ceb6835ee13c67ba12864d5f7564 response: body: {string: ''} headers: Content-Length: ['0'] - Date: ['Fri, 26 Oct 2018 22:41:04 GMT'] + Date: ['Wed, 14 Nov 2018 22:45:16 GMT'] ETag: ['"8d777f385d3dfec8815d20f7496026dc"'] Server: [AmazonS3] - x-amz-expiration: ['expiry-date="Sat, 17 Nov 2018 00:00:00 GMT", rule-id="3weekpurge"'] - x-amz-id-2: [FTzEit7bw0ItTaLNpkzMWl3ovh4Q4ZhAVUDrZi8O4LddX/ScdlZwfnDE2NwfdCQO7M8n0vd7Eng=] - x-amz-request-id: [2FA38557CAEE2397] + x-amz-expiration: ['expiry-date="Thu, 06 Dec 2018 00:00:00 GMT", rule-id="3weekpurge"'] + x-amz-id-2: [qvwxOcch8pjXBFCXFW6ffyqjmovWPJM3+JaL4ZXauw5UYI7E0MxBaRvqAbyeyRV7QTW48gp48Qc=] + x-amz-request-id: [7EDB33A75B33E61F] x-amz-server-side-encryption: [AES256] status: {code: 200, message: OK} - request: - body: '{"fields": {"state": true}, "project": "project-FP9kPxj0ZG761pZK0z8G44Yj"}' + body: '{"fields": {"state": true}, "project": "project-FPfBBxj0q8Gz59pY2z38q608"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -602,19 +602,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kPzj0ZG779xPX1ZFQgF3v/describe + uri: https://api.dnanexus.com/file-FPfBByj0q8GXjKPq2yYBZQpb/describe response: - body: {string: '{"id":"file-FP9kPzj0ZG779xPX1ZFQgF3v","state":"open"}'} + body: {string: '{"id":"file-FPfBByj0q8GXjKPq2yYBZQpb","state":"open"}'} headers: Connection: [keep-alive] Content-Length: ['53'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:41:04 GMT'] + Date: ['Wed, 14 Nov 2018 22:45:16 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593664246-217894] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235516031-282073] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -638,23 +638,23 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kPzj0ZG779xPX1ZFQgF3v/close + uri: https://api.dnanexus.com/file-FPfBByj0q8GXjKPq2yYBZQpb/close response: - body: {string: '{"id":"file-FP9kPzj0ZG779xPX1ZFQgF3v"}'} + body: {string: '{"id":"file-FPfBByj0q8GXjKPq2yYBZQpb"}'} headers: Connection: [keep-alive] Content-Length: ['38'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:41:04 GMT'] + Date: ['Wed, 14 Nov 2018 22:45:16 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593664388-716081] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235516139-663527] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"fields": {"state": true}, "project": "project-FP9kPxj0ZG761pZK0z8G44Yj"}' + body: '{"fields": {"state": true}, "project": "project-FPfBBxj0q8Gz59pY2z38q608"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -674,23 +674,23 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kPzj0ZG779xPX1ZFQgF3v/describe + uri: https://api.dnanexus.com/file-FPfBByj0q8GXjKPq2yYBZQpb/describe response: - body: {string: '{"id":"file-FP9kPzj0ZG779xPX1ZFQgF3v","state":"closing"}'} + body: {string: '{"id":"file-FPfBByj0q8GXjKPq2yYBZQpb","state":"closing"}'} headers: Connection: [keep-alive] Content-Length: ['56'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:41:04 GMT'] + Date: ['Wed, 14 Nov 2018 22:45:16 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593664527-347032] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235516287-306366] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"fields": {"state": true}, "project": "project-FP9kPxj0ZG761pZK0z8G44Yj"}' + body: '{"fields": {"state": true}, "project": "project-FPfBBxj0q8Gz59pY2z38q608"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -710,19 +710,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kPzj0ZG779xPX1ZFQgF3v/describe + uri: https://api.dnanexus.com/file-FPfBByj0q8GXjKPq2yYBZQpb/describe response: - body: {string: '{"id":"file-FP9kPzj0ZG779xPX1ZFQgF3v","state":"closed"}'} + body: {string: '{"id":"file-FPfBByj0q8GXjKPq2yYBZQpb","state":"closed"}'} headers: Connection: [keep-alive] Content-Length: ['55'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:41:06 GMT'] + Date: ['Wed, 14 Nov 2018 22:45:18 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593666651-701752] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235518394-790270] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -748,21 +748,21 @@ interactions: method: POST uri: https://api.dnanexus.com/project/new response: - body: {string: '{"id":"project-FP9kQ0Q0X649yPz44YqJxVbj"}'} + body: {string: '{"id":"project-FPfBBzQ06GJpq1y12xxjPZkJ"}'} headers: Connection: [keep-alive] Content-Length: ['41'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:41:06 GMT'] + Date: ['Wed, 14 Nov 2018 22:45:18 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593666775-975046] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235518494-650937] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"name": "TestCopyTree.test_dx_dir_to_dx_dir_w_slash.4c4515c0", "level": + body: '{"name": "TestCopyTree.test_dx_dir_to_dx_dir_w_slash.bfee4c6b", "level": "VIEW", "limit": 2}' headers: ? !!binary | @@ -785,17 +785,17 @@ interactions: method: POST uri: https://api.dnanexus.com/system/findProjects response: - body: {string: '{"results":[{"id":"project-FP9kPxj0ZG761pZK0z8G44Yj","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} + body: {string: '{"results":[{"id":"project-FPfBBxj0q8Gz59pY2z38q608","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} headers: Connection: [keep-alive] Content-Length: ['147'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:41:06 GMT'] + Date: ['Wed, 14 Nov 2018 22:45:18 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593666920-44364] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235518677-902625] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -820,19 +820,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kPxj0ZG761pZK0z8G44Yj/listFolder + uri: https://api.dnanexus.com/project-FPfBBxj0q8Gz59pY2z38q608/listFolder response: body: {string: '{"folders":["/temp_folder/another_folder"]}'} headers: Connection: [keep-alive] Content-Length: ['43'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:41:07 GMT'] + Date: ['Wed, 14 Nov 2018 22:45:18 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593667084-884385] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235518812-139400] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -859,17 +859,17 @@ interactions: method: POST uri: https://api.dnanexus.com/system/findProjects response: - body: {string: '{"results":[{"id":"project-FP9kQ0Q0X649yPz44YqJxVbj","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} + body: {string: '{"results":[{"id":"project-FPfBBzQ06GJpq1y12xxjPZkJ","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} headers: Connection: [keep-alive] Content-Length: ['147'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:41:07 GMT'] + Date: ['Wed, 14 Nov 2018 22:45:18 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593667206-58775] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235518937-623371] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -894,21 +894,21 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kQ0Q0X649yPz44YqJxVbj/listFolder + uri: https://api.dnanexus.com/project-FPfBBzQ06GJpq1y12xxjPZkJ/listFolder response: body: {string: '{"error":{"type":"ResourceNotFound","message":"The specified folder - could not be found in project-FP9kQ0Q0X649yPz44YqJxVbj"}}'} + could not be found in project-FPfBBzQ06GJpq1y12xxjPZkJ"}}'} headers: Connection: [keep-alive] Content-Type: [application/json] - Date: ['Fri, 26 Oct 2018 22:41:07 GMT'] + Date: ['Wed, 14 Nov 2018 22:45:19 GMT'] Server: [nginx] Transfer-Encoding: [chunked] Vary: [Accept-Encoding] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593667351-524180] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235519064-847488] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 404, message: Not Found} - request: @@ -935,17 +935,17 @@ interactions: method: POST uri: https://api.dnanexus.com/system/findProjects response: - body: {string: '{"results":[{"id":"project-FP9kQ0Q0X649yPz44YqJxVbj","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} + body: {string: '{"results":[{"id":"project-FPfBBzQ06GJpq1y12xxjPZkJ","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} headers: Connection: [keep-alive] Content-Length: ['147'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:41:07 GMT'] + Date: ['Wed, 14 Nov 2018 22:45:19 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593667803-926004] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235519428-978937] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -970,21 +970,21 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kQ0Q0X649yPz44YqJxVbj/listFolder + uri: https://api.dnanexus.com/project-FPfBBzQ06GJpq1y12xxjPZkJ/listFolder response: body: {string: '{"error":{"type":"ResourceNotFound","message":"The specified folder - could not be found in project-FP9kQ0Q0X649yPz44YqJxVbj"}}'} + could not be found in project-FPfBBzQ06GJpq1y12xxjPZkJ"}}'} headers: Connection: [keep-alive] Content-Type: [application/json] - Date: ['Fri, 26 Oct 2018 22:41:08 GMT'] + Date: ['Wed, 14 Nov 2018 22:45:19 GMT'] Server: [nginx] Transfer-Encoding: [chunked] Vary: [Accept-Encoding] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593668002-574176] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235519550-758645] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 404, message: Not Found} - request: @@ -1011,17 +1011,17 @@ interactions: method: POST uri: https://api.dnanexus.com/system/findProjects response: - body: {string: '{"results":[{"id":"project-FP9kQ0Q0X649yPz44YqJxVbj","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} + body: {string: '{"results":[{"id":"project-FPfBBzQ06GJpq1y12xxjPZkJ","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} headers: Connection: [keep-alive] Content-Length: ['147'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:41:08 GMT'] + Date: ['Wed, 14 Nov 2018 22:45:19 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593668496-984398] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235519931-359290] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -1045,23 +1045,23 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kQ0Q0X649yPz44YqJxVbj/newFolder + uri: https://api.dnanexus.com/project-FPfBBzQ06GJpq1y12xxjPZkJ/newFolder response: - body: {string: '{"id":"project-FP9kQ0Q0X649yPz44YqJxVbj"}'} + body: {string: '{"id":"project-FPfBBzQ06GJpq1y12xxjPZkJ"}'} headers: Connection: [keep-alive] Content-Length: ['41'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:41:08 GMT'] + Date: ['Wed, 14 Nov 2018 22:45:20 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593668720-144322] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235520056-494155] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"objects": [], "folders": ["/temp_folder"], "project": "project-FP9kQ0Q0X649yPz44YqJxVbj", + body: '{"objects": [], "folders": ["/temp_folder"], "project": "project-FPfBBzQ06GJpq1y12xxjPZkJ", "destination": "/folder2", "parents": false}' headers: ? !!binary | @@ -1082,19 +1082,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kPxj0ZG761pZK0z8G44Yj/clone + uri: https://api.dnanexus.com/project-FPfBBxj0q8Gz59pY2z38q608/clone response: - body: {string: '{"id":"project-FP9kPxj0ZG761pZK0z8G44Yj","project":"project-FP9kQ0Q0X649yPz44YqJxVbj","exists":[]}'} + body: {string: '{"id":"project-FPfBBxj0q8Gz59pY2z38q608","project":"project-FPfBBzQ06GJpq1y12xxjPZkJ","exists":[]}'} headers: Connection: [keep-alive] Content-Length: ['98'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:41:09 GMT'] + Date: ['Wed, 14 Nov 2018 22:45:20 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593668862-308325] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235520203-70671] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -1121,22 +1121,22 @@ interactions: method: POST uri: https://api.dnanexus.com/system/findProjects response: - body: {string: '{"results":[{"id":"project-FP9kQ0Q0X649yPz44YqJxVbj","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} + body: {string: '{"results":[{"id":"project-FPfBBzQ06GJpq1y12xxjPZkJ","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} headers: Connection: [keep-alive] Content-Length: ['147'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:41:09 GMT'] + Date: ['Wed, 14 Nov 2018 22:45:20 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593669485-669988] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235520479-6167] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: body: '{"objects": [{"name": "temp_file.txt", "folder": "/folder2/temp_folder/another_folder", - "project": "project-FP9kQ0Q0X649yPz44YqJxVbj", "batchsize": 2}]}' + "project": "project-FPfBBzQ06GJpq1y12xxjPZkJ", "batchsize": 2}]}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -1158,21 +1158,21 @@ interactions: method: POST uri: https://api.dnanexus.com/system/resolveDataObjects response: - body: {string: '{"results":[[{"project":"project-FP9kQ0Q0X649yPz44YqJxVbj","id":"file-FP9kPzj0ZG779xPX1ZFQgF3v"}]]}'} + body: {string: '{"results":[[{"project":"project-FPfBBzQ06GJpq1y12xxjPZkJ","id":"file-FPfBByj0q8GXjKPq2yYBZQpb"}]]}'} headers: Connection: [keep-alive] Content-Length: ['99'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:41:09 GMT'] + Date: ['Wed, 14 Nov 2018 22:45:20 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593669710-583688] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235520595-11809] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"project": "project-FP9kQ0Q0X649yPz44YqJxVbj"}' + body: '{"project": "project-FPfBBzQ06GJpq1y12xxjPZkJ"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -1192,19 +1192,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kPzj0ZG779xPX1ZFQgF3v/describe + uri: https://api.dnanexus.com/file-FPfBByj0q8GXjKPq2yYBZQpb/describe response: - body: {string: '{"id":"file-FP9kPzj0ZG779xPX1ZFQgF3v","project":"project-FP9kQ0Q0X649yPz44YqJxVbj","class":"file","sponsored":false,"name":"temp_file.txt","types":[],"state":"closed","hidden":false,"links":[],"folder":"/folder2/temp_folder/another_folder","tags":[],"created":1540593663000,"modified":1540593669230,"createdBy":{"user":"user-akumar_counsyl"},"media":"text/plain","archivalState":"live","size":4}'} + body: {string: '{"id":"file-FPfBByj0q8GXjKPq2yYBZQpb","project":"project-FPfBBzQ06GJpq1y12xxjPZkJ","class":"file","sponsored":false,"name":"temp_file.txt","types":[],"state":"closed","hidden":false,"links":[],"folder":"/folder2/temp_folder/another_folder","tags":[],"created":1542235515000,"modified":1542235520341,"createdBy":{"user":"user-akumar_counsyl"},"media":"text/plain","archivalState":"live","size":4}'} headers: Connection: [keep-alive] Content-Length: ['395'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:41:09 GMT'] + Date: ['Wed, 14 Nov 2018 22:45:20 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593669847-208194] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235520692-830075] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -1228,19 +1228,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kQ0Q0X649yPz44YqJxVbj/destroy + uri: https://api.dnanexus.com/project-FPfBBzQ06GJpq1y12xxjPZkJ/destroy response: - body: {string: '{"id":"project-FP9kQ0Q0X649yPz44YqJxVbj"}'} + body: {string: '{"id":"project-FPfBBzQ06GJpq1y12xxjPZkJ"}'} headers: Connection: [keep-alive] Content-Length: ['41'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:41:12 GMT'] + Date: ['Wed, 14 Nov 2018 22:45:24 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593670048-293751] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235520797-309894] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -1264,19 +1264,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kPxj0ZG761pZK0z8G44Yj/destroy + uri: https://api.dnanexus.com/project-FPfBBxj0q8Gz59pY2z38q608/destroy response: - body: {string: '{"id":"project-FP9kPxj0ZG761pZK0z8G44Yj"}'} + body: {string: '{"id":"project-FPfBBxj0q8Gz59pY2z38q608"}'} headers: Connection: [keep-alive] Content-Length: ['41'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:41:14 GMT'] + Date: ['Wed, 14 Nov 2018 22:45:27 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593672613-89392] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235524448-903644] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} version: 1 diff --git a/stor/tests/cassettes_py3/TestCopyTree/test_dx_dir_to_dx_existing_dir.yaml b/stor_dx/stor_dx/tests/cassettes_py3/TestCopyTree/test_dx_dir_to_dx_existing_dir.yaml similarity index 74% rename from stor/tests/cassettes_py3/TestCopyTree/test_dx_dir_to_dx_existing_dir.yaml rename to stor_dx/stor_dx/tests/cassettes_py3/TestCopyTree/test_dx_dir_to_dx_existing_dir.yaml index e75ccc6e..9ad4dfd9 100644 --- a/stor/tests/cassettes_py3/TestCopyTree/test_dx_dir_to_dx_existing_dir.yaml +++ b/stor_dx/stor_dx/tests/cassettes_py3/TestCopyTree/test_dx_dir_to_dx_existing_dir.yaml @@ -1,6 +1,6 @@ interactions: - request: - body: '{"name": "TestCopyTree.test_dx_dir_to_dx_existing_dir.e039df88"}' + body: '{"name": "TestCopyTree.test_dx_dir_to_dx_existing_dir.6524cc17"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -22,17 +22,17 @@ interactions: method: POST uri: https://api.dnanexus.com/project/new response: - body: {string: '{"id":"project-FP9kQ2j0y345Yj5j40f25Z62"}'} + body: {string: '{"id":"project-FPfBF1j0p7bvjK1k2yqz9PpG"}'} headers: Connection: [keep-alive] Content-Length: ['41'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:41:15 GMT'] + Date: ['Wed, 14 Nov 2018 22:45:27 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593675394-99234] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235527697-892254] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -56,19 +56,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kQ2j0y345Yj5j40f25Z62/describe + uri: https://api.dnanexus.com/project-FPfBF1j0p7bvjK1k2yqz9PpG/describe response: - body: {string: '{"id":"project-FP9kQ2j0y345Yj5j40f25Z62","name":"TestCopyTree.test_dx_dir_to_dx_existing_dir.e039df88","class":"project","created":1540593675000,"modified":1540593675000,"billTo":"org-counsyl","level":"ADMINISTER","dataUsage":0,"sponsoredDataUsage":0,"region":"aws:us-east-1","summary":"","description":"","protected":false,"restricted":false,"downloadRestricted":false,"containsPHI":false,"createdBy":{"user":"user-akumar_counsyl"},"version":0,"storageCost":0,"pendingTransfer":null,"tags":[],"defaultInstanceType":"mem2_hdd2_x2","archivalState":"live","archivalProgress":null,"totalSponsoredEgressBytes":0,"consumedSponsoredEgressBytes":0,"atSpendingLimit":false}'} + body: {string: '{"id":"project-FPfBF1j0p7bvjK1k2yqz9PpG","name":"TestCopyTree.test_dx_dir_to_dx_existing_dir.6524cc17","class":"project","created":1542235527000,"modified":1542235527000,"billTo":"org-counsyl","level":"ADMINISTER","dataUsage":0,"sponsoredDataUsage":0,"region":"aws:us-east-1","summary":"","description":"","protected":false,"restricted":false,"downloadRestricted":false,"containsPHI":false,"createdBy":{"user":"user-akumar_counsyl"},"version":0,"storageCost":0,"pendingTransfer":null,"tags":[],"defaultInstanceType":"mem2_hdd2_x2","archivalState":"live","archivalProgress":null,"totalSponsoredEgressBytes":0,"consumedSponsoredEgressBytes":0,"atSpendingLimit":false}'} headers: Connection: [keep-alive] Content-Length: ['665'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:41:15 GMT'] + Date: ['Wed, 14 Nov 2018 22:45:27 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593675520-64891] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235527803-449182] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -92,24 +92,24 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kQ2j0y345Yj5j40f25Z62/newFolder + uri: https://api.dnanexus.com/project-FPfBF1j0p7bvjK1k2yqz9PpG/newFolder response: - body: {string: '{"id":"project-FP9kQ2j0y345Yj5j40f25Z62"}'} + body: {string: '{"id":"project-FPfBF1j0p7bvjK1k2yqz9PpG"}'} headers: Connection: [keep-alive] Content-Length: ['41'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:41:15 GMT'] + Date: ['Wed, 14 Nov 2018 22:45:27 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593675645-610569] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235527924-764472] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"name": "folder_file", "folder": "/temp_folder", "project": "project-FP9kQ2j0y345Yj5j40f25Z62", - "nonce": "b''0356b9b8dbb265274f41d6ed000c0cea0489cb5e512c891bdc9259339b53c476''1540593675.712239"}' + body: '{"name": "folder_file", "folder": "/temp_folder", "project": "project-FPfBF1j0p7bvjK1k2yqz9PpG", + "nonce": "b''40facbd6e0ffec10134373fa632aeccb9d6f56f0a6a642f2ee023580f48a71c6''1542235527.976341"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -131,17 +131,17 @@ interactions: method: POST uri: https://api.dnanexus.com/file/new response: - body: {string: '{"id":"file-FP9kQ2j0y349B0KJ8Bz7260f"}'} + body: {string: '{"id":"file-FPfBF200p7bgx9Yb2yF88jF2"}'} headers: Connection: [keep-alive] Content-Length: ['38'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:41:15 GMT'] + Date: ['Wed, 14 Nov 2018 22:45:28 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593675762-492226] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235528022-4133] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -165,19 +165,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kQ2j0y345Yj5j40f25Z62/describe + uri: https://api.dnanexus.com/project-FPfBF1j0p7bvjK1k2yqz9PpG/describe response: - body: {string: '{"id":"project-FP9kQ2j0y345Yj5j40f25Z62","fileUploadParameters":{"maximumPartSize":5368709120,"minimumPartSize":5242880,"maximumFileSize":5497558138880,"maximumNumParts":10000,"emptyLastPartAllowed":true}}'} + body: {string: '{"id":"project-FPfBF1j0p7bvjK1k2yqz9PpG","fileUploadParameters":{"maximumPartSize":5368709120,"minimumPartSize":5242880,"maximumFileSize":5497558138880,"maximumNumParts":10000,"emptyLastPartAllowed":true}}'} headers: Connection: [keep-alive] Content-Length: ['205'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:41:15 GMT'] + Date: ['Wed, 14 Nov 2018 22:45:28 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593675922-155521] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235528158-554526] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -201,19 +201,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kQ2j0y349B0KJ8Bz7260f/upload + uri: https://api.dnanexus.com/file-FPfBF200p7bgx9Yb2yF88jF2/upload response: - body: {string: '{"url":"https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/6015/file/open/file-FP9kQ2j0y349B0KJ8Bz7260f/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181026%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181026T224116Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=ef74376791d96156862c7d04c7b071fa7a391e812284b27c550df5615167d902","headers":{"host":"dnanexus-platform-upload-prod.s3.amazonaws.com","content-type":"binary/octet-stream","x-amz-server-side-encryption":"AES256","content-md5":"jXd/OF09/siBXSD3SWAm3A==","content-length":"4"},"expires":1540593796049}'} + body: {string: '{"url":"https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/6a13/file/open/file-FPfBF200p7bgx9Yb2yF88jF2/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181114%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181114T224528Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=1e54a39c4311e21d51ba49ff744f3ebbf40990642304c59faf0feae9ea615e3d","headers":{"host":"dnanexus-platform-upload-prod.s3.amazonaws.com","content-type":"binary/octet-stream","x-amz-server-side-encryption":"AES256","content-md5":"jXd/OF09/siBXSD3SWAm3A==","content-length":"4"},"expires":1542235648280}'} headers: Connection: [keep-alive] Content-Length: ['692'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:41:16 GMT'] + Date: ['Wed, 14 Nov 2018 22:45:28 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593676034-397566] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235528255-841094] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -241,21 +241,21 @@ interactions: : - !!binary | QUVTMjU2 method: PUT - uri: https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/6015/file/open/file-FP9kQ2j0y349B0KJ8Bz7260f/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181026%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181026T224116Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=ef74376791d96156862c7d04c7b071fa7a391e812284b27c550df5615167d902 + uri: https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/6a13/file/open/file-FPfBF200p7bgx9Yb2yF88jF2/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181114%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181114T224528Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=1e54a39c4311e21d51ba49ff744f3ebbf40990642304c59faf0feae9ea615e3d response: body: {string: ''} headers: Content-Length: ['0'] - Date: ['Fri, 26 Oct 2018 22:41:17 GMT'] + Date: ['Wed, 14 Nov 2018 22:45:29 GMT'] ETag: ['"8d777f385d3dfec8815d20f7496026dc"'] Server: [AmazonS3] - x-amz-expiration: ['expiry-date="Sat, 17 Nov 2018 00:00:00 GMT", rule-id="3weekpurge"'] - x-amz-id-2: [Vzger8he/nMAh1ygk7o2jvjjuPhlWHIKPNroM27voiWMPjLChsZYbFFMU8OxJQWL28n7teKXheM=] - x-amz-request-id: [08654B2FE96807BA] + x-amz-expiration: ['expiry-date="Thu, 06 Dec 2018 00:00:00 GMT", rule-id="3weekpurge"'] + x-amz-id-2: [UHYRRPAAClR4GvSA7cUvkBrS3gCw2t12Jd34i3D0/cuf2B2usv6gfRhAZuPN3zbnnUoiKf0u/dM=] + x-amz-request-id: [DCB924B1875F2A5C] x-amz-server-side-encryption: [AES256] status: {code: 200, message: OK} - request: - body: '{"fields": {"state": true}, "project": "project-FP9kQ2j0y345Yj5j40f25Z62"}' + body: '{"fields": {"state": true}, "project": "project-FPfBF1j0p7bvjK1k2yqz9PpG"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -275,19 +275,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kQ2j0y349B0KJ8Bz7260f/describe + uri: https://api.dnanexus.com/file-FPfBF200p7bgx9Yb2yF88jF2/describe response: - body: {string: '{"id":"file-FP9kQ2j0y349B0KJ8Bz7260f","state":"open"}'} + body: {string: '{"id":"file-FPfBF200p7bgx9Yb2yF88jF2","state":"open"}'} headers: Connection: [keep-alive] Content-Length: ['53'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:41:16 GMT'] + Date: ['Wed, 14 Nov 2018 22:45:28 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593676647-436670] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235528737-304795] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -311,23 +311,23 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kQ2j0y349B0KJ8Bz7260f/close + uri: https://api.dnanexus.com/file-FPfBF200p7bgx9Yb2yF88jF2/close response: - body: {string: '{"id":"file-FP9kQ2j0y349B0KJ8Bz7260f"}'} + body: {string: '{"id":"file-FPfBF200p7bgx9Yb2yF88jF2"}'} headers: Connection: [keep-alive] Content-Length: ['38'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:41:16 GMT'] + Date: ['Wed, 14 Nov 2018 22:45:28 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593676762-985506] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235528835-53959] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"fields": {"state": true}, "project": "project-FP9kQ2j0y345Yj5j40f25Z62"}' + body: '{"fields": {"state": true}, "project": "project-FPfBF1j0p7bvjK1k2yqz9PpG"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -347,23 +347,23 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kQ2j0y349B0KJ8Bz7260f/describe + uri: https://api.dnanexus.com/file-FPfBF200p7bgx9Yb2yF88jF2/describe response: - body: {string: '{"id":"file-FP9kQ2j0y349B0KJ8Bz7260f","state":"closing"}'} + body: {string: '{"id":"file-FPfBF200p7bgx9Yb2yF88jF2","state":"closing"}'} headers: Connection: [keep-alive] Content-Length: ['56'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:41:16 GMT'] + Date: ['Wed, 14 Nov 2018 22:45:28 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593676906-156604] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235528979-251050] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"fields": {"state": true}, "project": "project-FP9kQ2j0y345Yj5j40f25Z62"}' + body: '{"fields": {"state": true}, "project": "project-FPfBF1j0p7bvjK1k2yqz9PpG"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -383,19 +383,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kQ2j0y349B0KJ8Bz7260f/describe + uri: https://api.dnanexus.com/file-FPfBF200p7bgx9Yb2yF88jF2/describe response: - body: {string: '{"id":"file-FP9kQ2j0y349B0KJ8Bz7260f","state":"closed"}'} + body: {string: '{"id":"file-FPfBF200p7bgx9Yb2yF88jF2","state":"closed"}'} headers: Connection: [keep-alive] Content-Length: ['55'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:41:19 GMT'] + Date: ['Wed, 14 Nov 2018 22:45:31 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593679025-422676] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235531081-47958] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -419,24 +419,24 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kQ2j0y345Yj5j40f25Z62/newFolder + uri: https://api.dnanexus.com/project-FPfBF1j0p7bvjK1k2yqz9PpG/newFolder response: - body: {string: '{"id":"project-FP9kQ2j0y345Yj5j40f25Z62"}'} + body: {string: '{"id":"project-FPfBF1j0p7bvjK1k2yqz9PpG"}'} headers: Connection: [keep-alive] Content-Length: ['41'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:41:19 GMT'] + Date: ['Wed, 14 Nov 2018 22:45:31 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593679137-491177] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235531190-846352] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: body: '{"name": "temp_file.txt", "folder": "/temp_folder/another_folder", "project": - "project-FP9kQ2j0y345Yj5j40f25Z62", "nonce": "b''39a3f44e3660f9c602b1068e5deb9173843bf04addc0457d7380e5a90c0ab6ab''1540593679.202564"}' + "project-FPfBF1j0p7bvjK1k2yqz9PpG", "nonce": "b''d48923972349a72e99d3f8e750d0e1f16417a388eac895be8aaf07166ea39c0a''1542235531.242608"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -458,17 +458,17 @@ interactions: method: POST uri: https://api.dnanexus.com/file/new response: - body: {string: '{"id":"file-FP9kQ3j0y34GyGF83zZqbVpV"}'} + body: {string: '{"id":"file-FPfBF2j0p7bpq1y12xxjPZkX"}'} headers: Connection: [keep-alive] Content-Length: ['38'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:41:19 GMT'] + Date: ['Wed, 14 Nov 2018 22:45:31 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593679253-508393] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235531288-954397] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -492,19 +492,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kQ2j0y345Yj5j40f25Z62/describe + uri: https://api.dnanexus.com/project-FPfBF1j0p7bvjK1k2yqz9PpG/describe response: - body: {string: '{"id":"project-FP9kQ2j0y345Yj5j40f25Z62","fileUploadParameters":{"maximumPartSize":5368709120,"minimumPartSize":5242880,"maximumFileSize":5497558138880,"maximumNumParts":10000,"emptyLastPartAllowed":true}}'} + body: {string: '{"id":"project-FPfBF1j0p7bvjK1k2yqz9PpG","fileUploadParameters":{"maximumPartSize":5368709120,"minimumPartSize":5242880,"maximumFileSize":5497558138880,"maximumNumParts":10000,"emptyLastPartAllowed":true}}'} headers: Connection: [keep-alive] Content-Length: ['205'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:41:19 GMT'] + Date: ['Wed, 14 Nov 2018 22:45:31 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593679394-684561] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235531409-389162] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -528,19 +528,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kQ3j0y34GyGF83zZqbVpV/upload + uri: https://api.dnanexus.com/file-FPfBF2j0p7bpq1y12xxjPZkX/upload response: - body: {string: '{"url":"https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/3794/file/open/file-FP9kQ3j0y34GyGF83zZqbVpV/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181026%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181026T224119Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=d659183e3adcd42e1e0900f0a0cc0974f25111fd26b029565e58d43844d5703d","headers":{"host":"dnanexus-platform-upload-prod.s3.amazonaws.com","content-type":"binary/octet-stream","x-amz-server-side-encryption":"AES256","content-md5":"jXd/OF09/siBXSD3SWAm3A==","content-length":"4"},"expires":1540593799522}'} + body: {string: '{"url":"https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/6fb3/file/open/file-FPfBF2j0p7bpq1y12xxjPZkX/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181114%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181114T224531Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=3059a923906f0d4bee758e33fe8cf46f316ecf706afc62c7d8338e119fea41ce","headers":{"host":"dnanexus-platform-upload-prod.s3.amazonaws.com","content-type":"binary/octet-stream","x-amz-server-side-encryption":"AES256","content-md5":"jXd/OF09/siBXSD3SWAm3A==","content-length":"4"},"expires":1542235651521}'} headers: Connection: [keep-alive] Content-Length: ['692'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:41:19 GMT'] + Date: ['Wed, 14 Nov 2018 22:45:31 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593679510-594116] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235531507-411715] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -568,21 +568,21 @@ interactions: : - !!binary | QUVTMjU2 method: PUT - uri: https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/3794/file/open/file-FP9kQ3j0y34GyGF83zZqbVpV/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181026%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181026T224119Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=d659183e3adcd42e1e0900f0a0cc0974f25111fd26b029565e58d43844d5703d + uri: https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/6fb3/file/open/file-FPfBF2j0p7bpq1y12xxjPZkX/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181114%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181114T224531Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=3059a923906f0d4bee758e33fe8cf46f316ecf706afc62c7d8338e119fea41ce response: body: {string: ''} headers: Content-Length: ['0'] - Date: ['Fri, 26 Oct 2018 22:41:20 GMT'] + Date: ['Wed, 14 Nov 2018 22:45:32 GMT'] ETag: ['"8d777f385d3dfec8815d20f7496026dc"'] Server: [AmazonS3] - x-amz-expiration: ['expiry-date="Sat, 17 Nov 2018 00:00:00 GMT", rule-id="3weekpurge"'] - x-amz-id-2: [ZxgrbXCOAxHPu/jAaCSBmK24onlvU7IOiI60UuLQsHjkXI06aJjbXicnILE5j6xGlRZnt5DWGKQ=] - x-amz-request-id: [F255697A43AB81CB] + x-amz-expiration: ['expiry-date="Thu, 06 Dec 2018 00:00:00 GMT", rule-id="3weekpurge"'] + x-amz-id-2: [l2kliTJvEMEOkX+QHXS1Tq/3UnaWFvAgKUgdfi1gtQGmGaSzOmPrxW+Uh2Z8zObyG8vTs8DZzZc=] + x-amz-request-id: [C116E170C882307B] x-amz-server-side-encryption: [AES256] status: {code: 200, message: OK} - request: - body: '{"fields": {"state": true}, "project": "project-FP9kQ2j0y345Yj5j40f25Z62"}' + body: '{"fields": {"state": true}, "project": "project-FPfBF1j0p7bvjK1k2yqz9PpG"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -602,19 +602,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kQ3j0y34GyGF83zZqbVpV/describe + uri: https://api.dnanexus.com/file-FPfBF2j0p7bpq1y12xxjPZkX/describe response: - body: {string: '{"id":"file-FP9kQ3j0y34GyGF83zZqbVpV","state":"open"}'} + body: {string: '{"id":"file-FPfBF2j0p7bpq1y12xxjPZkX","state":"open"}'} headers: Connection: [keep-alive] Content-Length: ['53'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:41:19 GMT'] + Date: ['Wed, 14 Nov 2018 22:45:31 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593679784-254496] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235531721-41591] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -638,23 +638,23 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kQ3j0y34GyGF83zZqbVpV/close + uri: https://api.dnanexus.com/file-FPfBF2j0p7bpq1y12xxjPZkX/close response: - body: {string: '{"id":"file-FP9kQ3j0y34GyGF83zZqbVpV"}'} + body: {string: '{"id":"file-FPfBF2j0p7bpq1y12xxjPZkX"}'} headers: Connection: [keep-alive] Content-Length: ['38'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:41:19 GMT'] + Date: ['Wed, 14 Nov 2018 22:45:31 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593679896-715331] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235531818-102203] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"fields": {"state": true}, "project": "project-FP9kQ2j0y345Yj5j40f25Z62"}' + body: '{"fields": {"state": true}, "project": "project-FPfBF1j0p7bvjK1k2yqz9PpG"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -674,23 +674,23 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kQ3j0y34GyGF83zZqbVpV/describe + uri: https://api.dnanexus.com/file-FPfBF2j0p7bpq1y12xxjPZkX/describe response: - body: {string: '{"id":"file-FP9kQ3j0y34GyGF83zZqbVpV","state":"closing"}'} + body: {string: '{"id":"file-FPfBF2j0p7bpq1y12xxjPZkX","state":"closing"}'} headers: Connection: [keep-alive] Content-Length: ['56'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:41:20 GMT'] + Date: ['Wed, 14 Nov 2018 22:45:31 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593680022-465993] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235531933-246606] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"fields": {"state": true}, "project": "project-FP9kQ2j0y345Yj5j40f25Z62"}' + body: '{"fields": {"state": true}, "project": "project-FPfBF1j0p7bvjK1k2yqz9PpG"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -710,19 +710,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kQ3j0y34GyGF83zZqbVpV/describe + uri: https://api.dnanexus.com/file-FPfBF2j0p7bpq1y12xxjPZkX/describe response: - body: {string: '{"id":"file-FP9kQ3j0y34GyGF83zZqbVpV","state":"closed"}'} + body: {string: '{"id":"file-FPfBF2j0p7bpq1y12xxjPZkX","state":"closed"}'} headers: Connection: [keep-alive] Content-Length: ['55'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:41:22 GMT'] + Date: ['Wed, 14 Nov 2018 22:45:34 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593682143-972106] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235534044-201692] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -748,17 +748,17 @@ interactions: method: POST uri: https://api.dnanexus.com/project/new response: - body: {string: '{"id":"project-FP9kQ4Q0kKK26vXb405Q2Kf9"}'} + body: {string: '{"id":"project-FPfBF3Q0p2yXjKPq2yYBZQpk"}'} headers: Connection: [keep-alive] Content-Length: ['41'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:41:22 GMT'] + Date: ['Wed, 14 Nov 2018 22:45:34 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593682260-492225] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235534178-411854] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -782,23 +782,23 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kQ4Q0kKK26vXb405Q2Kf9/newFolder + uri: https://api.dnanexus.com/project-FPfBF3Q0p2yXjKPq2yYBZQpk/newFolder response: - body: {string: '{"id":"project-FP9kQ4Q0kKK26vXb405Q2Kf9"}'} + body: {string: '{"id":"project-FPfBF3Q0p2yXjKPq2yYBZQpk"}'} headers: Connection: [keep-alive] Content-Length: ['41'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:41:22 GMT'] + Date: ['Wed, 14 Nov 2018 22:45:34 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593682403-364673] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235534291-642281] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"name": "TestCopyTree.test_dx_dir_to_dx_existing_dir.e039df88", "level": + body: '{"name": "TestCopyTree.test_dx_dir_to_dx_existing_dir.6524cc17", "level": "VIEW", "limit": 2}' headers: ? !!binary | @@ -821,17 +821,17 @@ interactions: method: POST uri: https://api.dnanexus.com/system/findProjects response: - body: {string: '{"results":[{"id":"project-FP9kQ2j0y345Yj5j40f25Z62","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} + body: {string: '{"results":[{"id":"project-FPfBF1j0p7bvjK1k2yqz9PpG","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} headers: Connection: [keep-alive] Content-Length: ['147'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:41:22 GMT'] + Date: ['Wed, 14 Nov 2018 22:45:34 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593682524-724099] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235534422-257368] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -856,19 +856,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kQ2j0y345Yj5j40f25Z62/listFolder + uri: https://api.dnanexus.com/project-FPfBF1j0p7bvjK1k2yqz9PpG/listFolder response: body: {string: '{"folders":["/temp_folder/another_folder"]}'} headers: Connection: [keep-alive] Content-Length: ['43'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:41:22 GMT'] + Date: ['Wed, 14 Nov 2018 22:45:34 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593682656-108146] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235534543-982970] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -895,17 +895,17 @@ interactions: method: POST uri: https://api.dnanexus.com/system/findProjects response: - body: {string: '{"results":[{"id":"project-FP9kQ4Q0kKK26vXb405Q2Kf9","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} + body: {string: '{"results":[{"id":"project-FPfBF3Q0p2yXjKPq2yYBZQpk","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} headers: Connection: [keep-alive] Content-Length: ['147'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:41:22 GMT'] + Date: ['Wed, 14 Nov 2018 22:45:34 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593682774-549487] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235534656-867978] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -930,19 +930,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kQ4Q0kKK26vXb405Q2Kf9/listFolder + uri: https://api.dnanexus.com/project-FPfBF3Q0p2yXjKPq2yYBZQpk/listFolder response: body: {string: '{"folders":[]}'} headers: Connection: [keep-alive] Content-Length: ['14'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:41:22 GMT'] + Date: ['Wed, 14 Nov 2018 22:45:34 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593682902-338816] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235534792-676712] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -969,17 +969,17 @@ interactions: method: POST uri: https://api.dnanexus.com/system/findProjects response: - body: {string: '{"results":[{"id":"project-FP9kQ4Q0kKK26vXb405Q2Kf9","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} + body: {string: '{"results":[{"id":"project-FPfBF3Q0p2yXjKPq2yYBZQpk","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} headers: Connection: [keep-alive] Content-Length: ['147'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:41:23 GMT'] + Date: ['Wed, 14 Nov 2018 22:45:34 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593683010-850901] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235534911-655628] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -1004,25 +1004,25 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kQ4Q0kKK26vXb405Q2Kf9/listFolder + uri: https://api.dnanexus.com/project-FPfBF3Q0p2yXjKPq2yYBZQpk/listFolder response: body: {string: '{"error":{"type":"ResourceNotFound","message":"The specified folder - could not be found in project-FP9kQ4Q0kKK26vXb405Q2Kf9"}}'} + could not be found in project-FPfBF3Q0p2yXjKPq2yYBZQpk"}}'} headers: Connection: [keep-alive] Content-Type: [application/json] - Date: ['Fri, 26 Oct 2018 22:41:23 GMT'] + Date: ['Wed, 14 Nov 2018 22:45:35 GMT'] Server: [nginx] Transfer-Encoding: [chunked] Vary: [Accept-Encoding] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593683143-665055] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235535050-371050] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 404, message: Not Found} - request: - body: '{"objects": [], "folders": ["/temp_folder"], "project": "project-FP9kQ4Q0kKK26vXb405Q2Kf9", + body: '{"objects": [], "folders": ["/temp_folder"], "project": "project-FPfBF3Q0p2yXjKPq2yYBZQpk", "destination": "/folder2", "parents": false}' headers: ? !!binary | @@ -1043,19 +1043,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kQ2j0y345Yj5j40f25Z62/clone + uri: https://api.dnanexus.com/project-FPfBF1j0p7bvjK1k2yqz9PpG/clone response: - body: {string: '{"id":"project-FP9kQ2j0y345Yj5j40f25Z62","project":"project-FP9kQ4Q0kKK26vXb405Q2Kf9","exists":[]}'} + body: {string: '{"id":"project-FPfBF1j0p7bvjK1k2yqz9PpG","project":"project-FPfBF3Q0p2yXjKPq2yYBZQpk","exists":[]}'} headers: Connection: [keep-alive] Content-Length: ['98'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:41:23 GMT'] + Date: ['Wed, 14 Nov 2018 22:45:35 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593683560-775636] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235535466-683012] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -1082,22 +1082,22 @@ interactions: method: POST uri: https://api.dnanexus.com/system/findProjects response: - body: {string: '{"results":[{"id":"project-FP9kQ4Q0kKK26vXb405Q2Kf9","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} + body: {string: '{"results":[{"id":"project-FPfBF3Q0p2yXjKPq2yYBZQpk","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} headers: Connection: [keep-alive] Content-Length: ['147'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:41:23 GMT'] + Date: ['Wed, 14 Nov 2018 22:45:35 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593683752-502459] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235535756-91763] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: body: '{"objects": [{"name": "temp_file.txt", "folder": "/folder2/temp_folder/another_folder", - "project": "project-FP9kQ4Q0kKK26vXb405Q2Kf9", "batchsize": 2}]}' + "project": "project-FPfBF3Q0p2yXjKPq2yYBZQpk", "batchsize": 2}]}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -1119,21 +1119,21 @@ interactions: method: POST uri: https://api.dnanexus.com/system/resolveDataObjects response: - body: {string: '{"results":[[{"project":"project-FP9kQ4Q0kKK26vXb405Q2Kf9","id":"file-FP9kQ3j0y34GyGF83zZqbVpV"}]]}'} + body: {string: '{"results":[[{"project":"project-FPfBF3Q0p2yXjKPq2yYBZQpk","id":"file-FPfBF2j0p7bpq1y12xxjPZkX"}]]}'} headers: Connection: [keep-alive] Content-Length: ['99'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:41:23 GMT'] + Date: ['Wed, 14 Nov 2018 22:45:35 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593683887-457836] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235535876-145171] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"project": "project-FP9kQ4Q0kKK26vXb405Q2Kf9"}' + body: '{"project": "project-FPfBF3Q0p2yXjKPq2yYBZQpk"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -1153,19 +1153,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kQ3j0y34GyGF83zZqbVpV/describe + uri: https://api.dnanexus.com/file-FPfBF2j0p7bpq1y12xxjPZkX/describe response: - body: {string: '{"id":"file-FP9kQ3j0y34GyGF83zZqbVpV","project":"project-FP9kQ4Q0kKK26vXb405Q2Kf9","class":"file","sponsored":false,"name":"temp_file.txt","types":[],"state":"closed","hidden":false,"links":[],"folder":"/folder2/temp_folder/another_folder","tags":[],"created":1540593679000,"modified":1540593683642,"createdBy":{"user":"user-akumar_counsyl"},"media":"text/plain","archivalState":"live","size":4}'} + body: {string: '{"id":"file-FPfBF2j0p7bpq1y12xxjPZkX","project":"project-FPfBF3Q0p2yXjKPq2yYBZQpk","class":"file","sponsored":false,"name":"temp_file.txt","types":[],"state":"closed","hidden":false,"links":[],"folder":"/folder2/temp_folder/another_folder","tags":[],"created":1542235531000,"modified":1542235535619,"createdBy":{"user":"user-akumar_counsyl"},"media":"text/plain","archivalState":"live","size":4}'} headers: Connection: [keep-alive] Content-Length: ['395'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:41:24 GMT'] + Date: ['Wed, 14 Nov 2018 22:45:36 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593684002-93881] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235535989-227185] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -1189,19 +1189,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kQ4Q0kKK26vXb405Q2Kf9/destroy + uri: https://api.dnanexus.com/project-FPfBF3Q0p2yXjKPq2yYBZQpk/destroy response: - body: {string: '{"id":"project-FP9kQ4Q0kKK26vXb405Q2Kf9"}'} + body: {string: '{"id":"project-FPfBF3Q0p2yXjKPq2yYBZQpk"}'} headers: Connection: [keep-alive] Content-Length: ['41'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:41:26 GMT'] + Date: ['Wed, 14 Nov 2018 22:45:38 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593684113-594496] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235536094-637919] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -1225,19 +1225,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kQ2j0y345Yj5j40f25Z62/destroy + uri: https://api.dnanexus.com/project-FPfBF1j0p7bvjK1k2yqz9PpG/destroy response: - body: {string: '{"id":"project-FP9kQ2j0y345Yj5j40f25Z62"}'} + body: {string: '{"id":"project-FPfBF1j0p7bvjK1k2yqz9PpG"}'} headers: Connection: [keep-alive] Content-Length: ['41'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:41:29 GMT'] + Date: ['Wed, 14 Nov 2018 22:45:41 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593686849-347195] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235539090-476491] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} version: 1 diff --git a/stor/tests/cassettes_py3/TestCopyTree/test_dx_dir_to_dx_root.yaml b/stor_dx/stor_dx/tests/cassettes_py3/TestCopyTree/test_dx_dir_to_dx_root.yaml similarity index 75% rename from stor/tests/cassettes_py3/TestCopyTree/test_dx_dir_to_dx_root.yaml rename to stor_dx/stor_dx/tests/cassettes_py3/TestCopyTree/test_dx_dir_to_dx_root.yaml index 25012c11..1bc91eb6 100644 --- a/stor/tests/cassettes_py3/TestCopyTree/test_dx_dir_to_dx_root.yaml +++ b/stor_dx/stor_dx/tests/cassettes_py3/TestCopyTree/test_dx_dir_to_dx_root.yaml @@ -1,6 +1,6 @@ interactions: - request: - body: '{"name": "TestCopyTree.test_dx_dir_to_dx_root.f977dc1a"}' + body: '{"name": "TestCopyTree.test_dx_dir_to_dx_root.bf045981"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -22,17 +22,17 @@ interactions: method: POST uri: https://api.dnanexus.com/project/new response: - body: {string: '{"id":"project-FP9kQ68089Yk2JG740JK7J25"}'} + body: {string: '{"id":"project-FPfBF5Q0yKzP8B282y1pk0jZ"}'} headers: Connection: [keep-alive] Content-Length: ['41'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:41:29 GMT'] + Date: ['Wed, 14 Nov 2018 22:45:42 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593689964-101104] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235542007-359211] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -56,19 +56,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kQ68089Yk2JG740JK7J25/describe + uri: https://api.dnanexus.com/project-FPfBF5Q0yKzP8B282y1pk0jZ/describe response: - body: {string: '{"id":"project-FP9kQ68089Yk2JG740JK7J25","name":"TestCopyTree.test_dx_dir_to_dx_root.f977dc1a","class":"project","created":1540593689000,"modified":1540593689000,"billTo":"org-counsyl","level":"ADMINISTER","dataUsage":0,"sponsoredDataUsage":0,"region":"aws:us-east-1","summary":"","description":"","protected":false,"restricted":false,"downloadRestricted":false,"containsPHI":false,"createdBy":{"user":"user-akumar_counsyl"},"version":0,"storageCost":0,"pendingTransfer":null,"tags":[],"defaultInstanceType":"mem2_hdd2_x2","archivalState":"live","archivalProgress":null,"totalSponsoredEgressBytes":0,"consumedSponsoredEgressBytes":0,"atSpendingLimit":false}'} + body: {string: '{"id":"project-FPfBF5Q0yKzP8B282y1pk0jZ","name":"TestCopyTree.test_dx_dir_to_dx_root.bf045981","class":"project","created":1542235542000,"modified":1542235542000,"billTo":"org-counsyl","level":"ADMINISTER","dataUsage":0,"sponsoredDataUsage":0,"region":"aws:us-east-1","summary":"","description":"","protected":false,"restricted":false,"downloadRestricted":false,"containsPHI":false,"createdBy":{"user":"user-akumar_counsyl"},"version":0,"storageCost":0,"pendingTransfer":null,"tags":[],"defaultInstanceType":"mem2_hdd2_x2","archivalState":"live","archivalProgress":null,"totalSponsoredEgressBytes":0,"consumedSponsoredEgressBytes":0,"atSpendingLimit":false}'} headers: Connection: [keep-alive] Content-Length: ['657'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:41:30 GMT'] + Date: ['Wed, 14 Nov 2018 22:45:42 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593690091-320420] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235542113-258008] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -92,24 +92,24 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kQ68089Yk2JG740JK7J25/newFolder + uri: https://api.dnanexus.com/project-FPfBF5Q0yKzP8B282y1pk0jZ/newFolder response: - body: {string: '{"id":"project-FP9kQ68089Yk2JG740JK7J25"}'} + body: {string: '{"id":"project-FPfBF5Q0yKzP8B282y1pk0jZ"}'} headers: Connection: [keep-alive] Content-Length: ['41'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:41:30 GMT'] + Date: ['Wed, 14 Nov 2018 22:45:42 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593690217-880587] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235542317-26915] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: body: '{"name": "temp_file.txt", "folder": "/temp_folder/another_folder", "project": - "project-FP9kQ68089Yk2JG740JK7J25", "nonce": "b''eb4e04a468b56bacb51fce044800da87a5c3aac4b41db44b2ca068fc00355133''1540593690.281035"}' + "project-FPfBF5Q0yKzP8B282y1pk0jZ", "nonce": "b''439df66ace0b595644482a4239606b4ef05b8eb1475612b4ac8a0aff95811a48''1542235542.623602"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -131,17 +131,17 @@ interactions: method: POST uri: https://api.dnanexus.com/file/new response: - body: {string: '{"id":"file-FP9kQ6Q089YbYj5j40f25Z63"}'} + body: {string: '{"id":"file-FPfBF5Q0yKzGjK1k2yqz9PpP"}'} headers: Connection: [keep-alive] Content-Length: ['38'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:41:30 GMT'] + Date: ['Wed, 14 Nov 2018 22:45:42 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593690330-19505] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235542668-755519] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -165,19 +165,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kQ68089Yk2JG740JK7J25/describe + uri: https://api.dnanexus.com/project-FPfBF5Q0yKzP8B282y1pk0jZ/describe response: - body: {string: '{"id":"project-FP9kQ68089Yk2JG740JK7J25","fileUploadParameters":{"maximumPartSize":5368709120,"minimumPartSize":5242880,"maximumFileSize":5497558138880,"maximumNumParts":10000,"emptyLastPartAllowed":true}}'} + body: {string: '{"id":"project-FPfBF5Q0yKzP8B282y1pk0jZ","fileUploadParameters":{"maximumPartSize":5368709120,"minimumPartSize":5242880,"maximumFileSize":5497558138880,"maximumNumParts":10000,"emptyLastPartAllowed":true}}'} headers: Connection: [keep-alive] Content-Length: ['205'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:41:30 GMT'] + Date: ['Wed, 14 Nov 2018 22:45:43 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593690472-439933] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235543076-268819] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -201,19 +201,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kQ6Q089YbYj5j40f25Z63/upload + uri: https://api.dnanexus.com/file-FPfBF5Q0yKzGjK1k2yqz9PpP/upload response: - body: {string: '{"url":"https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/532a/file/open/file-FP9kQ6Q089YbYj5j40f25Z63/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181026%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181026T224130Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=84e4d43f5411c55f6c69ccfec0b27a9cabf64e8b32347421d4601135ac23e7f4","headers":{"host":"dnanexus-platform-upload-prod.s3.amazonaws.com","content-type":"binary/octet-stream","x-amz-server-side-encryption":"AES256","content-md5":"jXd/OF09/siBXSD3SWAm3A==","content-length":"4"},"expires":1540593810596}'} + body: {string: '{"url":"https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/b62f/file/open/file-FPfBF5Q0yKzGjK1k2yqz9PpP/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181114%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181114T224543Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=1caf7e740a2508a451175d547e9119b5b271baa0825f48bbac586b9e1356a4bc","headers":{"host":"dnanexus-platform-upload-prod.s3.amazonaws.com","content-type":"binary/octet-stream","x-amz-server-side-encryption":"AES256","content-md5":"jXd/OF09/siBXSD3SWAm3A==","content-length":"4"},"expires":1542235663182}'} headers: Connection: [keep-alive] Content-Length: ['692'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:41:30 GMT'] + Date: ['Wed, 14 Nov 2018 22:45:43 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593690584-525219] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235543172-716032] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -241,21 +241,21 @@ interactions: : - !!binary | QUVTMjU2 method: PUT - uri: https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/532a/file/open/file-FP9kQ6Q089YbYj5j40f25Z63/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181026%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181026T224130Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=84e4d43f5411c55f6c69ccfec0b27a9cabf64e8b32347421d4601135ac23e7f4 + uri: https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/b62f/file/open/file-FPfBF5Q0yKzGjK1k2yqz9PpP/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181114%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181114T224543Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=1caf7e740a2508a451175d547e9119b5b271baa0825f48bbac586b9e1356a4bc response: body: {string: ''} headers: Content-Length: ['0'] - Date: ['Fri, 26 Oct 2018 22:41:31 GMT'] + Date: ['Wed, 14 Nov 2018 22:45:44 GMT'] ETag: ['"8d777f385d3dfec8815d20f7496026dc"'] Server: [AmazonS3] - x-amz-expiration: ['expiry-date="Sat, 17 Nov 2018 00:00:00 GMT", rule-id="3weekpurge"'] - x-amz-id-2: [8H4GMi/S9p8Z3rIAMfwEouA0roCsu5BV2OO7iH7Ohvx+exCo1Srz6AnIhbzlURCbzIJbf9qgPKQ=] - x-amz-request-id: [E38F8DDBD3556DA1] + x-amz-expiration: ['expiry-date="Thu, 06 Dec 2018 00:00:00 GMT", rule-id="3weekpurge"'] + x-amz-id-2: [XzFIwk1TKDf5MgeSJFgsOUefbc0ehwk7X/IQTNEzQP/2B+aIutfBoYUuj6/pbtiUiWih3h/zwts=] + x-amz-request-id: [1371ADF6B27FE668] x-amz-server-side-encryption: [AES256] status: {code: 200, message: OK} - request: - body: '{"fields": {"state": true}, "project": "project-FP9kQ68089Yk2JG740JK7J25"}' + body: '{"fields": {"state": true}, "project": "project-FPfBF5Q0yKzP8B282y1pk0jZ"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -275,19 +275,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kQ6Q089YbYj5j40f25Z63/describe + uri: https://api.dnanexus.com/file-FPfBF5Q0yKzGjK1k2yqz9PpP/describe response: - body: {string: '{"id":"file-FP9kQ6Q089YbYj5j40f25Z63","state":"open"}'} + body: {string: '{"id":"file-FPfBF5Q0yKzGjK1k2yqz9PpP","state":"open"}'} headers: Connection: [keep-alive] Content-Length: ['53'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:41:31 GMT'] + Date: ['Wed, 14 Nov 2018 22:45:43 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593691132-507041] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235543620-627181] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -311,23 +311,23 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kQ6Q089YbYj5j40f25Z63/close + uri: https://api.dnanexus.com/file-FPfBF5Q0yKzGjK1k2yqz9PpP/close response: - body: {string: '{"id":"file-FP9kQ6Q089YbYj5j40f25Z63"}'} + body: {string: '{"id":"file-FPfBF5Q0yKzGjK1k2yqz9PpP"}'} headers: Connection: [keep-alive] Content-Length: ['38'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:41:31 GMT'] + Date: ['Wed, 14 Nov 2018 22:45:43 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593691241-434237] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235543715-683101] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"fields": {"state": true}, "project": "project-FP9kQ68089Yk2JG740JK7J25"}' + body: '{"fields": {"state": true}, "project": "project-FPfBF5Q0yKzP8B282y1pk0jZ"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -347,23 +347,23 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kQ6Q089YbYj5j40f25Z63/describe + uri: https://api.dnanexus.com/file-FPfBF5Q0yKzGjK1k2yqz9PpP/describe response: - body: {string: '{"id":"file-FP9kQ6Q089YbYj5j40f25Z63","state":"closing"}'} + body: {string: '{"id":"file-FPfBF5Q0yKzGjK1k2yqz9PpP","state":"closing"}'} headers: Connection: [keep-alive] Content-Length: ['56'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:41:31 GMT'] + Date: ['Wed, 14 Nov 2018 22:45:43 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593691365-604311] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235543824-623836] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"fields": {"state": true}, "project": "project-FP9kQ68089Yk2JG740JK7J25"}' + body: '{"fields": {"state": true}, "project": "project-FPfBF5Q0yKzP8B282y1pk0jZ"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -383,19 +383,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kQ6Q089YbYj5j40f25Z63/describe + uri: https://api.dnanexus.com/file-FPfBF5Q0yKzGjK1k2yqz9PpP/describe response: - body: {string: '{"id":"file-FP9kQ6Q089YbYj5j40f25Z63","state":"closed"}'} + body: {string: '{"id":"file-FPfBF5Q0yKzGjK1k2yqz9PpP","state":"closed"}'} headers: Connection: [keep-alive] Content-Length: ['55'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:41:33 GMT'] + Date: ['Wed, 14 Nov 2018 22:45:45 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593693479-354142] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235545921-646859] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -421,21 +421,21 @@ interactions: method: POST uri: https://api.dnanexus.com/project/new response: - body: {string: '{"id":"project-FP9kQ780Pz6GPZk8417zyZPY"}'} + body: {string: '{"id":"project-FPfBF6Q0ByVBq1y12xxjPZkf"}'} headers: Connection: [keep-alive] Content-Length: ['41'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:41:33 GMT'] + Date: ['Wed, 14 Nov 2018 22:45:46 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593693597-177412] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235546036-279202] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"name": "TestCopyTree.test_dx_dir_to_dx_root.f977dc1a", "level": "VIEW", + body: '{"name": "TestCopyTree.test_dx_dir_to_dx_root.bf045981", "level": "VIEW", "limit": 2}' headers: ? !!binary | @@ -458,17 +458,17 @@ interactions: method: POST uri: https://api.dnanexus.com/system/findProjects response: - body: {string: '{"results":[{"id":"project-FP9kQ68089Yk2JG740JK7J25","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} + body: {string: '{"results":[{"id":"project-FPfBF5Q0yKzP8B282y1pk0jZ","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} headers: Connection: [keep-alive] Content-Length: ['147'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:41:33 GMT'] + Date: ['Wed, 14 Nov 2018 22:45:46 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593693721-354163] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235546175-75676] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -493,19 +493,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kQ68089Yk2JG740JK7J25/listFolder + uri: https://api.dnanexus.com/project-FPfBF5Q0yKzP8B282y1pk0jZ/listFolder response: body: {string: '{"folders":["/temp_folder/another_folder"]}'} headers: Connection: [keep-alive] Content-Length: ['43'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:41:33 GMT'] + Date: ['Wed, 14 Nov 2018 22:45:46 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593693844-793718] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235546323-977002] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -531,17 +531,17 @@ interactions: method: POST uri: https://api.dnanexus.com/system/findProjects response: - body: {string: '{"results":[{"id":"project-FP9kQ780Pz6GPZk8417zyZPY","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} + body: {string: '{"results":[{"id":"project-FPfBF6Q0ByVBq1y12xxjPZkf","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} headers: Connection: [keep-alive] Content-Length: ['147'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:41:33 GMT'] + Date: ['Wed, 14 Nov 2018 22:45:46 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593693952-608346] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235546426-565328] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -567,17 +567,17 @@ interactions: method: POST uri: https://api.dnanexus.com/system/findProjects response: - body: {string: '{"results":[{"id":"project-FP9kQ780Pz6GPZk8417zyZPY","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} + body: {string: '{"results":[{"id":"project-FPfBF6Q0ByVBq1y12xxjPZkf","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} headers: Connection: [keep-alive] Content-Length: ['147'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:41:34 GMT'] + Date: ['Wed, 14 Nov 2018 22:45:46 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593694082-498846] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235546563-200740] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -601,19 +601,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kQ780Pz6GPZk8417zyZPY/describe + uri: https://api.dnanexus.com/project-FPfBF6Q0ByVBq1y12xxjPZkf/describe response: - body: {string: '{"id":"project-FP9kQ780Pz6GPZk8417zyZPY","name":"test_dx_dir_to_dx_root.TempProj","class":"project","created":1540593693000,"modified":1540593693000,"billTo":"org-counsyl","level":"ADMINISTER","dataUsage":0,"sponsoredDataUsage":0,"region":"aws:us-east-1","summary":"","description":"","protected":false,"restricted":false,"downloadRestricted":false,"containsPHI":false,"createdBy":{"user":"user-akumar_counsyl"},"version":0,"storageCost":0,"pendingTransfer":null,"tags":[],"defaultInstanceType":"mem2_hdd2_x2","archivalState":"live","archivalProgress":null,"totalSponsoredEgressBytes":0,"consumedSponsoredEgressBytes":0,"atSpendingLimit":false}'} + body: {string: '{"id":"project-FPfBF6Q0ByVBq1y12xxjPZkf","name":"test_dx_dir_to_dx_root.TempProj","class":"project","created":1542235546000,"modified":1542235546000,"billTo":"org-counsyl","level":"ADMINISTER","dataUsage":0,"sponsoredDataUsage":0,"region":"aws:us-east-1","summary":"","description":"","protected":false,"restricted":false,"downloadRestricted":false,"containsPHI":false,"createdBy":{"user":"user-akumar_counsyl"},"version":0,"storageCost":0,"pendingTransfer":null,"tags":[],"defaultInstanceType":"mem2_hdd2_x2","archivalState":"live","archivalProgress":null,"totalSponsoredEgressBytes":0,"consumedSponsoredEgressBytes":0,"atSpendingLimit":false}'} headers: Connection: [keep-alive] Content-Length: ['644'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:41:34 GMT'] + Date: ['Wed, 14 Nov 2018 22:45:46 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593694209-348208] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235546675-452330] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -639,17 +639,17 @@ interactions: method: POST uri: https://api.dnanexus.com/system/findProjects response: - body: {string: '{"results":[{"id":"project-FP9kQ780Pz6GPZk8417zyZPY","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} + body: {string: '{"results":[{"id":"project-FPfBF6Q0ByVBq1y12xxjPZkf","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} headers: Connection: [keep-alive] Content-Length: ['147'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:41:34 GMT'] + Date: ['Wed, 14 Nov 2018 22:45:46 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593694335-851319] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235546798-26668] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -674,25 +674,25 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kQ780Pz6GPZk8417zyZPY/listFolder + uri: https://api.dnanexus.com/project-FPfBF6Q0ByVBq1y12xxjPZkf/listFolder response: body: {string: '{"error":{"type":"ResourceNotFound","message":"The specified folder - could not be found in project-FP9kQ780Pz6GPZk8417zyZPY"}}'} + could not be found in project-FPfBF6Q0ByVBq1y12xxjPZkf"}}'} headers: Connection: [keep-alive] Content-Type: [application/json] - Date: ['Fri, 26 Oct 2018 22:41:34 GMT'] + Date: ['Wed, 14 Nov 2018 22:45:46 GMT'] Server: [nginx] Transfer-Encoding: [chunked] Vary: [Accept-Encoding] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593694490-584164] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235546924-361063] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 404, message: Not Found} - request: - body: '{"objects": [], "folders": ["/temp_folder"], "project": "project-FP9kQ780Pz6GPZk8417zyZPY", + body: '{"objects": [], "folders": ["/temp_folder"], "project": "project-FPfBF6Q0ByVBq1y12xxjPZkf", "destination": "/", "parents": false}' headers: ? !!binary | @@ -713,19 +713,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kQ68089Yk2JG740JK7J25/clone + uri: https://api.dnanexus.com/project-FPfBF5Q0yKzP8B282y1pk0jZ/clone response: - body: {string: '{"id":"project-FP9kQ68089Yk2JG740JK7J25","project":"project-FP9kQ780Pz6GPZk8417zyZPY","exists":[]}'} + body: {string: '{"id":"project-FPfBF5Q0yKzP8B282y1pk0jZ","project":"project-FPfBF6Q0ByVBq1y12xxjPZkf","exists":[]}'} headers: Connection: [keep-alive] Content-Length: ['98'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:41:34 GMT'] + Date: ['Wed, 14 Nov 2018 22:45:47 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593694881-97466] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235547315-333125] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -751,22 +751,22 @@ interactions: method: POST uri: https://api.dnanexus.com/system/findProjects response: - body: {string: '{"results":[{"id":"project-FP9kQ780Pz6GPZk8417zyZPY","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} + body: {string: '{"results":[{"id":"project-FPfBF6Q0ByVBq1y12xxjPZkf","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} headers: Connection: [keep-alive] Content-Length: ['147'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:41:35 GMT'] + Date: ['Wed, 14 Nov 2018 22:45:47 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593695098-635387] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235547522-299190] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: body: '{"objects": [{"name": "temp_file.txt", "folder": "/temp_folder/another_folder", - "project": "project-FP9kQ780Pz6GPZk8417zyZPY", "batchsize": 2}]}' + "project": "project-FPfBF6Q0ByVBq1y12xxjPZkf", "batchsize": 2}]}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -788,21 +788,21 @@ interactions: method: POST uri: https://api.dnanexus.com/system/resolveDataObjects response: - body: {string: '{"results":[[{"project":"project-FP9kQ780Pz6GPZk8417zyZPY","id":"file-FP9kQ6Q089YbYj5j40f25Z63"}]]}'} + body: {string: '{"results":[[{"project":"project-FPfBF6Q0ByVBq1y12xxjPZkf","id":"file-FPfBF5Q0yKzGjK1k2yqz9PpP"}]]}'} headers: Connection: [keep-alive] Content-Length: ['99'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:41:35 GMT'] + Date: ['Wed, 14 Nov 2018 22:45:47 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593695244-713777] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235547639-662615] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"project": "project-FP9kQ780Pz6GPZk8417zyZPY"}' + body: '{"project": "project-FPfBF6Q0ByVBq1y12xxjPZkf"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -822,19 +822,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kQ6Q089YbYj5j40f25Z63/describe + uri: https://api.dnanexus.com/file-FPfBF5Q0yKzGjK1k2yqz9PpP/describe response: - body: {string: '{"id":"file-FP9kQ6Q089YbYj5j40f25Z63","project":"project-FP9kQ780Pz6GPZk8417zyZPY","class":"file","sponsored":false,"name":"temp_file.txt","types":[],"state":"closed","hidden":false,"links":[],"folder":"/temp_folder/another_folder","tags":[],"created":1540593690000,"modified":1540593694948,"createdBy":{"user":"user-akumar_counsyl"},"media":"text/plain","archivalState":"live","size":4}'} + body: {string: '{"id":"file-FPfBF5Q0yKzGjK1k2yqz9PpP","project":"project-FPfBF6Q0ByVBq1y12xxjPZkf","class":"file","sponsored":false,"name":"temp_file.txt","types":[],"state":"closed","hidden":false,"links":[],"folder":"/temp_folder/another_folder","tags":[],"created":1542235542000,"modified":1542235547399,"createdBy":{"user":"user-akumar_counsyl"},"media":"text/plain","archivalState":"live","size":4}'} headers: Connection: [keep-alive] Content-Length: ['387'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:41:35 GMT'] + Date: ['Wed, 14 Nov 2018 22:45:47 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593695357-419650] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235547737-711727] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -858,19 +858,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kQ780Pz6GPZk8417zyZPY/destroy + uri: https://api.dnanexus.com/project-FPfBF6Q0ByVBq1y12xxjPZkf/destroy response: - body: {string: '{"id":"project-FP9kQ780Pz6GPZk8417zyZPY"}'} + body: {string: '{"id":"project-FPfBF6Q0ByVBq1y12xxjPZkf"}'} headers: Connection: [keep-alive] Content-Length: ['41'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:41:37 GMT'] + Date: ['Wed, 14 Nov 2018 22:45:50 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593695481-9172] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235547861-576255] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -894,19 +894,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kQ68089Yk2JG740JK7J25/destroy + uri: https://api.dnanexus.com/project-FPfBF5Q0yKzP8B282y1pk0jZ/destroy response: - body: {string: '{"id":"project-FP9kQ68089Yk2JG740JK7J25"}'} + body: {string: '{"id":"project-FPfBF5Q0yKzP8B282y1pk0jZ"}'} headers: Connection: [keep-alive] Content-Length: ['41'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:41:40 GMT'] + Date: ['Wed, 14 Nov 2018 22:45:53 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593697903-753271] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235550969-229045] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} version: 1 diff --git a/stor/tests/cassettes_py3/TestCopyTree/test_dx_dir_to_dx_root_same_project.yaml b/stor_dx/stor_dx/tests/cassettes_py3/TestCopyTree/test_dx_dir_to_dx_root_same_project.yaml similarity index 74% rename from stor/tests/cassettes_py3/TestCopyTree/test_dx_dir_to_dx_root_same_project.yaml rename to stor_dx/stor_dx/tests/cassettes_py3/TestCopyTree/test_dx_dir_to_dx_root_same_project.yaml index 69eadd5f..0fec43e5 100644 --- a/stor/tests/cassettes_py3/TestCopyTree/test_dx_dir_to_dx_root_same_project.yaml +++ b/stor_dx/stor_dx/tests/cassettes_py3/TestCopyTree/test_dx_dir_to_dx_root_same_project.yaml @@ -1,6 +1,6 @@ interactions: - request: - body: '{"name": "TestCopyTree.test_dx_dir_to_dx_root_same_project.02c3af13"}' + body: '{"name": "TestCopyTree.test_dx_dir_to_dx_root_same_project.1dae4a72"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -22,17 +22,17 @@ interactions: method: POST uri: https://api.dnanexus.com/project/new response: - body: {string: '{"id":"project-FP9kQ9009X5vyGF83zZqbVpY"}'} + body: {string: '{"id":"project-FPfBF8Q04fZkF0362xZX6pBy"}'} headers: Connection: [keep-alive] Content-Length: ['41'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:41:40 GMT'] + Date: ['Wed, 14 Nov 2018 22:45:54 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593700709-199334] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235554057-593147] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -56,19 +56,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kQ9009X5vyGF83zZqbVpY/describe + uri: https://api.dnanexus.com/project-FPfBF8Q04fZkF0362xZX6pBy/describe response: - body: {string: '{"id":"project-FP9kQ9009X5vyGF83zZqbVpY","name":"TestCopyTree.test_dx_dir_to_dx_root_same_project.02c3af13","class":"project","created":1540593700000,"modified":1540593700000,"billTo":"org-counsyl","level":"ADMINISTER","dataUsage":0,"sponsoredDataUsage":0,"region":"aws:us-east-1","summary":"","description":"","protected":false,"restricted":false,"downloadRestricted":false,"containsPHI":false,"createdBy":{"user":"user-akumar_counsyl"},"version":0,"storageCost":0,"pendingTransfer":null,"tags":[],"defaultInstanceType":"mem2_hdd2_x2","archivalState":"live","archivalProgress":null,"totalSponsoredEgressBytes":0,"consumedSponsoredEgressBytes":0,"atSpendingLimit":false}'} + body: {string: '{"id":"project-FPfBF8Q04fZkF0362xZX6pBy","name":"TestCopyTree.test_dx_dir_to_dx_root_same_project.1dae4a72","class":"project","created":1542235554000,"modified":1542235554000,"billTo":"org-counsyl","level":"ADMINISTER","dataUsage":0,"sponsoredDataUsage":0,"region":"aws:us-east-1","summary":"","description":"","protected":false,"restricted":false,"downloadRestricted":false,"containsPHI":false,"createdBy":{"user":"user-akumar_counsyl"},"version":0,"storageCost":0,"pendingTransfer":null,"tags":[],"defaultInstanceType":"mem2_hdd2_x2","archivalState":"live","archivalProgress":null,"totalSponsoredEgressBytes":0,"consumedSponsoredEgressBytes":0,"atSpendingLimit":false}'} headers: Connection: [keep-alive] Content-Length: ['670'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:41:40 GMT'] + Date: ['Wed, 14 Nov 2018 22:45:54 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593700828-152092] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235554167-340873] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -92,24 +92,24 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kQ9009X5vyGF83zZqbVpY/newFolder + uri: https://api.dnanexus.com/project-FPfBF8Q04fZkF0362xZX6pBy/newFolder response: - body: {string: '{"id":"project-FP9kQ9009X5vyGF83zZqbVpY"}'} + body: {string: '{"id":"project-FPfBF8Q04fZkF0362xZX6pBy"}'} headers: Connection: [keep-alive] Content-Length: ['41'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:41:40 GMT'] + Date: ['Wed, 14 Nov 2018 22:45:54 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593700947-702519] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235554392-15044] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: body: '{"name": "temp_file.txt", "folder": "/temp_folder/another_folder", "project": - "project-FP9kQ9009X5vyGF83zZqbVpY", "nonce": "b''9306f49a7c5bdec33cd54af2f8b8b0dd165dc4b78e7e02b68a38d1b30b02f365''1540593701.013148"}' + "project-FPfBF8Q04fZkF0362xZX6pBy", "nonce": "b''3537213ed732d10bde8b57c751d7019eb039137c92664026fad7c3459d7217e3''1542235554.450297"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -131,17 +131,17 @@ interactions: method: POST uri: https://api.dnanexus.com/file/new response: - body: {string: '{"id":"file-FP9kQ9809X5k2JG740JK7J26"}'} + body: {string: '{"id":"file-FPfBF8Q04fZvjK1k2yqz9PpY"}'} headers: Connection: [keep-alive] Content-Length: ['38'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:41:41 GMT'] + Date: ['Wed, 14 Nov 2018 22:45:54 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593701059-986732] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235554497-686404] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -165,19 +165,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kQ9009X5vyGF83zZqbVpY/describe + uri: https://api.dnanexus.com/project-FPfBF8Q04fZkF0362xZX6pBy/describe response: - body: {string: '{"id":"project-FP9kQ9009X5vyGF83zZqbVpY","fileUploadParameters":{"maximumPartSize":5368709120,"minimumPartSize":5242880,"maximumFileSize":5497558138880,"maximumNumParts":10000,"emptyLastPartAllowed":true}}'} + body: {string: '{"id":"project-FPfBF8Q04fZkF0362xZX6pBy","fileUploadParameters":{"maximumPartSize":5368709120,"minimumPartSize":5242880,"maximumFileSize":5497558138880,"maximumNumParts":10000,"emptyLastPartAllowed":true}}'} headers: Connection: [keep-alive] Content-Length: ['205'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:41:41 GMT'] + Date: ['Wed, 14 Nov 2018 22:45:54 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593701196-675847] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235554717-848839] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -201,19 +201,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kQ9809X5k2JG740JK7J26/upload + uri: https://api.dnanexus.com/file-FPfBF8Q04fZvjK1k2yqz9PpY/upload response: - body: {string: '{"url":"https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/ad06/file/open/file-FP9kQ9809X5k2JG740JK7J26/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181026%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181026T224141Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=38b1c649276f2092d42f6a6e1398697570801e08b4035401af094d1240d09c30","headers":{"host":"dnanexus-platform-upload-prod.s3.amazonaws.com","content-type":"binary/octet-stream","x-amz-server-side-encryption":"AES256","content-md5":"c9//V/4k6Ae9T7G8TgfNcw==","content-length":"5"},"expires":1540593821318}'} + body: {string: '{"url":"https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/6f98/file/open/file-FPfBF8Q04fZvjK1k2yqz9PpY/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181114%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181114T224554Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=6584de8c3f1b19f2e48a775504e2f5a2a657e85bc2e156075ea2d93b8564397a","headers":{"host":"dnanexus-platform-upload-prod.s3.amazonaws.com","content-type":"binary/octet-stream","x-amz-server-side-encryption":"AES256","content-md5":"c9//V/4k6Ae9T7G8TgfNcw==","content-length":"5"},"expires":1542235674942}'} headers: Connection: [keep-alive] Content-Length: ['692'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:41:41 GMT'] + Date: ['Wed, 14 Nov 2018 22:45:54 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593701306-662789] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235554832-18355] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -241,21 +241,21 @@ interactions: : - !!binary | QUVTMjU2 method: PUT - uri: https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/ad06/file/open/file-FP9kQ9809X5k2JG740JK7J26/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181026%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181026T224141Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=38b1c649276f2092d42f6a6e1398697570801e08b4035401af094d1240d09c30 + uri: https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/6f98/file/open/file-FPfBF8Q04fZvjK1k2yqz9PpY/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181114%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181114T224554Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=6584de8c3f1b19f2e48a775504e2f5a2a657e85bc2e156075ea2d93b8564397a response: body: {string: ''} headers: Content-Length: ['0'] - Date: ['Fri, 26 Oct 2018 22:41:42 GMT'] + Date: ['Wed, 14 Nov 2018 22:45:56 GMT'] ETag: ['"73dfff57fe24e807bd4fb1bc4e07cd73"'] Server: [AmazonS3] - x-amz-expiration: ['expiry-date="Sat, 17 Nov 2018 00:00:00 GMT", rule-id="3weekpurge"'] - x-amz-id-2: [a4UwrNd5eW0bsUeMztLIl/PgbtfzEyiS9YyMOx295cs6ZSh3Y3fzkovCkqJTgTLSY0z78JMtBes=] - x-amz-request-id: [31B5DD3ABE567136] + x-amz-expiration: ['expiry-date="Thu, 06 Dec 2018 00:00:00 GMT", rule-id="3weekpurge"'] + x-amz-id-2: [MvvvOuSGe3UrVIDrNialFqmUBB4KMpcAuvwogLAug3pwgJhcfJOmAJ+UD/BJQ3ib] + x-amz-request-id: [7287E4BA51073D64] x-amz-server-side-encryption: [AES256] status: {code: 200, message: OK} - request: - body: '{"fields": {"state": true}, "project": "project-FP9kQ9009X5vyGF83zZqbVpY"}' + body: '{"fields": {"state": true}, "project": "project-FPfBF8Q04fZkF0362xZX6pBy"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -275,19 +275,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kQ9809X5k2JG740JK7J26/describe + uri: https://api.dnanexus.com/file-FPfBF8Q04fZvjK1k2yqz9PpY/describe response: - body: {string: '{"id":"file-FP9kQ9809X5k2JG740JK7J26","state":"open"}'} + body: {string: '{"id":"file-FPfBF8Q04fZvjK1k2yqz9PpY","state":"open"}'} headers: Connection: [keep-alive] Content-Length: ['53'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:41:41 GMT'] + Date: ['Wed, 14 Nov 2018 22:45:55 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593701968-78] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235555406-952097] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -311,23 +311,23 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kQ9809X5k2JG740JK7J26/close + uri: https://api.dnanexus.com/file-FPfBF8Q04fZvjK1k2yqz9PpY/close response: - body: {string: '{"id":"file-FP9kQ9809X5k2JG740JK7J26"}'} + body: {string: '{"id":"file-FPfBF8Q04fZvjK1k2yqz9PpY"}'} headers: Connection: [keep-alive] Content-Length: ['38'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:41:42 GMT'] + Date: ['Wed, 14 Nov 2018 22:45:55 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593702080-423558] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235555505-895969] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"name": "TestCopyTree.test_dx_dir_to_dx_root_same_project.02c3af13", "level": + body: '{"name": "TestCopyTree.test_dx_dir_to_dx_root_same_project.1dae4a72", "level": "VIEW", "limit": 2}' headers: ? !!binary | @@ -350,17 +350,17 @@ interactions: method: POST uri: https://api.dnanexus.com/system/findProjects response: - body: {string: '{"results":[{"id":"project-FP9kQ9009X5vyGF83zZqbVpY","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} + body: {string: '{"results":[{"id":"project-FPfBF8Q04fZkF0362xZX6pBy","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} headers: Connection: [keep-alive] Content-Length: ['147'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:41:42 GMT'] + Date: ['Wed, 14 Nov 2018 22:45:56 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593702197-505380] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235555796-772423] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -385,23 +385,23 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kQ9009X5vyGF83zZqbVpY/listFolder + uri: https://api.dnanexus.com/project-FPfBF8Q04fZkF0362xZX6pBy/listFolder response: body: {string: '{"folders":[]}'} headers: Connection: [keep-alive] Content-Length: ['14'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:41:42 GMT'] + Date: ['Wed, 14 Nov 2018 22:45:56 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593702334-378759] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235556174-844350] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"name": "TestCopyTree.test_dx_dir_to_dx_root_same_project.02c3af13", "level": + body: '{"name": "TestCopyTree.test_dx_dir_to_dx_root_same_project.1dae4a72", "level": "VIEW", "limit": 2}' headers: ? !!binary | @@ -424,21 +424,21 @@ interactions: method: POST uri: https://api.dnanexus.com/system/findProjects response: - body: {string: '{"results":[{"id":"project-FP9kQ9009X5vyGF83zZqbVpY","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} + body: {string: '{"results":[{"id":"project-FPfBF8Q04fZkF0362xZX6pBy","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} headers: Connection: [keep-alive] Content-Length: ['147'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:41:42 GMT'] + Date: ['Wed, 14 Nov 2018 22:45:56 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593702448-993112] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235556335-125310] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"name": "TestCopyTree.test_dx_dir_to_dx_root_same_project.02c3af13", "level": + body: '{"name": "TestCopyTree.test_dx_dir_to_dx_root_same_project.1dae4a72", "level": "VIEW", "limit": 2}' headers: ? !!binary | @@ -461,17 +461,17 @@ interactions: method: POST uri: https://api.dnanexus.com/system/findProjects response: - body: {string: '{"results":[{"id":"project-FP9kQ9009X5vyGF83zZqbVpY","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} + body: {string: '{"results":[{"id":"project-FPfBF8Q04fZkF0362xZX6pBy","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} headers: Connection: [keep-alive] Content-Length: ['147'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:41:42 GMT'] + Date: ['Wed, 14 Nov 2018 22:45:56 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593702577-198011] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235556492-273678] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -495,23 +495,23 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kQ9009X5vyGF83zZqbVpY/describe + uri: https://api.dnanexus.com/project-FPfBF8Q04fZkF0362xZX6pBy/describe response: - body: {string: '{"id":"project-FP9kQ9009X5vyGF83zZqbVpY","name":"TestCopyTree.test_dx_dir_to_dx_root_same_project.02c3af13","class":"project","created":1540593700000,"modified":1540593702419,"billTo":"org-counsyl","level":"ADMINISTER","dataUsage":4.6566128730773926e-9,"sponsoredDataUsage":0,"region":"aws:us-east-1","summary":"","description":"","protected":false,"restricted":false,"downloadRestricted":false,"containsPHI":false,"createdBy":{"user":"user-akumar_counsyl"},"version":0,"storageCost":1.0244548320770262e-10,"pendingTransfer":null,"tags":[],"defaultInstanceType":"mem2_hdd2_x2","archivalState":"live","archivalProgress":null,"totalSponsoredEgressBytes":0,"consumedSponsoredEgressBytes":0,"atSpendingLimit":false}'} + body: {string: '{"id":"project-FPfBF8Q04fZkF0362xZX6pBy","name":"TestCopyTree.test_dx_dir_to_dx_root_same_project.1dae4a72","class":"project","created":1542235554000,"modified":1542235556297,"billTo":"org-counsyl","level":"ADMINISTER","dataUsage":4.6566128730773926e-9,"sponsoredDataUsage":0,"region":"aws:us-east-1","summary":"","description":"","protected":false,"restricted":false,"downloadRestricted":false,"containsPHI":false,"createdBy":{"user":"user-akumar_counsyl"},"version":0,"storageCost":1.0244548320770262e-10,"pendingTransfer":null,"tags":[],"defaultInstanceType":"mem2_hdd2_x2","archivalState":"live","archivalProgress":null,"totalSponsoredEgressBytes":0,"consumedSponsoredEgressBytes":0,"atSpendingLimit":false}'} headers: Connection: [keep-alive] Content-Length: ['711'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:41:42 GMT'] + Date: ['Wed, 14 Nov 2018 22:45:56 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593702711-273060] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235556682-138447] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"name": "TestCopyTree.test_dx_dir_to_dx_root_same_project.02c3af13", "level": + body: '{"name": "TestCopyTree.test_dx_dir_to_dx_root_same_project.1dae4a72", "level": "VIEW", "limit": 2}' headers: ? !!binary | @@ -534,17 +534,17 @@ interactions: method: POST uri: https://api.dnanexus.com/system/findProjects response: - body: {string: '{"results":[{"id":"project-FP9kQ9009X5vyGF83zZqbVpY","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} + body: {string: '{"results":[{"id":"project-FPfBF8Q04fZkF0362xZX6pBy","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} headers: Connection: [keep-alive] Content-Length: ['147'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:41:42 GMT'] + Date: ['Wed, 14 Nov 2018 22:45:56 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593702828-485044] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235556814-325493] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -569,21 +569,21 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kQ9009X5vyGF83zZqbVpY/listFolder + uri: https://api.dnanexus.com/project-FPfBF8Q04fZkF0362xZX6pBy/listFolder response: body: {string: '{"error":{"type":"ResourceNotFound","message":"The specified folder - could not be found in project-FP9kQ9009X5vyGF83zZqbVpY"}}'} + could not be found in project-FPfBF8Q04fZkF0362xZX6pBy"}}'} headers: Connection: [keep-alive] Content-Type: [application/json] - Date: ['Fri, 26 Oct 2018 22:41:42 GMT'] + Date: ['Wed, 14 Nov 2018 22:45:57 GMT'] Server: [nginx] Transfer-Encoding: [chunked] Vary: [Accept-Encoding] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593702968-983475] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235556986-401535] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 404, message: Not Found} - request: @@ -607,23 +607,23 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kQ9009X5vyGF83zZqbVpY/move + uri: https://api.dnanexus.com/project-FPfBF8Q04fZkF0362xZX6pBy/move response: - body: {string: '{"id":"project-FP9kQ9009X5vyGF83zZqbVpY"}'} + body: {string: '{"id":"project-FPfBF8Q04fZkF0362xZX6pBy"}'} headers: Connection: [keep-alive] Content-Length: ['41'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:41:43 GMT'] + Date: ['Wed, 14 Nov 2018 22:45:57 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593703371-440716] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235557434-144278] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"name": "TestCopyTree.test_dx_dir_to_dx_root_same_project.02c3af13", "level": + body: '{"name": "TestCopyTree.test_dx_dir_to_dx_root_same_project.1dae4a72", "level": "VIEW", "limit": 2}' headers: ? !!binary | @@ -646,22 +646,22 @@ interactions: method: POST uri: https://api.dnanexus.com/system/findProjects response: - body: {string: '{"results":[{"id":"project-FP9kQ9009X5vyGF83zZqbVpY","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} + body: {string: '{"results":[{"id":"project-FPfBF8Q04fZkF0362xZX6pBy","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} headers: Connection: [keep-alive] Content-Length: ['147'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:41:43 GMT'] + Date: ['Wed, 14 Nov 2018 22:45:57 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593703514-587943] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235557672-702213] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: body: '{"objects": [{"name": "temp_file.txt", "folder": "/another_folder", "project": - "project-FP9kQ9009X5vyGF83zZqbVpY", "batchsize": 2}]}' + "project-FPfBF8Q04fZkF0362xZX6pBy", "batchsize": 2}]}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -683,21 +683,21 @@ interactions: method: POST uri: https://api.dnanexus.com/system/resolveDataObjects response: - body: {string: '{"results":[[{"project":"project-FP9kQ9009X5vyGF83zZqbVpY","id":"file-FP9kQ9809X5k2JG740JK7J26"}]]}'} + body: {string: '{"results":[[{"project":"project-FPfBF8Q04fZkF0362xZX6pBy","id":"file-FPfBF8Q04fZvjK1k2yqz9PpY"}]]}'} headers: Connection: [keep-alive] Content-Length: ['99'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:41:43 GMT'] + Date: ['Wed, 14 Nov 2018 22:45:58 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593703644-796065] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235558047-664413] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"project": "project-FP9kQ9009X5vyGF83zZqbVpY"}' + body: '{"project": "project-FPfBF8Q04fZkF0362xZX6pBy"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -717,19 +717,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kQ9809X5k2JG740JK7J26/describe + uri: https://api.dnanexus.com/file-FPfBF8Q04fZvjK1k2yqz9PpY/describe response: - body: {string: '{"id":"file-FP9kQ9809X5k2JG740JK7J26","project":"project-FP9kQ9009X5vyGF83zZqbVpY","class":"file","sponsored":false,"name":"temp_file.txt","types":[],"state":"closing","hidden":false,"links":[],"folder":"/another_folder","tags":[],"created":1540593701000,"modified":1540593702092,"createdBy":{"user":"user-akumar_counsyl"},"media":"","archivalState":"live"}'} + body: {string: '{"id":"file-FPfBF8Q04fZvjK1k2yqz9PpY","project":"project-FPfBF8Q04fZkF0362xZX6pBy","class":"file","sponsored":false,"name":"temp_file.txt","types":[],"state":"closed","hidden":false,"links":[],"folder":"/another_folder","tags":[],"created":1542235554000,"modified":1542235556783,"createdBy":{"user":"user-akumar_counsyl"},"media":"text/plain","archivalState":"live","size":5}'} headers: Connection: [keep-alive] - Content-Length: ['357'] + Content-Length: ['375'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:41:43 GMT'] + Date: ['Wed, 14 Nov 2018 22:45:58 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593703760-622307] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235558176-672150] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -753,19 +753,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kQ9009X5vyGF83zZqbVpY/destroy + uri: https://api.dnanexus.com/project-FPfBF8Q04fZkF0362xZX6pBy/destroy response: - body: {string: '{"id":"project-FP9kQ9009X5vyGF83zZqbVpY"}'} + body: {string: '{"id":"project-FPfBF8Q04fZkF0362xZX6pBy"}'} headers: Connection: [keep-alive] Content-Length: ['41'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:41:46 GMT'] + Date: ['Wed, 14 Nov 2018 22:46:01 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593703876-422231] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235558299-992300] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} version: 1 diff --git a/stor/tests/cassettes_py3/TestCopyTree/test_dx_dir_to_posix.yaml b/stor_dx/stor_dx/tests/cassettes_py3/TestCopyTree/test_dx_dir_to_posix.yaml similarity index 74% rename from stor/tests/cassettes_py3/TestCopyTree/test_dx_dir_to_posix.yaml rename to stor_dx/stor_dx/tests/cassettes_py3/TestCopyTree/test_dx_dir_to_posix.yaml index 7a57ad98..9a7e9fa5 100644 --- a/stor/tests/cassettes_py3/TestCopyTree/test_dx_dir_to_posix.yaml +++ b/stor_dx/stor_dx/tests/cassettes_py3/TestCopyTree/test_dx_dir_to_posix.yaml @@ -1,6 +1,6 @@ interactions: - request: - body: '{"name": "TestCopyTree.test_dx_dir_to_posix.677c6e90"}' + body: '{"name": "TestCopyTree.test_dx_dir_to_posix.133724d7"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -22,17 +22,17 @@ interactions: method: POST uri: https://api.dnanexus.com/project/new response: - body: {string: '{"id":"project-FP9kQBQ05QpbYj5j40f25Z65"}'} + body: {string: '{"id":"project-FPfBFB80vB3GjK1k2yqz9Ppb"}'} headers: Connection: [keep-alive] Content-Length: ['41'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:41:46 GMT'] + Date: ['Wed, 14 Nov 2018 22:46:01 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593706532-578525] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235561587-284985] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -56,19 +56,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kQBQ05QpbYj5j40f25Z65/describe + uri: https://api.dnanexus.com/project-FPfBFB80vB3GjK1k2yqz9Ppb/describe response: - body: {string: '{"id":"project-FP9kQBQ05QpbYj5j40f25Z65","name":"TestCopyTree.test_dx_dir_to_posix.677c6e90","class":"project","created":1540593706000,"modified":1540593706000,"billTo":"org-counsyl","level":"ADMINISTER","dataUsage":0,"sponsoredDataUsage":0,"region":"aws:us-east-1","summary":"","description":"","protected":false,"restricted":false,"downloadRestricted":false,"containsPHI":false,"createdBy":{"user":"user-akumar_counsyl"},"version":0,"storageCost":0,"pendingTransfer":null,"tags":[],"defaultInstanceType":"mem2_hdd2_x2","archivalState":"live","archivalProgress":null,"totalSponsoredEgressBytes":0,"consumedSponsoredEgressBytes":0,"atSpendingLimit":false}'} + body: {string: '{"id":"project-FPfBFB80vB3GjK1k2yqz9Ppb","name":"TestCopyTree.test_dx_dir_to_posix.133724d7","class":"project","created":1542235561000,"modified":1542235561000,"billTo":"org-counsyl","level":"ADMINISTER","dataUsage":0,"sponsoredDataUsage":0,"region":"aws:us-east-1","summary":"","description":"","protected":false,"restricted":false,"downloadRestricted":false,"containsPHI":false,"createdBy":{"user":"user-akumar_counsyl"},"version":0,"storageCost":0,"pendingTransfer":null,"tags":[],"defaultInstanceType":"mem2_hdd2_x2","archivalState":"live","archivalProgress":null,"totalSponsoredEgressBytes":0,"consumedSponsoredEgressBytes":0,"atSpendingLimit":false}'} headers: Connection: [keep-alive] Content-Length: ['655'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:41:46 GMT'] + Date: ['Wed, 14 Nov 2018 22:46:01 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593706641-829818] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235561726-793337] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -92,24 +92,24 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kQBQ05QpbYj5j40f25Z65/newFolder + uri: https://api.dnanexus.com/project-FPfBFB80vB3GjK1k2yqz9Ppb/newFolder response: - body: {string: '{"id":"project-FP9kQBQ05QpbYj5j40f25Z65"}'} + body: {string: '{"id":"project-FPfBFB80vB3GjK1k2yqz9Ppb"}'} headers: Connection: [keep-alive] Content-Length: ['41'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:41:46 GMT'] + Date: ['Wed, 14 Nov 2018 22:46:01 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593706766-836297] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235561846-557838] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"name": "folder_file.txt", "folder": "/temp_folder", "project": "project-FP9kQBQ05QpbYj5j40f25Z65", - "nonce": "b''2483f6561e4b964a457ce534ac9db835270a74c25e0763d11389ce80801cd944''1540593706.830039"}' + body: '{"name": "folder_file.txt", "folder": "/temp_folder", "project": "project-FPfBFB80vB3GjK1k2yqz9Ppb", + "nonce": "b''0989d8d0dae79d0e3f075e52223de3b163316a2fcc24a47df11f3650b88f7d14''1542235561.897617"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -131,17 +131,17 @@ interactions: method: POST uri: https://api.dnanexus.com/file/new response: - body: {string: '{"id":"file-FP9kQBQ05Qpvfgvx3zz6pb23"}'} + body: {string: '{"id":"file-FPfBFB80vB37x9Yb2yF88jF6"}'} headers: Connection: [keep-alive] Content-Length: ['38'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:41:46 GMT'] + Date: ['Wed, 14 Nov 2018 22:46:01 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593706872-528606] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235561945-8691] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -165,19 +165,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kQBQ05QpbYj5j40f25Z65/describe + uri: https://api.dnanexus.com/project-FPfBFB80vB3GjK1k2yqz9Ppb/describe response: - body: {string: '{"id":"project-FP9kQBQ05QpbYj5j40f25Z65","fileUploadParameters":{"maximumPartSize":5368709120,"minimumPartSize":5242880,"maximumFileSize":5497558138880,"maximumNumParts":10000,"emptyLastPartAllowed":true}}'} + body: {string: '{"id":"project-FPfBFB80vB3GjK1k2yqz9Ppb","fileUploadParameters":{"maximumPartSize":5368709120,"minimumPartSize":5242880,"maximumFileSize":5497558138880,"maximumNumParts":10000,"emptyLastPartAllowed":true}}'} headers: Connection: [keep-alive] Content-Length: ['205'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:41:47 GMT'] + Date: ['Wed, 14 Nov 2018 22:46:02 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593707006-809258] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235562078-526856] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -201,19 +201,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kQBQ05Qpvfgvx3zz6pb23/upload + uri: https://api.dnanexus.com/file-FPfBFB80vB37x9Yb2yF88jF6/upload response: - body: {string: '{"url":"https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/971e/file/open/file-FP9kQBQ05Qpvfgvx3zz6pb23/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181026%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181026T224147Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=6d401b09ac1ff95230ac14552861c5641d7ace1329bef80ae49dd2d168d7f87d","headers":{"host":"dnanexus-platform-upload-prod.s3.amazonaws.com","content-type":"binary/octet-stream","x-amz-server-side-encryption":"AES256","content-md5":"jXd/OF09/siBXSD3SWAm3A==","content-length":"4"},"expires":1540593827129}'} + body: {string: '{"url":"https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/5e12/file/open/file-FPfBFB80vB37x9Yb2yF88jF6/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181114%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181114T224602Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=784d075203a2578653ec88991f6941dbe9530c95bd355213980abfe13be80d2e","headers":{"host":"dnanexus-platform-upload-prod.s3.amazonaws.com","content-type":"binary/octet-stream","x-amz-server-side-encryption":"AES256","content-md5":"jXd/OF09/siBXSD3SWAm3A==","content-length":"4"},"expires":1542235682207}'} headers: Connection: [keep-alive] Content-Length: ['692'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:41:47 GMT'] + Date: ['Wed, 14 Nov 2018 22:46:02 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593707117-468249] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235562195-934793] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -241,21 +241,21 @@ interactions: : - !!binary | QUVTMjU2 method: PUT - uri: https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/971e/file/open/file-FP9kQBQ05Qpvfgvx3zz6pb23/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181026%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181026T224147Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=6d401b09ac1ff95230ac14552861c5641d7ace1329bef80ae49dd2d168d7f87d + uri: https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/5e12/file/open/file-FPfBFB80vB37x9Yb2yF88jF6/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181114%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181114T224602Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=784d075203a2578653ec88991f6941dbe9530c95bd355213980abfe13be80d2e response: body: {string: ''} headers: Content-Length: ['0'] - Date: ['Fri, 26 Oct 2018 22:41:48 GMT'] + Date: ['Wed, 14 Nov 2018 22:46:03 GMT'] ETag: ['"8d777f385d3dfec8815d20f7496026dc"'] Server: [AmazonS3] - x-amz-expiration: ['expiry-date="Sat, 17 Nov 2018 00:00:00 GMT", rule-id="3weekpurge"'] - x-amz-id-2: [C1wxZu9VerLe+BD5VQh+FFaP/PZ4amaVzRjyAwumCTgHeL4o0IiOP0wCuuXEWZQxeNu7iSGJkNk=] - x-amz-request-id: [45FB24A721D82789] + x-amz-expiration: ['expiry-date="Thu, 06 Dec 2018 00:00:00 GMT", rule-id="3weekpurge"'] + x-amz-id-2: [9+aot9tsb+DNVf0lYxvOtylbbPE1oltPMesGra4qge+NBQS7LJicaIpmR4ECPmnW] + x-amz-request-id: [6B258068996E7A4A] x-amz-server-side-encryption: [AES256] status: {code: 200, message: OK} - request: - body: '{"fields": {"state": true}, "project": "project-FP9kQBQ05QpbYj5j40f25Z65"}' + body: '{"fields": {"state": true}, "project": "project-FPfBFB80vB3GjK1k2yqz9Ppb"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -275,19 +275,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kQBQ05Qpvfgvx3zz6pb23/describe + uri: https://api.dnanexus.com/file-FPfBFB80vB37x9Yb2yF88jF6/describe response: - body: {string: '{"id":"file-FP9kQBQ05Qpvfgvx3zz6pb23","state":"open"}'} + body: {string: '{"id":"file-FPfBFB80vB37x9Yb2yF88jF6","state":"open"}'} headers: Connection: [keep-alive] Content-Length: ['53'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:41:47 GMT'] + Date: ['Wed, 14 Nov 2018 22:46:02 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593707940-314506] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235562652-149716] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -311,23 +311,23 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kQBQ05Qpvfgvx3zz6pb23/close + uri: https://api.dnanexus.com/file-FPfBFB80vB37x9Yb2yF88jF6/close response: - body: {string: '{"id":"file-FP9kQBQ05Qpvfgvx3zz6pb23"}'} + body: {string: '{"id":"file-FPfBFB80vB37x9Yb2yF88jF6"}'} headers: Connection: [keep-alive] Content-Length: ['38'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:41:48 GMT'] + Date: ['Wed, 14 Nov 2018 22:46:02 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593708051-993594] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235562754-364794] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"fields": {"state": true}, "project": "project-FP9kQBQ05QpbYj5j40f25Z65"}' + body: '{"fields": {"state": true}, "project": "project-FPfBFB80vB3GjK1k2yqz9Ppb"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -347,23 +347,23 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kQBQ05Qpvfgvx3zz6pb23/describe + uri: https://api.dnanexus.com/file-FPfBFB80vB37x9Yb2yF88jF6/describe response: - body: {string: '{"id":"file-FP9kQBQ05Qpvfgvx3zz6pb23","state":"closing"}'} + body: {string: '{"id":"file-FPfBFB80vB37x9Yb2yF88jF6","state":"closing"}'} headers: Connection: [keep-alive] Content-Length: ['56'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:41:48 GMT'] + Date: ['Wed, 14 Nov 2018 22:46:02 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593708203-871170] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235562887-808935] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"fields": {"state": true}, "project": "project-FP9kQBQ05QpbYj5j40f25Z65"}' + body: '{"fields": {"state": true}, "project": "project-FPfBFB80vB3GjK1k2yqz9Ppb"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -383,19 +383,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kQBQ05Qpvfgvx3zz6pb23/describe + uri: https://api.dnanexus.com/file-FPfBFB80vB37x9Yb2yF88jF6/describe response: - body: {string: '{"id":"file-FP9kQBQ05Qpvfgvx3zz6pb23","state":"closed"}'} + body: {string: '{"id":"file-FPfBFB80vB37x9Yb2yF88jF6","state":"closed"}'} headers: Connection: [keep-alive] Content-Length: ['55'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:41:50 GMT'] + Date: ['Wed, 14 Nov 2018 22:46:05 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593710320-563662] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235564994-14240] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -419,24 +419,24 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kQBQ05QpbYj5j40f25Z65/newFolder + uri: https://api.dnanexus.com/project-FPfBFB80vB3GjK1k2yqz9Ppb/newFolder response: - body: {string: '{"id":"project-FP9kQBQ05QpbYj5j40f25Z65"}'} + body: {string: '{"id":"project-FPfBFB80vB3GjK1k2yqz9Ppb"}'} headers: Connection: [keep-alive] Content-Length: ['41'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:41:50 GMT'] + Date: ['Wed, 14 Nov 2018 22:46:05 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593710429-886703] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235565124-525958] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: body: '{"name": "temp_file.txt", "folder": "/temp_folder/another_folder", "project": - "project-FP9kQBQ05QpbYj5j40f25Z65", "nonce": "b''ec48e77d0256c6c66eb16bb2ad0b3de9f48a47d44c68b2a4ebf9045d5ff1009a''1540593710.495202"}' + "project-FPfBFB80vB3GjK1k2yqz9Ppb", "nonce": "b''dc966da13bfc74ca5cec32e9f4079618230755bc7269e478626e3bd2848f48f3''1542235565.206713"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -458,17 +458,17 @@ interactions: method: POST uri: https://api.dnanexus.com/file/new response: - body: {string: '{"id":"file-FP9kQFQ05QpX6vXb405Q2KfB"}'} + body: {string: '{"id":"file-FPfBFF80vB39F0362xZX6pBz"}'} headers: Connection: [keep-alive] Content-Length: ['38'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:41:50 GMT'] + Date: ['Wed, 14 Nov 2018 22:46:05 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593710539-150825] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235565254-272750] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -492,19 +492,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kQBQ05QpbYj5j40f25Z65/describe + uri: https://api.dnanexus.com/project-FPfBFB80vB3GjK1k2yqz9Ppb/describe response: - body: {string: '{"id":"project-FP9kQBQ05QpbYj5j40f25Z65","fileUploadParameters":{"maximumPartSize":5368709120,"minimumPartSize":5242880,"maximumFileSize":5497558138880,"maximumNumParts":10000,"emptyLastPartAllowed":true}}'} + body: {string: '{"id":"project-FPfBFB80vB3GjK1k2yqz9Ppb","fileUploadParameters":{"maximumPartSize":5368709120,"minimumPartSize":5242880,"maximumFileSize":5497558138880,"maximumNumParts":10000,"emptyLastPartAllowed":true}}'} headers: Connection: [keep-alive] Content-Length: ['205'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:41:50 GMT'] + Date: ['Wed, 14 Nov 2018 22:46:05 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593710690-375491] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235565382-26046] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -528,19 +528,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kQFQ05QpX6vXb405Q2KfB/upload + uri: https://api.dnanexus.com/file-FPfBFF80vB39F0362xZX6pBz/upload response: - body: {string: '{"url":"https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/03a4/file/open/file-FP9kQFQ05QpX6vXb405Q2KfB/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181026%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181026T224150Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=4245853e2a5dff6153595ef8a1c9fcf08fa52aaea1cc4685838f7ea3e731a15f","headers":{"host":"dnanexus-platform-upload-prod.s3.amazonaws.com","content-type":"binary/octet-stream","x-amz-server-side-encryption":"AES256","content-md5":"jXd/OF09/siBXSD3SWAm3A==","content-length":"4"},"expires":1540593830836}'} + body: {string: '{"url":"https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/db9b/file/open/file-FPfBFF80vB39F0362xZX6pBz/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181114%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181114T224605Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=690b609c47f11b64574124f43006007160ff7621fb08dc043e4ea041b29308fb","headers":{"host":"dnanexus-platform-upload-prod.s3.amazonaws.com","content-type":"binary/octet-stream","x-amz-server-side-encryption":"AES256","content-md5":"jXd/OF09/siBXSD3SWAm3A==","content-length":"4"},"expires":1542235685489}'} headers: Connection: [keep-alive] Content-Length: ['692'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:41:50 GMT'] + Date: ['Wed, 14 Nov 2018 22:46:05 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593710824-135129] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235565477-703560] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -568,21 +568,21 @@ interactions: : - !!binary | QUVTMjU2 method: PUT - uri: https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/03a4/file/open/file-FP9kQFQ05QpX6vXb405Q2KfB/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181026%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181026T224150Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=4245853e2a5dff6153595ef8a1c9fcf08fa52aaea1cc4685838f7ea3e731a15f + uri: https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/db9b/file/open/file-FPfBFF80vB39F0362xZX6pBz/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181114%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181114T224605Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=690b609c47f11b64574124f43006007160ff7621fb08dc043e4ea041b29308fb response: body: {string: ''} headers: Content-Length: ['0'] - Date: ['Fri, 26 Oct 2018 22:41:51 GMT'] + Date: ['Wed, 14 Nov 2018 22:46:06 GMT'] ETag: ['"8d777f385d3dfec8815d20f7496026dc"'] Server: [AmazonS3] - x-amz-expiration: ['expiry-date="Sat, 17 Nov 2018 00:00:00 GMT", rule-id="3weekpurge"'] - x-amz-id-2: [OHnFbaEhkZC5dzwJtM6SI07o9TQNLMTTn1vUlkIcRnfmFTJt+lvBu0StMTYy7vr4tak6xW85O4Y=] - x-amz-request-id: [D73BBA759296A9E1] + x-amz-expiration: ['expiry-date="Thu, 06 Dec 2018 00:00:00 GMT", rule-id="3weekpurge"'] + x-amz-id-2: [VO71XKVhlKAYmFtjv5Esems+a9pjxJU4UF/zy+sIfkTzpYOIj2k54XxNnF23NGnp] + x-amz-request-id: [DA6B3812731A6617] x-amz-server-side-encryption: [AES256] status: {code: 200, message: OK} - request: - body: '{"fields": {"state": true}, "project": "project-FP9kQBQ05QpbYj5j40f25Z65"}' + body: '{"fields": {"state": true}, "project": "project-FPfBFB80vB3GjK1k2yqz9Ppb"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -602,19 +602,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kQFQ05QpX6vXb405Q2KfB/describe + uri: https://api.dnanexus.com/file-FPfBFF80vB39F0362xZX6pBz/describe response: - body: {string: '{"id":"file-FP9kQFQ05QpX6vXb405Q2KfB","state":"open"}'} + body: {string: '{"id":"file-FPfBFF80vB39F0362xZX6pBz","state":"open"}'} headers: Connection: [keep-alive] Content-Length: ['53'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:41:51 GMT'] + Date: ['Wed, 14 Nov 2018 22:46:05 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593711066-283031] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235565697-699706] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -638,23 +638,23 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kQFQ05QpX6vXb405Q2KfB/close + uri: https://api.dnanexus.com/file-FPfBFF80vB39F0362xZX6pBz/close response: - body: {string: '{"id":"file-FP9kQFQ05QpX6vXb405Q2KfB"}'} + body: {string: '{"id":"file-FPfBFF80vB39F0362xZX6pBz"}'} headers: Connection: [keep-alive] Content-Length: ['38'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:41:51 GMT'] + Date: ['Wed, 14 Nov 2018 22:46:05 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593711182-823207] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235565806-898643] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"fields": {"state": true}, "project": "project-FP9kQBQ05QpbYj5j40f25Z65"}' + body: '{"fields": {"state": true}, "project": "project-FPfBFB80vB3GjK1k2yqz9Ppb"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -674,23 +674,23 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kQFQ05QpX6vXb405Q2KfB/describe + uri: https://api.dnanexus.com/file-FPfBFF80vB39F0362xZX6pBz/describe response: - body: {string: '{"id":"file-FP9kQFQ05QpX6vXb405Q2KfB","state":"closing"}'} + body: {string: '{"id":"file-FPfBFF80vB39F0362xZX6pBz","state":"closing"}'} headers: Connection: [keep-alive] Content-Length: ['56'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:41:51 GMT'] + Date: ['Wed, 14 Nov 2018 22:46:05 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593711304-804542] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235565920-259333] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"fields": {"state": true}, "project": "project-FP9kQBQ05QpbYj5j40f25Z65"}' + body: '{"fields": {"state": true}, "project": "project-FPfBFB80vB3GjK1k2yqz9Ppb"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -710,23 +710,23 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kQFQ05QpX6vXb405Q2KfB/describe + uri: https://api.dnanexus.com/file-FPfBFF80vB39F0362xZX6pBz/describe response: - body: {string: '{"id":"file-FP9kQFQ05QpX6vXb405Q2KfB","state":"closed"}'} + body: {string: '{"id":"file-FPfBFF80vB39F0362xZX6pBz","state":"closed"}'} headers: Connection: [keep-alive] Content-Length: ['55'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:41:53 GMT'] + Date: ['Wed, 14 Nov 2018 22:46:08 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593713424-537623] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235568041-838522] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"name": "TestCopyTree.test_dx_dir_to_posix.677c6e90", "level": "VIEW", + body: '{"name": "TestCopyTree.test_dx_dir_to_posix.133724d7", "level": "VIEW", "limit": 2}' headers: ? !!binary | @@ -749,17 +749,17 @@ interactions: method: POST uri: https://api.dnanexus.com/system/findProjects response: - body: {string: '{"results":[{"id":"project-FP9kQBQ05QpbYj5j40f25Z65","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} + body: {string: '{"results":[{"id":"project-FPfBFB80vB3GjK1k2yqz9Ppb","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} headers: Connection: [keep-alive] Content-Length: ['147'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:41:53 GMT'] + Date: ['Wed, 14 Nov 2018 22:46:08 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593713536-949188] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235568232-546125] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -783,23 +783,23 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kQBQ05QpbYj5j40f25Z65/describe + uri: https://api.dnanexus.com/project-FPfBFB80vB3GjK1k2yqz9Ppb/describe response: - body: {string: '{"id":"project-FP9kQBQ05QpbYj5j40f25Z65","name":"TestCopyTree.test_dx_dir_to_posix.677c6e90","class":"project","created":1540593706000,"modified":1540593711816,"billTo":"org-counsyl","level":"ADMINISTER","folders":["/","/temp_folder","/temp_folder/another_folder"],"dataUsage":7.450580596923828e-9,"sponsoredDataUsage":0,"region":"aws:us-east-1","summary":"","description":"","protected":false,"restricted":false,"downloadRestricted":false,"containsPHI":false,"createdBy":{"user":"user-akumar_counsyl"},"version":0,"storageCost":1.639127731323242e-10,"pendingTransfer":null,"tags":[],"defaultInstanceType":"mem2_hdd2_x2","archivalState":"live","archivalProgress":null,"totalSponsoredEgressBytes":0,"consumedSponsoredEgressBytes":0,"atSpendingLimit":false}'} + body: {string: '{"id":"project-FPfBFB80vB3GjK1k2yqz9Ppb","name":"TestCopyTree.test_dx_dir_to_posix.133724d7","class":"project","created":1542235561000,"modified":1542235566385,"billTo":"org-counsyl","level":"ADMINISTER","folders":["/","/temp_folder","/temp_folder/another_folder"],"dataUsage":7.450580596923828e-9,"sponsoredDataUsage":0,"region":"aws:us-east-1","summary":"","description":"","protected":false,"restricted":false,"downloadRestricted":false,"containsPHI":false,"createdBy":{"user":"user-akumar_counsyl"},"version":0,"storageCost":1.639127731323242e-10,"pendingTransfer":null,"tags":[],"defaultInstanceType":"mem2_hdd2_x2","archivalState":"live","archivalProgress":null,"totalSponsoredEgressBytes":0,"consumedSponsoredEgressBytes":0,"atSpendingLimit":false}'} headers: Connection: [keep-alive] Content-Length: ['755'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:41:53 GMT'] + Date: ['Wed, 14 Nov 2018 22:46:08 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593713678-841802] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235568363-742672] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"class": "file", "state": "closed", "scope": {"project": "project-FP9kQBQ05QpbYj5j40f25Z65", + body: '{"class": "file", "state": "closed", "scope": {"project": "project-FPfBFB80vB3GjK1k2yqz9Ppb", "folder": "/temp_folder", "recurse": true}, "describe": {"fields": {"folder": true, "name": true, "id": true}}, "limit": 100}' headers: @@ -823,21 +823,21 @@ interactions: method: POST uri: https://api.dnanexus.com/system/findDataObjects response: - body: {string: '{"next":null,"results":[{"project":"project-FP9kQBQ05QpbYj5j40f25Z65","id":"file-FP9kQFQ05QpX6vXb405Q2KfB","describe":{"id":"file-FP9kQFQ05QpX6vXb405Q2KfB","name":"temp_file.txt","folder":"/temp_folder/another_folder"}},{"project":"project-FP9kQBQ05QpbYj5j40f25Z65","id":"file-FP9kQBQ05Qpvfgvx3zz6pb23","describe":{"id":"file-FP9kQBQ05Qpvfgvx3zz6pb23","name":"folder_file.txt","folder":"/temp_folder"}}]}'} + body: {string: '{"next":null,"results":[{"project":"project-FPfBFB80vB3GjK1k2yqz9Ppb","id":"file-FPfBFF80vB39F0362xZX6pBz","describe":{"id":"file-FPfBFF80vB39F0362xZX6pBz","name":"temp_file.txt","folder":"/temp_folder/another_folder"}},{"project":"project-FPfBFB80vB3GjK1k2yqz9Ppb","id":"file-FPfBFB80vB37x9Yb2yF88jF6","describe":{"id":"file-FPfBFB80vB37x9Yb2yF88jF6","name":"folder_file.txt","folder":"/temp_folder"}}]}'} headers: Connection: [keep-alive] Content-Length: ['404'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:41:53 GMT'] + Date: ['Wed, 14 Nov 2018 22:46:08 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593713801-365405] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235568482-1754] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"defaultFields": true, "fields": {"parts": true}, "project": "project-FP9kQBQ05QpbYj5j40f25Z65"}' + body: '{"defaultFields": true, "fields": {"parts": true}, "project": "project-FPfBFB80vB3GjK1k2yqz9Ppb"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -857,23 +857,23 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kQFQ05QpX6vXb405Q2KfB/describe + uri: https://api.dnanexus.com/file-FPfBFF80vB39F0362xZX6pBz/describe response: - body: {string: '{"id":"file-FP9kQFQ05QpX6vXb405Q2KfB","project":"project-FP9kQBQ05QpbYj5j40f25Z65","class":"file","sponsored":false,"name":"temp_file.txt","types":[],"state":"closed","hidden":false,"links":[],"folder":"/temp_folder/another_folder","tags":[],"created":1540593710000,"modified":1540593711816,"createdBy":{"user":"user-akumar_counsyl"},"media":"text/plain","archivalState":"live","parts":{"1":{"state":"complete","size":4,"md5":"8d777f385d3dfec8815d20f7496026dc"}},"size":4}'} + body: {string: '{"id":"file-FPfBFF80vB39F0362xZX6pBz","project":"project-FPfBFB80vB3GjK1k2yqz9Ppb","class":"file","sponsored":false,"name":"temp_file.txt","types":[],"state":"closed","hidden":false,"links":[],"folder":"/temp_folder/another_folder","tags":[],"created":1542235565000,"modified":1542235566385,"createdBy":{"user":"user-akumar_counsyl"},"media":"text/plain","archivalState":"live","parts":{"1":{"state":"complete","size":4,"md5":"8d777f385d3dfec8815d20f7496026dc"}},"size":4}'} headers: Connection: [keep-alive] Content-Length: ['472'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:41:53 GMT'] + Date: ['Wed, 14 Nov 2018 22:46:08 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593713916-820668] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235568597-316414] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"preauthenticated": false, "project": "project-FP9kQBQ05QpbYj5j40f25Z65"}' + body: '{"preauthenticated": false, "project": "project-FPfBFB80vB3GjK1k2yqz9Ppb"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -893,23 +893,23 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kQFQ05QpX6vXb405Q2KfB/download + uri: https://api.dnanexus.com/file-FPfBFF80vB39F0362xZX6pBz/download response: - body: {string: '{"url":"https://dl.dnanex.us/F/D2PRJ/file-FP9kQFQ05QpX6vXb405Q2KfB/project-FP9kQBQ05QpbYj5j40f25Z65","headers":{"X-Authorization":"xvikWJf5EfyoFK7ts58Kg01M23eflOAq"}}'} + body: {string: '{"url":"https://dl.dnanex.us/F/D2PRJ/file-FPfBFF80vB39F0362xZX6pBz/project-FPfBFB80vB3GjK1k2yqz9Ppb","headers":{"X-Authorization":"xvikWJf5EfyoFK7ts58Kg01M23eflOAq"}}'} headers: Access-Control-Allow-Credentials: ['true'] Connection: [keep-alive] Content-Length: ['166'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:41:54 GMT'] + Date: ['Wed, 14 Nov 2018 22:46:08 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593714040-209415] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235568702-365249] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] set-cookie: [authorization=xvikWJf5EfyoFK7ts58Kg01M23eflOAq; Domain=dl.dnanex.us; - Path=/F/D2PRJ/file-FP9kQFQ05QpX6vXb405Q2KfB/project-FP9kQBQ05QpbYj5j40f25Z65; + Path=/F/D2PRJ/file-FPfBFF80vB39F0362xZX6pBz/project-FPfBFB80vB3GjK1k2yqz9Ppb; Max-Age=86400; HttpOnly; Secure] status: {code: 200, message: OK} - request: @@ -929,7 +929,7 @@ interactions: : - !!binary | eHZpa1dKZjVFZnlvRks3dHM1OEtnMDFNMjNlZmxPQXE= method: GET - uri: https://dl.dnanex.us/F/D2PRJ/file-FP9kQFQ05QpX6vXb405Q2KfB/project-FP9kQBQ05QpbYj5j40f25Z65 + uri: https://dl.dnanex.us/F/D2PRJ/file-FPfBFF80vB39F0362xZX6pBz/project-FPfBFB80vB3GjK1k2yqz9Ppb response: body: {string: data} headers: @@ -939,12 +939,12 @@ interactions: Connection: [keep-alive] Content-Length: ['4'] Content-Type: [text/plain] - Date: ['Fri, 26 Oct 2018 22:41:54 GMT'] - Last-Modified: ['Fri, 26 Oct 2018 22:41:52 GMT'] + Date: ['Wed, 14 Nov 2018 22:46:09 GMT'] + Last-Modified: ['Wed, 14 Nov 2018 22:46:07 GMT'] content-disposition: [attachment] status: {code: 200, message: OK} - request: - body: '{"defaultFields": true, "fields": {"parts": true}, "project": "project-FP9kQBQ05QpbYj5j40f25Z65"}' + body: '{"defaultFields": true, "fields": {"parts": true}, "project": "project-FPfBFB80vB3GjK1k2yqz9Ppb"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -964,23 +964,23 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kQBQ05Qpvfgvx3zz6pb23/describe + uri: https://api.dnanexus.com/file-FPfBFB80vB37x9Yb2yF88jF6/describe response: - body: {string: '{"id":"file-FP9kQBQ05Qpvfgvx3zz6pb23","project":"project-FP9kQBQ05QpbYj5j40f25Z65","class":"file","sponsored":false,"name":"folder_file.txt","types":[],"state":"closed","hidden":false,"links":[],"folder":"/temp_folder","tags":[],"created":1540593706000,"modified":1540593709008,"createdBy":{"user":"user-akumar_counsyl"},"media":"text/plain","archivalState":"live","parts":{"1":{"state":"complete","size":4,"md5":"8d777f385d3dfec8815d20f7496026dc"}},"size":4}'} + body: {string: '{"id":"file-FPfBFB80vB37x9Yb2yF88jF6","project":"project-FPfBFB80vB3GjK1k2yqz9Ppb","class":"file","sponsored":false,"name":"folder_file.txt","types":[],"state":"closed","hidden":false,"links":[],"folder":"/temp_folder","tags":[],"created":1542235561000,"modified":1542235563914,"createdBy":{"user":"user-akumar_counsyl"},"media":"text/plain","archivalState":"live","parts":{"1":{"state":"complete","size":4,"md5":"8d777f385d3dfec8815d20f7496026dc"}},"size":4}'} headers: Connection: [keep-alive] Content-Length: ['459'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:41:54 GMT'] + Date: ['Wed, 14 Nov 2018 22:46:09 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593714653-812365] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235569248-659906] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"preauthenticated": false, "project": "project-FP9kQBQ05QpbYj5j40f25Z65"}' + body: '{"preauthenticated": false, "project": "project-FPfBFB80vB3GjK1k2yqz9Ppb"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -1000,23 +1000,23 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kQBQ05Qpvfgvx3zz6pb23/download + uri: https://api.dnanexus.com/file-FPfBFB80vB37x9Yb2yF88jF6/download response: - body: {string: '{"url":"https://dl.dnanex.us/F/D2PRJ/file-FP9kQBQ05Qpvfgvx3zz6pb23/project-FP9kQBQ05QpbYj5j40f25Z65","headers":{"X-Authorization":"xvikWJf5EfyoFK7ts58Kg01M23eflOAq"}}'} + body: {string: '{"url":"https://dl.dnanex.us/F/D2PRJ/file-FPfBFB80vB37x9Yb2yF88jF6/project-FPfBFB80vB3GjK1k2yqz9Ppb","headers":{"X-Authorization":"xvikWJf5EfyoFK7ts58Kg01M23eflOAq"}}'} headers: Access-Control-Allow-Credentials: ['true'] Connection: [keep-alive] Content-Length: ['166'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:41:54 GMT'] + Date: ['Wed, 14 Nov 2018 22:46:09 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593714768-163685] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235569362-580771] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] set-cookie: [authorization=xvikWJf5EfyoFK7ts58Kg01M23eflOAq; Domain=dl.dnanex.us; - Path=/F/D2PRJ/file-FP9kQBQ05Qpvfgvx3zz6pb23/project-FP9kQBQ05QpbYj5j40f25Z65; + Path=/F/D2PRJ/file-FPfBFB80vB37x9Yb2yF88jF6/project-FPfBFB80vB3GjK1k2yqz9Ppb; Max-Age=86400; HttpOnly; Secure] status: {code: 200, message: OK} - request: @@ -1036,7 +1036,7 @@ interactions: : - !!binary | eHZpa1dKZjVFZnlvRks3dHM1OEtnMDFNMjNlZmxPQXE= method: GET - uri: https://dl.dnanex.us/F/D2PRJ/file-FP9kQBQ05Qpvfgvx3zz6pb23/project-FP9kQBQ05QpbYj5j40f25Z65 + uri: https://dl.dnanex.us/F/D2PRJ/file-FPfBFB80vB37x9Yb2yF88jF6/project-FPfBFB80vB3GjK1k2yqz9Ppb response: body: {string: data} headers: @@ -1046,12 +1046,12 @@ interactions: Connection: [keep-alive] Content-Length: ['4'] Content-Type: [text/plain] - Date: ['Fri, 26 Oct 2018 22:41:54 GMT'] - Last-Modified: ['Fri, 26 Oct 2018 22:41:49 GMT'] + Date: ['Wed, 14 Nov 2018 22:46:09 GMT'] + Last-Modified: ['Wed, 14 Nov 2018 22:46:04 GMT'] content-disposition: [attachment] status: {code: 200, message: OK} - request: - body: '{"name": "TestCopyTree.test_dx_dir_to_posix.677c6e90", "level": "VIEW", + body: '{"name": "TestCopyTree.test_dx_dir_to_posix.133724d7", "level": "VIEW", "limit": 2}' headers: ? !!binary | @@ -1074,17 +1074,17 @@ interactions: method: POST uri: https://api.dnanexus.com/system/findProjects response: - body: {string: '{"results":[{"id":"project-FP9kQBQ05QpbYj5j40f25Z65","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} + body: {string: '{"results":[{"id":"project-FPfBFB80vB3GjK1k2yqz9Ppb","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} headers: Connection: [keep-alive] Content-Length: ['147'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:41:55 GMT'] + Date: ['Wed, 14 Nov 2018 22:46:09 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593715044-104871] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235569741-86957] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -1108,23 +1108,23 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kQBQ05QpbYj5j40f25Z65/describe + uri: https://api.dnanexus.com/project-FPfBFB80vB3GjK1k2yqz9Ppb/describe response: - body: {string: '{"id":"project-FP9kQBQ05QpbYj5j40f25Z65","name":"TestCopyTree.test_dx_dir_to_posix.677c6e90","class":"project","created":1540593706000,"modified":1540593711816,"billTo":"org-counsyl","level":"ADMINISTER","folders":["/","/temp_folder","/temp_folder/another_folder"],"dataUsage":7.450580596923828e-9,"sponsoredDataUsage":0,"region":"aws:us-east-1","summary":"","description":"","protected":false,"restricted":false,"downloadRestricted":false,"containsPHI":false,"createdBy":{"user":"user-akumar_counsyl"},"version":0,"storageCost":1.639127731323242e-10,"pendingTransfer":null,"tags":[],"defaultInstanceType":"mem2_hdd2_x2","archivalState":"live","archivalProgress":null,"totalSponsoredEgressBytes":0,"consumedSponsoredEgressBytes":0,"atSpendingLimit":false}'} + body: {string: '{"id":"project-FPfBFB80vB3GjK1k2yqz9Ppb","name":"TestCopyTree.test_dx_dir_to_posix.133724d7","class":"project","created":1542235561000,"modified":1542235566385,"billTo":"org-counsyl","level":"ADMINISTER","folders":["/","/temp_folder","/temp_folder/another_folder"],"dataUsage":7.450580596923828e-9,"sponsoredDataUsage":0,"region":"aws:us-east-1","summary":"","description":"","protected":false,"restricted":false,"downloadRestricted":false,"containsPHI":false,"createdBy":{"user":"user-akumar_counsyl"},"version":0,"storageCost":1.639127731323242e-10,"pendingTransfer":null,"tags":[],"defaultInstanceType":"mem2_hdd2_x2","archivalState":"live","archivalProgress":null,"totalSponsoredEgressBytes":0,"consumedSponsoredEgressBytes":0,"atSpendingLimit":false}'} headers: Connection: [keep-alive] Content-Length: ['755'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:41:55 GMT'] + Date: ['Wed, 14 Nov 2018 22:46:09 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593715172-871719] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235569960-648335] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"class": "file", "state": "closed", "scope": {"project": "project-FP9kQBQ05QpbYj5j40f25Z65", + body: '{"class": "file", "state": "closed", "scope": {"project": "project-FPfBFB80vB3GjK1k2yqz9Ppb", "folder": "/temp_folder", "recurse": true}, "describe": {"fields": {"folder": true, "name": true, "id": true}}, "limit": 100}' headers: @@ -1148,21 +1148,21 @@ interactions: method: POST uri: https://api.dnanexus.com/system/findDataObjects response: - body: {string: '{"next":null,"results":[{"project":"project-FP9kQBQ05QpbYj5j40f25Z65","id":"file-FP9kQFQ05QpX6vXb405Q2KfB","describe":{"id":"file-FP9kQFQ05QpX6vXb405Q2KfB","name":"temp_file.txt","folder":"/temp_folder/another_folder"}},{"project":"project-FP9kQBQ05QpbYj5j40f25Z65","id":"file-FP9kQBQ05Qpvfgvx3zz6pb23","describe":{"id":"file-FP9kQBQ05Qpvfgvx3zz6pb23","name":"folder_file.txt","folder":"/temp_folder"}}]}'} + body: {string: '{"next":null,"results":[{"project":"project-FPfBFB80vB3GjK1k2yqz9Ppb","id":"file-FPfBFF80vB39F0362xZX6pBz","describe":{"id":"file-FPfBFF80vB39F0362xZX6pBz","name":"temp_file.txt","folder":"/temp_folder/another_folder"}},{"project":"project-FPfBFB80vB3GjK1k2yqz9Ppb","id":"file-FPfBFB80vB37x9Yb2yF88jF6","describe":{"id":"file-FPfBFB80vB37x9Yb2yF88jF6","name":"folder_file.txt","folder":"/temp_folder"}}]}'} headers: Connection: [keep-alive] Content-Length: ['404'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:41:55 GMT'] + Date: ['Wed, 14 Nov 2018 22:46:10 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593715296-823564] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235570083-993939] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"defaultFields": true, "fields": {"parts": true}, "project": "project-FP9kQBQ05QpbYj5j40f25Z65"}' + body: '{"defaultFields": true, "fields": {"parts": true}, "project": "project-FPfBFB80vB3GjK1k2yqz9Ppb"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -1182,23 +1182,23 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kQFQ05QpX6vXb405Q2KfB/describe + uri: https://api.dnanexus.com/file-FPfBFF80vB39F0362xZX6pBz/describe response: - body: {string: '{"id":"file-FP9kQFQ05QpX6vXb405Q2KfB","project":"project-FP9kQBQ05QpbYj5j40f25Z65","class":"file","sponsored":false,"name":"temp_file.txt","types":[],"state":"closed","hidden":false,"links":[],"folder":"/temp_folder/another_folder","tags":[],"created":1540593710000,"modified":1540593711816,"createdBy":{"user":"user-akumar_counsyl"},"media":"text/plain","archivalState":"live","parts":{"1":{"state":"complete","size":4,"md5":"8d777f385d3dfec8815d20f7496026dc"}},"size":4}'} + body: {string: '{"id":"file-FPfBFF80vB39F0362xZX6pBz","project":"project-FPfBFB80vB3GjK1k2yqz9Ppb","class":"file","sponsored":false,"name":"temp_file.txt","types":[],"state":"closed","hidden":false,"links":[],"folder":"/temp_folder/another_folder","tags":[],"created":1542235565000,"modified":1542235566385,"createdBy":{"user":"user-akumar_counsyl"},"media":"text/plain","archivalState":"live","parts":{"1":{"state":"complete","size":4,"md5":"8d777f385d3dfec8815d20f7496026dc"}},"size":4}'} headers: Connection: [keep-alive] Content-Length: ['472'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:41:55 GMT'] + Date: ['Wed, 14 Nov 2018 22:46:10 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593715410-970384] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235570189-567513] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"preauthenticated": false, "project": "project-FP9kQBQ05QpbYj5j40f25Z65"}' + body: '{"preauthenticated": false, "project": "project-FPfBFB80vB3GjK1k2yqz9Ppb"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -1218,23 +1218,23 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kQFQ05QpX6vXb405Q2KfB/download + uri: https://api.dnanexus.com/file-FPfBFF80vB39F0362xZX6pBz/download response: - body: {string: '{"url":"https://dl.dnanex.us/F/D2PRJ/file-FP9kQFQ05QpX6vXb405Q2KfB/project-FP9kQBQ05QpbYj5j40f25Z65","headers":{"X-Authorization":"xvikWJf5EfyoFK7ts58Kg01M23eflOAq"}}'} + body: {string: '{"url":"https://dl.dnanex.us/F/D2PRJ/file-FPfBFF80vB39F0362xZX6pBz/project-FPfBFB80vB3GjK1k2yqz9Ppb","headers":{"X-Authorization":"xvikWJf5EfyoFK7ts58Kg01M23eflOAq"}}'} headers: Access-Control-Allow-Credentials: ['true'] Connection: [keep-alive] Content-Length: ['166'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:41:55 GMT'] + Date: ['Wed, 14 Nov 2018 22:46:10 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593715524-784552] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235570293-991748] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] set-cookie: [authorization=xvikWJf5EfyoFK7ts58Kg01M23eflOAq; Domain=dl.dnanex.us; - Path=/F/D2PRJ/file-FP9kQFQ05QpX6vXb405Q2KfB/project-FP9kQBQ05QpbYj5j40f25Z65; + Path=/F/D2PRJ/file-FPfBFF80vB39F0362xZX6pBz/project-FPfBFB80vB3GjK1k2yqz9Ppb; Max-Age=86400; HttpOnly; Secure] status: {code: 200, message: OK} - request: @@ -1254,7 +1254,7 @@ interactions: : - !!binary | eHZpa1dKZjVFZnlvRks3dHM1OEtnMDFNMjNlZmxPQXE= method: GET - uri: https://dl.dnanex.us/F/D2PRJ/file-FP9kQFQ05QpX6vXb405Q2KfB/project-FP9kQBQ05QpbYj5j40f25Z65 + uri: https://dl.dnanex.us/F/D2PRJ/file-FPfBFF80vB39F0362xZX6pBz/project-FPfBFB80vB3GjK1k2yqz9Ppb response: body: {string: data} headers: @@ -1264,12 +1264,12 @@ interactions: Connection: [keep-alive] Content-Length: ['4'] Content-Type: [text/plain] - Date: ['Fri, 26 Oct 2018 22:41:55 GMT'] - Last-Modified: ['Fri, 26 Oct 2018 22:41:52 GMT'] + Date: ['Wed, 14 Nov 2018 22:46:10 GMT'] + Last-Modified: ['Wed, 14 Nov 2018 22:46:07 GMT'] content-disposition: [attachment] status: {code: 200, message: OK} - request: - body: '{"defaultFields": true, "fields": {"parts": true}, "project": "project-FP9kQBQ05QpbYj5j40f25Z65"}' + body: '{"defaultFields": true, "fields": {"parts": true}, "project": "project-FPfBFB80vB3GjK1k2yqz9Ppb"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -1289,23 +1289,23 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kQBQ05Qpvfgvx3zz6pb23/describe + uri: https://api.dnanexus.com/file-FPfBFB80vB37x9Yb2yF88jF6/describe response: - body: {string: '{"id":"file-FP9kQBQ05Qpvfgvx3zz6pb23","project":"project-FP9kQBQ05QpbYj5j40f25Z65","class":"file","sponsored":false,"name":"folder_file.txt","types":[],"state":"closed","hidden":false,"links":[],"folder":"/temp_folder","tags":[],"created":1540593706000,"modified":1540593709008,"createdBy":{"user":"user-akumar_counsyl"},"media":"text/plain","archivalState":"live","parts":{"1":{"state":"complete","size":4,"md5":"8d777f385d3dfec8815d20f7496026dc"}},"size":4}'} + body: {string: '{"id":"file-FPfBFB80vB37x9Yb2yF88jF6","project":"project-FPfBFB80vB3GjK1k2yqz9Ppb","class":"file","sponsored":false,"name":"folder_file.txt","types":[],"state":"closed","hidden":false,"links":[],"folder":"/temp_folder","tags":[],"created":1542235561000,"modified":1542235563914,"createdBy":{"user":"user-akumar_counsyl"},"media":"text/plain","archivalState":"live","parts":{"1":{"state":"complete","size":4,"md5":"8d777f385d3dfec8815d20f7496026dc"}},"size":4}'} headers: Connection: [keep-alive] Content-Length: ['459'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:41:55 GMT'] + Date: ['Wed, 14 Nov 2018 22:46:10 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593715782-524239] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235570509-134048] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"preauthenticated": false, "project": "project-FP9kQBQ05QpbYj5j40f25Z65"}' + body: '{"preauthenticated": false, "project": "project-FPfBFB80vB3GjK1k2yqz9Ppb"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -1325,23 +1325,23 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kQBQ05Qpvfgvx3zz6pb23/download + uri: https://api.dnanexus.com/file-FPfBFB80vB37x9Yb2yF88jF6/download response: - body: {string: '{"url":"https://dl.dnanex.us/F/D2PRJ/file-FP9kQBQ05Qpvfgvx3zz6pb23/project-FP9kQBQ05QpbYj5j40f25Z65","headers":{"X-Authorization":"xvikWJf5EfyoFK7ts58Kg01M23eflOAq"}}'} + body: {string: '{"url":"https://dl.dnanex.us/F/D2PRJ/file-FPfBFB80vB37x9Yb2yF88jF6/project-FPfBFB80vB3GjK1k2yqz9Ppb","headers":{"X-Authorization":"xvikWJf5EfyoFK7ts58Kg01M23eflOAq"}}'} headers: Access-Control-Allow-Credentials: ['true'] Connection: [keep-alive] Content-Length: ['166'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:41:55 GMT'] + Date: ['Wed, 14 Nov 2018 22:46:10 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593715898-626630] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235570613-169091] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] set-cookie: [authorization=xvikWJf5EfyoFK7ts58Kg01M23eflOAq; Domain=dl.dnanex.us; - Path=/F/D2PRJ/file-FP9kQBQ05Qpvfgvx3zz6pb23/project-FP9kQBQ05QpbYj5j40f25Z65; + Path=/F/D2PRJ/file-FPfBFB80vB37x9Yb2yF88jF6/project-FPfBFB80vB3GjK1k2yqz9Ppb; Max-Age=86400; HttpOnly; Secure] status: {code: 200, message: OK} - request: @@ -1361,7 +1361,7 @@ interactions: : - !!binary | eHZpa1dKZjVFZnlvRks3dHM1OEtnMDFNMjNlZmxPQXE= method: GET - uri: https://dl.dnanex.us/F/D2PRJ/file-FP9kQBQ05Qpvfgvx3zz6pb23/project-FP9kQBQ05QpbYj5j40f25Z65 + uri: https://dl.dnanex.us/F/D2PRJ/file-FPfBFB80vB37x9Yb2yF88jF6/project-FPfBFB80vB3GjK1k2yqz9Ppb response: body: {string: data} headers: @@ -1371,12 +1371,12 @@ interactions: Connection: [keep-alive] Content-Length: ['4'] Content-Type: [text/plain] - Date: ['Fri, 26 Oct 2018 22:41:56 GMT'] - Last-Modified: ['Fri, 26 Oct 2018 22:41:49 GMT'] + Date: ['Wed, 14 Nov 2018 22:46:10 GMT'] + Last-Modified: ['Wed, 14 Nov 2018 22:46:04 GMT'] content-disposition: [attachment] status: {code: 200, message: OK} - request: - body: '{"name": "TestCopyTree.test_dx_dir_to_posix.677c6e90", "level": "VIEW", + body: '{"name": "TestCopyTree.test_dx_dir_to_posix.133724d7", "level": "VIEW", "limit": 2}' headers: ? !!binary | @@ -1399,17 +1399,17 @@ interactions: method: POST uri: https://api.dnanexus.com/system/findProjects response: - body: {string: '{"results":[{"id":"project-FP9kQBQ05QpbYj5j40f25Z65","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} + body: {string: '{"results":[{"id":"project-FPfBFB80vB3GjK1k2yqz9Ppb","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} headers: Connection: [keep-alive] Content-Length: ['147'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:41:56 GMT'] + Date: ['Wed, 14 Nov 2018 22:46:10 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593716149-188813] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235570914-242794] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -1433,23 +1433,23 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kQBQ05QpbYj5j40f25Z65/describe + uri: https://api.dnanexus.com/project-FPfBFB80vB3GjK1k2yqz9Ppb/describe response: - body: {string: '{"id":"project-FP9kQBQ05QpbYj5j40f25Z65","name":"TestCopyTree.test_dx_dir_to_posix.677c6e90","class":"project","created":1540593706000,"modified":1540593711816,"billTo":"org-counsyl","level":"ADMINISTER","folders":["/","/temp_folder","/temp_folder/another_folder"],"dataUsage":7.450580596923828e-9,"sponsoredDataUsage":0,"region":"aws:us-east-1","summary":"","description":"","protected":false,"restricted":false,"downloadRestricted":false,"containsPHI":false,"createdBy":{"user":"user-akumar_counsyl"},"version":0,"storageCost":1.639127731323242e-10,"pendingTransfer":null,"tags":[],"defaultInstanceType":"mem2_hdd2_x2","archivalState":"live","archivalProgress":null,"totalSponsoredEgressBytes":0,"consumedSponsoredEgressBytes":0,"atSpendingLimit":false}'} + body: {string: '{"id":"project-FPfBFB80vB3GjK1k2yqz9Ppb","name":"TestCopyTree.test_dx_dir_to_posix.133724d7","class":"project","created":1542235561000,"modified":1542235566385,"billTo":"org-counsyl","level":"ADMINISTER","folders":["/","/temp_folder","/temp_folder/another_folder"],"dataUsage":7.450580596923828e-9,"sponsoredDataUsage":0,"region":"aws:us-east-1","summary":"","description":"","protected":false,"restricted":false,"downloadRestricted":false,"containsPHI":false,"createdBy":{"user":"user-akumar_counsyl"},"version":0,"storageCost":1.639127731323242e-10,"pendingTransfer":null,"tags":[],"defaultInstanceType":"mem2_hdd2_x2","archivalState":"live","archivalProgress":null,"totalSponsoredEgressBytes":0,"consumedSponsoredEgressBytes":0,"atSpendingLimit":false}'} headers: Connection: [keep-alive] Content-Length: ['755'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:41:56 GMT'] + Date: ['Wed, 14 Nov 2018 22:46:11 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593716284-243592] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235571045-673199] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"class": "file", "state": "closed", "scope": {"project": "project-FP9kQBQ05QpbYj5j40f25Z65", + body: '{"class": "file", "state": "closed", "scope": {"project": "project-FPfBFB80vB3GjK1k2yqz9Ppb", "folder": "/temp_folder", "recurse": true}, "describe": {"fields": {"folder": true, "name": true, "id": true}}, "limit": 100}' headers: @@ -1473,17 +1473,17 @@ interactions: method: POST uri: https://api.dnanexus.com/system/findDataObjects response: - body: {string: '{"next":null,"results":[{"project":"project-FP9kQBQ05QpbYj5j40f25Z65","id":"file-FP9kQFQ05QpX6vXb405Q2KfB","describe":{"id":"file-FP9kQFQ05QpX6vXb405Q2KfB","name":"temp_file.txt","folder":"/temp_folder/another_folder"}},{"project":"project-FP9kQBQ05QpbYj5j40f25Z65","id":"file-FP9kQBQ05Qpvfgvx3zz6pb23","describe":{"id":"file-FP9kQBQ05Qpvfgvx3zz6pb23","name":"folder_file.txt","folder":"/temp_folder"}}]}'} + body: {string: '{"next":null,"results":[{"project":"project-FPfBFB80vB3GjK1k2yqz9Ppb","id":"file-FPfBFF80vB39F0362xZX6pBz","describe":{"id":"file-FPfBFF80vB39F0362xZX6pBz","name":"temp_file.txt","folder":"/temp_folder/another_folder"}},{"project":"project-FPfBFB80vB3GjK1k2yqz9Ppb","id":"file-FPfBFB80vB37x9Yb2yF88jF6","describe":{"id":"file-FPfBFB80vB37x9Yb2yF88jF6","name":"folder_file.txt","folder":"/temp_folder"}}]}'} headers: Connection: [keep-alive] Content-Length: ['404'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:41:56 GMT'] + Date: ['Wed, 14 Nov 2018 22:46:11 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593716404-131499] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235571170-71055] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -1507,19 +1507,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kQBQ05QpbYj5j40f25Z65/destroy + uri: https://api.dnanexus.com/project-FPfBFB80vB3GjK1k2yqz9Ppb/destroy response: - body: {string: '{"id":"project-FP9kQBQ05QpbYj5j40f25Z65"}'} + body: {string: '{"id":"project-FPfBFB80vB3GjK1k2yqz9Ppb"}'} headers: Connection: [keep-alive] Content-Length: ['41'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:41:59 GMT'] + Date: ['Wed, 14 Nov 2018 22:46:14 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593716524-764610] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235571300-904323] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} version: 1 diff --git a/stor/tests/cassettes_py3/TestCopyTree/test_dx_file_to_posix.yaml b/stor_dx/stor_dx/tests/cassettes_py3/TestCopyTree/test_dx_file_to_posix.yaml similarity index 71% rename from stor/tests/cassettes_py3/TestCopyTree/test_dx_file_to_posix.yaml rename to stor_dx/stor_dx/tests/cassettes_py3/TestCopyTree/test_dx_file_to_posix.yaml index 94d0544f..e568eb51 100644 --- a/stor/tests/cassettes_py3/TestCopyTree/test_dx_file_to_posix.yaml +++ b/stor_dx/stor_dx/tests/cassettes_py3/TestCopyTree/test_dx_file_to_posix.yaml @@ -1,6 +1,6 @@ interactions: - request: - body: '{"name": "TestCopyTree.test_dx_file_to_posix.1b0da458"}' + body: '{"name": "TestCopyTree.test_dx_file_to_posix.4864f0c0"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -22,17 +22,17 @@ interactions: method: POST uri: https://api.dnanexus.com/project/new response: - body: {string: '{"id":"project-FP9kQJj03y192JG740JK7J28"}'} + body: {string: '{"id":"project-FPfBFJj0GZX603z5J04ZjbgB"}'} headers: Connection: [keep-alive] Content-Length: ['41'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:41:59 GMT'] + Date: ['Wed, 14 Nov 2018 22:46:15 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593719583-782602] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235575213-407581] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -56,19 +56,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kQJj03y192JG740JK7J28/describe + uri: https://api.dnanexus.com/project-FPfBFJj0GZX603z5J04ZjbgB/describe response: - body: {string: '{"id":"project-FP9kQJj03y192JG740JK7J28","name":"TestCopyTree.test_dx_file_to_posix.1b0da458","class":"project","created":1540593719000,"modified":1540593719000,"billTo":"org-counsyl","level":"ADMINISTER","dataUsage":0,"sponsoredDataUsage":0,"region":"aws:us-east-1","summary":"","description":"","protected":false,"restricted":false,"downloadRestricted":false,"containsPHI":false,"createdBy":{"user":"user-akumar_counsyl"},"version":0,"storageCost":0,"pendingTransfer":null,"tags":[],"defaultInstanceType":"mem2_hdd2_x2","archivalState":"live","archivalProgress":null,"totalSponsoredEgressBytes":0,"consumedSponsoredEgressBytes":0,"atSpendingLimit":false}'} + body: {string: '{"id":"project-FPfBFJj0GZX603z5J04ZjbgB","name":"TestCopyTree.test_dx_file_to_posix.4864f0c0","class":"project","created":1542235575000,"modified":1542235575000,"billTo":"org-counsyl","level":"ADMINISTER","dataUsage":0,"sponsoredDataUsage":0,"region":"aws:us-east-1","summary":"","description":"","protected":false,"restricted":false,"downloadRestricted":false,"containsPHI":false,"createdBy":{"user":"user-akumar_counsyl"},"version":0,"storageCost":0,"pendingTransfer":null,"tags":[],"defaultInstanceType":"mem2_hdd2_x2","archivalState":"live","archivalProgress":null,"totalSponsoredEgressBytes":0,"consumedSponsoredEgressBytes":0,"atSpendingLimit":false}'} headers: Connection: [keep-alive] Content-Length: ['656'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:41:59 GMT'] + Date: ['Wed, 14 Nov 2018 22:46:15 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593719704-696881] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235575318-965993] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -92,24 +92,24 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kQJj03y192JG740JK7J28/newFolder + uri: https://api.dnanexus.com/project-FPfBFJj0GZX603z5J04ZjbgB/newFolder response: - body: {string: '{"id":"project-FP9kQJj03y192JG740JK7J28"}'} + body: {string: '{"id":"project-FPfBFJj0GZX603z5J04ZjbgB"}'} headers: Connection: [keep-alive] Content-Length: ['41'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:41:59 GMT'] + Date: ['Wed, 14 Nov 2018 22:46:15 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593719820-300358] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235575439-263875] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"name": "folder_file.txt", "folder": "/temp_folder", "project": "project-FP9kQJj03y192JG740JK7J28", - "nonce": "b''f18dd442b13ed4adc396933ff97bf76387b209a27eb4370766719a4d301880ce''1540593719.885060"}' + body: '{"name": "folder_file.txt", "folder": "/temp_folder", "project": "project-FPfBFJj0GZX603z5J04ZjbgB", + "nonce": "b''eee37ade3f990304819f9dc37d65a70177e2b624971a0fdf6cdb5ac61e93fd0d''1542235575.506209"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -131,17 +131,17 @@ interactions: method: POST uri: https://api.dnanexus.com/file/new response: - body: {string: '{"id":"file-FP9kQJj03y192JG740JK7J29"}'} + body: {string: '{"id":"file-FPfBFJj0GZXBjXPvGzvq00fb"}'} headers: Connection: [keep-alive] Content-Length: ['38'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:41:59 GMT'] + Date: ['Wed, 14 Nov 2018 22:46:15 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593719934-256820] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235575552-964404] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -165,19 +165,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kQJj03y192JG740JK7J28/describe + uri: https://api.dnanexus.com/project-FPfBFJj0GZX603z5J04ZjbgB/describe response: - body: {string: '{"id":"project-FP9kQJj03y192JG740JK7J28","fileUploadParameters":{"maximumPartSize":5368709120,"minimumPartSize":5242880,"maximumFileSize":5497558138880,"maximumNumParts":10000,"emptyLastPartAllowed":true}}'} + body: {string: '{"id":"project-FPfBFJj0GZX603z5J04ZjbgB","fileUploadParameters":{"maximumPartSize":5368709120,"minimumPartSize":5242880,"maximumFileSize":5497558138880,"maximumNumParts":10000,"emptyLastPartAllowed":true}}'} headers: Connection: [keep-alive] Content-Length: ['205'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:42:00 GMT'] + Date: ['Wed, 14 Nov 2018 22:46:15 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593720094-80874] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235575692-479648] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -201,19 +201,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kQJj03y192JG740JK7J29/upload + uri: https://api.dnanexus.com/file-FPfBFJj0GZXBjXPvGzvq00fb/upload response: - body: {string: '{"url":"https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/9923/file/open/file-FP9kQJj03y192JG740JK7J29/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181026%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181026T224200Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=85963e5fe9994b49b4abcd8761471845cd9a1126dec9fb1e3203100860b251f9","headers":{"host":"dnanexus-platform-upload-prod.s3.amazonaws.com","content-type":"binary/octet-stream","x-amz-server-side-encryption":"AES256","content-md5":"c9//V/4k6Ae9T7G8TgfNcw==","content-length":"5"},"expires":1540593840239}'} + body: {string: '{"url":"https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/35a3/file/open/file-FPfBFJj0GZXBjXPvGzvq00fb/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181114%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181114T224615Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=03f651a6e48c599180056ea01d8950ac0e00d01248059aacca71c3bb6ffa7199","headers":{"host":"dnanexus-platform-upload-prod.s3.amazonaws.com","content-type":"binary/octet-stream","x-amz-server-side-encryption":"AES256","content-md5":"c9//V/4k6Ae9T7G8TgfNcw==","content-length":"5"},"expires":1542235695799}'} headers: Connection: [keep-alive] Content-Length: ['692'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:42:00 GMT'] + Date: ['Wed, 14 Nov 2018 22:46:15 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593720209-562715] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235575787-108307] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -241,21 +241,21 @@ interactions: : - !!binary | QUVTMjU2 method: PUT - uri: https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/9923/file/open/file-FP9kQJj03y192JG740JK7J29/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181026%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181026T224200Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=85963e5fe9994b49b4abcd8761471845cd9a1126dec9fb1e3203100860b251f9 + uri: https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/35a3/file/open/file-FPfBFJj0GZXBjXPvGzvq00fb/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181114%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181114T224615Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=03f651a6e48c599180056ea01d8950ac0e00d01248059aacca71c3bb6ffa7199 response: body: {string: ''} headers: Content-Length: ['0'] - Date: ['Fri, 26 Oct 2018 22:42:01 GMT'] + Date: ['Wed, 14 Nov 2018 22:46:17 GMT'] ETag: ['"73dfff57fe24e807bd4fb1bc4e07cd73"'] Server: [AmazonS3] - x-amz-expiration: ['expiry-date="Sat, 17 Nov 2018 00:00:00 GMT", rule-id="3weekpurge"'] - x-amz-id-2: [VUU8TIVSzAtjstkOKV40sBbpoN+I9yHFvPZDnd3I4EpVzKZdvuUyA46Y4uci/SzAMhHCZN/DRaM=] - x-amz-request-id: [C69D6AB415ED98E1] + x-amz-expiration: ['expiry-date="Thu, 06 Dec 2018 00:00:00 GMT", rule-id="3weekpurge"'] + x-amz-id-2: [i3BiE4T5tfGpSnjXaUASEemhK3a0dvUrvrIlY1gcB9r5Skl0o2vbItArni4dcFqpdh84jMdjCqo=] + x-amz-request-id: [3E6EDE76B02ED5F4] x-amz-server-side-encryption: [AES256] status: {code: 200, message: OK} - request: - body: '{"fields": {"state": true}, "project": "project-FP9kQJj03y192JG740JK7J28"}' + body: '{"fields": {"state": true}, "project": "project-FPfBFJj0GZX603z5J04ZjbgB"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -275,19 +275,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kQJj03y192JG740JK7J29/describe + uri: https://api.dnanexus.com/file-FPfBFJj0GZXBjXPvGzvq00fb/describe response: - body: {string: '{"id":"file-FP9kQJj03y192JG740JK7J29","state":"open"}'} + body: {string: '{"id":"file-FPfBFJj0GZXBjXPvGzvq00fb","state":"open"}'} headers: Connection: [keep-alive] Content-Length: ['53'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:42:00 GMT'] + Date: ['Wed, 14 Nov 2018 22:46:16 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593720861-47050] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235576241-553037] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -311,23 +311,23 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kQJj03y192JG740JK7J29/close + uri: https://api.dnanexus.com/file-FPfBFJj0GZXBjXPvGzvq00fb/close response: - body: {string: '{"id":"file-FP9kQJj03y192JG740JK7J29"}'} + body: {string: '{"id":"file-FPfBFJj0GZXBjXPvGzvq00fb"}'} headers: Connection: [keep-alive] Content-Length: ['38'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:42:01 GMT'] + Date: ['Wed, 14 Nov 2018 22:46:16 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593720985-305784] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235576352-808177] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"name": "TestCopyTree.test_dx_file_to_posix.1b0da458", "level": "VIEW", + body: '{"name": "TestCopyTree.test_dx_file_to_posix.4864f0c0", "level": "VIEW", "limit": 2}' headers: ? !!binary | @@ -350,17 +350,17 @@ interactions: method: POST uri: https://api.dnanexus.com/system/findProjects response: - body: {string: '{"results":[{"id":"project-FP9kQJj03y192JG740JK7J28","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} + body: {string: '{"results":[{"id":"project-FPfBFJj0GZX603z5J04ZjbgB","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} headers: Connection: [keep-alive] Content-Length: ['147'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:42:01 GMT'] + Date: ['Wed, 14 Nov 2018 22:46:16 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593721150-974663] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235576540-682190] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -384,19 +384,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kQJj03y192JG740JK7J28/describe + uri: https://api.dnanexus.com/project-FPfBFJj0GZX603z5J04ZjbgB/describe response: - body: {string: '{"id":"project-FP9kQJj03y192JG740JK7J28","name":"TestCopyTree.test_dx_file_to_posix.1b0da458","class":"project","created":1540593719000,"modified":1540593721205,"billTo":"org-counsyl","level":"ADMINISTER","folders":["/","/temp_folder"],"dataUsage":4.6566128730773926e-9,"sponsoredDataUsage":0,"region":"aws:us-east-1","summary":"","description":"","protected":false,"restricted":false,"downloadRestricted":false,"containsPHI":false,"createdBy":{"user":"user-akumar_counsyl"},"version":0,"storageCost":1.0244548320770262e-10,"pendingTransfer":null,"tags":[],"defaultInstanceType":"mem2_hdd2_x2","archivalState":"live","archivalProgress":null,"totalSponsoredEgressBytes":0,"consumedSponsoredEgressBytes":0,"atSpendingLimit":false}'} + body: {string: '{"id":"project-FPfBFJj0GZX603z5J04ZjbgB","name":"TestCopyTree.test_dx_file_to_posix.4864f0c0","class":"project","created":1542235575000,"modified":1542235576366,"billTo":"org-counsyl","level":"ADMINISTER","folders":["/","/temp_folder"],"dataUsage":0,"sponsoredDataUsage":0,"region":"aws:us-east-1","summary":"","description":"","protected":false,"restricted":false,"downloadRestricted":false,"containsPHI":false,"createdBy":{"user":"user-akumar_counsyl"},"version":0,"storageCost":0,"pendingTransfer":null,"tags":[],"defaultInstanceType":"mem2_hdd2_x2","archivalState":"live","archivalProgress":null,"totalSponsoredEgressBytes":0,"consumedSponsoredEgressBytes":0,"atSpendingLimit":false}'} headers: Connection: [keep-alive] - Content-Length: ['728'] + Content-Length: ['687'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:42:01 GMT'] + Date: ['Wed, 14 Nov 2018 22:46:16 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593721289-969443] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235576678-770542] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -420,19 +420,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kQJj03y192JG740JK7J28/destroy + uri: https://api.dnanexus.com/project-FPfBFJj0GZX603z5J04ZjbgB/destroy response: - body: {string: '{"id":"project-FP9kQJj03y192JG740JK7J28"}'} + body: {string: '{"id":"project-FPfBFJj0GZX603z5J04ZjbgB"}'} headers: Connection: [keep-alive] Content-Length: ['41'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:42:03 GMT'] + Date: ['Wed, 14 Nov 2018 22:46:19 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593721410-370849] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235576788-73008] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} version: 1 diff --git a/stor/tests/cassettes_py3/TestCopyTree/test_dx_root_to_dx_dir.yaml b/stor_dx/stor_dx/tests/cassettes_py3/TestCopyTree/test_dx_root_to_dx_dir.yaml similarity index 74% rename from stor/tests/cassettes_py3/TestCopyTree/test_dx_root_to_dx_dir.yaml rename to stor_dx/stor_dx/tests/cassettes_py3/TestCopyTree/test_dx_root_to_dx_dir.yaml index c79a9580..7e3ac419 100644 --- a/stor/tests/cassettes_py3/TestCopyTree/test_dx_root_to_dx_dir.yaml +++ b/stor_dx/stor_dx/tests/cassettes_py3/TestCopyTree/test_dx_root_to_dx_dir.yaml @@ -1,6 +1,6 @@ interactions: - request: - body: '{"name": "TestCopyTree.test_dx_root_to_dx_dir.3e2b271f"}' + body: '{"name": "TestCopyTree.test_dx_root_to_dx_dir.e8419cb9"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -22,17 +22,17 @@ interactions: method: POST uri: https://api.dnanexus.com/project/new response: - body: {string: '{"id":"project-FP9kQP0009Kk2JG740JK7J2F"}'} + body: {string: '{"id":"project-FPfBFKj0yv9zQZ9J3YpQkQ67"}'} headers: Connection: [keep-alive] Content-Length: ['41'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:42:04 GMT'] + Date: ['Wed, 14 Nov 2018 22:46:19 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593724090-432490] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235579801-328449] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -56,19 +56,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kQP0009Kk2JG740JK7J2F/describe + uri: https://api.dnanexus.com/project-FPfBFKj0yv9zQZ9J3YpQkQ67/describe response: - body: {string: '{"id":"project-FP9kQP0009Kk2JG740JK7J2F","name":"TestCopyTree.test_dx_root_to_dx_dir.3e2b271f","class":"project","created":1540593724000,"modified":1540593724000,"billTo":"org-counsyl","level":"ADMINISTER","dataUsage":0,"sponsoredDataUsage":0,"region":"aws:us-east-1","summary":"","description":"","protected":false,"restricted":false,"downloadRestricted":false,"containsPHI":false,"createdBy":{"user":"user-akumar_counsyl"},"version":0,"storageCost":0,"pendingTransfer":null,"tags":[],"defaultInstanceType":"mem2_hdd2_x2","archivalState":"live","archivalProgress":null,"totalSponsoredEgressBytes":0,"consumedSponsoredEgressBytes":0,"atSpendingLimit":false}'} + body: {string: '{"id":"project-FPfBFKj0yv9zQZ9J3YpQkQ67","name":"TestCopyTree.test_dx_root_to_dx_dir.e8419cb9","class":"project","created":1542235579000,"modified":1542235579000,"billTo":"org-counsyl","level":"ADMINISTER","dataUsage":0,"sponsoredDataUsage":0,"region":"aws:us-east-1","summary":"","description":"","protected":false,"restricted":false,"downloadRestricted":false,"containsPHI":false,"createdBy":{"user":"user-akumar_counsyl"},"version":0,"storageCost":0,"pendingTransfer":null,"tags":[],"defaultInstanceType":"mem2_hdd2_x2","archivalState":"live","archivalProgress":null,"totalSponsoredEgressBytes":0,"consumedSponsoredEgressBytes":0,"atSpendingLimit":false}'} headers: Connection: [keep-alive] Content-Length: ['657'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:42:04 GMT'] + Date: ['Wed, 14 Nov 2018 22:46:19 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593724206-110427] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235579919-444503] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -92,24 +92,24 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kQP0009Kk2JG740JK7J2F/newFolder + uri: https://api.dnanexus.com/project-FPfBFKj0yv9zQZ9J3YpQkQ67/newFolder response: - body: {string: '{"id":"project-FP9kQP0009Kk2JG740JK7J2F"}'} + body: {string: '{"id":"project-FPfBFKj0yv9zQZ9J3YpQkQ67"}'} headers: Connection: [keep-alive] Content-Length: ['41'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:42:04 GMT'] + Date: ['Wed, 14 Nov 2018 22:46:20 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593724327-919517] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235580062-603267] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"name": "folder_file", "folder": "/temp_folder", "project": "project-FP9kQP0009Kk2JG740JK7J2F", - "nonce": "b''52c841a2a0a1a0e6af37a6ca93964780c25b9dc690ec90d6f26a7282d1dabe28''1540593724.413525"}' + body: '{"name": "folder_file", "folder": "/temp_folder", "project": "project-FPfBFKj0yv9zQZ9J3YpQkQ67", + "nonce": "b''653aedcc544094a928dd80831ea519164a76f45351b25cb33732e478df1efc5b''1542235580.180971"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -131,17 +131,17 @@ interactions: method: POST uri: https://api.dnanexus.com/file/new response: - body: {string: '{"id":"file-FP9kQP0009KkB0KJ8Bz7260k"}'} + body: {string: '{"id":"file-FPfBFP00yv9Z4Y2v3YJZF842"}'} headers: Connection: [keep-alive] Content-Length: ['38'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:42:04 GMT'] + Date: ['Wed, 14 Nov 2018 22:46:20 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593724456-662585] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235580228-413365] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -165,19 +165,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kQP0009Kk2JG740JK7J2F/describe + uri: https://api.dnanexus.com/project-FPfBFKj0yv9zQZ9J3YpQkQ67/describe response: - body: {string: '{"id":"project-FP9kQP0009Kk2JG740JK7J2F","fileUploadParameters":{"maximumPartSize":5368709120,"minimumPartSize":5242880,"maximumFileSize":5497558138880,"maximumNumParts":10000,"emptyLastPartAllowed":true}}'} + body: {string: '{"id":"project-FPfBFKj0yv9zQZ9J3YpQkQ67","fileUploadParameters":{"maximumPartSize":5368709120,"minimumPartSize":5242880,"maximumFileSize":5497558138880,"maximumNumParts":10000,"emptyLastPartAllowed":true}}'} headers: Connection: [keep-alive] Content-Length: ['205'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:42:04 GMT'] + Date: ['Wed, 14 Nov 2018 22:46:20 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593724593-395054] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235580417-715160] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -201,19 +201,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kQP0009KkB0KJ8Bz7260k/upload + uri: https://api.dnanexus.com/file-FPfBFP00yv9Z4Y2v3YJZF842/upload response: - body: {string: '{"url":"https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/b2e9/file/open/file-FP9kQP0009KkB0KJ8Bz7260k/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181026%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181026T224204Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=226143c3c5058cd9dacbff7515deb0b324bef7d841b6fba8b86f4c15f04ef213","headers":{"host":"dnanexus-platform-upload-prod.s3.amazonaws.com","content-type":"binary/octet-stream","x-amz-server-side-encryption":"AES256","content-md5":"jXd/OF09/siBXSD3SWAm3A==","content-length":"4"},"expires":1540593844711}'} + body: {string: '{"url":"https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/a793/file/open/file-FPfBFP00yv9Z4Y2v3YJZF842/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181114%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181114T224620Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=2152dd0c920113eb494189b18d372dbad360460dea00498e164d5818780b9485","headers":{"host":"dnanexus-platform-upload-prod.s3.amazonaws.com","content-type":"binary/octet-stream","x-amz-server-side-encryption":"AES256","content-md5":"jXd/OF09/siBXSD3SWAm3A==","content-length":"4"},"expires":1542235700529}'} headers: Connection: [keep-alive] Content-Length: ['692'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:42:04 GMT'] + Date: ['Wed, 14 Nov 2018 22:46:20 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593724699-284742] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235580514-122167] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -241,21 +241,21 @@ interactions: : - !!binary | QUVTMjU2 method: PUT - uri: https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/b2e9/file/open/file-FP9kQP0009KkB0KJ8Bz7260k/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181026%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181026T224204Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=226143c3c5058cd9dacbff7515deb0b324bef7d841b6fba8b86f4c15f04ef213 + uri: https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/a793/file/open/file-FPfBFP00yv9Z4Y2v3YJZF842/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181114%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181114T224620Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=2152dd0c920113eb494189b18d372dbad360460dea00498e164d5818780b9485 response: body: {string: ''} headers: Content-Length: ['0'] - Date: ['Fri, 26 Oct 2018 22:42:06 GMT'] + Date: ['Wed, 14 Nov 2018 22:46:21 GMT'] ETag: ['"8d777f385d3dfec8815d20f7496026dc"'] Server: [AmazonS3] - x-amz-expiration: ['expiry-date="Sat, 17 Nov 2018 00:00:00 GMT", rule-id="3weekpurge"'] - x-amz-id-2: [ZIHfwPu0EOpFeH2ytl3LkdoeAx0DGlWz7hbtfZRH5siHMYw5IqBIwEoB+AFkS/1Oo5GhequLLEA=] - x-amz-request-id: [BF660E65543C719B] + x-amz-expiration: ['expiry-date="Thu, 06 Dec 2018 00:00:00 GMT", rule-id="3weekpurge"'] + x-amz-id-2: [dmK/b5H3nhZLMawympPw8liwrTbD9/uAlzdtq6dTdp9wsat19DCDXPCw8uQwq/SJ0ulsVEa6Sok=] + x-amz-request-id: [50392C77A84C5E57] x-amz-server-side-encryption: [AES256] status: {code: 200, message: OK} - request: - body: '{"fields": {"state": true}, "project": "project-FP9kQP0009Kk2JG740JK7J2F"}' + body: '{"fields": {"state": true}, "project": "project-FPfBFKj0yv9zQZ9J3YpQkQ67"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -275,19 +275,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kQP0009KkB0KJ8Bz7260k/describe + uri: https://api.dnanexus.com/file-FPfBFP00yv9Z4Y2v3YJZF842/describe response: - body: {string: '{"id":"file-FP9kQP0009KkB0KJ8Bz7260k","state":"open"}'} + body: {string: '{"id":"file-FPfBFP00yv9Z4Y2v3YJZF842","state":"open"}'} headers: Connection: [keep-alive] Content-Length: ['53'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:42:05 GMT'] + Date: ['Wed, 14 Nov 2018 22:46:21 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593725278-691497] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235580987-657185] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -311,23 +311,23 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kQP0009KkB0KJ8Bz7260k/close + uri: https://api.dnanexus.com/file-FPfBFP00yv9Z4Y2v3YJZF842/close response: - body: {string: '{"id":"file-FP9kQP0009KkB0KJ8Bz7260k"}'} + body: {string: '{"id":"file-FPfBFP00yv9Z4Y2v3YJZF842"}'} headers: Connection: [keep-alive] Content-Length: ['38'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:42:05 GMT'] + Date: ['Wed, 14 Nov 2018 22:46:21 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593725393-668423] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235581085-895332] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"fields": {"state": true}, "project": "project-FP9kQP0009Kk2JG740JK7J2F"}' + body: '{"fields": {"state": true}, "project": "project-FPfBFKj0yv9zQZ9J3YpQkQ67"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -347,23 +347,23 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kQP0009KkB0KJ8Bz7260k/describe + uri: https://api.dnanexus.com/file-FPfBFP00yv9Z4Y2v3YJZF842/describe response: - body: {string: '{"id":"file-FP9kQP0009KkB0KJ8Bz7260k","state":"closing"}'} + body: {string: '{"id":"file-FPfBFP00yv9Z4Y2v3YJZF842","state":"closing"}'} headers: Connection: [keep-alive] Content-Length: ['56'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:42:05 GMT'] + Date: ['Wed, 14 Nov 2018 22:46:21 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593725516-93814] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235581212-385957] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"fields": {"state": true}, "project": "project-FP9kQP0009Kk2JG740JK7J2F"}' + body: '{"fields": {"state": true}, "project": "project-FPfBFKj0yv9zQZ9J3YpQkQ67"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -383,19 +383,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kQP0009KkB0KJ8Bz7260k/describe + uri: https://api.dnanexus.com/file-FPfBFP00yv9Z4Y2v3YJZF842/describe response: - body: {string: '{"id":"file-FP9kQP0009KkB0KJ8Bz7260k","state":"closed"}'} + body: {string: '{"id":"file-FPfBFP00yv9Z4Y2v3YJZF842","state":"closed"}'} headers: Connection: [keep-alive] Content-Length: ['55'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:42:07 GMT'] + Date: ['Wed, 14 Nov 2018 22:46:23 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593727638-634525] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235583308-304165] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -419,24 +419,24 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kQP0009Kk2JG740JK7J2F/newFolder + uri: https://api.dnanexus.com/project-FPfBFKj0yv9zQZ9J3YpQkQ67/newFolder response: - body: {string: '{"id":"project-FP9kQP0009Kk2JG740JK7J2F"}'} + body: {string: '{"id":"project-FPfBFKj0yv9zQZ9J3YpQkQ67"}'} headers: Connection: [keep-alive] Content-Length: ['41'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:42:07 GMT'] + Date: ['Wed, 14 Nov 2018 22:46:23 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593727763-422686] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235583415-556584] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: body: '{"name": "temp_file.txt", "folder": "/temp_folder/another_folder", "project": - "project-FP9kQP0009Kk2JG740JK7J2F", "nonce": "b''a3e07e8ab75e87358fd5595510e3b7e86e9240f64fd3068fcbabda0a105bd898''1540593727.832639"}' + "project-FPfBFKj0yv9zQZ9J3YpQkQ67", "nonce": "b''ce6956a3ff30efeb2382a60113cc827d6280b47e95afc7e19dba849a8cd2e5a6''1542235583.465043"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -458,17 +458,17 @@ interactions: method: POST uri: https://api.dnanexus.com/file/new response: - body: {string: '{"id":"file-FP9kQPj009KbYj5j40f25Z6G"}'} + body: {string: '{"id":"file-FPfBFPj0yv9zQZ9J3YpQkQ68"}'} headers: Connection: [keep-alive] Content-Length: ['38'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:42:07 GMT'] + Date: ['Wed, 14 Nov 2018 22:46:23 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593727880-899073] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235583511-370877] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -492,19 +492,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kQP0009Kk2JG740JK7J2F/describe + uri: https://api.dnanexus.com/project-FPfBFKj0yv9zQZ9J3YpQkQ67/describe response: - body: {string: '{"id":"project-FP9kQP0009Kk2JG740JK7J2F","fileUploadParameters":{"maximumPartSize":5368709120,"minimumPartSize":5242880,"maximumFileSize":5497558138880,"maximumNumParts":10000,"emptyLastPartAllowed":true}}'} + body: {string: '{"id":"project-FPfBFKj0yv9zQZ9J3YpQkQ67","fileUploadParameters":{"maximumPartSize":5368709120,"minimumPartSize":5242880,"maximumFileSize":5497558138880,"maximumNumParts":10000,"emptyLastPartAllowed":true}}'} headers: Connection: [keep-alive] Content-Length: ['205'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:42:08 GMT'] + Date: ['Wed, 14 Nov 2018 22:46:23 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593728055-369889] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235583649-866746] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -528,19 +528,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kQPj009KbYj5j40f25Z6G/upload + uri: https://api.dnanexus.com/file-FPfBFPj0yv9zQZ9J3YpQkQ68/upload response: - body: {string: '{"url":"https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/cd45/file/open/file-FP9kQPj009KbYj5j40f25Z6G/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181026%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181026T224208Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=dcfc1c623a1cda8fe5c090b43f31226a70c1a1e7d9606e440b83ca80f3dec0fa","headers":{"host":"dnanexus-platform-upload-prod.s3.amazonaws.com","content-type":"binary/octet-stream","x-amz-server-side-encryption":"AES256","content-md5":"jXd/OF09/siBXSD3SWAm3A==","content-length":"4"},"expires":1540593848183}'} + body: {string: '{"url":"https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/9e4a/file/open/file-FPfBFPj0yv9zQZ9J3YpQkQ68/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181114%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181114T224623Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=3dde8d3e80fed8eb183d39da4121f21bdbdd8ed9f388df99e97a4e6ec1b7733e","headers":{"host":"dnanexus-platform-upload-prod.s3.amazonaws.com","content-type":"binary/octet-stream","x-amz-server-side-encryption":"AES256","content-md5":"jXd/OF09/siBXSD3SWAm3A==","content-length":"4"},"expires":1542235703783}'} headers: Connection: [keep-alive] Content-Length: ['692'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:42:08 GMT'] + Date: ['Wed, 14 Nov 2018 22:46:23 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593728167-131221] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235583771-752492] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -568,21 +568,21 @@ interactions: : - !!binary | QUVTMjU2 method: PUT - uri: https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/cd45/file/open/file-FP9kQPj009KbYj5j40f25Z6G/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181026%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181026T224208Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=dcfc1c623a1cda8fe5c090b43f31226a70c1a1e7d9606e440b83ca80f3dec0fa + uri: https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/9e4a/file/open/file-FPfBFPj0yv9zQZ9J3YpQkQ68/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181114%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181114T224623Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=3dde8d3e80fed8eb183d39da4121f21bdbdd8ed9f388df99e97a4e6ec1b7733e response: body: {string: ''} headers: Content-Length: ['0'] - Date: ['Fri, 26 Oct 2018 22:42:09 GMT'] + Date: ['Wed, 14 Nov 2018 22:46:24 GMT'] ETag: ['"8d777f385d3dfec8815d20f7496026dc"'] Server: [AmazonS3] - x-amz-expiration: ['expiry-date="Sat, 17 Nov 2018 00:00:00 GMT", rule-id="3weekpurge"'] - x-amz-id-2: [XS5uisALHkxqzvLIauJL1da4WBYlR7NB3C6/QnPGCDgUICfnXlvfoNdzp2VAr4/1KXphoAd37AA=] - x-amz-request-id: [30FC6FF909E6B26D] + x-amz-expiration: ['expiry-date="Thu, 06 Dec 2018 00:00:00 GMT", rule-id="3weekpurge"'] + x-amz-id-2: [yFgTuacOSniKQSLC5+4N3FYRAUmswiq9MfyOByvi6i4E5Wmr3AuXJg6AnZdcpdZx9Eh5KRXZD4g=] + x-amz-request-id: [3FA6DE9874DB01C9] x-amz-server-side-encryption: [AES256] status: {code: 200, message: OK} - request: - body: '{"fields": {"state": true}, "project": "project-FP9kQP0009Kk2JG740JK7J2F"}' + body: '{"fields": {"state": true}, "project": "project-FPfBFKj0yv9zQZ9J3YpQkQ67"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -602,19 +602,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kQPj009KbYj5j40f25Z6G/describe + uri: https://api.dnanexus.com/file-FPfBFPj0yv9zQZ9J3YpQkQ68/describe response: - body: {string: '{"id":"file-FP9kQPj009KbYj5j40f25Z6G","state":"open"}'} + body: {string: '{"id":"file-FPfBFPj0yv9zQZ9J3YpQkQ68","state":"open"}'} headers: Connection: [keep-alive] Content-Length: ['53'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:42:08 GMT'] + Date: ['Wed, 14 Nov 2018 22:46:23 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593728415-89352] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235583981-684558] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -638,23 +638,23 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kQPj009KbYj5j40f25Z6G/close + uri: https://api.dnanexus.com/file-FPfBFPj0yv9zQZ9J3YpQkQ68/close response: - body: {string: '{"id":"file-FP9kQPj009KbYj5j40f25Z6G"}'} + body: {string: '{"id":"file-FPfBFPj0yv9zQZ9J3YpQkQ68"}'} headers: Connection: [keep-alive] Content-Length: ['38'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:42:08 GMT'] + Date: ['Wed, 14 Nov 2018 22:46:24 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593728529-58481] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235584080-836536] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"fields": {"state": true}, "project": "project-FP9kQP0009Kk2JG740JK7J2F"}' + body: '{"fields": {"state": true}, "project": "project-FPfBFKj0yv9zQZ9J3YpQkQ67"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -674,23 +674,23 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kQPj009KbYj5j40f25Z6G/describe + uri: https://api.dnanexus.com/file-FPfBFPj0yv9zQZ9J3YpQkQ68/describe response: - body: {string: '{"id":"file-FP9kQPj009KbYj5j40f25Z6G","state":"closing"}'} + body: {string: '{"id":"file-FPfBFPj0yv9zQZ9J3YpQkQ68","state":"closing"}'} headers: Connection: [keep-alive] Content-Length: ['56'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:42:08 GMT'] + Date: ['Wed, 14 Nov 2018 22:46:24 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593728655-658380] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235584290-906175] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"fields": {"state": true}, "project": "project-FP9kQP0009Kk2JG740JK7J2F"}' + body: '{"fields": {"state": true}, "project": "project-FPfBFKj0yv9zQZ9J3YpQkQ67"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -710,19 +710,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kQPj009KbYj5j40f25Z6G/describe + uri: https://api.dnanexus.com/file-FPfBFPj0yv9zQZ9J3YpQkQ68/describe response: - body: {string: '{"id":"file-FP9kQPj009KbYj5j40f25Z6G","state":"closed"}'} + body: {string: '{"id":"file-FPfBFPj0yv9zQZ9J3YpQkQ68","state":"closed"}'} headers: Connection: [keep-alive] Content-Length: ['55'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:42:10 GMT'] + Date: ['Wed, 14 Nov 2018 22:46:26 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593730779-260959] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235586482-671918] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -748,21 +748,21 @@ interactions: method: POST uri: https://api.dnanexus.com/project/new response: - body: {string: '{"id":"project-FP9kQQQ0z6F5Yj5j40f25Z6K"}'} + body: {string: '{"id":"project-FPfBFQQ02pzjFpy33Zqxfx82"}'} headers: Connection: [keep-alive] Content-Length: ['41'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:42:10 GMT'] + Date: ['Wed, 14 Nov 2018 22:46:26 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593730889-770266] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235586612-530255] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"name": "TestCopyTree.test_dx_root_to_dx_dir.3e2b271f", "level": "VIEW", + body: '{"name": "TestCopyTree.test_dx_root_to_dx_dir.e8419cb9", "level": "VIEW", "limit": 2}' headers: ? !!binary | @@ -785,17 +785,17 @@ interactions: method: POST uri: https://api.dnanexus.com/system/findProjects response: - body: {string: '{"results":[{"id":"project-FP9kQP0009Kk2JG740JK7J2F","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} + body: {string: '{"results":[{"id":"project-FPfBFKj0yv9zQZ9J3YpQkQ67","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} headers: Connection: [keep-alive] Content-Length: ['147'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:42:11 GMT'] + Date: ['Wed, 14 Nov 2018 22:46:26 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593731009-453516] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235586782-452470] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -819,19 +819,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kQP0009Kk2JG740JK7J2F/describe + uri: https://api.dnanexus.com/project-FPfBFKj0yv9zQZ9J3YpQkQ67/describe response: - body: {string: '{"id":"project-FP9kQP0009Kk2JG740JK7J2F","name":"TestCopyTree.test_dx_root_to_dx_dir.3e2b271f","class":"project","created":1540593724000,"modified":1540593729065,"billTo":"org-counsyl","level":"ADMINISTER","dataUsage":7.450580596923828e-9,"sponsoredDataUsage":0,"region":"aws:us-east-1","summary":"","description":"","protected":false,"restricted":false,"downloadRestricted":false,"containsPHI":false,"createdBy":{"user":"user-akumar_counsyl"},"version":0,"storageCost":1.639127731323242e-10,"pendingTransfer":null,"tags":[],"defaultInstanceType":"mem2_hdd2_x2","archivalState":"live","archivalProgress":null,"totalSponsoredEgressBytes":0,"consumedSponsoredEgressBytes":0,"atSpendingLimit":false}'} + body: {string: '{"id":"project-FPfBFKj0yv9zQZ9J3YpQkQ67","name":"TestCopyTree.test_dx_root_to_dx_dir.e8419cb9","class":"project","created":1542235579000,"modified":1542235585426,"billTo":"org-counsyl","level":"ADMINISTER","dataUsage":7.450580596923828e-9,"sponsoredDataUsage":0,"region":"aws:us-east-1","summary":"","description":"","protected":false,"restricted":false,"downloadRestricted":false,"containsPHI":false,"createdBy":{"user":"user-akumar_counsyl"},"version":0,"storageCost":1.639127731323242e-10,"pendingTransfer":null,"tags":[],"defaultInstanceType":"mem2_hdd2_x2","archivalState":"live","archivalProgress":null,"totalSponsoredEgressBytes":0,"consumedSponsoredEgressBytes":0,"atSpendingLimit":false}'} headers: Connection: [keep-alive] Content-Length: ['696'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:42:11 GMT'] + Date: ['Wed, 14 Nov 2018 22:46:26 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593731156-604871] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235586938-554630] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -857,17 +857,17 @@ interactions: method: POST uri: https://api.dnanexus.com/system/findProjects response: - body: {string: '{"results":[{"id":"project-FP9kQQQ0z6F5Yj5j40f25Z6K","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} + body: {string: '{"results":[{"id":"project-FPfBFQQ02pzjFpy33Zqxfx82","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} headers: Connection: [keep-alive] Content-Length: ['147'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:42:11 GMT'] + Date: ['Wed, 14 Nov 2018 22:46:27 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593731300-414133] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235587041-193658] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -892,21 +892,21 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kQQQ0z6F5Yj5j40f25Z6K/listFolder + uri: https://api.dnanexus.com/project-FPfBFQQ02pzjFpy33Zqxfx82/listFolder response: body: {string: '{"error":{"type":"ResourceNotFound","message":"The specified folder - could not be found in project-FP9kQQQ0z6F5Yj5j40f25Z6K"}}'} + could not be found in project-FPfBFQQ02pzjFpy33Zqxfx82"}}'} headers: Connection: [keep-alive] Content-Type: [application/json] - Date: ['Fri, 26 Oct 2018 22:42:11 GMT'] + Date: ['Wed, 14 Nov 2018 22:46:27 GMT'] Server: [nginx] Transfer-Encoding: [chunked] Vary: [Accept-Encoding] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593731424-540356] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235587188-708212] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 404, message: Not Found} - request: @@ -930,23 +930,23 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kQQQ0z6F5Yj5j40f25Z6K/newFolder + uri: https://api.dnanexus.com/project-FPfBFQQ02pzjFpy33Zqxfx82/newFolder response: - body: {string: '{"id":"project-FP9kQQQ0z6F5Yj5j40f25Z6K"}'} + body: {string: '{"id":"project-FPfBFQQ02pzjFpy33Zqxfx82"}'} headers: Connection: [keep-alive] Content-Length: ['41'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:42:11 GMT'] + Date: ['Wed, 14 Nov 2018 22:46:27 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593731828-596318] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235587525-323206] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"objects": [], "folders": ["/"], "project": "project-FP9kQQQ0z6F5Yj5j40f25Z6K", + body: '{"objects": [], "folders": ["/"], "project": "project-FPfBFQQ02pzjFpy33Zqxfx82", "destination": "/folder", "parents": false}' headers: ? !!binary | @@ -967,19 +967,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kQP0009Kk2JG740JK7J2F/clone + uri: https://api.dnanexus.com/project-FPfBFKj0yv9zQZ9J3YpQkQ67/clone response: - body: {string: '{"id":"project-FP9kQP0009Kk2JG740JK7J2F","project":"project-FP9kQQQ0z6F5Yj5j40f25Z6K","exists":[]}'} + body: {string: '{"id":"project-FPfBFKj0yv9zQZ9J3YpQkQ67","project":"project-FPfBFQQ02pzjFpy33Zqxfx82","exists":[]}'} headers: Connection: [keep-alive] Content-Length: ['98'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:42:12 GMT'] + Date: ['Wed, 14 Nov 2018 22:46:27 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593731944-833784] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235587660-263723] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -1005,22 +1005,22 @@ interactions: method: POST uri: https://api.dnanexus.com/system/findProjects response: - body: {string: '{"results":[{"id":"project-FP9kQQQ0z6F5Yj5j40f25Z6K","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} + body: {string: '{"results":[{"id":"project-FPfBFQQ02pzjFpy33Zqxfx82","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} headers: Connection: [keep-alive] Content-Length: ['147'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:42:12 GMT'] + Date: ['Wed, 14 Nov 2018 22:46:28 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593732175-846801] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235588043-365931] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: body: '{"objects": [{"name": "folder_file", "folder": "/folder/temp_folder", "project": - "project-FP9kQQQ0z6F5Yj5j40f25Z6K", "batchsize": 2}]}' + "project-FPfBFQQ02pzjFpy33Zqxfx82", "batchsize": 2}]}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -1042,21 +1042,21 @@ interactions: method: POST uri: https://api.dnanexus.com/system/resolveDataObjects response: - body: {string: '{"results":[[{"project":"project-FP9kQQQ0z6F5Yj5j40f25Z6K","id":"file-FP9kQP0009KkB0KJ8Bz7260k"}]]}'} + body: {string: '{"results":[[{"project":"project-FPfBFQQ02pzjFpy33Zqxfx82","id":"file-FPfBFP00yv9Z4Y2v3YJZF842"}]]}'} headers: Connection: [keep-alive] Content-Length: ['99'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:42:12 GMT'] + Date: ['Wed, 14 Nov 2018 22:46:28 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593732326-82147] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235588173-408784] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"project": "project-FP9kQQQ0z6F5Yj5j40f25Z6K"}' + body: '{"project": "project-FPfBFQQ02pzjFpy33Zqxfx82"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -1076,19 +1076,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kQP0009KkB0KJ8Bz7260k/describe + uri: https://api.dnanexus.com/file-FPfBFP00yv9Z4Y2v3YJZF842/describe response: - body: {string: '{"id":"file-FP9kQP0009KkB0KJ8Bz7260k","project":"project-FP9kQQQ0z6F5Yj5j40f25Z6K","class":"file","sponsored":false,"name":"folder_file","types":[],"state":"closed","hidden":false,"links":[],"folder":"/folder/temp_folder","tags":[],"created":1540593724000,"modified":1540593732042,"createdBy":{"user":"user-akumar_counsyl"},"media":"text/plain","archivalState":"live","size":4}'} + body: {string: '{"id":"file-FPfBFP00yv9Z4Y2v3YJZF842","project":"project-FPfBFQQ02pzjFpy33Zqxfx82","class":"file","sponsored":false,"name":"folder_file","types":[],"state":"closed","hidden":false,"links":[],"folder":"/folder/temp_folder","tags":[],"created":1542235580000,"modified":1542235587856,"createdBy":{"user":"user-akumar_counsyl"},"media":"text/plain","archivalState":"live","size":4}'} headers: Connection: [keep-alive] Content-Length: ['377'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:42:12 GMT'] + Date: ['Wed, 14 Nov 2018 22:46:28 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593732513-952668] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235588313-741742] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -1112,19 +1112,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kQQQ0z6F5Yj5j40f25Z6K/destroy + uri: https://api.dnanexus.com/project-FPfBFQQ02pzjFpy33Zqxfx82/destroy response: - body: {string: '{"id":"project-FP9kQQQ0z6F5Yj5j40f25Z6K"}'} + body: {string: '{"id":"project-FPfBFQQ02pzjFpy33Zqxfx82"}'} headers: Connection: [keep-alive] Content-Length: ['41'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:42:15 GMT'] + Date: ['Wed, 14 Nov 2018 22:46:31 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593732706-587170] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235588464-610502] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -1148,19 +1148,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kQP0009Kk2JG740JK7J2F/destroy + uri: https://api.dnanexus.com/project-FPfBFKj0yv9zQZ9J3YpQkQ67/destroy response: - body: {string: '{"id":"project-FP9kQP0009Kk2JG740JK7J2F"}'} + body: {string: '{"id":"project-FPfBFKj0yv9zQZ9J3YpQkQ67"}'} headers: Connection: [keep-alive] Content-Length: ['41'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:42:17 GMT'] + Date: ['Wed, 14 Nov 2018 22:46:33 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593735299-596915] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235591243-752312] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} version: 1 diff --git a/stor/tests/cassettes_py3/TestCopyTree/test_dx_root_to_dx_dir_same_project.yaml b/stor_dx/stor_dx/tests/cassettes_py3/TestCopyTree/test_dx_root_to_dx_dir_same_project.yaml similarity index 74% rename from stor/tests/cassettes_py3/TestCopyTree/test_dx_root_to_dx_dir_same_project.yaml rename to stor_dx/stor_dx/tests/cassettes_py3/TestCopyTree/test_dx_root_to_dx_dir_same_project.yaml index 9e6bfa0c..0f0d95fc 100644 --- a/stor/tests/cassettes_py3/TestCopyTree/test_dx_root_to_dx_dir_same_project.yaml +++ b/stor_dx/stor_dx/tests/cassettes_py3/TestCopyTree/test_dx_root_to_dx_dir_same_project.yaml @@ -1,6 +1,6 @@ interactions: - request: - body: '{"name": "TestCopyTree.test_dx_root_to_dx_dir_same_project.71703461"}' + body: '{"name": "TestCopyTree.test_dx_root_to_dx_dir_same_project.70f4e89c"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -22,17 +22,17 @@ interactions: method: POST uri: https://api.dnanexus.com/project/new response: - body: {string: '{"id":"project-FP9kQXQ0Q2xk2JG740JK7J2K"}'} + body: {string: '{"id":"project-FPfBFXQ01F4P59pY2z38q60K"}'} headers: Connection: [keep-alive] Content-Length: ['41'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:42:18 GMT'] + Date: ['Wed, 14 Nov 2018 22:46:34 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593738104-350890] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235594157-57164] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -56,19 +56,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kQXQ0Q2xk2JG740JK7J2K/describe + uri: https://api.dnanexus.com/project-FPfBFXQ01F4P59pY2z38q60K/describe response: - body: {string: '{"id":"project-FP9kQXQ0Q2xk2JG740JK7J2K","name":"TestCopyTree.test_dx_root_to_dx_dir_same_project.71703461","class":"project","created":1540593738000,"modified":1540593738000,"billTo":"org-counsyl","level":"ADMINISTER","dataUsage":0,"sponsoredDataUsage":0,"region":"aws:us-east-1","summary":"","description":"","protected":false,"restricted":false,"downloadRestricted":false,"containsPHI":false,"createdBy":{"user":"user-akumar_counsyl"},"version":0,"storageCost":0,"pendingTransfer":null,"tags":[],"defaultInstanceType":"mem2_hdd2_x2","archivalState":"live","archivalProgress":null,"totalSponsoredEgressBytes":0,"consumedSponsoredEgressBytes":0,"atSpendingLimit":false}'} + body: {string: '{"id":"project-FPfBFXQ01F4P59pY2z38q60K","name":"TestCopyTree.test_dx_root_to_dx_dir_same_project.70f4e89c","class":"project","created":1542235594000,"modified":1542235594000,"billTo":"org-counsyl","level":"ADMINISTER","dataUsage":0,"sponsoredDataUsage":0,"region":"aws:us-east-1","summary":"","description":"","protected":false,"restricted":false,"downloadRestricted":false,"containsPHI":false,"createdBy":{"user":"user-akumar_counsyl"},"version":0,"storageCost":0,"pendingTransfer":null,"tags":[],"defaultInstanceType":"mem2_hdd2_x2","archivalState":"live","archivalProgress":null,"totalSponsoredEgressBytes":0,"consumedSponsoredEgressBytes":0,"atSpendingLimit":false}'} headers: Connection: [keep-alive] Content-Length: ['670'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:42:19 GMT'] + Date: ['Wed, 14 Nov 2018 22:46:34 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593738465-16039] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235594277-650170] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -92,24 +92,24 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kQXQ0Q2xk2JG740JK7J2K/newFolder + uri: https://api.dnanexus.com/project-FPfBFXQ01F4P59pY2z38q60K/newFolder response: - body: {string: '{"id":"project-FP9kQXQ0Q2xk2JG740JK7J2K"}'} + body: {string: '{"id":"project-FPfBFXQ01F4P59pY2z38q60K"}'} headers: Connection: [keep-alive] Content-Length: ['41'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:42:19 GMT'] + Date: ['Wed, 14 Nov 2018 22:46:34 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593739610-495437] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235594411-482618] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"name": "folder_file", "folder": "/temp_folder", "project": "project-FP9kQXQ0Q2xk2JG740JK7J2K", - "nonce": "b''d09d24cf89886a39d74a6ef038428eb7a380a5cd1b3237250e3a768985bca977''1540593739.796894"}' + body: '{"name": "folder_file", "folder": "/temp_folder", "project": "project-FPfBFXQ01F4P59pY2z38q60K", + "nonce": "b''cea79b78cd7eb508ba10d2922c9e2f29796c850a1d6140675941ab03710d1f96''1542235594.514380"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -131,17 +131,17 @@ interactions: method: POST uri: https://api.dnanexus.com/file/new response: - body: {string: '{"id":"file-FP9kQXj0Q2xk2JG740JK7J2P"}'} + body: {string: '{"id":"file-FPfBFXQ01F4Bq1y12xxjPZkg"}'} headers: Connection: [keep-alive] Content-Length: ['38'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:42:19 GMT'] + Date: ['Wed, 14 Nov 2018 22:46:34 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593739851-277660] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235594563-897075] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -165,19 +165,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kQXQ0Q2xk2JG740JK7J2K/describe + uri: https://api.dnanexus.com/project-FPfBFXQ01F4P59pY2z38q60K/describe response: - body: {string: '{"id":"project-FP9kQXQ0Q2xk2JG740JK7J2K","fileUploadParameters":{"maximumPartSize":5368709120,"minimumPartSize":5242880,"maximumFileSize":5497558138880,"maximumNumParts":10000,"emptyLastPartAllowed":true}}'} + body: {string: '{"id":"project-FPfBFXQ01F4P59pY2z38q60K","fileUploadParameters":{"maximumPartSize":5368709120,"minimumPartSize":5242880,"maximumFileSize":5497558138880,"maximumNumParts":10000,"emptyLastPartAllowed":true}}'} headers: Connection: [keep-alive] Content-Length: ['205'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:42:20 GMT'] + Date: ['Wed, 14 Nov 2018 22:46:34 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593739998-936199] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235594753-760261] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -201,19 +201,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kQXj0Q2xk2JG740JK7J2P/upload + uri: https://api.dnanexus.com/file-FPfBFXQ01F4Bq1y12xxjPZkg/upload response: - body: {string: '{"url":"https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/c0c3/file/open/file-FP9kQXj0Q2xk2JG740JK7J2P/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181026%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181026T224220Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=ec78e9b9e4f20b4d7b32f6187218bad34ab513343cb9649eaf03b279fc4001a2","headers":{"host":"dnanexus-platform-upload-prod.s3.amazonaws.com","content-type":"binary/octet-stream","x-amz-server-side-encryption":"AES256","content-md5":"c9//V/4k6Ae9T7G8TgfNcw==","content-length":"5"},"expires":1540593860136}'} + body: {string: '{"url":"https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/28e3/file/open/file-FPfBFXQ01F4Bq1y12xxjPZkg/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181114%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181114T224634Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=180e90cb16bf2c550c3f769a8df2d51396377de6f1633a091d4d8722c49bfcd2","headers":{"host":"dnanexus-platform-upload-prod.s3.amazonaws.com","content-type":"binary/octet-stream","x-amz-server-side-encryption":"AES256","content-md5":"c9//V/4k6Ae9T7G8TgfNcw==","content-length":"5"},"expires":1542235714873}'} headers: Connection: [keep-alive] Content-Length: ['692'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:42:20 GMT'] + Date: ['Wed, 14 Nov 2018 22:46:34 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593740124-662571] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235594852-451727] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -241,21 +241,21 @@ interactions: : - !!binary | QUVTMjU2 method: PUT - uri: https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/c0c3/file/open/file-FP9kQXj0Q2xk2JG740JK7J2P/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181026%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181026T224220Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=ec78e9b9e4f20b4d7b32f6187218bad34ab513343cb9649eaf03b279fc4001a2 + uri: https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/28e3/file/open/file-FPfBFXQ01F4Bq1y12xxjPZkg/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181114%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181114T224634Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=180e90cb16bf2c550c3f769a8df2d51396377de6f1633a091d4d8722c49bfcd2 response: body: {string: ''} headers: Content-Length: ['0'] - Date: ['Fri, 26 Oct 2018 22:42:21 GMT'] + Date: ['Wed, 14 Nov 2018 22:46:36 GMT'] ETag: ['"73dfff57fe24e807bd4fb1bc4e07cd73"'] Server: [AmazonS3] - x-amz-expiration: ['expiry-date="Sat, 17 Nov 2018 00:00:00 GMT", rule-id="3weekpurge"'] - x-amz-id-2: [tFhr/zf+g3s4zIdV32+Uunl2d0CPE+tqL6qK21LvP6uCHBx25niTGu6P5zpr6JSoSPd5uerlg00=] - x-amz-request-id: [6659FD09BDE1BD6D] + x-amz-expiration: ['expiry-date="Thu, 06 Dec 2018 00:00:00 GMT", rule-id="3weekpurge"'] + x-amz-id-2: [WoS/3z1hWGfBlR0Q/AOFXhzKr7tJ741jZtcWzxMtiGdAbn/akZOOYvH9Y24oUMtOXUY8Vdks9Qc=] + x-amz-request-id: [C8C6115157D79F93] x-amz-server-side-encryption: [AES256] status: {code: 200, message: OK} - request: - body: '{"fields": {"state": true}, "project": "project-FP9kQXQ0Q2xk2JG740JK7J2K"}' + body: '{"fields": {"state": true}, "project": "project-FPfBFXQ01F4P59pY2z38q60K"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -275,19 +275,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kQXj0Q2xk2JG740JK7J2P/describe + uri: https://api.dnanexus.com/file-FPfBFXQ01F4Bq1y12xxjPZkg/describe response: - body: {string: '{"id":"file-FP9kQXj0Q2xk2JG740JK7J2P","state":"open"}'} + body: {string: '{"id":"file-FPfBFXQ01F4Bq1y12xxjPZkg","state":"open"}'} headers: Connection: [keep-alive] Content-Length: ['53'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:42:20 GMT'] + Date: ['Wed, 14 Nov 2018 22:46:35 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593740737-562345] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235595338-776581] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -311,23 +311,23 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kQXj0Q2xk2JG740JK7J2P/close + uri: https://api.dnanexus.com/file-FPfBFXQ01F4Bq1y12xxjPZkg/close response: - body: {string: '{"id":"file-FP9kQXj0Q2xk2JG740JK7J2P"}'} + body: {string: '{"id":"file-FPfBFXQ01F4Bq1y12xxjPZkg"}'} headers: Connection: [keep-alive] Content-Length: ['38'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:42:21 GMT'] + Date: ['Wed, 14 Nov 2018 22:46:36 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593740939-746580] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235595747-594745] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"name": "TestCopyTree.test_dx_root_to_dx_dir_same_project.71703461", "level": + body: '{"name": "TestCopyTree.test_dx_root_to_dx_dir_same_project.70f4e89c", "level": "VIEW", "limit": 2}' headers: ? !!binary | @@ -350,17 +350,17 @@ interactions: method: POST uri: https://api.dnanexus.com/system/findProjects response: - body: {string: '{"results":[{"id":"project-FP9kQXQ0Q2xk2JG740JK7J2K","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} + body: {string: '{"results":[{"id":"project-FPfBFXQ01F4P59pY2z38q60K","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} headers: Connection: [keep-alive] Content-Length: ['147'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:42:21 GMT'] + Date: ['Wed, 14 Nov 2018 22:46:36 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593741223-246269] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235596570-341500] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -384,23 +384,23 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kQXQ0Q2xk2JG740JK7J2K/describe + uri: https://api.dnanexus.com/project-FPfBFXQ01F4P59pY2z38q60K/describe response: - body: {string: '{"id":"project-FP9kQXQ0Q2xk2JG740JK7J2K","name":"TestCopyTree.test_dx_root_to_dx_dir_same_project.71703461","class":"project","created":1540593738000,"modified":1540593741226,"billTo":"org-counsyl","level":"ADMINISTER","dataUsage":4.6566128730773926e-9,"sponsoredDataUsage":0,"region":"aws:us-east-1","summary":"","description":"","protected":false,"restricted":false,"downloadRestricted":false,"containsPHI":false,"createdBy":{"user":"user-akumar_counsyl"},"version":0,"storageCost":1.0244548320770262e-10,"pendingTransfer":null,"tags":[],"defaultInstanceType":"mem2_hdd2_x2","archivalState":"live","archivalProgress":null,"totalSponsoredEgressBytes":0,"consumedSponsoredEgressBytes":0,"atSpendingLimit":false}'} + body: {string: '{"id":"project-FPfBFXQ01F4P59pY2z38q60K","name":"TestCopyTree.test_dx_root_to_dx_dir_same_project.70f4e89c","class":"project","created":1542235594000,"modified":1542235596667,"billTo":"org-counsyl","level":"ADMINISTER","dataUsage":4.6566128730773926e-9,"sponsoredDataUsage":0,"region":"aws:us-east-1","summary":"","description":"","protected":false,"restricted":false,"downloadRestricted":false,"containsPHI":false,"createdBy":{"user":"user-akumar_counsyl"},"version":0,"storageCost":1.0244548320770262e-10,"pendingTransfer":null,"tags":[],"defaultInstanceType":"mem2_hdd2_x2","archivalState":"live","archivalProgress":null,"totalSponsoredEgressBytes":0,"consumedSponsoredEgressBytes":0,"atSpendingLimit":false}'} headers: Connection: [keep-alive] Content-Length: ['711'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:42:21 GMT'] + Date: ['Wed, 14 Nov 2018 22:46:36 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593741465-571019] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235596768-850276] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"name": "TestCopyTree.test_dx_root_to_dx_dir_same_project.71703461", "level": + body: '{"name": "TestCopyTree.test_dx_root_to_dx_dir_same_project.70f4e89c", "level": "VIEW", "limit": 2}' headers: ? !!binary | @@ -423,17 +423,17 @@ interactions: method: POST uri: https://api.dnanexus.com/system/findProjects response: - body: {string: '{"results":[{"id":"project-FP9kQXQ0Q2xk2JG740JK7J2K","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} + body: {string: '{"results":[{"id":"project-FPfBFXQ01F4P59pY2z38q60K","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} headers: Connection: [keep-alive] Content-Length: ['147'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:42:21 GMT'] + Date: ['Wed, 14 Nov 2018 22:46:37 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593741599-580724] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235596991-897066] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -457,19 +457,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kQXQ0Q2xk2JG740JK7J2K/destroy + uri: https://api.dnanexus.com/project-FPfBFXQ01F4P59pY2z38q60K/destroy response: - body: {string: '{"id":"project-FP9kQXQ0Q2xk2JG740JK7J2K"}'} + body: {string: '{"id":"project-FPfBFXQ01F4P59pY2z38q60K"}'} headers: Connection: [keep-alive] Content-Length: ['41'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:42:24 GMT'] + Date: ['Wed, 14 Nov 2018 22:46:39 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593741755-231711] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235597199-19669] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} version: 1 diff --git a/stor/tests/cassettes_py3/TestCopyTree/test_dx_root_to_dx_dir_w_slash.yaml b/stor_dx/stor_dx/tests/cassettes_py3/TestCopyTree/test_dx_root_to_dx_dir_w_slash.yaml similarity index 74% rename from stor/tests/cassettes_py3/TestCopyTree/test_dx_root_to_dx_dir_w_slash.yaml rename to stor_dx/stor_dx/tests/cassettes_py3/TestCopyTree/test_dx_root_to_dx_dir_w_slash.yaml index 2cbbbbee..64cff90c 100644 --- a/stor/tests/cassettes_py3/TestCopyTree/test_dx_root_to_dx_dir_w_slash.yaml +++ b/stor_dx/stor_dx/tests/cassettes_py3/TestCopyTree/test_dx_root_to_dx_dir_w_slash.yaml @@ -1,6 +1,6 @@ interactions: - request: - body: '{"name": "TestCopyTree.test_dx_root_to_dx_dir_w_slash.d8fbe927"}' + body: '{"name": "TestCopyTree.test_dx_root_to_dx_dir_w_slash.d63f494c"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -22,17 +22,17 @@ interactions: method: POST uri: https://api.dnanexus.com/project/new response: - body: {string: '{"id":"project-FP9kQZ005ZPGPZk8417zyZPZ"}'} + body: {string: '{"id":"project-FPfBFZ00qj3XjKPq2yYBZQpp"}'} headers: Connection: [keep-alive] Content-Length: ['41'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:42:24 GMT'] + Date: ['Wed, 14 Nov 2018 22:46:40 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593744556-329629] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235600173-457723] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -56,19 +56,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kQZ005ZPGPZk8417zyZPZ/describe + uri: https://api.dnanexus.com/project-FPfBFZ00qj3XjKPq2yYBZQpp/describe response: - body: {string: '{"id":"project-FP9kQZ005ZPGPZk8417zyZPZ","name":"TestCopyTree.test_dx_root_to_dx_dir_w_slash.d8fbe927","class":"project","created":1540593744000,"modified":1540593744000,"billTo":"org-counsyl","level":"ADMINISTER","dataUsage":0,"sponsoredDataUsage":0,"region":"aws:us-east-1","summary":"","description":"","protected":false,"restricted":false,"downloadRestricted":false,"containsPHI":false,"createdBy":{"user":"user-akumar_counsyl"},"version":0,"storageCost":0,"pendingTransfer":null,"tags":[],"defaultInstanceType":"mem2_hdd2_x2","archivalState":"live","archivalProgress":null,"totalSponsoredEgressBytes":0,"consumedSponsoredEgressBytes":0,"atSpendingLimit":false}'} + body: {string: '{"id":"project-FPfBFZ00qj3XjKPq2yYBZQpp","name":"TestCopyTree.test_dx_root_to_dx_dir_w_slash.d63f494c","class":"project","created":1542235600000,"modified":1542235600000,"billTo":"org-counsyl","level":"ADMINISTER","dataUsage":0,"sponsoredDataUsage":0,"region":"aws:us-east-1","summary":"","description":"","protected":false,"restricted":false,"downloadRestricted":false,"containsPHI":false,"createdBy":{"user":"user-akumar_counsyl"},"version":0,"storageCost":0,"pendingTransfer":null,"tags":[],"defaultInstanceType":"mem2_hdd2_x2","archivalState":"live","archivalProgress":null,"totalSponsoredEgressBytes":0,"consumedSponsoredEgressBytes":0,"atSpendingLimit":false}'} headers: Connection: [keep-alive] Content-Length: ['665'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:42:25 GMT'] + Date: ['Wed, 14 Nov 2018 22:46:40 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593745021-706503] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235600305-483310] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -92,24 +92,24 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kQZ005ZPGPZk8417zyZPZ/newFolder + uri: https://api.dnanexus.com/project-FPfBFZ00qj3XjKPq2yYBZQpp/newFolder response: - body: {string: '{"id":"project-FP9kQZ005ZPGPZk8417zyZPZ"}'} + body: {string: '{"id":"project-FPfBFZ00qj3XjKPq2yYBZQpp"}'} headers: Connection: [keep-alive] Content-Length: ['41'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:42:25 GMT'] + Date: ['Wed, 14 Nov 2018 22:46:40 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593745312-294231] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235600576-320069] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"name": "folder_file", "folder": "/temp_folder", "project": "project-FP9kQZ005ZPGPZk8417zyZPZ", - "nonce": "b''63ada6bacbea49abe3f8100409becab337f4014993aa1275ca643442bc1c5539''1540593745.534674"}' + body: '{"name": "folder_file", "folder": "/temp_folder", "project": "project-FPfBFZ00qj3XjKPq2yYBZQpp", + "nonce": "b''e54169e13790690e2307a948d733b4fcf5d7f39156b6e101c2313ed2abe9c2a2''1542235600.648982"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -131,17 +131,17 @@ interactions: method: POST uri: https://api.dnanexus.com/file/new response: - body: {string: '{"id":"file-FP9kQZ805ZPGPZk8417zyZPb"}'} + body: {string: '{"id":"file-FPfBFZ00qj3bPx212xgzzZzJ"}'} headers: Connection: [keep-alive] Content-Length: ['38'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:42:25 GMT'] + Date: ['Wed, 14 Nov 2018 22:46:40 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593745596-912642] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235600695-953351] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -165,19 +165,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kQZ005ZPGPZk8417zyZPZ/describe + uri: https://api.dnanexus.com/project-FPfBFZ00qj3XjKPq2yYBZQpp/describe response: - body: {string: '{"id":"project-FP9kQZ005ZPGPZk8417zyZPZ","fileUploadParameters":{"maximumPartSize":5368709120,"minimumPartSize":5242880,"maximumFileSize":5497558138880,"maximumNumParts":10000,"emptyLastPartAllowed":true}}'} + body: {string: '{"id":"project-FPfBFZ00qj3XjKPq2yYBZQpp","fileUploadParameters":{"maximumPartSize":5368709120,"minimumPartSize":5242880,"maximumFileSize":5497558138880,"maximumNumParts":10000,"emptyLastPartAllowed":true}}'} headers: Connection: [keep-alive] Content-Length: ['205'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:42:25 GMT'] + Date: ['Wed, 14 Nov 2018 22:46:41 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593745841-683575] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235600944-107114] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -201,19 +201,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kQZ805ZPGPZk8417zyZPb/upload + uri: https://api.dnanexus.com/file-FPfBFZ00qj3bPx212xgzzZzJ/upload response: - body: {string: '{"url":"https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/c4d3/file/open/file-FP9kQZ805ZPGPZk8417zyZPb/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181026%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181026T224226Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=9e2d91e5c7446bec092e6247b6c87952b79e3afdbb5f39f7846de67746491877","headers":{"host":"dnanexus-platform-upload-prod.s3.amazonaws.com","content-type":"binary/octet-stream","x-amz-server-side-encryption":"AES256","content-md5":"jXd/OF09/siBXSD3SWAm3A==","content-length":"4"},"expires":1540593866043}'} + body: {string: '{"url":"https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/2837/file/open/file-FPfBFZ00qj3bPx212xgzzZzJ/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181114%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181114T224641Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=da615bc6b940eeb39a1895b5c915f13e3257a27cd59db65a44e533deff9ffe0a","headers":{"host":"dnanexus-platform-upload-prod.s3.amazonaws.com","content-type":"binary/octet-stream","x-amz-server-side-encryption":"AES256","content-md5":"jXd/OF09/siBXSD3SWAm3A==","content-length":"4"},"expires":1542235721120}'} headers: Connection: [keep-alive] Content-Length: ['692'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:42:26 GMT'] + Date: ['Wed, 14 Nov 2018 22:46:41 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593745997-672760] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235601099-38953] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -241,21 +241,21 @@ interactions: : - !!binary | QUVTMjU2 method: PUT - uri: https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/c4d3/file/open/file-FP9kQZ805ZPGPZk8417zyZPb/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181026%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181026T224226Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=9e2d91e5c7446bec092e6247b6c87952b79e3afdbb5f39f7846de67746491877 + uri: https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/2837/file/open/file-FPfBFZ00qj3bPx212xgzzZzJ/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181114%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181114T224641Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=da615bc6b940eeb39a1895b5c915f13e3257a27cd59db65a44e533deff9ffe0a response: body: {string: ''} headers: Content-Length: ['0'] - Date: ['Fri, 26 Oct 2018 22:42:27 GMT'] + Date: ['Wed, 14 Nov 2018 22:46:42 GMT'] ETag: ['"8d777f385d3dfec8815d20f7496026dc"'] Server: [AmazonS3] - x-amz-expiration: ['expiry-date="Sat, 17 Nov 2018 00:00:00 GMT", rule-id="3weekpurge"'] - x-amz-id-2: [pAyn87JmkxZdh1FXr5P7jQd/rB6brewSnVVStN7xrGavnPVt3vqXZm8Q+DOWnWMqeZdzexPDimI=] - x-amz-request-id: [EEFBB09CE58FE4B3] + x-amz-expiration: ['expiry-date="Thu, 06 Dec 2018 00:00:00 GMT", rule-id="3weekpurge"'] + x-amz-id-2: [1J8CSvgchWf/pPPaPX+WUmGcjwt2qzB23I7y6kxvWCHwZk28oR57k9YI4DWrw8n6qMefGlbybQs=] + x-amz-request-id: [03AF72030888884A] x-amz-server-side-encryption: [AES256] status: {code: 200, message: OK} - request: - body: '{"fields": {"state": true}, "project": "project-FP9kQZ005ZPGPZk8417zyZPZ"}' + body: '{"fields": {"state": true}, "project": "project-FPfBFZ00qj3XjKPq2yYBZQpp"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -275,19 +275,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kQZ805ZPGPZk8417zyZPb/describe + uri: https://api.dnanexus.com/file-FPfBFZ00qj3bPx212xgzzZzJ/describe response: - body: {string: '{"id":"file-FP9kQZ805ZPGPZk8417zyZPb","state":"open"}'} + body: {string: '{"id":"file-FPfBFZ00qj3bPx212xgzzZzJ","state":"open"}'} headers: Connection: [keep-alive] Content-Length: ['53'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:42:26 GMT'] + Date: ['Wed, 14 Nov 2018 22:46:41 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593746603-853003] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235601589-28413] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -311,23 +311,23 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kQZ805ZPGPZk8417zyZPb/close + uri: https://api.dnanexus.com/file-FPfBFZ00qj3bPx212xgzzZzJ/close response: - body: {string: '{"id":"file-FP9kQZ805ZPGPZk8417zyZPb"}'} + body: {string: '{"id":"file-FPfBFZ00qj3bPx212xgzzZzJ"}'} headers: Connection: [keep-alive] Content-Length: ['38'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:42:26 GMT'] + Date: ['Wed, 14 Nov 2018 22:46:41 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593746770-123066] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235601689-38353] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"fields": {"state": true}, "project": "project-FP9kQZ005ZPGPZk8417zyZPZ"}' + body: '{"fields": {"state": true}, "project": "project-FPfBFZ00qj3XjKPq2yYBZQpp"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -347,23 +347,23 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kQZ805ZPGPZk8417zyZPb/describe + uri: https://api.dnanexus.com/file-FPfBFZ00qj3bPx212xgzzZzJ/describe response: - body: {string: '{"id":"file-FP9kQZ805ZPGPZk8417zyZPb","state":"closing"}'} + body: {string: '{"id":"file-FPfBFZ00qj3bPx212xgzzZzJ","state":"closing"}'} headers: Connection: [keep-alive] Content-Length: ['56'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:42:26 GMT'] + Date: ['Wed, 14 Nov 2018 22:46:41 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593746918-616895] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235601850-316267] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"fields": {"state": true}, "project": "project-FP9kQZ005ZPGPZk8417zyZPZ"}' + body: '{"fields": {"state": true}, "project": "project-FPfBFZ00qj3XjKPq2yYBZQpp"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -383,19 +383,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kQZ805ZPGPZk8417zyZPb/describe + uri: https://api.dnanexus.com/file-FPfBFZ00qj3bPx212xgzzZzJ/describe response: - body: {string: '{"id":"file-FP9kQZ805ZPGPZk8417zyZPb","state":"closed"}'} + body: {string: '{"id":"file-FPfBFZ00qj3bPx212xgzzZzJ","state":"closed"}'} headers: Connection: [keep-alive] Content-Length: ['55'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:42:29 GMT'] + Date: ['Wed, 14 Nov 2018 22:46:43 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593749063-988372] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235603974-687591] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -419,24 +419,24 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kQZ005ZPGPZk8417zyZPZ/newFolder + uri: https://api.dnanexus.com/project-FPfBFZ00qj3XjKPq2yYBZQpp/newFolder response: - body: {string: '{"id":"project-FP9kQZ005ZPGPZk8417zyZPZ"}'} + body: {string: '{"id":"project-FPfBFZ00qj3XjKPq2yYBZQpp"}'} headers: Connection: [keep-alive] Content-Length: ['41'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:42:29 GMT'] + Date: ['Wed, 14 Nov 2018 22:46:44 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593749186-384158] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235604091-465477] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: body: '{"name": "temp_file.txt", "folder": "/temp_folder/another_folder", "project": - "project-FP9kQZ005ZPGPZk8417zyZPZ", "nonce": "b''975ad04b3a3867407b4dc461b33577743359eeba3d952db79c1effa3d6909dde''1540593749.253339"}' + "project-FPfBFZ00qj3XjKPq2yYBZQpp", "nonce": "b''9a27731c4c3b4a0efa6a4db59f9aca86ff5b0fa5fe3085ca10a4fc285d453b0f''1542235604.147428"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -458,17 +458,17 @@ interactions: method: POST uri: https://api.dnanexus.com/file/new response: - body: {string: '{"id":"file-FP9kQb805ZP667Vq40v4Pq3Y"}'} + body: {string: '{"id":"file-FPfBFb00qj3XjKPq2yYBZQpq"}'} headers: Connection: [keep-alive] Content-Length: ['38'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:42:29 GMT'] + Date: ['Wed, 14 Nov 2018 22:46:44 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593749302-971840] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235604194-990393] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -492,19 +492,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kQZ005ZPGPZk8417zyZPZ/describe + uri: https://api.dnanexus.com/project-FPfBFZ00qj3XjKPq2yYBZQpp/describe response: - body: {string: '{"id":"project-FP9kQZ005ZPGPZk8417zyZPZ","fileUploadParameters":{"maximumPartSize":5368709120,"minimumPartSize":5242880,"maximumFileSize":5497558138880,"maximumNumParts":10000,"emptyLastPartAllowed":true}}'} + body: {string: '{"id":"project-FPfBFZ00qj3XjKPq2yYBZQpp","fileUploadParameters":{"maximumPartSize":5368709120,"minimumPartSize":5242880,"maximumFileSize":5497558138880,"maximumNumParts":10000,"emptyLastPartAllowed":true}}'} headers: Connection: [keep-alive] Content-Length: ['205'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:42:29 GMT'] + Date: ['Wed, 14 Nov 2018 22:46:44 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593749447-562008] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235604517-962576] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -528,19 +528,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kQb805ZP667Vq40v4Pq3Y/upload + uri: https://api.dnanexus.com/file-FPfBFb00qj3XjKPq2yYBZQpq/upload response: - body: {string: '{"url":"https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/3a8c/file/open/file-FP9kQb805ZP667Vq40v4Pq3Y/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181026%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181026T224229Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=2307eef88022ba1ac0498a5555aec5eafd5e8bcfe5d30b1d4ddc9705cdded7a7","headers":{"host":"dnanexus-platform-upload-prod.s3.amazonaws.com","content-type":"binary/octet-stream","x-amz-server-side-encryption":"AES256","content-md5":"jXd/OF09/siBXSD3SWAm3A==","content-length":"4"},"expires":1540593869584}'} + body: {string: '{"url":"https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/4112/file/open/file-FPfBFb00qj3XjKPq2yYBZQpq/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181114%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181114T224644Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=c0e2d5fc69b7d09d2e2c7778e604f5d37d0c65cb63aa59a96b934ab46f849155","headers":{"host":"dnanexus-platform-upload-prod.s3.amazonaws.com","content-type":"binary/octet-stream","x-amz-server-side-encryption":"AES256","content-md5":"jXd/OF09/siBXSD3SWAm3A==","content-length":"4"},"expires":1542235724666}'} headers: Connection: [keep-alive] Content-Length: ['692'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:42:29 GMT'] + Date: ['Wed, 14 Nov 2018 22:46:44 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593749570-998510] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235604626-911416] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -568,21 +568,21 @@ interactions: : - !!binary | QUVTMjU2 method: PUT - uri: https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/3a8c/file/open/file-FP9kQb805ZP667Vq40v4Pq3Y/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181026%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181026T224229Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=2307eef88022ba1ac0498a5555aec5eafd5e8bcfe5d30b1d4ddc9705cdded7a7 + uri: https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/4112/file/open/file-FPfBFb00qj3XjKPq2yYBZQpq/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181114%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181114T224644Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=c0e2d5fc69b7d09d2e2c7778e604f5d37d0c65cb63aa59a96b934ab46f849155 response: body: {string: ''} headers: Content-Length: ['0'] - Date: ['Fri, 26 Oct 2018 22:42:30 GMT'] + Date: ['Wed, 14 Nov 2018 22:46:45 GMT'] ETag: ['"8d777f385d3dfec8815d20f7496026dc"'] Server: [AmazonS3] - x-amz-expiration: ['expiry-date="Sat, 17 Nov 2018 00:00:00 GMT", rule-id="3weekpurge"'] - x-amz-id-2: [p0eanYkES6TPUa1r0J/oSTgrUi3lc3J02uFFoncRfy0WNY8u2u+Y88V1mti/XeHuSTr65psy6ec=] - x-amz-request-id: [32E5598F4F0DC3BB] + x-amz-expiration: ['expiry-date="Thu, 06 Dec 2018 00:00:00 GMT", rule-id="3weekpurge"'] + x-amz-id-2: [ssbyQKBIBcGMgXoFi85F/twklpyvAnByVftjKTT4sX/5QrYDkJhALIkHsbTVrqtREgngIXJ5o0o=] + x-amz-request-id: [0D61581375CD5A71] x-amz-server-side-encryption: [AES256] status: {code: 200, message: OK} - request: - body: '{"fields": {"state": true}, "project": "project-FP9kQZ005ZPGPZk8417zyZPZ"}' + body: '{"fields": {"state": true}, "project": "project-FPfBFZ00qj3XjKPq2yYBZQpp"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -602,19 +602,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kQb805ZP667Vq40v4Pq3Y/describe + uri: https://api.dnanexus.com/file-FPfBFb00qj3XjKPq2yYBZQpq/describe response: - body: {string: '{"id":"file-FP9kQb805ZP667Vq40v4Pq3Y","state":"open"}'} + body: {string: '{"id":"file-FPfBFb00qj3XjKPq2yYBZQpq","state":"open"}'} headers: Connection: [keep-alive] Content-Length: ['53'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:42:29 GMT'] + Date: ['Wed, 14 Nov 2018 22:46:44 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593749852-264041] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235604869-452717] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -638,23 +638,23 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kQb805ZP667Vq40v4Pq3Y/close + uri: https://api.dnanexus.com/file-FPfBFb00qj3XjKPq2yYBZQpq/close response: - body: {string: '{"id":"file-FP9kQb805ZP667Vq40v4Pq3Y"}'} + body: {string: '{"id":"file-FPfBFb00qj3XjKPq2yYBZQpq"}'} headers: Connection: [keep-alive] Content-Length: ['38'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:42:30 GMT'] + Date: ['Wed, 14 Nov 2018 22:46:45 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593749974-138969] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235604974-381151] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"fields": {"state": true}, "project": "project-FP9kQZ005ZPGPZk8417zyZPZ"}' + body: '{"fields": {"state": true}, "project": "project-FPfBFZ00qj3XjKPq2yYBZQpp"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -674,23 +674,23 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kQb805ZP667Vq40v4Pq3Y/describe + uri: https://api.dnanexus.com/file-FPfBFb00qj3XjKPq2yYBZQpq/describe response: - body: {string: '{"id":"file-FP9kQb805ZP667Vq40v4Pq3Y","state":"closing"}'} + body: {string: '{"id":"file-FPfBFb00qj3XjKPq2yYBZQpq","state":"closing"}'} headers: Connection: [keep-alive] Content-Length: ['56'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:42:30 GMT'] + Date: ['Wed, 14 Nov 2018 22:46:45 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593750141-425277] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235605105-383677] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"fields": {"state": true}, "project": "project-FP9kQZ005ZPGPZk8417zyZPZ"}' + body: '{"fields": {"state": true}, "project": "project-FPfBFZ00qj3XjKPq2yYBZQpp"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -710,19 +710,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kQb805ZP667Vq40v4Pq3Y/describe + uri: https://api.dnanexus.com/file-FPfBFb00qj3XjKPq2yYBZQpq/describe response: - body: {string: '{"id":"file-FP9kQb805ZP667Vq40v4Pq3Y","state":"closed"}'} + body: {string: '{"id":"file-FPfBFb00qj3XjKPq2yYBZQpq","state":"closed"}'} headers: Connection: [keep-alive] Content-Length: ['55'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:42:32 GMT'] + Date: ['Wed, 14 Nov 2018 22:46:47 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593752261-351865] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235607210-367220] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -748,21 +748,21 @@ interactions: method: POST uri: https://api.dnanexus.com/project/new response: - body: {string: '{"id":"project-FP9kQf007YPkB0KJ8Bz7260q"}'} + body: {string: '{"id":"project-FPfBFbj0f1xz8B282y1pk0jb"}'} headers: Connection: [keep-alive] Content-Length: ['41'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:42:32 GMT'] + Date: ['Wed, 14 Nov 2018 22:46:47 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593752379-274290] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235607306-310197] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"name": "TestCopyTree.test_dx_root_to_dx_dir_w_slash.d8fbe927", "level": + body: '{"name": "TestCopyTree.test_dx_root_to_dx_dir_w_slash.d63f494c", "level": "VIEW", "limit": 2}' headers: ? !!binary | @@ -785,17 +785,17 @@ interactions: method: POST uri: https://api.dnanexus.com/system/findProjects response: - body: {string: '{"results":[{"id":"project-FP9kQZ005ZPGPZk8417zyZPZ","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} + body: {string: '{"results":[{"id":"project-FPfBFZ00qj3XjKPq2yYBZQpp","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} headers: Connection: [keep-alive] Content-Length: ['147'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:42:32 GMT'] + Date: ['Wed, 14 Nov 2018 22:46:47 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593752508-614380] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235607550-271748] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -819,19 +819,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kQZ005ZPGPZk8417zyZPZ/describe + uri: https://api.dnanexus.com/project-FPfBFZ00qj3XjKPq2yYBZQpp/describe response: - body: {string: '{"id":"project-FP9kQZ005ZPGPZk8417zyZPZ","name":"TestCopyTree.test_dx_root_to_dx_dir_w_slash.d8fbe927","class":"project","created":1540593744000,"modified":1540593750717,"billTo":"org-counsyl","level":"ADMINISTER","dataUsage":7.450580596923828e-9,"sponsoredDataUsage":0,"region":"aws:us-east-1","summary":"","description":"","protected":false,"restricted":false,"downloadRestricted":false,"containsPHI":false,"createdBy":{"user":"user-akumar_counsyl"},"version":0,"storageCost":1.639127731323242e-10,"pendingTransfer":null,"tags":[],"defaultInstanceType":"mem2_hdd2_x2","archivalState":"live","archivalProgress":null,"totalSponsoredEgressBytes":0,"consumedSponsoredEgressBytes":0,"atSpendingLimit":false}'} + body: {string: '{"id":"project-FPfBFZ00qj3XjKPq2yYBZQpp","name":"TestCopyTree.test_dx_root_to_dx_dir_w_slash.d63f494c","class":"project","created":1542235600000,"modified":1542235605908,"billTo":"org-counsyl","level":"ADMINISTER","dataUsage":7.450580596923828e-9,"sponsoredDataUsage":0,"region":"aws:us-east-1","summary":"","description":"","protected":false,"restricted":false,"downloadRestricted":false,"containsPHI":false,"createdBy":{"user":"user-akumar_counsyl"},"version":0,"storageCost":1.639127731323242e-10,"pendingTransfer":null,"tags":[],"defaultInstanceType":"mem2_hdd2_x2","archivalState":"live","archivalProgress":null,"totalSponsoredEgressBytes":0,"consumedSponsoredEgressBytes":0,"atSpendingLimit":false}'} headers: Connection: [keep-alive] Content-Length: ['704'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:42:32 GMT'] + Date: ['Wed, 14 Nov 2018 22:46:47 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593752636-590205] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235607678-436868] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -858,17 +858,17 @@ interactions: method: POST uri: https://api.dnanexus.com/system/findProjects response: - body: {string: '{"results":[{"id":"project-FP9kQf007YPkB0KJ8Bz7260q","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} + body: {string: '{"results":[{"id":"project-FPfBFbj0f1xz8B282y1pk0jb","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} headers: Connection: [keep-alive] Content-Length: ['147'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:42:32 GMT'] + Date: ['Wed, 14 Nov 2018 22:46:47 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593752792-90117] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235607790-66482] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -893,21 +893,21 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kQf007YPkB0KJ8Bz7260q/listFolder + uri: https://api.dnanexus.com/project-FPfBFbj0f1xz8B282y1pk0jb/listFolder response: body: {string: '{"error":{"type":"ResourceNotFound","message":"The specified folder - could not be found in project-FP9kQf007YPkB0KJ8Bz7260q"}}'} + could not be found in project-FPfBFbj0f1xz8B282y1pk0jb"}}'} headers: Connection: [keep-alive] Content-Type: [application/json] - Date: ['Fri, 26 Oct 2018 22:42:32 GMT'] + Date: ['Wed, 14 Nov 2018 22:46:47 GMT'] Server: [nginx] Transfer-Encoding: [chunked] Vary: [Accept-Encoding] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593752927-813153] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235607962-54776] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 404, message: Not Found} - request: @@ -934,21 +934,21 @@ interactions: method: POST uri: https://api.dnanexus.com/system/findProjects response: - body: {string: '{"results":[{"id":"project-FP9kQf007YPkB0KJ8Bz7260q","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} + body: {string: '{"results":[{"id":"project-FPfBFbj0f1xz8B282y1pk0jb","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} headers: Connection: [keep-alive] Content-Length: ['147'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:42:33 GMT'] + Date: ['Wed, 14 Nov 2018 22:46:48 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593753340-65355] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235608342-890264] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"folder": "/folder/TestCopyTree.test_dx_root_to_dx_dir_w_slash.d8fbe927", + body: '{"folder": "/folder/TestCopyTree.test_dx_root_to_dx_dir_w_slash.d63f494c", "describe": {"fields": {"name": true, "folder": true}}, "only": "folders", "includeHidden": false}' headers: @@ -970,25 +970,25 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kQf007YPkB0KJ8Bz7260q/listFolder + uri: https://api.dnanexus.com/project-FPfBFbj0f1xz8B282y1pk0jb/listFolder response: body: {string: '{"error":{"type":"ResourceNotFound","message":"The specified folder - could not be found in project-FP9kQf007YPkB0KJ8Bz7260q"}}'} + could not be found in project-FPfBFbj0f1xz8B282y1pk0jb"}}'} headers: Connection: [keep-alive] Content-Type: [application/json] - Date: ['Fri, 26 Oct 2018 22:42:33 GMT'] + Date: ['Wed, 14 Nov 2018 22:46:48 GMT'] Server: [nginx] Transfer-Encoding: [chunked] Vary: [Accept-Encoding] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593753498-934627] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235608479-472550] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 404, message: Not Found} - request: - body: '{"folder": "/folder/TestCopyTree.test_dx_root_to_dx_dir_w_slash.d8fbe927", + body: '{"folder": "/folder/TestCopyTree.test_dx_root_to_dx_dir_w_slash.d63f494c", "parents": true}' headers: ? !!binary | @@ -1009,24 +1009,24 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kQf007YPkB0KJ8Bz7260q/newFolder + uri: https://api.dnanexus.com/project-FPfBFbj0f1xz8B282y1pk0jb/newFolder response: - body: {string: '{"id":"project-FP9kQf007YPkB0KJ8Bz7260q"}'} + body: {string: '{"id":"project-FPfBFbj0f1xz8B282y1pk0jb"}'} headers: Connection: [keep-alive] Content-Length: ['41'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:42:33 GMT'] + Date: ['Wed, 14 Nov 2018 22:46:48 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593753902-285571] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235608822-289788] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"objects": [], "folders": ["/"], "project": "project-FP9kQf007YPkB0KJ8Bz7260q", - "destination": "/folder/TestCopyTree.test_dx_root_to_dx_dir_w_slash.d8fbe927", + body: '{"objects": [], "folders": ["/"], "project": "project-FPfBFbj0f1xz8B282y1pk0jb", + "destination": "/folder/TestCopyTree.test_dx_root_to_dx_dir_w_slash.d63f494c", "parents": false}' headers: ? !!binary | @@ -1047,19 +1047,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kQZ005ZPGPZk8417zyZPZ/clone + uri: https://api.dnanexus.com/project-FPfBFZ00qj3XjKPq2yYBZQpp/clone response: - body: {string: '{"id":"project-FP9kQZ005ZPGPZk8417zyZPZ","project":"project-FP9kQf007YPkB0KJ8Bz7260q","exists":[]}'} + body: {string: '{"id":"project-FPfBFZ00qj3XjKPq2yYBZQpp","project":"project-FPfBFbj0f1xz8B282y1pk0jb","exists":[]}'} headers: Connection: [keep-alive] Content-Length: ['98'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:42:34 GMT'] + Date: ['Wed, 14 Nov 2018 22:46:49 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593754019-420119] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235608956-830197] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -1086,22 +1086,22 @@ interactions: method: POST uri: https://api.dnanexus.com/system/findProjects response: - body: {string: '{"results":[{"id":"project-FP9kQf007YPkB0KJ8Bz7260q","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} + body: {string: '{"results":[{"id":"project-FPfBFbj0f1xz8B282y1pk0jb","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} headers: Connection: [keep-alive] Content-Length: ['147'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:42:34 GMT'] + Date: ['Wed, 14 Nov 2018 22:46:49 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593754267-832159] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235609132-123575] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"objects": [{"name": "folder_file", "folder": "/folder/TestCopyTree.test_dx_root_to_dx_dir_w_slash.d8fbe927/temp_folder", - "project": "project-FP9kQf007YPkB0KJ8Bz7260q", "batchsize": 2}]}' + body: '{"objects": [{"name": "folder_file", "folder": "/folder/TestCopyTree.test_dx_root_to_dx_dir_w_slash.d63f494c/temp_folder", + "project": "project-FPfBFbj0f1xz8B282y1pk0jb", "batchsize": 2}]}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -1123,21 +1123,21 @@ interactions: method: POST uri: https://api.dnanexus.com/system/resolveDataObjects response: - body: {string: '{"results":[[{"project":"project-FP9kQf007YPkB0KJ8Bz7260q","id":"file-FP9kQZ805ZPGPZk8417zyZPb"}]]}'} + body: {string: '{"results":[[{"project":"project-FPfBFbj0f1xz8B282y1pk0jb","id":"file-FPfBFZ00qj3bPx212xgzzZzJ"}]]}'} headers: Connection: [keep-alive] Content-Length: ['99'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:42:34 GMT'] + Date: ['Wed, 14 Nov 2018 22:46:49 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593754416-742372] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235609254-325667] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"project": "project-FP9kQf007YPkB0KJ8Bz7260q"}' + body: '{"project": "project-FPfBFbj0f1xz8B282y1pk0jb"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -1157,19 +1157,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kQZ805ZPGPZk8417zyZPb/describe + uri: https://api.dnanexus.com/file-FPfBFZ00qj3bPx212xgzzZzJ/describe response: - body: {string: '{"id":"file-FP9kQZ805ZPGPZk8417zyZPb","project":"project-FP9kQf007YPkB0KJ8Bz7260q","class":"file","sponsored":false,"name":"folder_file","types":[],"state":"closed","hidden":false,"links":[],"folder":"/folder/TestCopyTree.test_dx_root_to_dx_dir_w_slash.d8fbe927/temp_folder","tags":[],"created":1540593745000,"modified":1540593754134,"createdBy":{"user":"user-akumar_counsyl"},"media":"text/plain","archivalState":"live","size":4}'} + body: {string: '{"id":"file-FPfBFZ00qj3bPx212xgzzZzJ","project":"project-FPfBFbj0f1xz8B282y1pk0jb","class":"file","sponsored":false,"name":"folder_file","types":[],"state":"closed","hidden":false,"links":[],"folder":"/folder/TestCopyTree.test_dx_root_to_dx_dir_w_slash.d63f494c/temp_folder","tags":[],"created":1542235600000,"modified":1542235609018,"createdBy":{"user":"user-akumar_counsyl"},"media":"text/plain","archivalState":"live","size":4}'} headers: Connection: [keep-alive] Content-Length: ['430'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:42:34 GMT'] + Date: ['Wed, 14 Nov 2018 22:46:49 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593754526-82082] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235609349-562513] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -1193,19 +1193,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kQf007YPkB0KJ8Bz7260q/destroy + uri: https://api.dnanexus.com/project-FPfBFbj0f1xz8B282y1pk0jb/destroy response: - body: {string: '{"id":"project-FP9kQf007YPkB0KJ8Bz7260q"}'} + body: {string: '{"id":"project-FPfBFbj0f1xz8B282y1pk0jb"}'} headers: Connection: [keep-alive] Content-Length: ['41'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:42:36 GMT'] + Date: ['Wed, 14 Nov 2018 22:46:51 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593754643-783714] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235609459-491639] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -1229,19 +1229,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kQZ005ZPGPZk8417zyZPZ/destroy + uri: https://api.dnanexus.com/project-FPfBFZ00qj3XjKPq2yYBZQpp/destroy response: - body: {string: '{"id":"project-FP9kQZ005ZPGPZk8417zyZPZ"}'} + body: {string: '{"id":"project-FPfBFZ00qj3XjKPq2yYBZQpp"}'} headers: Connection: [keep-alive] Content-Length: ['41'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:42:39 GMT'] + Date: ['Wed, 14 Nov 2018 22:46:54 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593756993-822657] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235612098-644269] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} version: 1 diff --git a/stor/tests/cassettes_py3/TestCopyTree/test_dx_root_to_dx_root.yaml b/stor_dx/stor_dx/tests/cassettes_py3/TestCopyTree/test_dx_root_to_dx_root.yaml similarity index 74% rename from stor/tests/cassettes_py3/TestCopyTree/test_dx_root_to_dx_root.yaml rename to stor_dx/stor_dx/tests/cassettes_py3/TestCopyTree/test_dx_root_to_dx_root.yaml index b0d2b9f6..d30d3a86 100644 --- a/stor/tests/cassettes_py3/TestCopyTree/test_dx_root_to_dx_root.yaml +++ b/stor_dx/stor_dx/tests/cassettes_py3/TestCopyTree/test_dx_root_to_dx_root.yaml @@ -1,6 +1,6 @@ interactions: - request: - body: '{"name": "TestCopyTree.test_dx_root_to_dx_root.82430bc4"}' + body: '{"name": "TestCopyTree.test_dx_root_to_dx_root.21e5be4d"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -22,17 +22,17 @@ interactions: method: POST uri: https://api.dnanexus.com/project/new response: - body: {string: '{"id":"project-FP9kQj0048pvfgvx3zz6pb25"}'} + body: {string: '{"id":"project-FPfBFgj0Jk82jKPq2yYBZQpz"}'} headers: Connection: [keep-alive] Content-Length: ['41'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:42:40 GMT'] + Date: ['Wed, 14 Nov 2018 22:46:55 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593760138-578894] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235615134-157363] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -56,19 +56,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kQj0048pvfgvx3zz6pb25/describe + uri: https://api.dnanexus.com/project-FPfBFgj0Jk82jKPq2yYBZQpz/describe response: - body: {string: '{"id":"project-FP9kQj0048pvfgvx3zz6pb25","name":"TestCopyTree.test_dx_root_to_dx_root.82430bc4","class":"project","created":1540593760000,"modified":1540593760000,"billTo":"org-counsyl","level":"ADMINISTER","dataUsage":0,"sponsoredDataUsage":0,"region":"aws:us-east-1","summary":"","description":"","protected":false,"restricted":false,"downloadRestricted":false,"containsPHI":false,"createdBy":{"user":"user-akumar_counsyl"},"version":0,"storageCost":0,"pendingTransfer":null,"tags":[],"defaultInstanceType":"mem2_hdd2_x2","archivalState":"live","archivalProgress":null,"totalSponsoredEgressBytes":0,"consumedSponsoredEgressBytes":0,"atSpendingLimit":false}'} + body: {string: '{"id":"project-FPfBFgj0Jk82jKPq2yYBZQpz","name":"TestCopyTree.test_dx_root_to_dx_root.21e5be4d","class":"project","created":1542235615000,"modified":1542235615000,"billTo":"org-counsyl","level":"ADMINISTER","dataUsage":0,"sponsoredDataUsage":0,"region":"aws:us-east-1","summary":"","description":"","protected":false,"restricted":false,"downloadRestricted":false,"containsPHI":false,"createdBy":{"user":"user-akumar_counsyl"},"version":0,"storageCost":0,"pendingTransfer":null,"tags":[],"defaultInstanceType":"mem2_hdd2_x2","archivalState":"live","archivalProgress":null,"totalSponsoredEgressBytes":0,"consumedSponsoredEgressBytes":0,"atSpendingLimit":false}'} headers: Connection: [keep-alive] Content-Length: ['658'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:42:40 GMT'] + Date: ['Wed, 14 Nov 2018 22:46:55 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593760260-901858] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235615437-249720] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -92,24 +92,24 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kQj0048pvfgvx3zz6pb25/newFolder + uri: https://api.dnanexus.com/project-FPfBFgj0Jk82jKPq2yYBZQpz/newFolder response: - body: {string: '{"id":"project-FP9kQj0048pvfgvx3zz6pb25"}'} + body: {string: '{"id":"project-FPfBFgj0Jk82jKPq2yYBZQpz"}'} headers: Connection: [keep-alive] Content-Length: ['41'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:42:40 GMT'] + Date: ['Wed, 14 Nov 2018 22:46:56 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593760428-647213] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235616001-667075] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"name": "folder_file", "folder": "/temp_folder", "project": "project-FP9kQj0048pvfgvx3zz6pb25", - "nonce": "b''fba6f27d720b8d43f5a5cdf880dffac8df28927a4981c886d32136948e232221''1540593760.495523"}' + body: '{"name": "folder_file", "folder": "/temp_folder", "project": "project-FPfBFgj0Jk82jKPq2yYBZQpz", + "nonce": "b''9c06a67e984e2861fc22921e04fd2ea5c0e44bea63e98105ea49a8bb4dfd147f''1542235616.133803"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -131,17 +131,17 @@ interactions: method: POST uri: https://api.dnanexus.com/file/new response: - body: {string: '{"id":"file-FP9kQj0048pkB0KJ8Bz7260v"}'} + body: {string: '{"id":"file-FPfBFj00Jk8GjK1k2yqz9Ppf"}'} headers: Connection: [keep-alive] Content-Length: ['38'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:42:40 GMT'] + Date: ['Wed, 14 Nov 2018 22:46:56 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593760546-190790] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235616183-85916] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -165,19 +165,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kQj0048pvfgvx3zz6pb25/describe + uri: https://api.dnanexus.com/project-FPfBFgj0Jk82jKPq2yYBZQpz/describe response: - body: {string: '{"id":"project-FP9kQj0048pvfgvx3zz6pb25","fileUploadParameters":{"maximumPartSize":5368709120,"minimumPartSize":5242880,"maximumFileSize":5497558138880,"maximumNumParts":10000,"emptyLastPartAllowed":true}}'} + body: {string: '{"id":"project-FPfBFgj0Jk82jKPq2yYBZQpz","fileUploadParameters":{"maximumPartSize":5368709120,"minimumPartSize":5242880,"maximumFileSize":5497558138880,"maximumNumParts":10000,"emptyLastPartAllowed":true}}'} headers: Connection: [keep-alive] Content-Length: ['205'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:42:40 GMT'] + Date: ['Wed, 14 Nov 2018 22:46:56 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593760681-469551] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235616434-72238] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -201,19 +201,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kQj0048pkB0KJ8Bz7260v/upload + uri: https://api.dnanexus.com/file-FPfBFj00Jk8GjK1k2yqz9Ppf/upload response: - body: {string: '{"url":"https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/7648/file/open/file-FP9kQj0048pkB0KJ8Bz7260v/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181026%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181026T224240Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=a383ec54a0ca37e0a8ccdfb92af5981f3a728dd8bff893618788b01d7df6a291","headers":{"host":"dnanexus-platform-upload-prod.s3.amazonaws.com","content-type":"binary/octet-stream","x-amz-server-side-encryption":"AES256","content-md5":"jXd/OF09/siBXSD3SWAm3A==","content-length":"4"},"expires":1540593880808}'} + body: {string: '{"url":"https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/c61c/file/open/file-FPfBFj00Jk8GjK1k2yqz9Ppf/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181114%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181114T224656Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=30eaae29751f0b74d44c4397a53d68b6d84bb3281a6bb4c04949dc58f2b665ea","headers":{"host":"dnanexus-platform-upload-prod.s3.amazonaws.com","content-type":"binary/octet-stream","x-amz-server-side-encryption":"AES256","content-md5":"jXd/OF09/siBXSD3SWAm3A==","content-length":"4"},"expires":1542235736680}'} headers: Connection: [keep-alive] Content-Length: ['692'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:42:40 GMT'] + Date: ['Wed, 14 Nov 2018 22:46:56 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593760796-542700] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235616650-937274] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -241,21 +241,21 @@ interactions: : - !!binary | QUVTMjU2 method: PUT - uri: https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/7648/file/open/file-FP9kQj0048pkB0KJ8Bz7260v/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181026%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181026T224240Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=a383ec54a0ca37e0a8ccdfb92af5981f3a728dd8bff893618788b01d7df6a291 + uri: https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/c61c/file/open/file-FPfBFj00Jk8GjK1k2yqz9Ppf/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181114%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181114T224656Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=30eaae29751f0b74d44c4397a53d68b6d84bb3281a6bb4c04949dc58f2b665ea response: body: {string: ''} headers: Content-Length: ['0'] - Date: ['Fri, 26 Oct 2018 22:42:42 GMT'] + Date: ['Wed, 14 Nov 2018 22:46:58 GMT'] ETag: ['"8d777f385d3dfec8815d20f7496026dc"'] Server: [AmazonS3] - x-amz-expiration: ['expiry-date="Sat, 17 Nov 2018 00:00:00 GMT", rule-id="3weekpurge"'] - x-amz-id-2: [htMaw+Q+nbATtSdtgP6PW5ELdKmuDyZj8NgMCNBHsRguVo50Qzdv154DT05LYMlnkhd8N/XzMMI=] - x-amz-request-id: [8BBB858CA156CE70] + x-amz-expiration: ['expiry-date="Thu, 06 Dec 2018 00:00:00 GMT", rule-id="3weekpurge"'] + x-amz-id-2: [o5HYMWVAqmNG8IqQo4DjK0DG2DyKQEodhTE9cqSIDBvUHaPuCA4nr5l5I7AIM0xDQlNDwTeFN/o=] + x-amz-request-id: [1C4AF116035F3697] x-amz-server-side-encryption: [AES256] status: {code: 200, message: OK} - request: - body: '{"fields": {"state": true}, "project": "project-FP9kQj0048pvfgvx3zz6pb25"}' + body: '{"fields": {"state": true}, "project": "project-FPfBFgj0Jk82jKPq2yYBZQpz"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -275,19 +275,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kQj0048pkB0KJ8Bz7260v/describe + uri: https://api.dnanexus.com/file-FPfBFj00Jk8GjK1k2yqz9Ppf/describe response: - body: {string: '{"id":"file-FP9kQj0048pkB0KJ8Bz7260v","state":"open"}'} + body: {string: '{"id":"file-FPfBFj00Jk8GjK1k2yqz9Ppf","state":"open"}'} headers: Connection: [keep-alive] Content-Length: ['53'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:42:41 GMT'] + Date: ['Wed, 14 Nov 2018 22:46:57 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593761369-579452] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235617190-485828] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -311,23 +311,23 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kQj0048pkB0KJ8Bz7260v/close + uri: https://api.dnanexus.com/file-FPfBFj00Jk8GjK1k2yqz9Ppf/close response: - body: {string: '{"id":"file-FP9kQj0048pkB0KJ8Bz7260v"}'} + body: {string: '{"id":"file-FPfBFj00Jk8GjK1k2yqz9Ppf"}'} headers: Connection: [keep-alive] Content-Length: ['38'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:42:41 GMT'] + Date: ['Wed, 14 Nov 2018 22:46:57 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593761484-480783] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235617295-252691] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"fields": {"state": true}, "project": "project-FP9kQj0048pvfgvx3zz6pb25"}' + body: '{"fields": {"state": true}, "project": "project-FPfBFgj0Jk82jKPq2yYBZQpz"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -347,23 +347,23 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kQj0048pkB0KJ8Bz7260v/describe + uri: https://api.dnanexus.com/file-FPfBFj00Jk8GjK1k2yqz9Ppf/describe response: - body: {string: '{"id":"file-FP9kQj0048pkB0KJ8Bz7260v","state":"closing"}'} + body: {string: '{"id":"file-FPfBFj00Jk8GjK1k2yqz9Ppf","state":"closing"}'} headers: Connection: [keep-alive] Content-Length: ['56'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:42:41 GMT'] + Date: ['Wed, 14 Nov 2018 22:46:57 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593761648-782541] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235617411-818610] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"fields": {"state": true}, "project": "project-FP9kQj0048pvfgvx3zz6pb25"}' + body: '{"fields": {"state": true}, "project": "project-FPfBFgj0Jk82jKPq2yYBZQpz"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -383,19 +383,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kQj0048pkB0KJ8Bz7260v/describe + uri: https://api.dnanexus.com/file-FPfBFj00Jk8GjK1k2yqz9Ppf/describe response: - body: {string: '{"id":"file-FP9kQj0048pkB0KJ8Bz7260v","state":"closed"}'} + body: {string: '{"id":"file-FPfBFj00Jk8GjK1k2yqz9Ppf","state":"closed"}'} headers: Connection: [keep-alive] Content-Length: ['55'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:42:43 GMT'] + Date: ['Wed, 14 Nov 2018 22:46:59 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593763790-612356] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235619535-167293] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -421,21 +421,21 @@ interactions: method: POST uri: https://api.dnanexus.com/project/new response: - body: {string: '{"id":"project-FP9kQjj0G2Qf67Vq40v4Pq3g"}'} + body: {string: '{"id":"project-FPfBFjj0pff2jKPq2yYBZQq0"}'} headers: Connection: [keep-alive] Content-Length: ['41'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:42:43 GMT'] + Date: ['Wed, 14 Nov 2018 22:46:59 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593763898-866643] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235619633-428335] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"name": "TestCopyTree.test_dx_root_to_dx_root.82430bc4", "level": "VIEW", + body: '{"name": "TestCopyTree.test_dx_root_to_dx_root.21e5be4d", "level": "VIEW", "limit": 2}' headers: ? !!binary | @@ -458,17 +458,17 @@ interactions: method: POST uri: https://api.dnanexus.com/system/findProjects response: - body: {string: '{"results":[{"id":"project-FP9kQj0048pvfgvx3zz6pb25","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} + body: {string: '{"results":[{"id":"project-FPfBFgj0Jk82jKPq2yYBZQpz","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} headers: Connection: [keep-alive] Content-Length: ['147'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:42:44 GMT'] + Date: ['Wed, 14 Nov 2018 22:46:59 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593764031-615925] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235619759-277339] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -492,19 +492,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kQj0048pvfgvx3zz6pb25/describe + uri: https://api.dnanexus.com/project-FPfBFgj0Jk82jKPq2yYBZQpz/describe response: - body: {string: '{"id":"project-FP9kQj0048pvfgvx3zz6pb25","name":"TestCopyTree.test_dx_root_to_dx_root.82430bc4","class":"project","created":1540593760000,"modified":1540593762551,"billTo":"org-counsyl","level":"ADMINISTER","dataUsage":3.725290298461914e-9,"sponsoredDataUsage":0,"region":"aws:us-east-1","summary":"","description":"","protected":false,"restricted":false,"downloadRestricted":false,"containsPHI":false,"createdBy":{"user":"user-akumar_counsyl"},"version":0,"storageCost":8.19563865661621e-11,"pendingTransfer":null,"tags":[],"defaultInstanceType":"mem2_hdd2_x2","archivalState":"live","archivalProgress":null,"totalSponsoredEgressBytes":0,"consumedSponsoredEgressBytes":0,"atSpendingLimit":false}'} + body: {string: '{"id":"project-FPfBFgj0Jk82jKPq2yYBZQpz","name":"TestCopyTree.test_dx_root_to_dx_root.21e5be4d","class":"project","created":1542235615000,"modified":1542235618182,"billTo":"org-counsyl","level":"ADMINISTER","dataUsage":3.725290298461914e-9,"sponsoredDataUsage":0,"region":"aws:us-east-1","summary":"","description":"","protected":false,"restricted":false,"downloadRestricted":false,"containsPHI":false,"createdBy":{"user":"user-akumar_counsyl"},"version":0,"storageCost":8.19563865661621e-11,"pendingTransfer":null,"tags":[],"defaultInstanceType":"mem2_hdd2_x2","archivalState":"live","archivalProgress":null,"totalSponsoredEgressBytes":0,"consumedSponsoredEgressBytes":0,"atSpendingLimit":false}'} headers: Connection: [keep-alive] Content-Length: ['696'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:42:44 GMT'] + Date: ['Wed, 14 Nov 2018 22:46:59 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593764166-460507] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235619894-643488] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -531,17 +531,17 @@ interactions: method: POST uri: https://api.dnanexus.com/system/findProjects response: - body: {string: '{"results":[{"id":"project-FP9kQjj0G2Qf67Vq40v4Pq3g","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} + body: {string: '{"results":[{"id":"project-FPfBFjj0pff2jKPq2yYBZQq0","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} headers: Connection: [keep-alive] Content-Length: ['147'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:42:44 GMT'] + Date: ['Wed, 14 Nov 2018 22:47:00 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593764293-135368] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235619998-58705] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -565,19 +565,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kQjj0G2Qf67Vq40v4Pq3g/describe + uri: https://api.dnanexus.com/project-FPfBFjj0pff2jKPq2yYBZQq0/describe response: - body: {string: '{"id":"project-FP9kQjj0G2Qf67Vq40v4Pq3g","name":"test_dx_root_to_dx_root.TempProj","class":"project","created":1540593763000,"modified":1540593763000,"billTo":"org-counsyl","level":"ADMINISTER","dataUsage":0,"sponsoredDataUsage":0,"region":"aws:us-east-1","summary":"","description":"","protected":false,"restricted":false,"downloadRestricted":false,"containsPHI":false,"createdBy":{"user":"user-akumar_counsyl"},"version":0,"storageCost":0,"pendingTransfer":null,"tags":[],"defaultInstanceType":"mem2_hdd2_x2","archivalState":"live","archivalProgress":null,"totalSponsoredEgressBytes":0,"consumedSponsoredEgressBytes":0,"atSpendingLimit":false}'} + body: {string: '{"id":"project-FPfBFjj0pff2jKPq2yYBZQq0","name":"test_dx_root_to_dx_root.TempProj","class":"project","created":1542235619000,"modified":1542235619000,"billTo":"org-counsyl","level":"ADMINISTER","dataUsage":0,"sponsoredDataUsage":0,"region":"aws:us-east-1","summary":"","description":"","protected":false,"restricted":false,"downloadRestricted":false,"containsPHI":false,"createdBy":{"user":"user-akumar_counsyl"},"version":0,"storageCost":0,"pendingTransfer":null,"tags":[],"defaultInstanceType":"mem2_hdd2_x2","archivalState":"live","archivalProgress":null,"totalSponsoredEgressBytes":0,"consumedSponsoredEgressBytes":0,"atSpendingLimit":false}'} headers: Connection: [keep-alive] Content-Length: ['645'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:42:44 GMT'] + Date: ['Wed, 14 Nov 2018 22:47:00 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593764421-474972] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235620124-976962] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -604,21 +604,21 @@ interactions: method: POST uri: https://api.dnanexus.com/system/findProjects response: - body: {string: '{"results":[{"id":"project-FP9kQjj0G2Qf67Vq40v4Pq3g","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} + body: {string: '{"results":[{"id":"project-FPfBFjj0pff2jKPq2yYBZQq0","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} headers: Connection: [keep-alive] Content-Length: ['147'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:42:44 GMT'] + Date: ['Wed, 14 Nov 2018 22:47:00 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593764547-294887] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235620250-541154] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"folder": "/TestCopyTree.test_dx_root_to_dx_root.82430bc4", "describe": + body: '{"folder": "/TestCopyTree.test_dx_root_to_dx_root.21e5be4d", "describe": {"fields": {"name": true, "folder": true}}, "only": "folders", "includeHidden": false}' headers: @@ -640,25 +640,25 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kQjj0G2Qf67Vq40v4Pq3g/listFolder + uri: https://api.dnanexus.com/project-FPfBFjj0pff2jKPq2yYBZQq0/listFolder response: body: {string: '{"error":{"type":"ResourceNotFound","message":"The specified folder - could not be found in project-FP9kQjj0G2Qf67Vq40v4Pq3g"}}'} + could not be found in project-FPfBFjj0pff2jKPq2yYBZQq0"}}'} headers: Connection: [keep-alive] Content-Type: [application/json] - Date: ['Fri, 26 Oct 2018 22:42:44 GMT'] + Date: ['Wed, 14 Nov 2018 22:47:00 GMT'] Server: [nginx] Transfer-Encoding: [chunked] Vary: [Accept-Encoding] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593764706-158946] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235620378-479324] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 404, message: Not Found} - request: - body: '{"folder": "/TestCopyTree.test_dx_root_to_dx_root.82430bc4", "parents": + body: '{"folder": "/TestCopyTree.test_dx_root_to_dx_root.21e5be4d", "parents": true}' headers: ? !!binary | @@ -679,24 +679,24 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kQjj0G2Qf67Vq40v4Pq3g/newFolder + uri: https://api.dnanexus.com/project-FPfBFjj0pff2jKPq2yYBZQq0/newFolder response: - body: {string: '{"id":"project-FP9kQjj0G2Qf67Vq40v4Pq3g"}'} + body: {string: '{"id":"project-FPfBFjj0pff2jKPq2yYBZQq0"}'} headers: Connection: [keep-alive] Content-Length: ['41'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:42:45 GMT'] + Date: ['Wed, 14 Nov 2018 22:47:00 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593765149-217786] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235620740-722946] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"objects": [], "folders": ["/"], "project": "project-FP9kQjj0G2Qf67Vq40v4Pq3g", - "destination": "/TestCopyTree.test_dx_root_to_dx_root.82430bc4", "parents": + body: '{"objects": [], "folders": ["/"], "project": "project-FPfBFjj0pff2jKPq2yYBZQq0", + "destination": "/TestCopyTree.test_dx_root_to_dx_root.21e5be4d", "parents": false}' headers: ? !!binary | @@ -717,19 +717,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kQj0048pvfgvx3zz6pb25/clone + uri: https://api.dnanexus.com/project-FPfBFgj0Jk82jKPq2yYBZQpz/clone response: - body: {string: '{"id":"project-FP9kQj0048pvfgvx3zz6pb25","project":"project-FP9kQjj0G2Qf67Vq40v4Pq3g","exists":[]}'} + body: {string: '{"id":"project-FPfBFgj0Jk82jKPq2yYBZQpz","project":"project-FPfBFjj0pff2jKPq2yYBZQq0","exists":[]}'} headers: Connection: [keep-alive] Content-Length: ['98'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:42:45 GMT'] + Date: ['Wed, 14 Nov 2018 22:47:01 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593765265-767216] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235620888-179528] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -756,22 +756,22 @@ interactions: method: POST uri: https://api.dnanexus.com/system/findProjects response: - body: {string: '{"results":[{"id":"project-FP9kQjj0G2Qf67Vq40v4Pq3g","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} + body: {string: '{"results":[{"id":"project-FPfBFjj0pff2jKPq2yYBZQq0","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} headers: Connection: [keep-alive] Content-Length: ['147'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:42:45 GMT'] + Date: ['Wed, 14 Nov 2018 22:47:01 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593765456-334596] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235621109-974897] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"objects": [{"name": "folder_file", "folder": "/TestCopyTree.test_dx_root_to_dx_root.82430bc4/temp_folder", - "project": "project-FP9kQjj0G2Qf67Vq40v4Pq3g", "batchsize": 2}]}' + body: '{"objects": [{"name": "folder_file", "folder": "/TestCopyTree.test_dx_root_to_dx_root.21e5be4d/temp_folder", + "project": "project-FPfBFjj0pff2jKPq2yYBZQq0", "batchsize": 2}]}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -793,21 +793,21 @@ interactions: method: POST uri: https://api.dnanexus.com/system/resolveDataObjects response: - body: {string: '{"results":[[{"project":"project-FP9kQjj0G2Qf67Vq40v4Pq3g","id":"file-FP9kQj0048pkB0KJ8Bz7260v"}]]}'} + body: {string: '{"results":[[{"project":"project-FPfBFjj0pff2jKPq2yYBZQq0","id":"file-FPfBFj00Jk8GjK1k2yqz9Ppf"}]]}'} headers: Connection: [keep-alive] Content-Length: ['99'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:42:45 GMT'] + Date: ['Wed, 14 Nov 2018 22:47:01 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593765591-395741] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235621243-103001] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"project": "project-FP9kQjj0G2Qf67Vq40v4Pq3g"}' + body: '{"project": "project-FPfBFjj0pff2jKPq2yYBZQq0"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -827,19 +827,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kQj0048pkB0KJ8Bz7260v/describe + uri: https://api.dnanexus.com/file-FPfBFj00Jk8GjK1k2yqz9Ppf/describe response: - body: {string: '{"id":"file-FP9kQj0048pkB0KJ8Bz7260v","project":"project-FP9kQjj0G2Qf67Vq40v4Pq3g","class":"file","sponsored":false,"name":"folder_file","types":[],"state":"closed","hidden":false,"links":[],"folder":"/TestCopyTree.test_dx_root_to_dx_root.82430bc4/temp_folder","tags":[],"created":1540593760000,"modified":1540593765341,"createdBy":{"user":"user-akumar_counsyl"},"media":"text/plain","archivalState":"live","size":4}'} + body: {string: '{"id":"file-FPfBFj00Jk8GjK1k2yqz9Ppf","project":"project-FPfBFjj0pff2jKPq2yYBZQq0","class":"file","sponsored":false,"name":"folder_file","types":[],"state":"closed","hidden":false,"links":[],"folder":"/TestCopyTree.test_dx_root_to_dx_root.21e5be4d/temp_folder","tags":[],"created":1542235616000,"modified":1542235620981,"createdBy":{"user":"user-akumar_counsyl"},"media":"text/plain","archivalState":"live","size":4}'} headers: Connection: [keep-alive] Content-Length: ['416'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:42:45 GMT'] + Date: ['Wed, 14 Nov 2018 22:47:01 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593765705-982168] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235621351-583816] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -863,19 +863,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kQjj0G2Qf67Vq40v4Pq3g/destroy + uri: https://api.dnanexus.com/project-FPfBFjj0pff2jKPq2yYBZQq0/destroy response: - body: {string: '{"id":"project-FP9kQjj0G2Qf67Vq40v4Pq3g"}'} + body: {string: '{"id":"project-FPfBFjj0pff2jKPq2yYBZQq0"}'} headers: Connection: [keep-alive] Content-Length: ['41'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:42:48 GMT'] + Date: ['Wed, 14 Nov 2018 22:47:04 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593765824-233609] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235621459-840935] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -899,19 +899,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kQj0048pvfgvx3zz6pb25/destroy + uri: https://api.dnanexus.com/project-FPfBFgj0Jk82jKPq2yYBZQpz/destroy response: - body: {string: '{"id":"project-FP9kQj0048pvfgvx3zz6pb25"}'} + body: {string: '{"id":"project-FPfBFgj0Jk82jKPq2yYBZQpz"}'} headers: Connection: [keep-alive] Content-Length: ['41'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:42:50 GMT'] + Date: ['Wed, 14 Nov 2018 22:47:06 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593768261-315019] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235624333-439816] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} version: 1 diff --git a/stor/tests/cassettes_py3/TestCopyTree/test_dx_root_to_existing_dx_dir.yaml b/stor_dx/stor_dx/tests/cassettes_py3/TestCopyTree/test_dx_root_to_existing_dx_dir.yaml similarity index 74% rename from stor/tests/cassettes_py3/TestCopyTree/test_dx_root_to_existing_dx_dir.yaml rename to stor_dx/stor_dx/tests/cassettes_py3/TestCopyTree/test_dx_root_to_existing_dx_dir.yaml index 9ce623a0..bfff2320 100644 --- a/stor/tests/cassettes_py3/TestCopyTree/test_dx_root_to_existing_dx_dir.yaml +++ b/stor_dx/stor_dx/tests/cassettes_py3/TestCopyTree/test_dx_root_to_existing_dx_dir.yaml @@ -1,6 +1,6 @@ interactions: - request: - body: '{"name": "TestCopyTree.test_dx_root_to_existing_dx_dir.595d00aa"}' + body: '{"name": "TestCopyTree.test_dx_root_to_existing_dx_dir.4002da1d"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -22,17 +22,17 @@ interactions: method: POST uri: https://api.dnanexus.com/project/new response: - body: {string: '{"id":"project-FP9kQpj0bPfGfgvx3zz6pb26"}'} + body: {string: '{"id":"project-FPfBFpj0zJ8j4Pz62bV2v5GF"}'} headers: Connection: [keep-alive] Content-Length: ['41'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:42:51 GMT'] + Date: ['Wed, 14 Nov 2018 22:47:07 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593771462-426645] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235627115-943192] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -56,19 +56,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kQpj0bPfGfgvx3zz6pb26/describe + uri: https://api.dnanexus.com/project-FPfBFpj0zJ8j4Pz62bV2v5GF/describe response: - body: {string: '{"id":"project-FP9kQpj0bPfGfgvx3zz6pb26","name":"TestCopyTree.test_dx_root_to_existing_dx_dir.595d00aa","class":"project","created":1540593771000,"modified":1540593771000,"billTo":"org-counsyl","level":"ADMINISTER","dataUsage":0,"sponsoredDataUsage":0,"region":"aws:us-east-1","summary":"","description":"","protected":false,"restricted":false,"downloadRestricted":false,"containsPHI":false,"createdBy":{"user":"user-akumar_counsyl"},"version":0,"storageCost":0,"pendingTransfer":null,"tags":[],"defaultInstanceType":"mem2_hdd2_x2","archivalState":"live","archivalProgress":null,"totalSponsoredEgressBytes":0,"consumedSponsoredEgressBytes":0,"atSpendingLimit":false}'} + body: {string: '{"id":"project-FPfBFpj0zJ8j4Pz62bV2v5GF","name":"TestCopyTree.test_dx_root_to_existing_dx_dir.4002da1d","class":"project","created":1542235627000,"modified":1542235627000,"billTo":"org-counsyl","level":"ADMINISTER","dataUsage":0,"sponsoredDataUsage":0,"region":"aws:us-east-1","summary":"","description":"","protected":false,"restricted":false,"downloadRestricted":false,"containsPHI":false,"createdBy":{"user":"user-akumar_counsyl"},"version":0,"storageCost":0,"pendingTransfer":null,"tags":[],"defaultInstanceType":"mem2_hdd2_x2","archivalState":"live","archivalProgress":null,"totalSponsoredEgressBytes":0,"consumedSponsoredEgressBytes":0,"atSpendingLimit":false}'} headers: Connection: [keep-alive] Content-Length: ['666'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:42:51 GMT'] + Date: ['Wed, 14 Nov 2018 22:47:07 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593771593-259689] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235627215-347612] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -92,24 +92,24 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kQpj0bPfGfgvx3zz6pb26/newFolder + uri: https://api.dnanexus.com/project-FPfBFpj0zJ8j4Pz62bV2v5GF/newFolder response: - body: {string: '{"id":"project-FP9kQpj0bPfGfgvx3zz6pb26"}'} + body: {string: '{"id":"project-FPfBFpj0zJ8j4Pz62bV2v5GF"}'} headers: Connection: [keep-alive] Content-Length: ['41'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:42:51 GMT'] + Date: ['Wed, 14 Nov 2018 22:47:07 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593771816-982749] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235627342-789279] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"name": "folder_file", "folder": "/temp_folder", "project": "project-FP9kQpj0bPfGfgvx3zz6pb26", - "nonce": "b''a0c55cb6588e6ca0b24e8ec7df243e62b4b08ae05bb52cfda3ec4fbdb834ce9f''1540593771.883809"}' + body: '{"name": "folder_file", "folder": "/temp_folder", "project": "project-FPfBFpj0zJ8j4Pz62bV2v5GF", + "nonce": "b''b39a1ac50aba18e80acf4ade875618a145ecc7065a5f3b41a63d69460fe3202b''1542235627.400910"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -131,17 +131,17 @@ interactions: method: POST uri: https://api.dnanexus.com/file/new response: - body: {string: '{"id":"file-FP9kQpj0bPfGfgvx3zz6pb27"}'} + body: {string: '{"id":"file-FPfBFpj0zJ8vF0v02bbj0VgB"}'} headers: Connection: [keep-alive] Content-Length: ['38'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:42:51 GMT'] + Date: ['Wed, 14 Nov 2018 22:47:07 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593771937-41593] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235627448-894177] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -165,19 +165,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kQpj0bPfGfgvx3zz6pb26/describe + uri: https://api.dnanexus.com/project-FPfBFpj0zJ8j4Pz62bV2v5GF/describe response: - body: {string: '{"id":"project-FP9kQpj0bPfGfgvx3zz6pb26","fileUploadParameters":{"maximumPartSize":5368709120,"minimumPartSize":5242880,"maximumFileSize":5497558138880,"maximumNumParts":10000,"emptyLastPartAllowed":true}}'} + body: {string: '{"id":"project-FPfBFpj0zJ8j4Pz62bV2v5GF","fileUploadParameters":{"maximumPartSize":5368709120,"minimumPartSize":5242880,"maximumFileSize":5497558138880,"maximumNumParts":10000,"emptyLastPartAllowed":true}}'} headers: Connection: [keep-alive] Content-Length: ['205'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:42:52 GMT'] + Date: ['Wed, 14 Nov 2018 22:47:07 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593772086-733730] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235627624-89566] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -201,19 +201,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kQpj0bPfGfgvx3zz6pb27/upload + uri: https://api.dnanexus.com/file-FPfBFpj0zJ8vF0v02bbj0VgB/upload response: - body: {string: '{"url":"https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/afe4/file/open/file-FP9kQpj0bPfGfgvx3zz6pb27/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181026%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181026T224252Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=eb642afabcedb902af030a0d30d01b77e1b55d2e7147272f24709688c559ab24","headers":{"host":"dnanexus-platform-upload-prod.s3.amazonaws.com","content-type":"binary/octet-stream","x-amz-server-side-encryption":"AES256","content-md5":"jXd/OF09/siBXSD3SWAm3A==","content-length":"4"},"expires":1540593892232}'} + body: {string: '{"url":"https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/56d8/file/open/file-FPfBFpj0zJ8vF0v02bbj0VgB/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181114%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181114T224707Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=18af5fdf35d2d0fe9cbb42a925f5027a776ea39cdddf2b6bd27ee5295bd39a20","headers":{"host":"dnanexus-platform-upload-prod.s3.amazonaws.com","content-type":"binary/octet-stream","x-amz-server-side-encryption":"AES256","content-md5":"jXd/OF09/siBXSD3SWAm3A==","content-length":"4"},"expires":1542235747734}'} headers: Connection: [keep-alive] Content-Length: ['692'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:42:52 GMT'] + Date: ['Wed, 14 Nov 2018 22:47:07 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593772219-712551] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235627723-750974] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -241,21 +241,21 @@ interactions: : - !!binary | QUVTMjU2 method: PUT - uri: https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/afe4/file/open/file-FP9kQpj0bPfGfgvx3zz6pb27/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181026%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181026T224252Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=eb642afabcedb902af030a0d30d01b77e1b55d2e7147272f24709688c559ab24 + uri: https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/56d8/file/open/file-FPfBFpj0zJ8vF0v02bbj0VgB/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181114%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181114T224707Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=18af5fdf35d2d0fe9cbb42a925f5027a776ea39cdddf2b6bd27ee5295bd39a20 response: body: {string: ''} headers: Content-Length: ['0'] - Date: ['Fri, 26 Oct 2018 22:42:53 GMT'] + Date: ['Wed, 14 Nov 2018 22:47:09 GMT'] ETag: ['"8d777f385d3dfec8815d20f7496026dc"'] Server: [AmazonS3] - x-amz-expiration: ['expiry-date="Sat, 17 Nov 2018 00:00:00 GMT", rule-id="3weekpurge"'] - x-amz-id-2: [7pYvYJdPT4N06qrzxTbKhM3JtScxJaAIM46S1e087KGiAvnhqTF0P/1TlLCeejj7xk6LmUcJPGY=] - x-amz-request-id: [64F051E4951665EF] + x-amz-expiration: ['expiry-date="Thu, 06 Dec 2018 00:00:00 GMT", rule-id="3weekpurge"'] + x-amz-id-2: [JWkLSFKI9lN0F8t+eMHY9Bxl0JuF0QPIKJF2sFs/NO1OQ/LyuopiKx/ejbEC1taoETsQdslT21g=] + x-amz-request-id: [6E944A8C00483161] x-amz-server-side-encryption: [AES256] status: {code: 200, message: OK} - request: - body: '{"fields": {"state": true}, "project": "project-FP9kQpj0bPfGfgvx3zz6pb26"}' + body: '{"fields": {"state": true}, "project": "project-FPfBFpj0zJ8j4Pz62bV2v5GF"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -275,19 +275,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kQpj0bPfGfgvx3zz6pb27/describe + uri: https://api.dnanexus.com/file-FPfBFpj0zJ8vF0v02bbj0VgB/describe response: - body: {string: '{"id":"file-FP9kQpj0bPfGfgvx3zz6pb27","state":"open"}'} + body: {string: '{"id":"file-FPfBFpj0zJ8vF0v02bbj0VgB","state":"open"}'} headers: Connection: [keep-alive] Content-Length: ['53'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:42:52 GMT'] + Date: ['Wed, 14 Nov 2018 22:47:08 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593772780-167624] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235628197-310331] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -311,23 +311,23 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kQpj0bPfGfgvx3zz6pb27/close + uri: https://api.dnanexus.com/file-FPfBFpj0zJ8vF0v02bbj0VgB/close response: - body: {string: '{"id":"file-FP9kQpj0bPfGfgvx3zz6pb27"}'} + body: {string: '{"id":"file-FPfBFpj0zJ8vF0v02bbj0VgB"}'} headers: Connection: [keep-alive] Content-Length: ['38'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:42:52 GMT'] + Date: ['Wed, 14 Nov 2018 22:47:08 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593772905-280681] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235628292-390670] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"fields": {"state": true}, "project": "project-FP9kQpj0bPfGfgvx3zz6pb26"}' + body: '{"fields": {"state": true}, "project": "project-FPfBFpj0zJ8j4Pz62bV2v5GF"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -347,23 +347,23 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kQpj0bPfGfgvx3zz6pb27/describe + uri: https://api.dnanexus.com/file-FPfBFpj0zJ8vF0v02bbj0VgB/describe response: - body: {string: '{"id":"file-FP9kQpj0bPfGfgvx3zz6pb27","state":"closing"}'} + body: {string: '{"id":"file-FPfBFpj0zJ8vF0v02bbj0VgB","state":"closing"}'} headers: Connection: [keep-alive] Content-Length: ['56'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:42:53 GMT'] + Date: ['Wed, 14 Nov 2018 22:47:08 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593773032-18765] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235628788-90398] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"fields": {"state": true}, "project": "project-FP9kQpj0bPfGfgvx3zz6pb26"}' + body: '{"fields": {"state": true}, "project": "project-FPfBFpj0zJ8j4Pz62bV2v5GF"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -383,19 +383,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kQpj0bPfGfgvx3zz6pb27/describe + uri: https://api.dnanexus.com/file-FPfBFpj0zJ8vF0v02bbj0VgB/describe response: - body: {string: '{"id":"file-FP9kQpj0bPfGfgvx3zz6pb27","state":"closed"}'} + body: {string: '{"id":"file-FPfBFpj0zJ8vF0v02bbj0VgB","state":"closed"}'} headers: Connection: [keep-alive] Content-Length: ['55'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:42:55 GMT'] + Date: ['Wed, 14 Nov 2018 22:47:11 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593775158-729585] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235631070-141415] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -419,24 +419,24 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kQpj0bPfGfgvx3zz6pb26/newFolder + uri: https://api.dnanexus.com/project-FPfBFpj0zJ8j4Pz62bV2v5GF/newFolder response: - body: {string: '{"id":"project-FP9kQpj0bPfGfgvx3zz6pb26"}'} + body: {string: '{"id":"project-FPfBFpj0zJ8j4Pz62bV2v5GF"}'} headers: Connection: [keep-alive] Content-Length: ['41'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:42:55 GMT'] + Date: ['Wed, 14 Nov 2018 22:47:11 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593775286-107154] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235631181-52617] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: body: '{"name": "temp_file.txt", "folder": "/temp_folder/another_folder", "project": - "project-FP9kQpj0bPfGfgvx3zz6pb26", "nonce": "b''5e525ebbdace1eb91c1d24cc6c805786e814947447d28a91cac9ffc7841fd3d5''1540593775.357251"}' + "project-FPfBFpj0zJ8j4Pz62bV2v5GF", "nonce": "b''24c153a882b06bae13ecce66e3a265b7861fd6ee0755033309ef36c7fda914e3''1542235631.241697"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -458,17 +458,17 @@ interactions: method: POST uri: https://api.dnanexus.com/file/new response: - body: {string: '{"id":"file-FP9kQqj0bPfGfgvx3zz6pb29"}'} + body: {string: '{"id":"file-FPfBFqj0zJ8ZjFpj2b90PG69"}'} headers: Connection: [keep-alive] Content-Length: ['38'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:42:55 GMT'] + Date: ['Wed, 14 Nov 2018 22:47:11 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593775407-695178] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235631287-302480] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -492,19 +492,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kQpj0bPfGfgvx3zz6pb26/describe + uri: https://api.dnanexus.com/project-FPfBFpj0zJ8j4Pz62bV2v5GF/describe response: - body: {string: '{"id":"project-FP9kQpj0bPfGfgvx3zz6pb26","fileUploadParameters":{"maximumPartSize":5368709120,"minimumPartSize":5242880,"maximumFileSize":5497558138880,"maximumNumParts":10000,"emptyLastPartAllowed":true}}'} + body: {string: '{"id":"project-FPfBFpj0zJ8j4Pz62bV2v5GF","fileUploadParameters":{"maximumPartSize":5368709120,"minimumPartSize":5242880,"maximumFileSize":5497558138880,"maximumNumParts":10000,"emptyLastPartAllowed":true}}'} headers: Connection: [keep-alive] Content-Length: ['205'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:42:55 GMT'] + Date: ['Wed, 14 Nov 2018 22:47:11 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593775574-180560] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235631416-884622] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -528,19 +528,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kQqj0bPfGfgvx3zz6pb29/upload + uri: https://api.dnanexus.com/file-FPfBFqj0zJ8ZjFpj2b90PG69/upload response: - body: {string: '{"url":"https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/93d8/file/open/file-FP9kQqj0bPfGfgvx3zz6pb29/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181026%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181026T224255Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=eb002f1cfdf83b6fd1748de82e969d5ec6a490490383e39f43aeba575309eb2d","headers":{"host":"dnanexus-platform-upload-prod.s3.amazonaws.com","content-type":"binary/octet-stream","x-amz-server-side-encryption":"AES256","content-md5":"jXd/OF09/siBXSD3SWAm3A==","content-length":"4"},"expires":1540593895704}'} + body: {string: '{"url":"https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/9a00/file/open/file-FPfBFqj0zJ8ZjFpj2b90PG69/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181114%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181114T224711Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=62fb7594ff053b43de856bf2c31bd3e92fa91447aa765466315a52d2950e7230","headers":{"host":"dnanexus-platform-upload-prod.s3.amazonaws.com","content-type":"binary/octet-stream","x-amz-server-side-encryption":"AES256","content-md5":"jXd/OF09/siBXSD3SWAm3A==","content-length":"4"},"expires":1542235751527}'} headers: Connection: [keep-alive] Content-Length: ['692'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:42:55 GMT'] + Date: ['Wed, 14 Nov 2018 22:47:11 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593775691-771905] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235631515-616133] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -568,21 +568,21 @@ interactions: : - !!binary | QUVTMjU2 method: PUT - uri: https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/93d8/file/open/file-FP9kQqj0bPfGfgvx3zz6pb29/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181026%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181026T224255Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=eb002f1cfdf83b6fd1748de82e969d5ec6a490490383e39f43aeba575309eb2d + uri: https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/9a00/file/open/file-FPfBFqj0zJ8ZjFpj2b90PG69/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181114%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181114T224711Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=62fb7594ff053b43de856bf2c31bd3e92fa91447aa765466315a52d2950e7230 response: body: {string: ''} headers: Content-Length: ['0'] - Date: ['Fri, 26 Oct 2018 22:42:56 GMT'] + Date: ['Wed, 14 Nov 2018 22:47:12 GMT'] ETag: ['"8d777f385d3dfec8815d20f7496026dc"'] Server: [AmazonS3] - x-amz-expiration: ['expiry-date="Sat, 17 Nov 2018 00:00:00 GMT", rule-id="3weekpurge"'] - x-amz-id-2: [dDbeq5PEZouyszM79JK4ee7YgVXdOVzdRjEODLM362ClyPyhWfMP13JKYItsTeI6NVdxajLdy3Q=] - x-amz-request-id: [9B10747575BB1326] + x-amz-expiration: ['expiry-date="Thu, 06 Dec 2018 00:00:00 GMT", rule-id="3weekpurge"'] + x-amz-id-2: [RckVUb4B+1GKDbrJW29wPEhmBE2bLFetVqfHmZXNY16tPeEG0U3ICEh17ACUIKpxYPsWj3uajRw=] + x-amz-request-id: [FE73FC2A36C042A5] x-amz-server-side-encryption: [AES256] status: {code: 200, message: OK} - request: - body: '{"fields": {"state": true}, "project": "project-FP9kQpj0bPfGfgvx3zz6pb26"}' + body: '{"fields": {"state": true}, "project": "project-FPfBFpj0zJ8j4Pz62bV2v5GF"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -602,19 +602,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kQqj0bPfGfgvx3zz6pb29/describe + uri: https://api.dnanexus.com/file-FPfBFqj0zJ8ZjFpj2b90PG69/describe response: - body: {string: '{"id":"file-FP9kQqj0bPfGfgvx3zz6pb29","state":"open"}'} + body: {string: '{"id":"file-FPfBFqj0zJ8ZjFpj2b90PG69","state":"open"}'} headers: Connection: [keep-alive] Content-Length: ['53'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:42:55 GMT'] + Date: ['Wed, 14 Nov 2018 22:47:11 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593775935-589070] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235631717-258678] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -638,23 +638,23 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kQqj0bPfGfgvx3zz6pb29/close + uri: https://api.dnanexus.com/file-FPfBFqj0zJ8ZjFpj2b90PG69/close response: - body: {string: '{"id":"file-FP9kQqj0bPfGfgvx3zz6pb29"}'} + body: {string: '{"id":"file-FPfBFqj0zJ8ZjFpj2b90PG69"}'} headers: Connection: [keep-alive] Content-Length: ['38'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:42:56 GMT'] + Date: ['Wed, 14 Nov 2018 22:47:11 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593776055-802990] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235631898-615313] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"fields": {"state": true}, "project": "project-FP9kQpj0bPfGfgvx3zz6pb26"}' + body: '{"fields": {"state": true}, "project": "project-FPfBFpj0zJ8j4Pz62bV2v5GF"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -674,23 +674,23 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kQqj0bPfGfgvx3zz6pb29/describe + uri: https://api.dnanexus.com/file-FPfBFqj0zJ8ZjFpj2b90PG69/describe response: - body: {string: '{"id":"file-FP9kQqj0bPfGfgvx3zz6pb29","state":"closing"}'} + body: {string: '{"id":"file-FPfBFqj0zJ8ZjFpj2b90PG69","state":"closing"}'} headers: Connection: [keep-alive] Content-Length: ['56'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:42:56 GMT'] + Date: ['Wed, 14 Nov 2018 22:47:12 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593776189-851491] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235632024-233491] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"fields": {"state": true}, "project": "project-FP9kQpj0bPfGfgvx3zz6pb26"}' + body: '{"fields": {"state": true}, "project": "project-FPfBFpj0zJ8j4Pz62bV2v5GF"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -710,19 +710,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kQqj0bPfGfgvx3zz6pb29/describe + uri: https://api.dnanexus.com/file-FPfBFqj0zJ8ZjFpj2b90PG69/describe response: - body: {string: '{"id":"file-FP9kQqj0bPfGfgvx3zz6pb29","state":"closed"}'} + body: {string: '{"id":"file-FPfBFqj0zJ8ZjFpj2b90PG69","state":"closed"}'} headers: Connection: [keep-alive] Content-Length: ['55'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:42:58 GMT'] + Date: ['Wed, 14 Nov 2018 22:47:14 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593778313-838025] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235634142-257715] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -748,17 +748,17 @@ interactions: method: POST uri: https://api.dnanexus.com/project/new response: - body: {string: '{"id":"project-FP9kQvQ0FbBvfgvx3zz6pb2F"}'} + body: {string: '{"id":"project-FPfBFvQ0fXVk59y42bqVv4vJ"}'} headers: Connection: [keep-alive] Content-Length: ['41'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:42:58 GMT'] + Date: ['Wed, 14 Nov 2018 22:47:14 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593778438-774575] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235634240-573513] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -782,23 +782,23 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kQvQ0FbBvfgvx3zz6pb2F/newFolder + uri: https://api.dnanexus.com/project-FPfBFvQ0fXVk59y42bqVv4vJ/newFolder response: - body: {string: '{"id":"project-FP9kQvQ0FbBvfgvx3zz6pb2F"}'} + body: {string: '{"id":"project-FPfBFvQ0fXVk59y42bqVv4vJ"}'} headers: Connection: [keep-alive] Content-Length: ['41'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:42:58 GMT'] + Date: ['Wed, 14 Nov 2018 22:47:14 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593778577-749632] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235634342-148018] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"name": "TestCopyTree.test_dx_root_to_existing_dx_dir.595d00aa", "level": + body: '{"name": "TestCopyTree.test_dx_root_to_existing_dx_dir.4002da1d", "level": "VIEW", "limit": 2}' headers: ? !!binary | @@ -821,17 +821,17 @@ interactions: method: POST uri: https://api.dnanexus.com/system/findProjects response: - body: {string: '{"results":[{"id":"project-FP9kQpj0bPfGfgvx3zz6pb26","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} + body: {string: '{"results":[{"id":"project-FPfBFpj0zJ8j4Pz62bV2v5GF","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} headers: Connection: [keep-alive] Content-Length: ['147'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:42:58 GMT'] + Date: ['Wed, 14 Nov 2018 22:47:14 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593778693-262117] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235634457-475178] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -855,19 +855,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kQpj0bPfGfgvx3zz6pb26/describe + uri: https://api.dnanexus.com/project-FPfBFpj0zJ8j4Pz62bV2v5GF/describe response: - body: {string: '{"id":"project-FP9kQpj0bPfGfgvx3zz6pb26","name":"TestCopyTree.test_dx_root_to_existing_dx_dir.595d00aa","class":"project","created":1540593771000,"modified":1540593776620,"billTo":"org-counsyl","level":"ADMINISTER","dataUsage":7.450580596923828e-9,"sponsoredDataUsage":0,"region":"aws:us-east-1","summary":"","description":"","protected":false,"restricted":false,"downloadRestricted":false,"containsPHI":false,"createdBy":{"user":"user-akumar_counsyl"},"version":0,"storageCost":1.639127731323242e-10,"pendingTransfer":null,"tags":[],"defaultInstanceType":"mem2_hdd2_x2","archivalState":"live","archivalProgress":null,"totalSponsoredEgressBytes":0,"consumedSponsoredEgressBytes":0,"atSpendingLimit":false}'} + body: {string: '{"id":"project-FPfBFpj0zJ8j4Pz62bV2v5GF","name":"TestCopyTree.test_dx_root_to_existing_dx_dir.4002da1d","class":"project","created":1542235627000,"modified":1542235632581,"billTo":"org-counsyl","level":"ADMINISTER","dataUsage":7.450580596923828e-9,"sponsoredDataUsage":0,"region":"aws:us-east-1","summary":"","description":"","protected":false,"restricted":false,"downloadRestricted":false,"containsPHI":false,"createdBy":{"user":"user-akumar_counsyl"},"version":0,"storageCost":1.639127731323242e-10,"pendingTransfer":null,"tags":[],"defaultInstanceType":"mem2_hdd2_x2","archivalState":"live","archivalProgress":null,"totalSponsoredEgressBytes":0,"consumedSponsoredEgressBytes":0,"atSpendingLimit":false}'} headers: Connection: [keep-alive] Content-Length: ['705'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:42:58 GMT'] + Date: ['Wed, 14 Nov 2018 22:47:14 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593778839-849708] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235634574-605385] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -894,17 +894,17 @@ interactions: method: POST uri: https://api.dnanexus.com/system/findProjects response: - body: {string: '{"results":[{"id":"project-FP9kQvQ0FbBvfgvx3zz6pb2F","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} + body: {string: '{"results":[{"id":"project-FPfBFvQ0fXVk59y42bqVv4vJ","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} headers: Connection: [keep-alive] Content-Length: ['147'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:42:59 GMT'] + Date: ['Wed, 14 Nov 2018 22:47:14 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593778979-429170] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235634687-97663] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -929,19 +929,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kQvQ0FbBvfgvx3zz6pb2F/listFolder + uri: https://api.dnanexus.com/project-FPfBFvQ0fXVk59y42bqVv4vJ/listFolder response: body: {string: '{"folders":[]}'} headers: Connection: [keep-alive] Content-Length: ['14'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:42:59 GMT'] + Date: ['Wed, 14 Nov 2018 22:47:14 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593779523-957231] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235634830-212993] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -968,21 +968,21 @@ interactions: method: POST uri: https://api.dnanexus.com/system/findProjects response: - body: {string: '{"results":[{"id":"project-FP9kQvQ0FbBvfgvx3zz6pb2F","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} + body: {string: '{"results":[{"id":"project-FPfBFvQ0fXVk59y42bqVv4vJ","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} headers: Connection: [keep-alive] Content-Length: ['147'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:42:59 GMT'] + Date: ['Wed, 14 Nov 2018 22:47:14 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593779732-471958] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235634940-129709] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"folder": "/folder/TestCopyTree.test_dx_root_to_existing_dx_dir.595d00aa", + body: '{"folder": "/folder/TestCopyTree.test_dx_root_to_existing_dx_dir.4002da1d", "describe": {"fields": {"name": true, "folder": true}}, "only": "folders", "includeHidden": false}' headers: @@ -1004,25 +1004,25 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kQvQ0FbBvfgvx3zz6pb2F/listFolder + uri: https://api.dnanexus.com/project-FPfBFvQ0fXVk59y42bqVv4vJ/listFolder response: body: {string: '{"error":{"type":"ResourceNotFound","message":"The specified folder - could not be found in project-FP9kQvQ0FbBvfgvx3zz6pb2F"}}'} + could not be found in project-FPfBFvQ0fXVk59y42bqVv4vJ"}}'} headers: Connection: [keep-alive] Content-Type: [application/json] - Date: ['Fri, 26 Oct 2018 22:42:59 GMT'] + Date: ['Wed, 14 Nov 2018 22:47:15 GMT'] Server: [nginx] Transfer-Encoding: [chunked] Vary: [Accept-Encoding] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593779869-600532] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235635056-629692] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 404, message: Not Found} - request: - body: '{"folder": "/folder/TestCopyTree.test_dx_root_to_existing_dx_dir.595d00aa", + body: '{"folder": "/folder/TestCopyTree.test_dx_root_to_existing_dx_dir.4002da1d", "parents": true}' headers: ? !!binary | @@ -1043,24 +1043,24 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kQvQ0FbBvfgvx3zz6pb2F/newFolder + uri: https://api.dnanexus.com/project-FPfBFvQ0fXVk59y42bqVv4vJ/newFolder response: - body: {string: '{"id":"project-FP9kQvQ0FbBvfgvx3zz6pb2F"}'} + body: {string: '{"id":"project-FPfBFvQ0fXVk59y42bqVv4vJ"}'} headers: Connection: [keep-alive] Content-Length: ['41'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:43:00 GMT'] + Date: ['Wed, 14 Nov 2018 22:47:15 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593780293-239415] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235635393-821579] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"objects": [], "folders": ["/"], "project": "project-FP9kQvQ0FbBvfgvx3zz6pb2F", - "destination": "/folder/TestCopyTree.test_dx_root_to_existing_dx_dir.595d00aa", + body: '{"objects": [], "folders": ["/"], "project": "project-FPfBFvQ0fXVk59y42bqVv4vJ", + "destination": "/folder/TestCopyTree.test_dx_root_to_existing_dx_dir.4002da1d", "parents": false}' headers: ? !!binary | @@ -1081,19 +1081,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kQpj0bPfGfgvx3zz6pb26/clone + uri: https://api.dnanexus.com/project-FPfBFpj0zJ8j4Pz62bV2v5GF/clone response: - body: {string: '{"id":"project-FP9kQpj0bPfGfgvx3zz6pb26","project":"project-FP9kQvQ0FbBvfgvx3zz6pb2F","exists":[]}'} + body: {string: '{"id":"project-FPfBFpj0zJ8j4Pz62bV2v5GF","project":"project-FPfBFvQ0fXVk59y42bqVv4vJ","exists":[]}'} headers: Connection: [keep-alive] Content-Length: ['98'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:43:00 GMT'] + Date: ['Wed, 14 Nov 2018 22:47:15 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593780412-137681] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235635541-676761] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -1120,22 +1120,22 @@ interactions: method: POST uri: https://api.dnanexus.com/system/findProjects response: - body: {string: '{"results":[{"id":"project-FP9kQvQ0FbBvfgvx3zz6pb2F","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} + body: {string: '{"results":[{"id":"project-FPfBFvQ0fXVk59y42bqVv4vJ","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} headers: Connection: [keep-alive] Content-Length: ['147'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:43:00 GMT'] + Date: ['Wed, 14 Nov 2018 22:47:15 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593780677-537463] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235635736-815899] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"objects": [{"name": "folder_file", "folder": "/folder/TestCopyTree.test_dx_root_to_existing_dx_dir.595d00aa/temp_folder", - "project": "project-FP9kQvQ0FbBvfgvx3zz6pb2F", "batchsize": 2}]}' + body: '{"objects": [{"name": "folder_file", "folder": "/folder/TestCopyTree.test_dx_root_to_existing_dx_dir.4002da1d/temp_folder", + "project": "project-FPfBFvQ0fXVk59y42bqVv4vJ", "batchsize": 2}]}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -1157,21 +1157,21 @@ interactions: method: POST uri: https://api.dnanexus.com/system/resolveDataObjects response: - body: {string: '{"results":[[{"project":"project-FP9kQvQ0FbBvfgvx3zz6pb2F","id":"file-FP9kQpj0bPfGfgvx3zz6pb27"}]]}'} + body: {string: '{"results":[[{"project":"project-FPfBFvQ0fXVk59y42bqVv4vJ","id":"file-FPfBFpj0zJ8vF0v02bbj0VgB"}]]}'} headers: Connection: [keep-alive] Content-Length: ['99'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:43:00 GMT'] + Date: ['Wed, 14 Nov 2018 22:47:15 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593780818-733050] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235635905-424163] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"project": "project-FP9kQvQ0FbBvfgvx3zz6pb2F"}' + body: '{"project": "project-FPfBFvQ0fXVk59y42bqVv4vJ"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -1191,19 +1191,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kQpj0bPfGfgvx3zz6pb27/describe + uri: https://api.dnanexus.com/file-FPfBFpj0zJ8vF0v02bbj0VgB/describe response: - body: {string: '{"id":"file-FP9kQpj0bPfGfgvx3zz6pb27","project":"project-FP9kQvQ0FbBvfgvx3zz6pb2F","class":"file","sponsored":false,"name":"folder_file","types":[],"state":"closed","hidden":false,"links":[],"folder":"/folder/TestCopyTree.test_dx_root_to_existing_dx_dir.595d00aa/temp_folder","tags":[],"created":1540593771000,"modified":1540593780562,"createdBy":{"user":"user-akumar_counsyl"},"media":"text/plain","archivalState":"live","size":4}'} + body: {string: '{"id":"file-FPfBFpj0zJ8vF0v02bbj0VgB","project":"project-FPfBFvQ0fXVk59y42bqVv4vJ","class":"file","sponsored":false,"name":"folder_file","types":[],"state":"closed","hidden":false,"links":[],"folder":"/folder/TestCopyTree.test_dx_root_to_existing_dx_dir.4002da1d/temp_folder","tags":[],"created":1542235627000,"modified":1542235635613,"createdBy":{"user":"user-akumar_counsyl"},"media":"text/plain","archivalState":"live","size":4}'} headers: Connection: [keep-alive] Content-Length: ['431'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:43:00 GMT'] + Date: ['Wed, 14 Nov 2018 22:47:16 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593780940-513209] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235636022-660615] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -1227,19 +1227,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kQvQ0FbBvfgvx3zz6pb2F/destroy + uri: https://api.dnanexus.com/project-FPfBFvQ0fXVk59y42bqVv4vJ/destroy response: - body: {string: '{"id":"project-FP9kQvQ0FbBvfgvx3zz6pb2F"}'} + body: {string: '{"id":"project-FPfBFvQ0fXVk59y42bqVv4vJ"}'} headers: Connection: [keep-alive] Content-Length: ['41'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:43:03 GMT'] + Date: ['Wed, 14 Nov 2018 22:47:21 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593781053-120883] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235636120-881735] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -1263,19 +1263,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kQpj0bPfGfgvx3zz6pb26/destroy + uri: https://api.dnanexus.com/project-FPfBFpj0zJ8j4Pz62bV2v5GF/destroy response: - body: {string: '{"id":"project-FP9kQpj0bPfGfgvx3zz6pb26"}'} + body: {string: '{"id":"project-FPfBFpj0zJ8j4Pz62bV2v5GF"}'} headers: Connection: [keep-alive] Content-Length: ['41'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:43:05 GMT'] + Date: ['Wed, 14 Nov 2018 22:47:25 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593783617-457296] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235641795-930540] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} version: 1 diff --git a/stor/tests/cassettes_py3/TestCopyTree/test_dx_to_existing_dx_dest_fail.yaml b/stor_dx/stor_dx/tests/cassettes_py3/TestCopyTree/test_dx_to_existing_dx_dest_fail.yaml similarity index 76% rename from stor/tests/cassettes_py3/TestCopyTree/test_dx_to_existing_dx_dest_fail.yaml rename to stor_dx/stor_dx/tests/cassettes_py3/TestCopyTree/test_dx_to_existing_dx_dest_fail.yaml index 14323751..c708ce2c 100644 --- a/stor/tests/cassettes_py3/TestCopyTree/test_dx_to_existing_dx_dest_fail.yaml +++ b/stor_dx/stor_dx/tests/cassettes_py3/TestCopyTree/test_dx_to_existing_dx_dest_fail.yaml @@ -1,6 +1,6 @@ interactions: - request: - body: '{"name": "TestCopyTree.test_dx_to_existing_dx_dest_fail.faad5297"}' + body: '{"name": "TestCopyTree.test_dx_to_existing_dx_dest_fail.426e4cdb"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -22,17 +22,17 @@ interactions: method: POST uri: https://api.dnanexus.com/project/new response: - body: {string: '{"id":"project-FP9kQyQ0XFbkB0KJ8Bz7260y"}'} + body: {string: '{"id":"project-FPfBFz80p3bKYK2Q3YV9b2BF"}'} headers: Connection: [keep-alive] Content-Length: ['41'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:43:06 GMT'] + Date: ['Wed, 14 Nov 2018 22:47:25 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593786288-756475] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235645566-512162] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -56,19 +56,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kQyQ0XFbkB0KJ8Bz7260y/describe + uri: https://api.dnanexus.com/project-FPfBFz80p3bKYK2Q3YV9b2BF/describe response: - body: {string: '{"id":"project-FP9kQyQ0XFbkB0KJ8Bz7260y","name":"TestCopyTree.test_dx_to_existing_dx_dest_fail.faad5297","class":"project","created":1540593786000,"modified":1540593786000,"billTo":"org-counsyl","level":"ADMINISTER","dataUsage":0,"sponsoredDataUsage":0,"region":"aws:us-east-1","summary":"","description":"","protected":false,"restricted":false,"downloadRestricted":false,"containsPHI":false,"createdBy":{"user":"user-akumar_counsyl"},"version":0,"storageCost":0,"pendingTransfer":null,"tags":[],"defaultInstanceType":"mem2_hdd2_x2","archivalState":"live","archivalProgress":null,"totalSponsoredEgressBytes":0,"consumedSponsoredEgressBytes":0,"atSpendingLimit":false}'} + body: {string: '{"id":"project-FPfBFz80p3bKYK2Q3YV9b2BF","name":"TestCopyTree.test_dx_to_existing_dx_dest_fail.426e4cdb","class":"project","created":1542235645000,"modified":1542235645000,"billTo":"org-counsyl","level":"ADMINISTER","dataUsage":0,"sponsoredDataUsage":0,"region":"aws:us-east-1","summary":"","description":"","protected":false,"restricted":false,"downloadRestricted":false,"containsPHI":false,"createdBy":{"user":"user-akumar_counsyl"},"version":0,"storageCost":0,"pendingTransfer":null,"tags":[],"defaultInstanceType":"mem2_hdd2_x2","archivalState":"live","archivalProgress":null,"totalSponsoredEgressBytes":0,"consumedSponsoredEgressBytes":0,"atSpendingLimit":false}'} headers: Connection: [keep-alive] Content-Length: ['667'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:43:06 GMT'] + Date: ['Wed, 14 Nov 2018 22:47:25 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593786689-981835] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235645759-16978] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -92,24 +92,24 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kQyQ0XFbkB0KJ8Bz7260y/newFolder + uri: https://api.dnanexus.com/project-FPfBFz80p3bKYK2Q3YV9b2BF/newFolder response: - body: {string: '{"id":"project-FP9kQyQ0XFbkB0KJ8Bz7260y"}'} + body: {string: '{"id":"project-FPfBFz80p3bKYK2Q3YV9b2BF"}'} headers: Connection: [keep-alive] Content-Length: ['41'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:43:06 GMT'] + Date: ['Wed, 14 Nov 2018 22:47:26 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593786822-323443] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235646031-762992] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"name": "folder_file", "folder": "/temp_folder", "project": "project-FP9kQyQ0XFbkB0KJ8Bz7260y", - "nonce": "b''abc81c7f14580c4d6bd83edc370c0129d37980082265f7fe82029302cade20a1''1540593786.889006"}' + body: '{"name": "folder_file", "folder": "/temp_folder", "project": "project-FPfBFz80p3bKYK2Q3YV9b2BF", + "nonce": "b''68872ea60fa8cbadd7b229c982831433ef111c2c5587b4839a24f07ff01738ab''1542235646.112330"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -131,17 +131,17 @@ interactions: method: POST uri: https://api.dnanexus.com/file/new response: - body: {string: '{"id":"file-FP9kQyQ0XFbvfgvx3zz6pb2G"}'} + body: {string: '{"id":"file-FPfBFzQ0p3bFgzq03ZJpv0Z2"}'} headers: Connection: [keep-alive] Content-Length: ['38'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:43:07 GMT'] + Date: ['Wed, 14 Nov 2018 22:47:26 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593786932-910178] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235646158-577734] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -165,19 +165,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kQyQ0XFbkB0KJ8Bz7260y/describe + uri: https://api.dnanexus.com/project-FPfBFz80p3bKYK2Q3YV9b2BF/describe response: - body: {string: '{"id":"project-FP9kQyQ0XFbkB0KJ8Bz7260y","fileUploadParameters":{"maximumPartSize":5368709120,"minimumPartSize":5242880,"maximumFileSize":5497558138880,"maximumNumParts":10000,"emptyLastPartAllowed":true}}'} + body: {string: '{"id":"project-FPfBFz80p3bKYK2Q3YV9b2BF","fileUploadParameters":{"maximumPartSize":5368709120,"minimumPartSize":5242880,"maximumFileSize":5497558138880,"maximumNumParts":10000,"emptyLastPartAllowed":true}}'} headers: Connection: [keep-alive] Content-Length: ['205'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:43:07 GMT'] + Date: ['Wed, 14 Nov 2018 22:47:26 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593787154-649011] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235646330-207458] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -201,19 +201,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kQyQ0XFbvfgvx3zz6pb2G/upload + uri: https://api.dnanexus.com/file-FPfBFzQ0p3bFgzq03ZJpv0Z2/upload response: - body: {string: '{"url":"https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/fc23/file/open/file-FP9kQyQ0XFbvfgvx3zz6pb2G/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181026%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181026T224307Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=b2151eff90348d217daeb2dd0cea147a47a8d1c78dac76d3a68efc4d522d515f","headers":{"host":"dnanexus-platform-upload-prod.s3.amazonaws.com","content-type":"binary/octet-stream","x-amz-server-side-encryption":"AES256","content-md5":"c9//V/4k6Ae9T7G8TgfNcw==","content-length":"5"},"expires":1540593907304}'} + body: {string: '{"url":"https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/167d/file/open/file-FPfBFzQ0p3bFgzq03ZJpv0Z2/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181114%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181114T224726Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=fd667d308074aec6d7adb81db5ed33a2e7f27120873e74f46650192380b90ea8","headers":{"host":"dnanexus-platform-upload-prod.s3.amazonaws.com","content-type":"binary/octet-stream","x-amz-server-side-encryption":"AES256","content-md5":"c9//V/4k6Ae9T7G8TgfNcw==","content-length":"5"},"expires":1542235766481}'} headers: Connection: [keep-alive] Content-Length: ['692'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:43:07 GMT'] + Date: ['Wed, 14 Nov 2018 22:47:26 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593787289-708536] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235646434-223977] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -241,21 +241,21 @@ interactions: : - !!binary | QUVTMjU2 method: PUT - uri: https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/fc23/file/open/file-FP9kQyQ0XFbvfgvx3zz6pb2G/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181026%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181026T224307Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=b2151eff90348d217daeb2dd0cea147a47a8d1c78dac76d3a68efc4d522d515f + uri: https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/167d/file/open/file-FPfBFzQ0p3bFgzq03ZJpv0Z2/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181114%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181114T224726Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=fd667d308074aec6d7adb81db5ed33a2e7f27120873e74f46650192380b90ea8 response: body: {string: ''} headers: Content-Length: ['0'] - Date: ['Fri, 26 Oct 2018 22:43:08 GMT'] + Date: ['Wed, 14 Nov 2018 22:47:27 GMT'] ETag: ['"73dfff57fe24e807bd4fb1bc4e07cd73"'] Server: [AmazonS3] - x-amz-expiration: ['expiry-date="Sat, 17 Nov 2018 00:00:00 GMT", rule-id="3weekpurge"'] - x-amz-id-2: [VQohDTvVa72h5rZ6RqTtfboVMujYoiszE+0XvN7OZ6BFCfUqyziU+utpLGDzpmXxmJfM3IMoKQQ=] - x-amz-request-id: [FBE7E677448F8ED2] + x-amz-expiration: ['expiry-date="Thu, 06 Dec 2018 00:00:00 GMT", rule-id="3weekpurge"'] + x-amz-id-2: [yuJ1rx8M72kyrks5sq8qJrsZ8fcz7JwwMqx8P07svXs+0Vt3zJ9NYWwHWQjXF65+IvtxFVHCRAg=] + x-amz-request-id: [9B1C10916D8FC6A7] x-amz-server-side-encryption: [AES256] status: {code: 200, message: OK} - request: - body: '{"fields": {"state": true}, "project": "project-FP9kQyQ0XFbkB0KJ8Bz7260y"}' + body: '{"fields": {"state": true}, "project": "project-FPfBFz80p3bKYK2Q3YV9b2BF"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -275,19 +275,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kQyQ0XFbvfgvx3zz6pb2G/describe + uri: https://api.dnanexus.com/file-FPfBFzQ0p3bFgzq03ZJpv0Z2/describe response: - body: {string: '{"id":"file-FP9kQyQ0XFbvfgvx3zz6pb2G","state":"open"}'} + body: {string: '{"id":"file-FPfBFzQ0p3bFgzq03ZJpv0Z2","state":"open"}'} headers: Connection: [keep-alive] Content-Length: ['53'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:43:08 GMT'] + Date: ['Wed, 14 Nov 2018 22:47:26 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593787849-362677] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235646966-979450] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -311,19 +311,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kQyQ0XFbvfgvx3zz6pb2G/close + uri: https://api.dnanexus.com/file-FPfBFzQ0p3bFgzq03ZJpv0Z2/close response: - body: {string: '{"id":"file-FP9kQyQ0XFbvfgvx3zz6pb2G"}'} + body: {string: '{"id":"file-FPfBFzQ0p3bFgzq03ZJpv0Z2"}'} headers: Connection: [keep-alive] Content-Length: ['38'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:43:08 GMT'] + Date: ['Wed, 14 Nov 2018 22:47:27 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593788228-246181] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235647064-326541] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -349,17 +349,17 @@ interactions: method: POST uri: https://api.dnanexus.com/project/new response: - body: {string: '{"id":"project-FP9kQz00fpj667Vq40v4Pq3j"}'} + body: {string: '{"id":"project-FPfBFzj03xbJXKkQ3Z455J0F"}'} headers: Connection: [keep-alive] Content-Length: ['41'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:43:08 GMT'] + Date: ['Wed, 14 Nov 2018 22:47:27 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593788362-773672] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235647188-220383] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -383,23 +383,23 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kQz00fpj667Vq40v4Pq3j/newFolder + uri: https://api.dnanexus.com/project-FPfBFzj03xbJXKkQ3Z455J0F/newFolder response: - body: {string: '{"id":"project-FP9kQz00fpj667Vq40v4Pq3j"}'} + body: {string: '{"id":"project-FPfBFzj03xbJXKkQ3Z455J0F"}'} headers: Connection: [keep-alive] Content-Length: ['41'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:43:08 GMT'] + Date: ['Wed, 14 Nov 2018 22:47:27 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593788495-328399] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235647316-745771] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"name": "TestCopyTree.test_dx_to_existing_dx_dest_fail.faad5297", "level": + body: '{"name": "TestCopyTree.test_dx_to_existing_dx_dest_fail.426e4cdb", "level": "VIEW", "limit": 2}' headers: ? !!binary | @@ -422,17 +422,17 @@ interactions: method: POST uri: https://api.dnanexus.com/system/findProjects response: - body: {string: '{"results":[{"id":"project-FP9kQyQ0XFbkB0KJ8Bz7260y","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} + body: {string: '{"results":[{"id":"project-FPfBFz80p3bKYK2Q3YV9b2BF","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} headers: Connection: [keep-alive] Content-Length: ['147'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:43:08 GMT'] + Date: ['Wed, 14 Nov 2018 22:47:27 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593788717-31123] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235647440-960277] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -457,19 +457,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kQyQ0XFbkB0KJ8Bz7260y/listFolder + uri: https://api.dnanexus.com/project-FPfBFz80p3bKYK2Q3YV9b2BF/listFolder response: body: {string: '{"folders":[]}'} headers: Connection: [keep-alive] Content-Length: ['14'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:43:08 GMT'] + Date: ['Wed, 14 Nov 2018 22:47:27 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593788860-507114] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235647560-541441] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -496,17 +496,17 @@ interactions: method: POST uri: https://api.dnanexus.com/system/findProjects response: - body: {string: '{"results":[{"id":"project-FP9kQz00fpj667Vq40v4Pq3j","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} + body: {string: '{"results":[{"id":"project-FPfBFzj03xbJXKkQ3Z455J0F","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} headers: Connection: [keep-alive] Content-Length: ['147'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:43:09 GMT'] + Date: ['Wed, 14 Nov 2018 22:47:27 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593788977-695352] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235647664-789046] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -531,19 +531,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kQz00fpj667Vq40v4Pq3j/listFolder + uri: https://api.dnanexus.com/project-FPfBFzj03xbJXKkQ3Z455J0F/listFolder response: body: {string: '{"folders":["/folder2/temp_folder"]}'} headers: Connection: [keep-alive] Content-Length: ['36'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:43:09 GMT'] + Date: ['Wed, 14 Nov 2018 22:47:27 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593789146-449848] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235647800-187439] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -570,17 +570,17 @@ interactions: method: POST uri: https://api.dnanexus.com/system/findProjects response: - body: {string: '{"results":[{"id":"project-FP9kQz00fpj667Vq40v4Pq3j","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} + body: {string: '{"results":[{"id":"project-FPfBFzj03xbJXKkQ3Z455J0F","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} headers: Connection: [keep-alive] Content-Length: ['147'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:43:09 GMT'] + Date: ['Wed, 14 Nov 2018 22:47:27 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593789258-203891] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235647922-402337] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -605,19 +605,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kQz00fpj667Vq40v4Pq3j/listFolder + uri: https://api.dnanexus.com/project-FPfBFzj03xbJXKkQ3Z455J0F/listFolder response: body: {string: '{"folders":[]}'} headers: Connection: [keep-alive] Content-Length: ['14'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:43:09 GMT'] + Date: ['Wed, 14 Nov 2018 22:47:28 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593789402-213862] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235648055-69489] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -641,19 +641,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kQz00fpj667Vq40v4Pq3j/destroy + uri: https://api.dnanexus.com/project-FPfBFzj03xbJXKkQ3Z455J0F/destroy response: - body: {string: '{"id":"project-FP9kQz00fpj667Vq40v4Pq3j"}'} + body: {string: '{"id":"project-FPfBFzj03xbJXKkQ3Z455J0F"}'} headers: Connection: [keep-alive] Content-Length: ['41'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:43:11 GMT'] + Date: ['Wed, 14 Nov 2018 22:47:31 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593789532-745962] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235648153-698849] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -677,19 +677,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kQyQ0XFbkB0KJ8Bz7260y/destroy + uri: https://api.dnanexus.com/project-FPfBFz80p3bKYK2Q3YV9b2BF/destroy response: - body: {string: '{"id":"project-FP9kQyQ0XFbkB0KJ8Bz7260y"}'} + body: {string: '{"id":"project-FPfBFz80p3bKYK2Q3YV9b2BF"}'} headers: Connection: [keep-alive] Content-Length: ['41'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:43:13 GMT'] + Date: ['Wed, 14 Nov 2018 22:47:34 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593791891-716195] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235651728-759821] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} version: 1 diff --git a/stor/tests/cassettes_py3/TestCopyTree/test_other_obs_to_dx.yaml b/stor_dx/stor_dx/tests/cassettes_py3/TestCopyTree/test_dx_to_other_obs.yaml similarity index 73% rename from stor/tests/cassettes_py3/TestCopyTree/test_other_obs_to_dx.yaml rename to stor_dx/stor_dx/tests/cassettes_py3/TestCopyTree/test_dx_to_other_obs.yaml index e8ed7d57..57a820a0 100644 --- a/stor/tests/cassettes_py3/TestCopyTree/test_other_obs_to_dx.yaml +++ b/stor_dx/stor_dx/tests/cassettes_py3/TestCopyTree/test_dx_to_other_obs.yaml @@ -1,6 +1,6 @@ interactions: - request: - body: '{"name": "TestCopyTree.test_other_obs_to_dx.570148d8"}' + body: '{"name": "TestCopyTree.test_dx_to_other_obs.46d77883"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -22,17 +22,17 @@ interactions: method: POST uri: https://api.dnanexus.com/project/new response: - body: {string: '{"id":"project-FP9kV880GZvGyGF83zZqbVpz"}'} + body: {string: '{"id":"project-FPfBG1j0ffzvF0v02bbj0VgP"}'} headers: Connection: [keep-alive] Content-Length: ['41'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:43:45 GMT'] + Date: ['Wed, 14 Nov 2018 22:47:35 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593825708-962094] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235655095-448228] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -56,19 +56,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kV880GZvGyGF83zZqbVpz/describe + uri: https://api.dnanexus.com/project-FPfBG1j0ffzvF0v02bbj0VgP/describe response: - body: {string: '{"id":"project-FP9kV880GZvGyGF83zZqbVpz","name":"TestCopyTree.test_other_obs_to_dx.570148d8","class":"project","created":1540593825000,"modified":1540593825000,"billTo":"org-counsyl","level":"ADMINISTER","dataUsage":0,"sponsoredDataUsage":0,"region":"aws:us-east-1","summary":"","description":"","protected":false,"restricted":false,"downloadRestricted":false,"containsPHI":false,"createdBy":{"user":"user-akumar_counsyl"},"version":0,"storageCost":0,"pendingTransfer":null,"tags":[],"defaultInstanceType":"mem2_hdd2_x2","archivalState":"live","archivalProgress":null,"totalSponsoredEgressBytes":0,"consumedSponsoredEgressBytes":0,"atSpendingLimit":false}'} + body: {string: '{"id":"project-FPfBG1j0ffzvF0v02bbj0VgP","name":"TestCopyTree.test_dx_to_other_obs.46d77883","class":"project","created":1542235655000,"modified":1542235655000,"billTo":"org-counsyl","level":"ADMINISTER","dataUsage":0,"sponsoredDataUsage":0,"region":"aws:us-east-1","summary":"","description":"","protected":false,"restricted":false,"downloadRestricted":false,"containsPHI":false,"createdBy":{"user":"user-akumar_counsyl"},"version":0,"storageCost":0,"pendingTransfer":null,"tags":[],"defaultInstanceType":"mem2_hdd2_x2","archivalState":"live","archivalProgress":null,"totalSponsoredEgressBytes":0,"consumedSponsoredEgressBytes":0,"atSpendingLimit":false}'} headers: Connection: [keep-alive] Content-Length: ['655'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:43:45 GMT'] + Date: ['Wed, 14 Nov 2018 22:47:36 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593825819-944491] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235656228-145940] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -92,24 +92,24 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kV880GZvGyGF83zZqbVpz/newFolder + uri: https://api.dnanexus.com/project-FPfBG1j0ffzvF0v02bbj0VgP/newFolder response: - body: {string: '{"id":"project-FP9kV880GZvGyGF83zZqbVpz"}'} + body: {string: '{"id":"project-FPfBG1j0ffzvF0v02bbj0VgP"}'} headers: Connection: [keep-alive] Content-Length: ['41'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:43:45 GMT'] + Date: ['Wed, 14 Nov 2018 22:47:37 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593825934-798143] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235657065-520190] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"name": "folder_file.txt", "folder": "/temp_folder", "project": "project-FP9kV880GZvGyGF83zZqbVpz", - "nonce": "b''afa9df1cb29fe9080d8be3b5c191c93b8e896973a0a353b59c421fac999c880f''1540593825.998093"}' + body: '{"name": "folder_file.txt", "folder": "/temp_folder", "project": "project-FPfBG1j0ffzvF0v02bbj0VgP", + "nonce": "b''d4164da6144a06171d3eccba5d962de090a31a3adfe69f5b4f932dd57a26bc89''1542235657.194012"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -131,17 +131,17 @@ interactions: method: POST uri: https://api.dnanexus.com/file/new response: - body: {string: '{"id":"file-FP9kV8Q0GZvGfgvx3zz6pb2Q"}'} + body: {string: '{"id":"file-FPfBG280ffzj4Pz62bV2v5J7"}'} headers: Connection: [keep-alive] Content-Length: ['38'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:43:46 GMT'] + Date: ['Wed, 14 Nov 2018 22:47:37 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593826048-317692] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235657256-525734] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -165,19 +165,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kV880GZvGyGF83zZqbVpz/describe + uri: https://api.dnanexus.com/project-FPfBG1j0ffzvF0v02bbj0VgP/describe response: - body: {string: '{"id":"project-FP9kV880GZvGyGF83zZqbVpz","fileUploadParameters":{"maximumPartSize":5368709120,"minimumPartSize":5242880,"maximumFileSize":5497558138880,"maximumNumParts":10000,"emptyLastPartAllowed":true}}'} + body: {string: '{"id":"project-FPfBG1j0ffzvF0v02bbj0VgP","fileUploadParameters":{"maximumPartSize":5368709120,"minimumPartSize":5242880,"maximumFileSize":5497558138880,"maximumNumParts":10000,"emptyLastPartAllowed":true}}'} headers: Connection: [keep-alive] Content-Length: ['205'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:43:46 GMT'] + Date: ['Wed, 14 Nov 2018 22:47:37 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593826182-602851] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235657469-687977] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -201,19 +201,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kV8Q0GZvGfgvx3zz6pb2Q/upload + uri: https://api.dnanexus.com/file-FPfBG280ffzj4Pz62bV2v5J7/upload response: - body: {string: '{"url":"https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/2c3b/file/open/file-FP9kV8Q0GZvGfgvx3zz6pb2Q/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181026%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181026T224346Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=0556b432e0fb93b0e4fdff7a99b8122e3b092bfe47cbf6eb067c053aec1c8732","headers":{"host":"dnanexus-platform-upload-prod.s3.amazonaws.com","content-type":"binary/octet-stream","x-amz-server-side-encryption":"AES256","content-md5":"c9//V/4k6Ae9T7G8TgfNcw==","content-length":"5"},"expires":1540593946311}'} + body: {string: '{"url":"https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/9cee/file/open/file-FPfBG280ffzj4Pz62bV2v5J7/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181114%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181114T224737Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=c757bdb5452ece80727c05b2a11b33bf24ede73b2bff95d2cd9af45f91c093fb","headers":{"host":"dnanexus-platform-upload-prod.s3.amazonaws.com","content-type":"binary/octet-stream","x-amz-server-side-encryption":"AES256","content-md5":"c9//V/4k6Ae9T7G8TgfNcw==","content-length":"5"},"expires":1542235777616}'} headers: Connection: [keep-alive] Content-Length: ['692'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:43:46 GMT'] + Date: ['Wed, 14 Nov 2018 22:47:37 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593826295-590272] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235657580-442124] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -241,21 +241,21 @@ interactions: : - !!binary | QUVTMjU2 method: PUT - uri: https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/2c3b/file/open/file-FP9kV8Q0GZvGfgvx3zz6pb2Q/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181026%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181026T224346Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=0556b432e0fb93b0e4fdff7a99b8122e3b092bfe47cbf6eb067c053aec1c8732 + uri: https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/9cee/file/open/file-FPfBG280ffzj4Pz62bV2v5J7/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181114%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181114T224737Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=c757bdb5452ece80727c05b2a11b33bf24ede73b2bff95d2cd9af45f91c093fb response: body: {string: ''} headers: Content-Length: ['0'] - Date: ['Fri, 26 Oct 2018 22:43:47 GMT'] + Date: ['Wed, 14 Nov 2018 22:47:38 GMT'] ETag: ['"73dfff57fe24e807bd4fb1bc4e07cd73"'] Server: [AmazonS3] - x-amz-expiration: ['expiry-date="Sat, 17 Nov 2018 00:00:00 GMT", rule-id="3weekpurge"'] - x-amz-id-2: [Bl2UQfPqR9gmLV3k7X/vrgXwDvOTPib4nILwjCywWK1gMP2hxg0bUkyggNqpnLvn8/hGYYwadXc=] - x-amz-request-id: [80C28FCF20312DAE] + x-amz-expiration: ['expiry-date="Thu, 06 Dec 2018 00:00:00 GMT", rule-id="3weekpurge"'] + x-amz-id-2: [esRipGluDUP12twaJAM46abAGQ1PPmFqoMgvJsOYu3GSqrqZpkjz5NI+CUKkKyXW7SUKgV7CsiQ=] + x-amz-request-id: [431EC8808D5DA329] x-amz-server-side-encryption: [AES256] status: {code: 200, message: OK} - request: - body: '{"fields": {"state": true}, "project": "project-FP9kV880GZvGyGF83zZqbVpz"}' + body: '{"fields": {"state": true}, "project": "project-FPfBG1j0ffzvF0v02bbj0VgP"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -275,19 +275,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kV8Q0GZvGfgvx3zz6pb2Q/describe + uri: https://api.dnanexus.com/file-FPfBG280ffzj4Pz62bV2v5J7/describe response: - body: {string: '{"id":"file-FP9kV8Q0GZvGfgvx3zz6pb2Q","state":"open"}'} + body: {string: '{"id":"file-FPfBG280ffzj4Pz62bV2v5J7","state":"open"}'} headers: Connection: [keep-alive] Content-Length: ['53'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:43:46 GMT'] + Date: ['Wed, 14 Nov 2018 22:47:38 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593826830-124398] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235658092-380462] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -311,19 +311,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kV8Q0GZvGfgvx3zz6pb2Q/close + uri: https://api.dnanexus.com/file-FPfBG280ffzj4Pz62bV2v5J7/close response: - body: {string: '{"id":"file-FP9kV8Q0GZvGfgvx3zz6pb2Q"}'} + body: {string: '{"id":"file-FPfBG280ffzj4Pz62bV2v5J7"}'} headers: Connection: [keep-alive] Content-Length: ['38'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:43:46 GMT'] + Date: ['Wed, 14 Nov 2018 22:47:38 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593826945-926800] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235658194-759874] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -347,19 +347,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kV880GZvGyGF83zZqbVpz/destroy + uri: https://api.dnanexus.com/project-FPfBG1j0ffzvF0v02bbj0VgP/destroy response: - body: {string: '{"id":"project-FP9kV880GZvGyGF83zZqbVpz"}'} + body: {string: '{"id":"project-FPfBG1j0ffzvF0v02bbj0VgP"}'} headers: Connection: [keep-alive] Content-Length: ['41'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:43:49 GMT'] + Date: ['Wed, 14 Nov 2018 22:47:41 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593827066-610974] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235658367-301429] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} version: 1 diff --git a/stor/tests/cassettes_py3/TestCopyTree/test_dx_to_same_dx_pass.yaml b/stor_dx/stor_dx/tests/cassettes_py3/TestCopyTree/test_dx_to_same_dx_pass.yaml similarity index 75% rename from stor/tests/cassettes_py3/TestCopyTree/test_dx_to_same_dx_pass.yaml rename to stor_dx/stor_dx/tests/cassettes_py3/TestCopyTree/test_dx_to_same_dx_pass.yaml index 225d1cb4..1f4e0088 100644 --- a/stor/tests/cassettes_py3/TestCopyTree/test_dx_to_same_dx_pass.yaml +++ b/stor_dx/stor_dx/tests/cassettes_py3/TestCopyTree/test_dx_to_same_dx_pass.yaml @@ -1,6 +1,6 @@ interactions: - request: - body: '{"name": "TestCopyTree.test_dx_to_same_dx_pass.a7a52394"}' + body: '{"name": "TestCopyTree.test_dx_to_same_dx_pass.31e4b6e9"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -22,17 +22,17 @@ interactions: method: POST uri: https://api.dnanexus.com/project/new response: - body: {string: '{"id":"project-FP9kV1j0678bYj5j40f25Z6Z"}'} + body: {string: '{"id":"project-FPfBG38002GvF0v02bbj0VgX"}'} headers: Connection: [keep-alive] Content-Length: ['41'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:43:19 GMT'] + Date: ['Wed, 14 Nov 2018 22:47:41 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593799393-531489] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235661468-538340] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -56,19 +56,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kV1j0678bYj5j40f25Z6Z/describe + uri: https://api.dnanexus.com/project-FPfBG38002GvF0v02bbj0VgX/describe response: - body: {string: '{"id":"project-FP9kV1j0678bYj5j40f25Z6Z","name":"TestCopyTree.test_dx_to_same_dx_pass.a7a52394","class":"project","created":1540593799000,"modified":1540593799000,"billTo":"org-counsyl","level":"ADMINISTER","dataUsage":0,"sponsoredDataUsage":0,"region":"aws:us-east-1","summary":"","description":"","protected":false,"restricted":false,"downloadRestricted":false,"containsPHI":false,"createdBy":{"user":"user-akumar_counsyl"},"version":0,"storageCost":0,"pendingTransfer":null,"tags":[],"defaultInstanceType":"mem2_hdd2_x2","archivalState":"live","archivalProgress":null,"totalSponsoredEgressBytes":0,"consumedSponsoredEgressBytes":0,"atSpendingLimit":false}'} + body: {string: '{"id":"project-FPfBG38002GvF0v02bbj0VgX","name":"TestCopyTree.test_dx_to_same_dx_pass.31e4b6e9","class":"project","created":1542235661000,"modified":1542235661000,"billTo":"org-counsyl","level":"ADMINISTER","dataUsage":0,"sponsoredDataUsage":0,"region":"aws:us-east-1","summary":"","description":"","protected":false,"restricted":false,"downloadRestricted":false,"containsPHI":false,"createdBy":{"user":"user-akumar_counsyl"},"version":0,"storageCost":0,"pendingTransfer":null,"tags":[],"defaultInstanceType":"mem2_hdd2_x2","archivalState":"live","archivalProgress":null,"totalSponsoredEgressBytes":0,"consumedSponsoredEgressBytes":0,"atSpendingLimit":false}'} headers: Connection: [keep-alive] Content-Length: ['658'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:43:19 GMT'] + Date: ['Wed, 14 Nov 2018 22:47:41 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593799543-502277] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235661581-805398] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -92,24 +92,24 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kV1j0678bYj5j40f25Z6Z/newFolder + uri: https://api.dnanexus.com/project-FPfBG38002GvF0v02bbj0VgX/newFolder response: - body: {string: '{"id":"project-FP9kV1j0678bYj5j40f25Z6Z"}'} + body: {string: '{"id":"project-FPfBG38002GvF0v02bbj0VgX"}'} headers: Connection: [keep-alive] Content-Length: ['41'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:43:19 GMT'] + Date: ['Wed, 14 Nov 2018 22:47:41 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593799727-311921] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235661731-307785] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"name": "folder_file.txt", "folder": "/temp_folder", "project": "project-FP9kV1j0678bYj5j40f25Z6Z", - "nonce": "b''bd42b8f664b125e450ffe98e0fabb48d0eb38df3aa6dad7c2fcba0aa3446bd10''1540593799.867738"}' + body: '{"name": "folder_file.txt", "folder": "/temp_folder", "project": "project-FPfBG38002GvF0v02bbj0VgX", + "nonce": "b''b117485fa5c8d237c4390912f866f43b485d16d9332c5e92b98e940e9f0a66fd''1542235661.789992"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -131,17 +131,17 @@ interactions: method: POST uri: https://api.dnanexus.com/file/new response: - body: {string: '{"id":"file-FP9kV1j0678k2JG740JK7J2b"}'} + body: {string: '{"id":"file-FPfBG38002Gk59y42bqVv4vK"}'} headers: Connection: [keep-alive] Content-Length: ['38'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:43:20 GMT'] + Date: ['Wed, 14 Nov 2018 22:47:41 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593799920-320594] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235661839-712631] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -165,19 +165,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kV1j0678bYj5j40f25Z6Z/describe + uri: https://api.dnanexus.com/project-FPfBG38002GvF0v02bbj0VgX/describe response: - body: {string: '{"id":"project-FP9kV1j0678bYj5j40f25Z6Z","fileUploadParameters":{"maximumPartSize":5368709120,"minimumPartSize":5242880,"maximumFileSize":5497558138880,"maximumNumParts":10000,"emptyLastPartAllowed":true}}'} + body: {string: '{"id":"project-FPfBG38002GvF0v02bbj0VgX","fileUploadParameters":{"maximumPartSize":5368709120,"minimumPartSize":5242880,"maximumFileSize":5497558138880,"maximumNumParts":10000,"emptyLastPartAllowed":true}}'} headers: Connection: [keep-alive] Content-Length: ['205'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:43:20 GMT'] + Date: ['Wed, 14 Nov 2018 22:47:42 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593800115-225056] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235662001-914295] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -201,19 +201,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kV1j0678k2JG740JK7J2b/upload + uri: https://api.dnanexus.com/file-FPfBG38002Gk59y42bqVv4vK/upload response: - body: {string: '{"url":"https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/0365/file/open/file-FP9kV1j0678k2JG740JK7J2b/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181026%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181026T224320Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=6f1a4943f69a5f6e121224e760f5b38f99f9c42da977c971b64730f0c9ff4dd4","headers":{"host":"dnanexus-platform-upload-prod.s3.amazonaws.com","content-type":"binary/octet-stream","x-amz-server-side-encryption":"AES256","content-md5":"jXd/OF09/siBXSD3SWAm3A==","content-length":"4"},"expires":1540593920322}'} + body: {string: '{"url":"https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/82ea/file/open/file-FPfBG38002Gk59y42bqVv4vK/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181114%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181114T224742Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=a62ef908f8eafad9cc414c9e5c2a17764f64fb3a47d65b3f2157915898610590","headers":{"host":"dnanexus-platform-upload-prod.s3.amazonaws.com","content-type":"binary/octet-stream","x-amz-server-side-encryption":"AES256","content-md5":"jXd/OF09/siBXSD3SWAm3A==","content-length":"4"},"expires":1542235782115}'} headers: Connection: [keep-alive] Content-Length: ['692'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:43:20 GMT'] + Date: ['Wed, 14 Nov 2018 22:47:42 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593800281-541443] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235662101-335800] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -241,21 +241,21 @@ interactions: : - !!binary | QUVTMjU2 method: PUT - uri: https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/0365/file/open/file-FP9kV1j0678k2JG740JK7J2b/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181026%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181026T224320Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=6f1a4943f69a5f6e121224e760f5b38f99f9c42da977c971b64730f0c9ff4dd4 + uri: https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/82ea/file/open/file-FPfBG38002Gk59y42bqVv4vK/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181114%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181114T224742Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=a62ef908f8eafad9cc414c9e5c2a17764f64fb3a47d65b3f2157915898610590 response: body: {string: ''} headers: Content-Length: ['0'] - Date: ['Fri, 26 Oct 2018 22:43:21 GMT'] + Date: ['Wed, 14 Nov 2018 22:47:43 GMT'] ETag: ['"8d777f385d3dfec8815d20f7496026dc"'] Server: [AmazonS3] - x-amz-expiration: ['expiry-date="Sat, 17 Nov 2018 00:00:00 GMT", rule-id="3weekpurge"'] - x-amz-id-2: [wteQSchN9IyYExBtKM+GmMYFselHAcZ2dwLo7V3YsAZhAgQ6YbfVXDKVCOBTHydkit8Jpb1FO98=] - x-amz-request-id: [867CBEACFCCC206D] + x-amz-expiration: ['expiry-date="Thu, 06 Dec 2018 00:00:00 GMT", rule-id="3weekpurge"'] + x-amz-id-2: [1PAN8fFxzdu7LXy7lZ+azC5NEiSQjNpw1SNHcYrekXVT+KCqKNUQzbK1GljP1YgnVFAWzwaM64k=] + x-amz-request-id: [0E9FABAD8C11CDA6] x-amz-server-side-encryption: [AES256] status: {code: 200, message: OK} - request: - body: '{"fields": {"state": true}, "project": "project-FP9kV1j0678bYj5j40f25Z6Z"}' + body: '{"fields": {"state": true}, "project": "project-FPfBG38002GvF0v02bbj0VgX"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -275,19 +275,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kV1j0678k2JG740JK7J2b/describe + uri: https://api.dnanexus.com/file-FPfBG38002Gk59y42bqVv4vK/describe response: - body: {string: '{"id":"file-FP9kV1j0678k2JG740JK7J2b","state":"open"}'} + body: {string: '{"id":"file-FPfBG38002Gk59y42bqVv4vK","state":"open"}'} headers: Connection: [keep-alive] Content-Length: ['53'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:43:20 GMT'] + Date: ['Wed, 14 Nov 2018 22:47:42 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593800878-303519] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235662569-68639] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -311,23 +311,23 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kV1j0678k2JG740JK7J2b/close + uri: https://api.dnanexus.com/file-FPfBG38002Gk59y42bqVv4vK/close response: - body: {string: '{"id":"file-FP9kV1j0678k2JG740JK7J2b"}'} + body: {string: '{"id":"file-FPfBG38002Gk59y42bqVv4vK"}'} headers: Connection: [keep-alive] Content-Length: ['38'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:43:21 GMT'] + Date: ['Wed, 14 Nov 2018 22:47:42 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593801078-982584] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235662671-851073] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"fields": {"state": true}, "project": "project-FP9kV1j0678bYj5j40f25Z6Z"}' + body: '{"fields": {"state": true}, "project": "project-FPfBG38002GvF0v02bbj0VgX"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -347,23 +347,23 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kV1j0678k2JG740JK7J2b/describe + uri: https://api.dnanexus.com/file-FPfBG38002Gk59y42bqVv4vK/describe response: - body: {string: '{"id":"file-FP9kV1j0678k2JG740JK7J2b","state":"closing"}'} + body: {string: '{"id":"file-FPfBG38002Gk59y42bqVv4vK","state":"closing"}'} headers: Connection: [keep-alive] Content-Length: ['56'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:43:21 GMT'] + Date: ['Wed, 14 Nov 2018 22:47:42 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593801265-460941] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235662787-261126] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"fields": {"state": true}, "project": "project-FP9kV1j0678bYj5j40f25Z6Z"}' + body: '{"fields": {"state": true}, "project": "project-FPfBG38002GvF0v02bbj0VgX"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -383,23 +383,23 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kV1j0678k2JG740JK7J2b/describe + uri: https://api.dnanexus.com/file-FPfBG38002Gk59y42bqVv4vK/describe response: - body: {string: '{"id":"file-FP9kV1j0678k2JG740JK7J2b","state":"closed"}'} + body: {string: '{"id":"file-FPfBG38002Gk59y42bqVv4vK","state":"closed"}'} headers: Connection: [keep-alive] Content-Length: ['55'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:43:23 GMT'] + Date: ['Wed, 14 Nov 2018 22:47:44 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593803432-502190] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235664900-154291] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"name": "TestCopyTree.test_dx_to_same_dx_pass.a7a52394", "level": "VIEW", + body: '{"name": "TestCopyTree.test_dx_to_same_dx_pass.31e4b6e9", "level": "VIEW", "limit": 2}' headers: ? !!binary | @@ -422,17 +422,17 @@ interactions: method: POST uri: https://api.dnanexus.com/system/findProjects response: - body: {string: '{"results":[{"id":"project-FP9kV1j0678bYj5j40f25Z6Z","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} + body: {string: '{"results":[{"id":"project-FPfBG38002GvF0v02bbj0VgX","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} headers: Connection: [keep-alive] Content-Length: ['147'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:43:23 GMT'] + Date: ['Wed, 14 Nov 2018 22:47:45 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593803646-183871] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235665016-427217] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -457,23 +457,23 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kV1j0678bYj5j40f25Z6Z/listFolder + uri: https://api.dnanexus.com/project-FPfBG38002GvF0v02bbj0VgX/listFolder response: body: {string: '{"folders":[]}'} headers: Connection: [keep-alive] Content-Length: ['14'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:43:23 GMT'] + Date: ['Wed, 14 Nov 2018 22:47:45 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593803916-58182] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235665145-115362] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"name": "TestCopyTree.test_dx_to_same_dx_pass.a7a52394", "level": "VIEW", + body: '{"name": "TestCopyTree.test_dx_to_same_dx_pass.31e4b6e9", "level": "VIEW", "limit": 2}' headers: ? !!binary | @@ -496,21 +496,21 @@ interactions: method: POST uri: https://api.dnanexus.com/system/findProjects response: - body: {string: '{"results":[{"id":"project-FP9kV1j0678bYj5j40f25Z6Z","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} + body: {string: '{"results":[{"id":"project-FPfBG38002GvF0v02bbj0VgX","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} headers: Connection: [keep-alive] Content-Length: ['147'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:43:24 GMT'] + Date: ['Wed, 14 Nov 2018 22:47:45 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593804093-38129] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235665248-891931] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"objects": [{"name": "temp_folder", "folder": "/", "project": "project-FP9kV1j0678bYj5j40f25Z6Z", + body: '{"objects": [{"name": "temp_folder", "folder": "/", "project": "project-FPfBG38002GvF0v02bbj0VgX", "batchsize": 2}]}' headers: ? !!binary | @@ -538,12 +538,12 @@ interactions: Connection: [keep-alive] Content-Length: ['16'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:43:24 GMT'] + Date: ['Wed, 14 Nov 2018 22:47:45 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593804319-683865] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235665368-550647] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -568,19 +568,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kV1j0678bYj5j40f25Z6Z/listFolder + uri: https://api.dnanexus.com/project-FPfBG38002GvF0v02bbj0VgX/listFolder response: body: {string: '{"folders":[]}'} headers: Connection: [keep-alive] Content-Length: ['14'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:43:24 GMT'] + Date: ['Wed, 14 Nov 2018 22:47:45 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593804477-868025] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235665465-963594] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -604,19 +604,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kV1j0678bYj5j40f25Z6Z/destroy + uri: https://api.dnanexus.com/project-FPfBG38002GvF0v02bbj0VgX/destroy response: - body: {string: '{"id":"project-FP9kV1j0678bYj5j40f25Z6Z"}'} + body: {string: '{"id":"project-FPfBG38002GvF0v02bbj0VgX"}'} headers: Connection: [keep-alive] Content-Length: ['41'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:43:27 GMT'] + Date: ['Wed, 14 Nov 2018 22:47:48 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593804649-33112] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235665563-730584] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} version: 1 diff --git a/stor/tests/cassettes_py3/TestCopyTree/test_move_diff_project_fail.yaml b/stor_dx/stor_dx/tests/cassettes_py3/TestCopyTree/test_move_diff_project_fail.yaml similarity index 74% rename from stor/tests/cassettes_py3/TestCopyTree/test_move_diff_project_fail.yaml rename to stor_dx/stor_dx/tests/cassettes_py3/TestCopyTree/test_move_diff_project_fail.yaml index 57036f87..d967502c 100644 --- a/stor/tests/cassettes_py3/TestCopyTree/test_move_diff_project_fail.yaml +++ b/stor_dx/stor_dx/tests/cassettes_py3/TestCopyTree/test_move_diff_project_fail.yaml @@ -1,6 +1,6 @@ interactions: - request: - body: '{"name": "TestCopyTree.test_move_diff_project_fail.db07db98"}' + body: '{"name": "TestCopyTree.test_move_diff_project_fail.1a869753"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -22,17 +22,17 @@ interactions: method: POST uri: https://api.dnanexus.com/project/new response: - body: {string: '{"id":"project-FP9kV3j050JGPZk8417zyZPp"}'} + body: {string: '{"id":"project-FPfBG580gKZ04YP22fGQX3VX"}'} headers: Connection: [keep-alive] Content-Length: ['41'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:43:27 GMT'] + Date: ['Wed, 14 Nov 2018 22:47:49 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593807449-879777] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235669209-226367] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -56,19 +56,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kV3j050JGPZk8417zyZPp/describe + uri: https://api.dnanexus.com/project-FPfBG580gKZ04YP22fGQX3VX/describe response: - body: {string: '{"id":"project-FP9kV3j050JGPZk8417zyZPp","name":"TestCopyTree.test_move_diff_project_fail.db07db98","class":"project","created":1540593807000,"modified":1540593807000,"billTo":"org-counsyl","level":"ADMINISTER","dataUsage":0,"sponsoredDataUsage":0,"region":"aws:us-east-1","summary":"","description":"","protected":false,"restricted":false,"downloadRestricted":false,"containsPHI":false,"createdBy":{"user":"user-akumar_counsyl"},"version":0,"storageCost":0,"pendingTransfer":null,"tags":[],"defaultInstanceType":"mem2_hdd2_x2","archivalState":"live","archivalProgress":null,"totalSponsoredEgressBytes":0,"consumedSponsoredEgressBytes":0,"atSpendingLimit":false}'} + body: {string: '{"id":"project-FPfBG580gKZ04YP22fGQX3VX","name":"TestCopyTree.test_move_diff_project_fail.1a869753","class":"project","created":1542235669000,"modified":1542235669000,"billTo":"org-counsyl","level":"ADMINISTER","dataUsage":0,"sponsoredDataUsage":0,"region":"aws:us-east-1","summary":"","description":"","protected":false,"restricted":false,"downloadRestricted":false,"containsPHI":false,"createdBy":{"user":"user-akumar_counsyl"},"version":0,"storageCost":0,"pendingTransfer":null,"tags":[],"defaultInstanceType":"mem2_hdd2_x2","archivalState":"live","archivalProgress":null,"totalSponsoredEgressBytes":0,"consumedSponsoredEgressBytes":0,"atSpendingLimit":false}'} headers: Connection: [keep-alive] Content-Length: ['662'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:43:27 GMT'] + Date: ['Wed, 14 Nov 2018 22:47:49 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593807611-510049] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235669317-517846] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -92,24 +92,24 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kV3j050JGPZk8417zyZPp/newFolder + uri: https://api.dnanexus.com/project-FPfBG580gKZ04YP22fGQX3VX/newFolder response: - body: {string: '{"id":"project-FP9kV3j050JGPZk8417zyZPp"}'} + body: {string: '{"id":"project-FPfBG580gKZ04YP22fGQX3VX"}'} headers: Connection: [keep-alive] Content-Length: ['41'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:43:27 GMT'] + Date: ['Wed, 14 Nov 2018 22:47:49 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593807734-724315] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235669440-157137] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"name": "temp_folderfolder_file.txt", "folder": "/", "project": "project-FP9kV3j050JGPZk8417zyZPp", - "nonce": "b''ca521a4b53b553278ca771faf2f20534e34e72a95148305a67125005142aab66''1540593807.835161"}' + body: '{"name": "temp_folderfolder_file.txt", "folder": "/", "project": "project-FPfBG580gKZ04YP22fGQX3VX", + "nonce": "b''ed8ccb0e546e12d6ac3234e7d1ae3df5f9905221f11d92eeffbdf81dfb4efc83''1542235669.488498"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -131,17 +131,17 @@ interactions: method: POST uri: https://api.dnanexus.com/file/new response: - body: {string: '{"id":"file-FP9kV3j050JGPZk8417zyZPq"}'} + body: {string: '{"id":"file-FPfBG580gKZ959y42bqVv4vQ"}'} headers: Connection: [keep-alive] Content-Length: ['38'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:43:27 GMT'] + Date: ['Wed, 14 Nov 2018 22:47:49 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593807893-469858] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235669536-160817] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -165,19 +165,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kV3j050JGPZk8417zyZPp/describe + uri: https://api.dnanexus.com/project-FPfBG580gKZ04YP22fGQX3VX/describe response: - body: {string: '{"id":"project-FP9kV3j050JGPZk8417zyZPp","fileUploadParameters":{"maximumPartSize":5368709120,"minimumPartSize":5242880,"maximumFileSize":5497558138880,"maximumNumParts":10000,"emptyLastPartAllowed":true}}'} + body: {string: '{"id":"project-FPfBG580gKZ04YP22fGQX3VX","fileUploadParameters":{"maximumPartSize":5368709120,"minimumPartSize":5242880,"maximumFileSize":5497558138880,"maximumNumParts":10000,"emptyLastPartAllowed":true}}'} headers: Connection: [keep-alive] Content-Length: ['205'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:43:28 GMT'] + Date: ['Wed, 14 Nov 2018 22:47:49 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593808062-121028] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235669663-663543] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -201,19 +201,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kV3j050JGPZk8417zyZPq/upload + uri: https://api.dnanexus.com/file-FPfBG580gKZ959y42bqVv4vQ/upload response: - body: {string: '{"url":"https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/f217/file/open/file-FP9kV3j050JGPZk8417zyZPq/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181026%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181026T224328Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=5bfde60f6e46ae2dce5799e62cb02696cdf7ab920312033afe5bafd9493b8907","headers":{"host":"dnanexus-platform-upload-prod.s3.amazonaws.com","content-type":"binary/octet-stream","x-amz-server-side-encryption":"AES256","content-md5":"jXd/OF09/siBXSD3SWAm3A==","content-length":"4"},"expires":1540593928183}'} + body: {string: '{"url":"https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/2e4c/file/open/file-FPfBG580gKZ959y42bqVv4vQ/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181114%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181114T224749Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=d15f51d88dcf5fecf687c96946465a28a2bf0b129385f15fafc047fa973f3c2b","headers":{"host":"dnanexus-platform-upload-prod.s3.amazonaws.com","content-type":"binary/octet-stream","x-amz-server-side-encryption":"AES256","content-md5":"jXd/OF09/siBXSD3SWAm3A==","content-length":"4"},"expires":1542235789791}'} headers: Connection: [keep-alive] Content-Length: ['692'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:43:28 GMT'] + Date: ['Wed, 14 Nov 2018 22:47:49 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593808169-682209] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235669780-725979] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -241,21 +241,21 @@ interactions: : - !!binary | QUVTMjU2 method: PUT - uri: https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/f217/file/open/file-FP9kV3j050JGPZk8417zyZPq/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181026%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181026T224328Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=5bfde60f6e46ae2dce5799e62cb02696cdf7ab920312033afe5bafd9493b8907 + uri: https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/2e4c/file/open/file-FPfBG580gKZ959y42bqVv4vQ/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181114%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181114T224749Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=d15f51d88dcf5fecf687c96946465a28a2bf0b129385f15fafc047fa973f3c2b response: body: {string: ''} headers: Content-Length: ['0'] - Date: ['Fri, 26 Oct 2018 22:43:29 GMT'] + Date: ['Wed, 14 Nov 2018 22:47:51 GMT'] ETag: ['"8d777f385d3dfec8815d20f7496026dc"'] Server: [AmazonS3] - x-amz-expiration: ['expiry-date="Sat, 17 Nov 2018 00:00:00 GMT", rule-id="3weekpurge"'] - x-amz-id-2: [YgCPOKy4yTXXotxCacsQEnEJmuuXWLi4TUd1o093MV44d4jfUfJ6+vfYyLPMUM18lYRQwb6yzSA=] - x-amz-request-id: [781F0E9ECF19B42D] + x-amz-expiration: ['expiry-date="Thu, 06 Dec 2018 00:00:00 GMT", rule-id="3weekpurge"'] + x-amz-id-2: [5wL2cSVwp5SOeke7SMIPiR9LZ8toTdOxbQ5cDiPkrrFj1CnX8k7vI25NzZFMGMilnfIMc+gTgIo=] + x-amz-request-id: [3A7B44CF34F7438D] x-amz-server-side-encryption: [AES256] status: {code: 200, message: OK} - request: - body: '{"fields": {"state": true}, "project": "project-FP9kV3j050JGPZk8417zyZPp"}' + body: '{"fields": {"state": true}, "project": "project-FPfBG580gKZ04YP22fGQX3VX"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -275,19 +275,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kV3j050JGPZk8417zyZPq/describe + uri: https://api.dnanexus.com/file-FPfBG580gKZ959y42bqVv4vQ/describe response: - body: {string: '{"id":"file-FP9kV3j050JGPZk8417zyZPq","state":"open"}'} + body: {string: '{"id":"file-FPfBG580gKZ959y42bqVv4vQ","state":"open"}'} headers: Connection: [keep-alive] Content-Length: ['53'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:43:28 GMT'] + Date: ['Wed, 14 Nov 2018 22:47:50 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593808802-4158] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235670368-742000] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -311,23 +311,23 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kV3j050JGPZk8417zyZPq/close + uri: https://api.dnanexus.com/file-FPfBG580gKZ959y42bqVv4vQ/close response: - body: {string: '{"id":"file-FP9kV3j050JGPZk8417zyZPq"}'} + body: {string: '{"id":"file-FPfBG580gKZ959y42bqVv4vQ"}'} headers: Connection: [keep-alive] Content-Length: ['38'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:43:28 GMT'] + Date: ['Wed, 14 Nov 2018 22:47:50 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593808912-606019] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235670473-841912] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"fields": {"state": true}, "project": "project-FP9kV3j050JGPZk8417zyZPp"}' + body: '{"fields": {"state": true}, "project": "project-FPfBG580gKZ04YP22fGQX3VX"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -347,23 +347,23 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kV3j050JGPZk8417zyZPq/describe + uri: https://api.dnanexus.com/file-FPfBG580gKZ959y42bqVv4vQ/describe response: - body: {string: '{"id":"file-FP9kV3j050JGPZk8417zyZPq","state":"closing"}'} + body: {string: '{"id":"file-FPfBG580gKZ959y42bqVv4vQ","state":"closing"}'} headers: Connection: [keep-alive] Content-Length: ['56'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:43:29 GMT'] + Date: ['Wed, 14 Nov 2018 22:47:50 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593809035-878639] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235670591-569088] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"fields": {"state": true}, "project": "project-FP9kV3j050JGPZk8417zyZPp"}' + body: '{"fields": {"state": true}, "project": "project-FPfBG580gKZ04YP22fGQX3VX"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -383,19 +383,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kV3j050JGPZk8417zyZPq/describe + uri: https://api.dnanexus.com/file-FPfBG580gKZ959y42bqVv4vQ/describe response: - body: {string: '{"id":"file-FP9kV3j050JGPZk8417zyZPq","state":"closed"}'} + body: {string: '{"id":"file-FPfBG580gKZ959y42bqVv4vQ","state":"closed"}'} headers: Connection: [keep-alive] Content-Length: ['55'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:43:31 GMT'] + Date: ['Wed, 14 Nov 2018 22:47:52 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593811154-632601] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235672696-693367] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -421,17 +421,17 @@ interactions: method: POST uri: https://api.dnanexus.com/project/new response: - body: {string: '{"id":"project-FP9kV4j04F9bYj5j40f25Z6g"}'} + body: {string: '{"id":"project-FPfBG6805gkj4Pz62bV2v5J9"}'} headers: Connection: [keep-alive] Content-Length: ['41'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:43:31 GMT'] + Date: ['Wed, 14 Nov 2018 22:47:53 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593811276-464085] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235673086-72997] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -458,21 +458,21 @@ interactions: method: POST uri: https://api.dnanexus.com/system/findProjects response: - body: {string: '{"results":[{"id":"project-FP9kV4j04F9bYj5j40f25Z6g","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} + body: {string: '{"results":[{"id":"project-FPfBG6805gkj4Pz62bV2v5J9","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} headers: Connection: [keep-alive] Content-Length: ['147'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:43:31 GMT'] + Date: ['Wed, 14 Nov 2018 22:47:53 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593811406-136500] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235673253-549704] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"name": "TestCopyTree.test_move_diff_project_fail.db07db98", "level": + body: '{"name": "TestCopyTree.test_move_diff_project_fail.1a869753", "level": "VIEW", "limit": 2}' headers: ? !!binary | @@ -495,17 +495,17 @@ interactions: method: POST uri: https://api.dnanexus.com/system/findProjects response: - body: {string: '{"results":[{"id":"project-FP9kV3j050JGPZk8417zyZPp","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} + body: {string: '{"results":[{"id":"project-FPfBG580gKZ04YP22fGQX3VX","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} headers: Connection: [keep-alive] Content-Length: ['147'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:43:31 GMT'] + Date: ['Wed, 14 Nov 2018 22:47:53 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593811534-81912] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235673429-730107] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -529,19 +529,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kV4j04F9bYj5j40f25Z6g/destroy + uri: https://api.dnanexus.com/project-FPfBG6805gkj4Pz62bV2v5J9/destroy response: - body: {string: '{"id":"project-FP9kV4j04F9bYj5j40f25Z6g"}'} + body: {string: '{"id":"project-FPfBG6805gkj4Pz62bV2v5J9"}'} headers: Connection: [keep-alive] Content-Length: ['41'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:43:33 GMT'] + Date: ['Wed, 14 Nov 2018 22:47:56 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593811677-384538] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235673552-626752] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -565,19 +565,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kV3j050JGPZk8417zyZPp/destroy + uri: https://api.dnanexus.com/project-FPfBG580gKZ04YP22fGQX3VX/destroy response: - body: {string: '{"id":"project-FP9kV3j050JGPZk8417zyZPp"}'} + body: {string: '{"id":"project-FPfBG580gKZ04YP22fGQX3VX"}'} headers: Connection: [keep-alive] Content-Length: ['41'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:43:36 GMT'] + Date: ['Wed, 14 Nov 2018 22:47:59 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593814003-585594] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235676302-93423] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} version: 1 diff --git a/stor/tests/cassettes_py3/TestCopyTree/test_move_root_within_project_fail.yaml b/stor_dx/stor_dx/tests/cassettes_py3/TestCopyTree/test_move_root_within_project_fail.yaml similarity index 74% rename from stor/tests/cassettes_py3/TestCopyTree/test_move_root_within_project_fail.yaml rename to stor_dx/stor_dx/tests/cassettes_py3/TestCopyTree/test_move_root_within_project_fail.yaml index 44b06898..5d2e84f6 100644 --- a/stor/tests/cassettes_py3/TestCopyTree/test_move_root_within_project_fail.yaml +++ b/stor_dx/stor_dx/tests/cassettes_py3/TestCopyTree/test_move_root_within_project_fail.yaml @@ -1,6 +1,6 @@ interactions: - request: - body: '{"name": "TestCopyTree.test_move_root_within_project_fail.bb3fef67"}' + body: '{"name": "TestCopyTree.test_move_root_within_project_fail.9fa7ee85"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -22,17 +22,17 @@ interactions: method: POST uri: https://api.dnanexus.com/project/new response: - body: {string: '{"id":"project-FP9kV600b3pGyGF83zZqbVpy"}'} + body: {string: '{"id":"project-FPfBG7j0bzbvF0v02bbj0VjB"}'} headers: Connection: [keep-alive] Content-Length: ['41'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:43:36 GMT'] + Date: ['Wed, 14 Nov 2018 22:47:59 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593816585-658211] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235679622-895932] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -56,19 +56,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kV600b3pGyGF83zZqbVpy/describe + uri: https://api.dnanexus.com/project-FPfBG7j0bzbvF0v02bbj0VjB/describe response: - body: {string: '{"id":"project-FP9kV600b3pGyGF83zZqbVpy","name":"TestCopyTree.test_move_root_within_project_fail.bb3fef67","class":"project","created":1540593816000,"modified":1540593816000,"billTo":"org-counsyl","level":"ADMINISTER","dataUsage":0,"sponsoredDataUsage":0,"region":"aws:us-east-1","summary":"","description":"","protected":false,"restricted":false,"downloadRestricted":false,"containsPHI":false,"createdBy":{"user":"user-akumar_counsyl"},"version":0,"storageCost":0,"pendingTransfer":null,"tags":[],"defaultInstanceType":"mem2_hdd2_x2","archivalState":"live","archivalProgress":null,"totalSponsoredEgressBytes":0,"consumedSponsoredEgressBytes":0,"atSpendingLimit":false}'} + body: {string: '{"id":"project-FPfBG7j0bzbvF0v02bbj0VjB","name":"TestCopyTree.test_move_root_within_project_fail.9fa7ee85","class":"project","created":1542235679000,"modified":1542235679000,"billTo":"org-counsyl","level":"ADMINISTER","dataUsage":0,"sponsoredDataUsage":0,"region":"aws:us-east-1","summary":"","description":"","protected":false,"restricted":false,"downloadRestricted":false,"containsPHI":false,"createdBy":{"user":"user-akumar_counsyl"},"version":0,"storageCost":0,"pendingTransfer":null,"tags":[],"defaultInstanceType":"mem2_hdd2_x2","archivalState":"live","archivalProgress":null,"totalSponsoredEgressBytes":0,"consumedSponsoredEgressBytes":0,"atSpendingLimit":false}'} headers: Connection: [keep-alive] Content-Length: ['669'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:43:36 GMT'] + Date: ['Wed, 14 Nov 2018 22:47:59 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593816707-881598] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235679804-759371] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -92,24 +92,24 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kV600b3pGyGF83zZqbVpy/newFolder + uri: https://api.dnanexus.com/project-FPfBG7j0bzbvF0v02bbj0VjB/newFolder response: - body: {string: '{"id":"project-FP9kV600b3pGyGF83zZqbVpy"}'} + body: {string: '{"id":"project-FPfBG7j0bzbvF0v02bbj0VjB"}'} headers: Connection: [keep-alive] Content-Length: ['41'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:43:36 GMT'] + Date: ['Wed, 14 Nov 2018 22:48:00 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593816828-794080] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235679994-879247] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"name": "folder_file.txt", "folder": "/temp_folder", "project": "project-FP9kV600b3pGyGF83zZqbVpy", - "nonce": "b''d3867f302747002d4e118de906993867fa3c94118351a7163598042fbb297104''1540593816.895987"}' + body: '{"name": "folder_file.txt", "folder": "/temp_folder", "project": "project-FPfBG7j0bzbvF0v02bbj0VjB", + "nonce": "b''b3c9e99d10a6e4e4f3ec297b502e47920d6523daf207051142165dcc1ae625f0''1542235680.121701"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -131,17 +131,17 @@ interactions: method: POST uri: https://api.dnanexus.com/file/new response: - body: {string: '{"id":"file-FP9kV600b3p26vXb405Q2KfQ"}'} + body: {string: '{"id":"file-FPfBG800bzbZjFpj2b90PG6J"}'} headers: Connection: [keep-alive] Content-Length: ['38'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:43:37 GMT'] + Date: ['Wed, 14 Nov 2018 22:48:00 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593816948-768904] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235680170-729294] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -165,19 +165,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kV600b3pGyGF83zZqbVpy/describe + uri: https://api.dnanexus.com/project-FPfBG7j0bzbvF0v02bbj0VjB/describe response: - body: {string: '{"id":"project-FP9kV600b3pGyGF83zZqbVpy","fileUploadParameters":{"maximumPartSize":5368709120,"minimumPartSize":5242880,"maximumFileSize":5497558138880,"maximumNumParts":10000,"emptyLastPartAllowed":true}}'} + body: {string: '{"id":"project-FPfBG7j0bzbvF0v02bbj0VjB","fileUploadParameters":{"maximumPartSize":5368709120,"minimumPartSize":5242880,"maximumFileSize":5497558138880,"maximumNumParts":10000,"emptyLastPartAllowed":true}}'} headers: Connection: [keep-alive] Content-Length: ['205'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:43:37 GMT'] + Date: ['Wed, 14 Nov 2018 22:48:00 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593817112-462713] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235680350-533451] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -201,19 +201,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kV600b3p26vXb405Q2KfQ/upload + uri: https://api.dnanexus.com/file-FPfBG800bzbZjFpj2b90PG6J/upload response: - body: {string: '{"url":"https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/6545/file/open/file-FP9kV600b3p26vXb405Q2KfQ/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181026%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181026T224337Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=ac024a8606d571be4d0341cc45b994891e09249e053fa91be833a6fa630ee5c0","headers":{"host":"dnanexus-platform-upload-prod.s3.amazonaws.com","content-type":"binary/octet-stream","x-amz-server-side-encryption":"AES256","content-md5":"c9//V/4k6Ae9T7G8TgfNcw==","content-length":"5"},"expires":1540593937247}'} + body: {string: '{"url":"https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/fb59/file/open/file-FPfBG800bzbZjFpj2b90PG6J/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181114%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181114T224800Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=7540e99f59f454b80a7c7fe0bbb2b44987a01a0786bac24cca3e01476103b5ad","headers":{"host":"dnanexus-platform-upload-prod.s3.amazonaws.com","content-type":"binary/octet-stream","x-amz-server-side-encryption":"AES256","content-md5":"c9//V/4k6Ae9T7G8TgfNcw==","content-length":"5"},"expires":1542235800600}'} headers: Connection: [keep-alive] Content-Length: ['692'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:43:37 GMT'] + Date: ['Wed, 14 Nov 2018 22:48:00 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593817234-412263] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235680588-679761] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -241,21 +241,21 @@ interactions: : - !!binary | QUVTMjU2 method: PUT - uri: https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/6545/file/open/file-FP9kV600b3p26vXb405Q2KfQ/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181026%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181026T224337Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=ac024a8606d571be4d0341cc45b994891e09249e053fa91be833a6fa630ee5c0 + uri: https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/fb59/file/open/file-FPfBG800bzbZjFpj2b90PG6J/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181114%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181114T224800Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=7540e99f59f454b80a7c7fe0bbb2b44987a01a0786bac24cca3e01476103b5ad response: body: {string: ''} headers: Content-Length: ['0'] - Date: ['Fri, 26 Oct 2018 22:43:38 GMT'] + Date: ['Wed, 14 Nov 2018 22:48:02 GMT'] ETag: ['"73dfff57fe24e807bd4fb1bc4e07cd73"'] Server: [AmazonS3] - x-amz-expiration: ['expiry-date="Sat, 17 Nov 2018 00:00:00 GMT", rule-id="3weekpurge"'] - x-amz-id-2: [aITqOchtyex7GrFtAbRD8yi66UFd3mnUl464DuluBOQHVg1qbxonVVRGiibo+ymlMqNhumnVJOA=] - x-amz-request-id: [01B868BCCAC08E05] + x-amz-expiration: ['expiry-date="Thu, 06 Dec 2018 00:00:00 GMT", rule-id="3weekpurge"'] + x-amz-id-2: [Fi3bkzdBVCcAaCAqFsqQw+B2QpqNfq76HzKSv+pBjt67mNhBdbJAMs2UWLdsH3HulfBmzK6zVhc=] + x-amz-request-id: [58894C1320ABC996] x-amz-server-side-encryption: [AES256] status: {code: 200, message: OK} - request: - body: '{"fields": {"state": true}, "project": "project-FP9kV600b3pGyGF83zZqbVpy"}' + body: '{"fields": {"state": true}, "project": "project-FPfBG7j0bzbvF0v02bbj0VjB"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -275,19 +275,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kV600b3p26vXb405Q2KfQ/describe + uri: https://api.dnanexus.com/file-FPfBG800bzbZjFpj2b90PG6J/describe response: - body: {string: '{"id":"file-FP9kV600b3p26vXb405Q2KfQ","state":"open"}'} + body: {string: '{"id":"file-FPfBG800bzbZjFpj2b90PG6J","state":"open"}'} headers: Connection: [keep-alive] Content-Length: ['53'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:43:37 GMT'] + Date: ['Wed, 14 Nov 2018 22:48:01 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593817752-118339] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235681152-977854] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -311,23 +311,23 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kV600b3p26vXb405Q2KfQ/close + uri: https://api.dnanexus.com/file-FPfBG800bzbZjFpj2b90PG6J/close response: - body: {string: '{"id":"file-FP9kV600b3p26vXb405Q2KfQ"}'} + body: {string: '{"id":"file-FPfBG800bzbZjFpj2b90PG6J"}'} headers: Connection: [keep-alive] Content-Length: ['38'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:43:37 GMT'] + Date: ['Wed, 14 Nov 2018 22:48:01 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593817864-924932] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235681251-136584] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"name": "TestCopyTree.test_move_root_within_project_fail.bb3fef67", "level": + body: '{"name": "TestCopyTree.test_move_root_within_project_fail.9fa7ee85", "level": "VIEW", "limit": 2}' headers: ? !!binary | @@ -350,21 +350,21 @@ interactions: method: POST uri: https://api.dnanexus.com/system/findProjects response: - body: {string: '{"results":[{"id":"project-FP9kV600b3pGyGF83zZqbVpy","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} + body: {string: '{"results":[{"id":"project-FPfBG7j0bzbvF0v02bbj0VjB","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} headers: Connection: [keep-alive] Content-Length: ['147'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:43:38 GMT'] + Date: ['Wed, 14 Nov 2018 22:48:01 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593817994-481] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235681375-162431] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"name": "TestCopyTree.test_move_root_within_project_fail.bb3fef67", "level": + body: '{"name": "TestCopyTree.test_move_root_within_project_fail.9fa7ee85", "level": "VIEW", "limit": 2}' headers: ? !!binary | @@ -387,17 +387,17 @@ interactions: method: POST uri: https://api.dnanexus.com/system/findProjects response: - body: {string: '{"results":[{"id":"project-FP9kV600b3pGyGF83zZqbVpy","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} + body: {string: '{"results":[{"id":"project-FPfBG7j0bzbvF0v02bbj0VjB","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} headers: Connection: [keep-alive] Content-Length: ['147'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:43:38 GMT'] + Date: ['Wed, 14 Nov 2018 22:48:01 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593818135-214210] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235681489-101315] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -421,19 +421,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kV600b3pGyGF83zZqbVpy/destroy + uri: https://api.dnanexus.com/project-FPfBG7j0bzbvF0v02bbj0VjB/destroy response: - body: {string: '{"id":"project-FP9kV600b3pGyGF83zZqbVpy"}'} + body: {string: '{"id":"project-FPfBG7j0bzbvF0v02bbj0VjB"}'} headers: Connection: [keep-alive] Content-Length: ['41'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:43:40 GMT'] + Date: ['Wed, 14 Nov 2018 22:48:05 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593818266-446308] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235681607-592538] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} version: 1 diff --git a/stor/tests/cassettes_py3/TestCopyTree/test_nonexistent_dir.yaml b/stor_dx/stor_dx/tests/cassettes_py3/TestCopyTree/test_nonexistent_dir.yaml similarity index 74% rename from stor/tests/cassettes_py3/TestCopyTree/test_nonexistent_dir.yaml rename to stor_dx/stor_dx/tests/cassettes_py3/TestCopyTree/test_nonexistent_dir.yaml index 954e9539..124fab31 100644 --- a/stor/tests/cassettes_py3/TestCopyTree/test_nonexistent_dir.yaml +++ b/stor_dx/stor_dx/tests/cassettes_py3/TestCopyTree/test_nonexistent_dir.yaml @@ -1,6 +1,6 @@ interactions: - request: - body: '{"name": "TestCopyTree.test_nonexistent_dir.0010d2e2"}' + body: '{"name": "TestCopyTree.test_nonexistent_dir.d731578b"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -22,17 +22,17 @@ interactions: method: POST uri: https://api.dnanexus.com/project/new response: - body: {string: '{"id":"project-FP9kV780pXpvPZk8417zyZQ1"}'} + body: {string: '{"id":"project-FPfBG980zf2ZjFpj2b90PG6P"}'} headers: Connection: [keep-alive] Content-Length: ['41'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:43:41 GMT'] + Date: ['Wed, 14 Nov 2018 22:48:05 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593821008-449983] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235685525-454696] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -56,19 +56,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kV780pXpvPZk8417zyZQ1/describe + uri: https://api.dnanexus.com/project-FPfBG980zf2ZjFpj2b90PG6P/describe response: - body: {string: '{"id":"project-FP9kV780pXpvPZk8417zyZQ1","name":"TestCopyTree.test_nonexistent_dir.0010d2e2","class":"project","created":1540593821000,"modified":1540593821000,"billTo":"org-counsyl","level":"ADMINISTER","dataUsage":0,"sponsoredDataUsage":0,"region":"aws:us-east-1","summary":"","description":"","protected":false,"restricted":false,"downloadRestricted":false,"containsPHI":false,"createdBy":{"user":"user-akumar_counsyl"},"version":0,"storageCost":0,"pendingTransfer":null,"tags":[],"defaultInstanceType":"mem2_hdd2_x2","archivalState":"live","archivalProgress":null,"totalSponsoredEgressBytes":0,"consumedSponsoredEgressBytes":0,"atSpendingLimit":false}'} + body: {string: '{"id":"project-FPfBG980zf2ZjFpj2b90PG6P","name":"TestCopyTree.test_nonexistent_dir.d731578b","class":"project","created":1542235685000,"modified":1542235685000,"billTo":"org-counsyl","level":"ADMINISTER","dataUsage":0,"sponsoredDataUsage":0,"region":"aws:us-east-1","summary":"","description":"","protected":false,"restricted":false,"downloadRestricted":false,"containsPHI":false,"createdBy":{"user":"user-akumar_counsyl"},"version":0,"storageCost":0,"pendingTransfer":null,"tags":[],"defaultInstanceType":"mem2_hdd2_x2","archivalState":"live","archivalProgress":null,"totalSponsoredEgressBytes":0,"consumedSponsoredEgressBytes":0,"atSpendingLimit":false}'} headers: Connection: [keep-alive] Content-Length: ['655'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:43:41 GMT'] + Date: ['Wed, 14 Nov 2018 22:48:05 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593821152-429060] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235685671-348561] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -92,24 +92,24 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kV780pXpvPZk8417zyZQ1/newFolder + uri: https://api.dnanexus.com/project-FPfBG980zf2ZjFpj2b90PG6P/newFolder response: - body: {string: '{"id":"project-FP9kV780pXpvPZk8417zyZQ1"}'} + body: {string: '{"id":"project-FPfBG980zf2ZjFpj2b90PG6P"}'} headers: Connection: [keep-alive] Content-Length: ['41'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:43:41 GMT'] + Date: ['Wed, 14 Nov 2018 22:48:05 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593821277-706859] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235685785-731666] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"name": "folder_file.txt", "folder": "/temp_folder", "project": "project-FP9kV780pXpvPZk8417zyZQ1", - "nonce": "b''1f7270052f685ffaae49bfeaec1346645d035113b50e211602c4fd3e3b6d309a''1540593821.350591"}' + body: '{"name": "folder_file.txt", "folder": "/temp_folder", "project": "project-FPfBG980zf2ZjFpj2b90PG6P", + "nonce": "b''f095f9d95cc6f47f67963c262e2f4b072484062148594c301ba664ec8455d91f''1542235685.841457"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -131,17 +131,17 @@ interactions: method: POST uri: https://api.dnanexus.com/file/new response: - body: {string: '{"id":"file-FP9kV780pXpvfgvx3zz6pb2K"}'} + body: {string: '{"id":"file-FPfBG980zf2Q4YP22fGQX3VY"}'} headers: Connection: [keep-alive] Content-Length: ['38'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:43:41 GMT'] + Date: ['Wed, 14 Nov 2018 22:48:05 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593821394-888170] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235685889-630175] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -165,19 +165,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kV780pXpvPZk8417zyZQ1/describe + uri: https://api.dnanexus.com/project-FPfBG980zf2ZjFpj2b90PG6P/describe response: - body: {string: '{"id":"project-FP9kV780pXpvPZk8417zyZQ1","fileUploadParameters":{"maximumPartSize":5368709120,"minimumPartSize":5242880,"maximumFileSize":5497558138880,"maximumNumParts":10000,"emptyLastPartAllowed":true}}'} + body: {string: '{"id":"project-FPfBG980zf2ZjFpj2b90PG6P","fileUploadParameters":{"maximumPartSize":5368709120,"minimumPartSize":5242880,"maximumFileSize":5497558138880,"maximumNumParts":10000,"emptyLastPartAllowed":true}}'} headers: Connection: [keep-alive] Content-Length: ['205'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:43:41 GMT'] + Date: ['Wed, 14 Nov 2018 22:48:06 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593821534-689682] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235686042-520358] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -201,19 +201,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kV780pXpvfgvx3zz6pb2K/upload + uri: https://api.dnanexus.com/file-FPfBG980zf2Q4YP22fGQX3VY/upload response: - body: {string: '{"url":"https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/2565/file/open/file-FP9kV780pXpvfgvx3zz6pb2K/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181026%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181026T224341Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=464ef1416c183289f439cdce09615cbaf2bd7abdc51e007a25d029a57e0bc212","headers":{"host":"dnanexus-platform-upload-prod.s3.amazonaws.com","content-type":"binary/octet-stream","x-amz-server-side-encryption":"AES256","content-md5":"c9//V/4k6Ae9T7G8TgfNcw==","content-length":"5"},"expires":1540593941668}'} + body: {string: '{"url":"https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/085b/file/open/file-FPfBG980zf2Q4YP22fGQX3VY/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181114%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181114T224806Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=320e8cc2bb9a9be434cba32847c125f9e3453ccc531eb14334ddb72bf308a3fc","headers":{"host":"dnanexus-platform-upload-prod.s3.amazonaws.com","content-type":"binary/octet-stream","x-amz-server-side-encryption":"AES256","content-md5":"c9//V/4k6Ae9T7G8TgfNcw==","content-length":"5"},"expires":1542235806175}'} headers: Connection: [keep-alive] Content-Length: ['692'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:43:41 GMT'] + Date: ['Wed, 14 Nov 2018 22:48:06 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593821654-426341] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235686153-516536] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -241,21 +241,21 @@ interactions: : - !!binary | QUVTMjU2 method: PUT - uri: https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/2565/file/open/file-FP9kV780pXpvfgvx3zz6pb2K/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181026%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181026T224341Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=464ef1416c183289f439cdce09615cbaf2bd7abdc51e007a25d029a57e0bc212 + uri: https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/085b/file/open/file-FPfBG980zf2Q4YP22fGQX3VY/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181114%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181114T224806Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=320e8cc2bb9a9be434cba32847c125f9e3453ccc531eb14334ddb72bf308a3fc response: body: {string: ''} headers: Content-Length: ['0'] - Date: ['Fri, 26 Oct 2018 22:43:43 GMT'] + Date: ['Wed, 14 Nov 2018 22:48:07 GMT'] ETag: ['"73dfff57fe24e807bd4fb1bc4e07cd73"'] Server: [AmazonS3] - x-amz-expiration: ['expiry-date="Sat, 17 Nov 2018 00:00:00 GMT", rule-id="3weekpurge"'] - x-amz-id-2: [Cti8rqxj9D8KH/RfpLT/Jrz+6zNeyba4UsT5i1LIs1QhZbPvQi8ZeZdnZvN1BSQdonCHMzkrudc=] - x-amz-request-id: [EE7431F78B2C3CC3] + x-amz-expiration: ['expiry-date="Thu, 06 Dec 2018 00:00:00 GMT", rule-id="3weekpurge"'] + x-amz-id-2: [48LyUtYuOWg7jU8+EPDD4J0obfj8DPQjDLWllxbyWDoiwOtQdpPV9uU9JsBCW/eCo39WXsYN+AU=] + x-amz-request-id: [6AA3EA306CFB00AD] x-amz-server-side-encryption: [AES256] status: {code: 200, message: OK} - request: - body: '{"fields": {"state": true}, "project": "project-FP9kV780pXpvPZk8417zyZQ1"}' + body: '{"fields": {"state": true}, "project": "project-FPfBG980zf2ZjFpj2b90PG6P"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -275,19 +275,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kV780pXpvfgvx3zz6pb2K/describe + uri: https://api.dnanexus.com/file-FPfBG980zf2Q4YP22fGQX3VY/describe response: - body: {string: '{"id":"file-FP9kV780pXpvfgvx3zz6pb2K","state":"open"}'} + body: {string: '{"id":"file-FPfBG980zf2Q4YP22fGQX3VY","state":"open"}'} headers: Connection: [keep-alive] Content-Length: ['53'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:43:42 GMT'] + Date: ['Wed, 14 Nov 2018 22:48:06 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593822178-583594] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235686625-629771] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -311,23 +311,23 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kV780pXpvfgvx3zz6pb2K/close + uri: https://api.dnanexus.com/file-FPfBG980zf2Q4YP22fGQX3VY/close response: - body: {string: '{"id":"file-FP9kV780pXpvfgvx3zz6pb2K"}'} + body: {string: '{"id":"file-FPfBG980zf2Q4YP22fGQX3VY"}'} headers: Connection: [keep-alive] Content-Length: ['38'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:43:42 GMT'] + Date: ['Wed, 14 Nov 2018 22:48:06 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593822288-722510] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235686839-97228] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"name": "TestCopyTree.test_nonexistent_dir.0010d2e2", "level": "VIEW", + body: '{"name": "TestCopyTree.test_nonexistent_dir.d731578b", "level": "VIEW", "limit": 2}' headers: ? !!binary | @@ -350,17 +350,17 @@ interactions: method: POST uri: https://api.dnanexus.com/system/findProjects response: - body: {string: '{"results":[{"id":"project-FP9kV780pXpvPZk8417zyZQ1","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} + body: {string: '{"results":[{"id":"project-FPfBG980zf2ZjFpj2b90PG6P","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} headers: Connection: [keep-alive] Content-Length: ['147'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:43:42 GMT'] + Date: ['Wed, 14 Nov 2018 22:48:07 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593822413-912304] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235686979-334821] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -385,21 +385,21 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kV780pXpvPZk8417zyZQ1/listFolder + uri: https://api.dnanexus.com/project-FPfBG980zf2ZjFpj2b90PG6P/listFolder response: body: {string: '{"error":{"type":"ResourceNotFound","message":"The specified folder - could not be found in project-FP9kV780pXpvPZk8417zyZQ1"}}'} + could not be found in project-FPfBG980zf2ZjFpj2b90PG6P"}}'} headers: Connection: [keep-alive] Content-Type: [application/json] - Date: ['Fri, 26 Oct 2018 22:43:42 GMT'] + Date: ['Wed, 14 Nov 2018 22:48:07 GMT'] Server: [nginx] Transfer-Encoding: [chunked] Vary: [Accept-Encoding] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593822551-624137] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235687110-871] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 404, message: Not Found} - request: @@ -423,19 +423,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kV780pXpvPZk8417zyZQ1/destroy + uri: https://api.dnanexus.com/project-FPfBG980zf2ZjFpj2b90PG6P/destroy response: - body: {string: '{"id":"project-FP9kV780pXpvPZk8417zyZQ1"}'} + body: {string: '{"id":"project-FPfBG980zf2ZjFpj2b90PG6P"}'} headers: Connection: [keep-alive] Content-Length: ['41'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:43:45 GMT'] + Date: ['Wed, 14 Nov 2018 22:48:09 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593822953-201573] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235687454-555429] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} version: 1 diff --git a/stor/tests/cassettes_py3/TestCopyTree/test_dx_to_other_obs.yaml b/stor_dx/stor_dx/tests/cassettes_py3/TestCopyTree/test_other_obs_to_dx.yaml similarity index 73% rename from stor/tests/cassettes_py3/TestCopyTree/test_dx_to_other_obs.yaml rename to stor_dx/stor_dx/tests/cassettes_py3/TestCopyTree/test_other_obs_to_dx.yaml index 3302eddc..8370ba38 100644 --- a/stor/tests/cassettes_py3/TestCopyTree/test_dx_to_other_obs.yaml +++ b/stor_dx/stor_dx/tests/cassettes_py3/TestCopyTree/test_other_obs_to_dx.yaml @@ -1,6 +1,6 @@ interactions: - request: - body: '{"name": "TestCopyTree.test_dx_to_other_obs.f234dad6"}' + body: '{"name": "TestCopyTree.test_other_obs_to_dx.394024e6"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -22,17 +22,17 @@ interactions: method: POST uri: https://api.dnanexus.com/project/new response: - body: {string: '{"id":"project-FP9kV0Q0XgYbYj5j40f25Z6Y"}'} + body: {string: '{"id":"project-FPfBGBQ0BFKzGvZP2fQbfy31"}'} headers: Connection: [keep-alive] Content-Length: ['41'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:43:14 GMT'] + Date: ['Wed, 14 Nov 2018 22:48:10 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593794301-351104] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235690111-143132] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -56,19 +56,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kV0Q0XgYbYj5j40f25Z6Y/describe + uri: https://api.dnanexus.com/project-FPfBGBQ0BFKzGvZP2fQbfy31/describe response: - body: {string: '{"id":"project-FP9kV0Q0XgYbYj5j40f25Z6Y","name":"TestCopyTree.test_dx_to_other_obs.f234dad6","class":"project","created":1540593794000,"modified":1540593794000,"billTo":"org-counsyl","level":"ADMINISTER","dataUsage":0,"sponsoredDataUsage":0,"region":"aws:us-east-1","summary":"","description":"","protected":false,"restricted":false,"downloadRestricted":false,"containsPHI":false,"createdBy":{"user":"user-akumar_counsyl"},"version":0,"storageCost":0,"pendingTransfer":null,"tags":[],"defaultInstanceType":"mem2_hdd2_x2","archivalState":"live","archivalProgress":null,"totalSponsoredEgressBytes":0,"consumedSponsoredEgressBytes":0,"atSpendingLimit":false}'} + body: {string: '{"id":"project-FPfBGBQ0BFKzGvZP2fQbfy31","name":"TestCopyTree.test_other_obs_to_dx.394024e6","class":"project","created":1542235690000,"modified":1542235690000,"billTo":"org-counsyl","level":"ADMINISTER","dataUsage":0,"sponsoredDataUsage":0,"region":"aws:us-east-1","summary":"","description":"","protected":false,"restricted":false,"downloadRestricted":false,"containsPHI":false,"createdBy":{"user":"user-akumar_counsyl"},"version":0,"storageCost":0,"pendingTransfer":null,"tags":[],"defaultInstanceType":"mem2_hdd2_x2","archivalState":"live","archivalProgress":null,"totalSponsoredEgressBytes":0,"consumedSponsoredEgressBytes":0,"atSpendingLimit":false}'} headers: Connection: [keep-alive] Content-Length: ['655'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:43:14 GMT'] + Date: ['Wed, 14 Nov 2018 22:48:10 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593794494-507] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235690221-813243] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -92,24 +92,24 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kV0Q0XgYbYj5j40f25Z6Y/newFolder + uri: https://api.dnanexus.com/project-FPfBGBQ0BFKzGvZP2fQbfy31/newFolder response: - body: {string: '{"id":"project-FP9kV0Q0XgYbYj5j40f25Z6Y"}'} + body: {string: '{"id":"project-FPfBGBQ0BFKzGvZP2fQbfy31"}'} headers: Connection: [keep-alive] Content-Length: ['41'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:43:14 GMT'] + Date: ['Wed, 14 Nov 2018 22:48:10 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593794737-271437] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235690330-497852] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"name": "folder_file.txt", "folder": "/temp_folder", "project": "project-FP9kV0Q0XgYbYj5j40f25Z6Y", - "nonce": "b''18e967b5e112e35b3d65ab4fbb2b45e9d19f1a2832913a31ab6eddf92e26bcbe''1540593794.874091"}' + body: '{"name": "folder_file.txt", "folder": "/temp_folder", "project": "project-FPfBGBQ0BFKzGvZP2fQbfy31", + "nonce": "b''86c14bd8e8af44b3fa3cb7fb9cb66bc7d548fb41807cca3a506d61a6cc3a75f2''1542235690.380101"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -131,17 +131,17 @@ interactions: method: POST uri: https://api.dnanexus.com/file/new response: - body: {string: '{"id":"file-FP9kV0Q0XgYvyGF83zZqbVpv"}'} + body: {string: '{"id":"file-FPfBGBQ0BFKZjFpj2b90PG6Q"}'} headers: Connection: [keep-alive] Content-Length: ['38'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:43:15 GMT'] + Date: ['Wed, 14 Nov 2018 22:48:10 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593794926-187105] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235690429-593525] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -165,19 +165,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kV0Q0XgYbYj5j40f25Z6Y/describe + uri: https://api.dnanexus.com/project-FPfBGBQ0BFKzGvZP2fQbfy31/describe response: - body: {string: '{"id":"project-FP9kV0Q0XgYbYj5j40f25Z6Y","fileUploadParameters":{"maximumPartSize":5368709120,"minimumPartSize":5242880,"maximumFileSize":5497558138880,"maximumNumParts":10000,"emptyLastPartAllowed":true}}'} + body: {string: '{"id":"project-FPfBGBQ0BFKzGvZP2fQbfy31","fileUploadParameters":{"maximumPartSize":5368709120,"minimumPartSize":5242880,"maximumFileSize":5497558138880,"maximumNumParts":10000,"emptyLastPartAllowed":true}}'} headers: Connection: [keep-alive] Content-Length: ['205'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:43:15 GMT'] + Date: ['Wed, 14 Nov 2018 22:48:10 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593795302-893895] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235690559-62057] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -201,19 +201,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kV0Q0XgYvyGF83zZqbVpv/upload + uri: https://api.dnanexus.com/file-FPfBGBQ0BFKZjFpj2b90PG6Q/upload response: - body: {string: '{"url":"https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/2207/file/open/file-FP9kV0Q0XgYvyGF83zZqbVpv/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181026%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181026T224315Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=82f3a6b2d4683498325aa722546ee0c46ef632c2ca1490dfcdf00167eb3a3151","headers":{"host":"dnanexus-platform-upload-prod.s3.amazonaws.com","content-type":"binary/octet-stream","x-amz-server-side-encryption":"AES256","content-md5":"c9//V/4k6Ae9T7G8TgfNcw==","content-length":"5"},"expires":1540593915508}'} + body: {string: '{"url":"https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/cc48/file/open/file-FPfBGBQ0BFKZjFpj2b90PG6Q/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181114%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181114T224810Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=00e9e83108bfe6b5859bda726f465cbf580f070cfa08cf84894bef0348be3fd7","headers":{"host":"dnanexus-platform-upload-prod.s3.amazonaws.com","content-type":"binary/octet-stream","x-amz-server-side-encryption":"AES256","content-md5":"c9//V/4k6Ae9T7G8TgfNcw==","content-length":"5"},"expires":1542235810667}'} headers: Connection: [keep-alive] Content-Length: ['692'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:43:15 GMT'] + Date: ['Wed, 14 Nov 2018 22:48:10 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593795436-981376] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235690653-898624] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -241,21 +241,21 @@ interactions: : - !!binary | QUVTMjU2 method: PUT - uri: https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/2207/file/open/file-FP9kV0Q0XgYvyGF83zZqbVpv/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181026%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181026T224315Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=82f3a6b2d4683498325aa722546ee0c46ef632c2ca1490dfcdf00167eb3a3151 + uri: https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/cc48/file/open/file-FPfBGBQ0BFKZjFpj2b90PG6Q/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181114%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181114T224810Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=00e9e83108bfe6b5859bda726f465cbf580f070cfa08cf84894bef0348be3fd7 response: body: {string: ''} headers: Content-Length: ['0'] - Date: ['Fri, 26 Oct 2018 22:43:16 GMT'] + Date: ['Wed, 14 Nov 2018 22:48:11 GMT'] ETag: ['"73dfff57fe24e807bd4fb1bc4e07cd73"'] Server: [AmazonS3] - x-amz-expiration: ['expiry-date="Sat, 17 Nov 2018 00:00:00 GMT", rule-id="3weekpurge"'] - x-amz-id-2: [/ATXU1zyCn7Hwwg5jPn6pdYlO/IzFr76x2zNII35J8Lypyj1CUKYjsesaA4rkwX2uZbmL4pURGA=] - x-amz-request-id: [F0D9988FBAF55C8F] + x-amz-expiration: ['expiry-date="Thu, 06 Dec 2018 00:00:00 GMT", rule-id="3weekpurge"'] + x-amz-id-2: [tAk2nyMp18gr+/xcm7q2zIKSG7IS3jdxFoebpAWJct9VrqD7KDgTZUduMplss0e8q7dDB0yWx/I=] + x-amz-request-id: [0F4FBAF5D34C2873] x-amz-server-side-encryption: [AES256] status: {code: 200, message: OK} - request: - body: '{"fields": {"state": true}, "project": "project-FP9kV0Q0XgYbYj5j40f25Z6Y"}' + body: '{"fields": {"state": true}, "project": "project-FPfBGBQ0BFKzGvZP2fQbfy31"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -275,19 +275,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kV0Q0XgYvyGF83zZqbVpv/describe + uri: https://api.dnanexus.com/file-FPfBGBQ0BFKZjFpj2b90PG6Q/describe response: - body: {string: '{"id":"file-FP9kV0Q0XgYvyGF83zZqbVpv","state":"open"}'} + body: {string: '{"id":"file-FPfBGBQ0BFKZjFpj2b90PG6Q","state":"open"}'} headers: Connection: [keep-alive] Content-Length: ['53'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:43:16 GMT'] + Date: ['Wed, 14 Nov 2018 22:48:11 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593796029-571935] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235691099-464896] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -311,19 +311,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kV0Q0XgYvyGF83zZqbVpv/close + uri: https://api.dnanexus.com/file-FPfBGBQ0BFKZjFpj2b90PG6Q/close response: - body: {string: '{"id":"file-FP9kV0Q0XgYvyGF83zZqbVpv"}'} + body: {string: '{"id":"file-FPfBGBQ0BFKZjFpj2b90PG6Q"}'} headers: Connection: [keep-alive] Content-Length: ['38'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:43:16 GMT'] + Date: ['Wed, 14 Nov 2018 22:48:11 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593796207-247858] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235691410-278915] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -347,19 +347,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kV0Q0XgYbYj5j40f25Z6Y/destroy + uri: https://api.dnanexus.com/project-FPfBGBQ0BFKzGvZP2fQbfy31/destroy response: - body: {string: '{"id":"project-FP9kV0Q0XgYbYj5j40f25Z6Y"}'} + body: {string: '{"id":"project-FPfBGBQ0BFKzGvZP2fQbfy31"}'} headers: Connection: [keep-alive] Content-Length: ['41'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:43:18 GMT'] + Date: ['Wed, 14 Nov 2018 22:48:14 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593796463-640800] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235691723-736968] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} version: 1 diff --git a/stor/tests/cassettes_py3/TestCopyTree/test_posix_dir_to_dx.yaml b/stor_dx/stor_dx/tests/cassettes_py3/TestCopyTree/test_posix_dir_to_dx.yaml similarity index 74% rename from stor/tests/cassettes_py3/TestCopyTree/test_posix_dir_to_dx.yaml rename to stor_dx/stor_dx/tests/cassettes_py3/TestCopyTree/test_posix_dir_to_dx.yaml index baeb239d..f890d336 100644 --- a/stor/tests/cassettes_py3/TestCopyTree/test_posix_dir_to_dx.yaml +++ b/stor_dx/stor_dx/tests/cassettes_py3/TestCopyTree/test_posix_dir_to_dx.yaml @@ -1,6 +1,6 @@ interactions: - request: - body: '{"name": "TestCopyTree.test_posix_dir_to_dx.0a01ad4d"}' + body: '{"name": "TestCopyTree.test_posix_dir_to_dx.6b51d8c9"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -22,17 +22,17 @@ interactions: method: POST uri: https://api.dnanexus.com/project/new response: - body: {string: '{"id":"project-FP9kV980Ykv9B0KJ8Bz7260z"}'} + body: {string: '{"id":"project-FPfBGFj083KzGvZP2fQbfy32"}'} headers: Connection: [keep-alive] Content-Length: ['41'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:43:49 GMT'] + Date: ['Wed, 14 Nov 2018 22:48:15 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593829590-950256] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235695081-855893] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -56,23 +56,23 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kV980Ykv9B0KJ8Bz7260z/describe + uri: https://api.dnanexus.com/project-FPfBGFj083KzGvZP2fQbfy32/describe response: - body: {string: '{"id":"project-FP9kV980Ykv9B0KJ8Bz7260z","name":"TestCopyTree.test_posix_dir_to_dx.0a01ad4d","class":"project","created":1540593829000,"modified":1540593829000,"billTo":"org-counsyl","level":"ADMINISTER","dataUsage":0,"sponsoredDataUsage":0,"region":"aws:us-east-1","summary":"","description":"","protected":false,"restricted":false,"downloadRestricted":false,"containsPHI":false,"createdBy":{"user":"user-akumar_counsyl"},"version":0,"storageCost":0,"pendingTransfer":null,"tags":[],"defaultInstanceType":"mem2_hdd2_x2","archivalState":"live","archivalProgress":null,"totalSponsoredEgressBytes":0,"consumedSponsoredEgressBytes":0,"atSpendingLimit":false}'} + body: {string: '{"id":"project-FPfBGFj083KzGvZP2fQbfy32","name":"TestCopyTree.test_posix_dir_to_dx.6b51d8c9","class":"project","created":1542235695000,"modified":1542235695000,"billTo":"org-counsyl","level":"ADMINISTER","dataUsage":0,"sponsoredDataUsage":0,"region":"aws:us-east-1","summary":"","description":"","protected":false,"restricted":false,"downloadRestricted":false,"containsPHI":false,"createdBy":{"user":"user-akumar_counsyl"},"version":0,"storageCost":0,"pendingTransfer":null,"tags":[],"defaultInstanceType":"mem2_hdd2_x2","archivalState":"live","archivalProgress":null,"totalSponsoredEgressBytes":0,"consumedSponsoredEgressBytes":0,"atSpendingLimit":false}'} headers: Connection: [keep-alive] Content-Length: ['655'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:43:49 GMT'] + Date: ['Wed, 14 Nov 2018 22:48:15 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593829709-232621] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235695198-398203] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"name": "TestCopyTree.test_posix_dir_to_dx.0a01ad4d", "level": "VIEW", + body: '{"name": "TestCopyTree.test_posix_dir_to_dx.6b51d8c9", "level": "VIEW", "limit": 2}' headers: ? !!binary | @@ -95,17 +95,17 @@ interactions: method: POST uri: https://api.dnanexus.com/system/findProjects response: - body: {string: '{"results":[{"id":"project-FP9kV980Ykv9B0KJ8Bz7260z","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} + body: {string: '{"results":[{"id":"project-FPfBGFj083KzGvZP2fQbfy32","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} headers: Connection: [keep-alive] Content-Length: ['147'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:43:49 GMT'] + Date: ['Wed, 14 Nov 2018 22:48:15 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593829834-832054] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235695378-905674] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -130,26 +130,26 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kV980Ykv9B0KJ8Bz7260z/listFolder + uri: https://api.dnanexus.com/project-FPfBGFj083KzGvZP2fQbfy32/listFolder response: body: {string: '{"error":{"type":"ResourceNotFound","message":"The specified folder - could not be found in project-FP9kV980Ykv9B0KJ8Bz7260z"}}'} + could not be found in project-FPfBGFj083KzGvZP2fQbfy32"}}'} headers: Connection: [keep-alive] Content-Type: [application/json] - Date: ['Fri, 26 Oct 2018 22:43:49 GMT'] + Date: ['Wed, 14 Nov 2018 22:48:15 GMT'] Server: [nginx] Transfer-Encoding: [chunked] Vary: [Accept-Encoding] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593829965-656849] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235695489-840662] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 404, message: Not Found} - request: body: '{"objects": [{"name": "file2.txt", "folder": "/temp_folder", "project": - "project-FP9kV980Ykv9B0KJ8Bz7260z", "batchsize": 2}]}' + "project-FPfBGFj083KzGvZP2fQbfy32", "batchsize": 2}]}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -176,17 +176,17 @@ interactions: Connection: [keep-alive] Content-Length: ['16'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:43:50 GMT'] + Date: ['Wed, 14 Nov 2018 22:48:15 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593830376-554639] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235695875-725072] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"project": "project-FP9kV980Ykv9B0KJ8Bz7260z", "folder": "/temp_folder", - "parents": true, "name": "file2.txt", "nonce": "b''f2223bbf0edd2f70efe2223df44fb49aeb37890a8b365f8bd0db858415f20676''1540593830.443857"}' + body: '{"project": "project-FPfBGFj083KzGvZP2fQbfy32", "folder": "/temp_folder", + "parents": true, "name": "file2.txt", "nonce": "b''ecd99fa220a58770f0f765807f54ea914b1cc077b71a3a1261f64117bb23b2a2''1542235695.943659"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -208,17 +208,17 @@ interactions: method: POST uri: https://api.dnanexus.com/file/new response: - body: {string: '{"id":"file-FP9kV9Q0Ykv26vXb405Q2KfX"}'} + body: {string: '{"id":"file-FPfBGG0083Kk59y42bqVv4vX"}'} headers: Connection: [keep-alive] Content-Length: ['38'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:43:50 GMT'] + Date: ['Wed, 14 Nov 2018 22:48:16 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593830497-175237] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235696095-357170] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -242,19 +242,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kV980Ykv9B0KJ8Bz7260z/describe + uri: https://api.dnanexus.com/project-FPfBGFj083KzGvZP2fQbfy32/describe response: - body: {string: '{"id":"project-FP9kV980Ykv9B0KJ8Bz7260z","fileUploadParameters":{"maximumPartSize":5368709120,"minimumPartSize":5242880,"maximumFileSize":5497558138880,"maximumNumParts":10000,"emptyLastPartAllowed":true}}'} + body: {string: '{"id":"project-FPfBGFj083KzGvZP2fQbfy32","fileUploadParameters":{"maximumPartSize":5368709120,"minimumPartSize":5242880,"maximumFileSize":5497558138880,"maximumNumParts":10000,"emptyLastPartAllowed":true}}'} headers: Connection: [keep-alive] Content-Length: ['205'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:43:50 GMT'] + Date: ['Wed, 14 Nov 2018 22:48:16 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593830665-433277] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235696371-83881] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -278,19 +278,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kV9Q0Ykv26vXb405Q2KfX/upload + uri: https://api.dnanexus.com/file-FPfBGG0083Kk59y42bqVv4vX/upload response: - body: {string: '{"url":"https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/634c/file/open/file-FP9kV9Q0Ykv26vXb405Q2KfX/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181026%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181026T224350Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=a7172ed154227947480efcf74c731de1b81d57415a9093446e539d6965f0899b","headers":{"host":"dnanexus-platform-upload-prod.s3.amazonaws.com","content-type":"binary/octet-stream","x-amz-server-side-encryption":"AES256","content-md5":"idkDvDXe3nJP1SxRQ3/1/Q==","content-length":"5"},"expires":1540593950808}'} + body: {string: '{"url":"https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/98e9/file/open/file-FPfBGG0083Kk59y42bqVv4vX/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181114%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181114T224816Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=973d9d7bb7007d97fecdd06b95962b53dd3c102e951739cd335ce0997c18b789","headers":{"host":"dnanexus-platform-upload-prod.s3.amazonaws.com","content-type":"binary/octet-stream","x-amz-server-side-encryption":"AES256","content-md5":"idkDvDXe3nJP1SxRQ3/1/Q==","content-length":"5"},"expires":1542235816492}'} headers: Connection: [keep-alive] Content-Length: ['692'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:43:50 GMT'] + Date: ['Wed, 14 Nov 2018 22:48:16 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593830795-719585] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235696478-13428] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -318,17 +318,17 @@ interactions: : - !!binary | QUVTMjU2 method: PUT - uri: https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/634c/file/open/file-FP9kV9Q0Ykv26vXb405Q2KfX/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181026%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181026T224350Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=a7172ed154227947480efcf74c731de1b81d57415a9093446e539d6965f0899b + uri: https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/98e9/file/open/file-FPfBGG0083Kk59y42bqVv4vX/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181114%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181114T224816Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=973d9d7bb7007d97fecdd06b95962b53dd3c102e951739cd335ce0997c18b789 response: body: {string: ''} headers: Content-Length: ['0'] - Date: ['Fri, 26 Oct 2018 22:43:52 GMT'] + Date: ['Wed, 14 Nov 2018 22:48:17 GMT'] ETag: ['"89d903bc35dede724fd52c51437ff5fd"'] Server: [AmazonS3] - x-amz-expiration: ['expiry-date="Sat, 17 Nov 2018 00:00:00 GMT", rule-id="3weekpurge"'] - x-amz-id-2: [QPjYzb+uwVhlwK46NggCWbgjk08RcX77RlC/fjIp2KToFYsmcuq/2r9a/jo7TJywrf28FjVW/OA=] - x-amz-request-id: [76BB19EF7005422D] + x-amz-expiration: ['expiry-date="Thu, 06 Dec 2018 00:00:00 GMT", rule-id="3weekpurge"'] + x-amz-id-2: [s9ljSftD67Llqqnf98U+X1L5T+zKx+Kl379rfKzphkB2XtJgajndec3n5d6UuG0mzZ0oQ/QPoHM=] + x-amz-request-id: [AE89FCF5460D649F] x-amz-server-side-encryption: [AES256] status: {code: 200, message: OK} - request: @@ -352,24 +352,24 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kV9Q0Ykv26vXb405Q2KfX/close + uri: https://api.dnanexus.com/file-FPfBGG0083Kk59y42bqVv4vX/close response: - body: {string: '{"id":"file-FP9kV9Q0Ykv26vXb405Q2KfX"}'} + body: {string: '{"id":"file-FPfBGG0083Kk59y42bqVv4vX"}'} headers: Connection: [keep-alive] Content-Length: ['38'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:43:51 GMT'] + Date: ['Wed, 14 Nov 2018 22:48:16 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593831333-462496] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235696934-814872] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: body: '{"objects": [{"name": "file.txt", "folder": "/temp_folder", "project": - "project-FP9kV980Ykv9B0KJ8Bz7260z", "batchsize": 2}]}' + "project-FPfBGFj083KzGvZP2fQbfy32", "batchsize": 2}]}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -396,17 +396,17 @@ interactions: Connection: [keep-alive] Content-Length: ['16'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:43:51 GMT'] + Date: ['Wed, 14 Nov 2018 22:48:17 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593831459-628784] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235697067-359978] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"project": "project-FP9kV980Ykv9B0KJ8Bz7260z", "folder": "/temp_folder", - "parents": true, "name": "file.txt", "nonce": "b''399f49bd6241f08c0e17742f2b2b9926d5f2eda10b83d9e83eef11e950cd54d8''1540593831.520908"}' + body: '{"project": "project-FPfBGFj083KzGvZP2fQbfy32", "folder": "/temp_folder", + "parents": true, "name": "file.txt", "nonce": "b''5d8f8efcd79d46fe8acb1108aa6a063977b35bc4eee0f8afc9228b72a905f62b''1542235697.131108"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -428,17 +428,17 @@ interactions: method: POST uri: https://api.dnanexus.com/file/new response: - body: {string: '{"id":"file-FP9kV9j0Ykv667Vq40v4Pq3k"}'} + body: {string: '{"id":"file-FPfBGG8083Kk59y42bqVv4vZ"}'} headers: Connection: [keep-alive] Content-Length: ['38'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:43:51 GMT'] + Date: ['Wed, 14 Nov 2018 22:48:17 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593831565-688790] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235697176-29647] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -462,19 +462,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kV980Ykv9B0KJ8Bz7260z/describe + uri: https://api.dnanexus.com/project-FPfBGFj083KzGvZP2fQbfy32/describe response: - body: {string: '{"id":"project-FP9kV980Ykv9B0KJ8Bz7260z","fileUploadParameters":{"maximumPartSize":5368709120,"minimumPartSize":5242880,"maximumFileSize":5497558138880,"maximumNumParts":10000,"emptyLastPartAllowed":true}}'} + body: {string: '{"id":"project-FPfBGFj083KzGvZP2fQbfy32","fileUploadParameters":{"maximumPartSize":5368709120,"minimumPartSize":5242880,"maximumFileSize":5497558138880,"maximumNumParts":10000,"emptyLastPartAllowed":true}}'} headers: Connection: [keep-alive] Content-Length: ['205'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:43:51 GMT'] + Date: ['Wed, 14 Nov 2018 22:48:17 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593831711-611924] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235697311-236769] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -498,19 +498,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kV9j0Ykv667Vq40v4Pq3k/upload + uri: https://api.dnanexus.com/file-FPfBGG8083Kk59y42bqVv4vZ/upload response: - body: {string: '{"url":"https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/fb72/file/open/file-FP9kV9j0Ykv667Vq40v4Pq3k/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181026%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181026T224351Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=7251e9f0016ecfd2cdd2b9ea52547956701c84ddf68ab9417d31fe6414551477","headers":{"host":"dnanexus-platform-upload-prod.s3.amazonaws.com","content-type":"binary/octet-stream","x-amz-server-side-encryption":"AES256","content-md5":"c9//V/4k6Ae9T7G8TgfNcw==","content-length":"5"},"expires":1540593951848}'} + body: {string: '{"url":"https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/ec81/file/open/file-FPfBGG8083Kk59y42bqVv4vZ/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181114%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181114T224817Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=055d2fe9d62b78c3054fc5692a3c8f2c6916b630d801d88fa5fb0d197e7e5b3c","headers":{"host":"dnanexus-platform-upload-prod.s3.amazonaws.com","content-type":"binary/octet-stream","x-amz-server-side-encryption":"AES256","content-md5":"c9//V/4k6Ae9T7G8TgfNcw==","content-length":"5"},"expires":1542235817506}'} headers: Connection: [keep-alive] Content-Length: ['692'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:43:51 GMT'] + Date: ['Wed, 14 Nov 2018 22:48:17 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593831835-876693] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235697494-18428] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -538,17 +538,17 @@ interactions: : - !!binary | QUVTMjU2 method: PUT - uri: https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/fb72/file/open/file-FP9kV9j0Ykv667Vq40v4Pq3k/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181026%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181026T224351Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=7251e9f0016ecfd2cdd2b9ea52547956701c84ddf68ab9417d31fe6414551477 + uri: https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/ec81/file/open/file-FPfBGG8083Kk59y42bqVv4vZ/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181114%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181114T224817Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=055d2fe9d62b78c3054fc5692a3c8f2c6916b630d801d88fa5fb0d197e7e5b3c response: body: {string: ''} headers: Content-Length: ['0'] - Date: ['Fri, 26 Oct 2018 22:43:52 GMT'] + Date: ['Wed, 14 Nov 2018 22:48:18 GMT'] ETag: ['"73dfff57fe24e807bd4fb1bc4e07cd73"'] Server: [AmazonS3] - x-amz-expiration: ['expiry-date="Sat, 17 Nov 2018 00:00:00 GMT", rule-id="3weekpurge"'] - x-amz-id-2: [W1eBzopUlcr5eC2IBwchzBzMIXuQFAP/xMIKXodGugJELvYnCZT8yxoPnKh21PG3Ho1KHQXmTbY=] - x-amz-request-id: [2A9A25F13925F0A4] + x-amz-expiration: ['expiry-date="Thu, 06 Dec 2018 00:00:00 GMT", rule-id="3weekpurge"'] + x-amz-id-2: [UZPJWjXc+vu3yQkR43ZoIBmzZK3to2WdArwx/KfAax854mc6hihLVlYueiR1ROX9a9y9Ea0tF0A=] + x-amz-request-id: [23A310FA732E02E8] x-amz-server-side-encryption: [AES256] status: {code: 200, message: OK} - request: @@ -572,19 +572,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kV9j0Ykv667Vq40v4Pq3k/close + uri: https://api.dnanexus.com/file-FPfBGG8083Kk59y42bqVv4vZ/close response: - body: {string: '{"id":"file-FP9kV9j0Ykv667Vq40v4Pq3k"}'} + body: {string: '{"id":"file-FPfBGG8083Kk59y42bqVv4vZ"}'} headers: Connection: [keep-alive] Content-Length: ['38'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:43:52 GMT'] + Date: ['Wed, 14 Nov 2018 22:48:17 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593832063-839853] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235697773-808358] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -608,23 +608,23 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kV980Ykv9B0KJ8Bz7260z/newFolder + uri: https://api.dnanexus.com/project-FPfBGFj083KzGvZP2fQbfy32/newFolder response: - body: {string: '{"id":"project-FP9kV980Ykv9B0KJ8Bz7260z"}'} + body: {string: '{"id":"project-FPfBGFj083KzGvZP2fQbfy32"}'} headers: Connection: [keep-alive] Content-Length: ['41'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:43:52 GMT'] + Date: ['Wed, 14 Nov 2018 22:48:17 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593832184-582586] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235697908-990681] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"name": "TestCopyTree.test_posix_dir_to_dx.0a01ad4d", "level": "VIEW", + body: '{"name": "TestCopyTree.test_posix_dir_to_dx.6b51d8c9", "level": "VIEW", "limit": 2}' headers: ? !!binary | @@ -647,22 +647,22 @@ interactions: method: POST uri: https://api.dnanexus.com/system/findProjects response: - body: {string: '{"results":[{"id":"project-FP9kV980Ykv9B0KJ8Bz7260z","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} + body: {string: '{"results":[{"id":"project-FPfBGFj083KzGvZP2fQbfy32","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} headers: Connection: [keep-alive] Content-Length: ['147'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:43:52 GMT'] + Date: ['Wed, 14 Nov 2018 22:48:18 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593832322-880165] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235698016-106474] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: body: '{"objects": [{"name": "file.txt", "folder": "/temp_folder", "project": - "project-FP9kV980Ykv9B0KJ8Bz7260z", "batchsize": 2}]}' + "project-FPfBGFj083KzGvZP2fQbfy32", "batchsize": 2}]}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -684,21 +684,21 @@ interactions: method: POST uri: https://api.dnanexus.com/system/resolveDataObjects response: - body: {string: '{"results":[[{"project":"project-FP9kV980Ykv9B0KJ8Bz7260z","id":"file-FP9kV9j0Ykv667Vq40v4Pq3k"}]]}'} + body: {string: '{"results":[[{"project":"project-FPfBGFj083KzGvZP2fQbfy32","id":"file-FPfBGG8083Kk59y42bqVv4vZ"}]]}'} headers: Connection: [keep-alive] Content-Length: ['99'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:43:52 GMT'] + Date: ['Wed, 14 Nov 2018 22:48:18 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593832447-48760] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235698137-753988] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"project": "project-FP9kV980Ykv9B0KJ8Bz7260z"}' + body: '{"project": "project-FPfBGFj083KzGvZP2fQbfy32"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -718,23 +718,23 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kV9j0Ykv667Vq40v4Pq3k/describe + uri: https://api.dnanexus.com/file-FPfBGG8083Kk59y42bqVv4vZ/describe response: - body: {string: '{"id":"file-FP9kV9j0Ykv667Vq40v4Pq3k","project":"project-FP9kV980Ykv9B0KJ8Bz7260z","class":"file","sponsored":false,"name":"file.txt","types":[],"state":"closed","hidden":false,"links":[],"folder":"/temp_folder","tags":[],"created":1540593831000,"modified":1540593832537,"createdBy":{"user":"user-akumar_counsyl"},"media":"text/plain","archivalState":"live","size":5}'} + body: {string: '{"id":"file-FPfBGG8083Kk59y42bqVv4vZ","project":"project-FPfBGFj083KzGvZP2fQbfy32","class":"file","sponsored":false,"name":"file.txt","types":[],"state":"closing","hidden":false,"links":[],"folder":"/temp_folder","tags":[],"created":1542235697000,"modified":1542235697786,"createdBy":{"user":"user-akumar_counsyl"},"media":"","archivalState":"live"}'} headers: Connection: [keep-alive] - Content-Length: ['367'] + Content-Length: ['349'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:43:52 GMT'] + Date: ['Wed, 14 Nov 2018 22:48:18 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593832561-947002] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235698234-965304] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"name": "TestCopyTree.test_posix_dir_to_dx.0a01ad4d", "level": "VIEW", + body: '{"name": "TestCopyTree.test_posix_dir_to_dx.6b51d8c9", "level": "VIEW", "limit": 2}' headers: ? !!binary | @@ -757,21 +757,21 @@ interactions: method: POST uri: https://api.dnanexus.com/system/findProjects response: - body: {string: '{"results":[{"id":"project-FP9kV980Ykv9B0KJ8Bz7260z","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} + body: {string: '{"results":[{"id":"project-FPfBGFj083KzGvZP2fQbfy32","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} headers: Connection: [keep-alive] Content-Length: ['147'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:43:52 GMT'] + Date: ['Wed, 14 Nov 2018 22:48:18 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593832670-130267] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235698342-236432] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"objects": [{"name": "folder2", "folder": "/temp_folder", "project": "project-FP9kV980Ykv9B0KJ8Bz7260z", + body: '{"objects": [{"name": "folder2", "folder": "/temp_folder", "project": "project-FPfBGFj083KzGvZP2fQbfy32", "batchsize": 2}]}' headers: ? !!binary | @@ -799,12 +799,12 @@ interactions: Connection: [keep-alive] Content-Length: ['16'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:43:52 GMT'] + Date: ['Wed, 14 Nov 2018 22:48:18 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593832797-625421] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235698453-12062] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -829,19 +829,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kV980Ykv9B0KJ8Bz7260z/listFolder + uri: https://api.dnanexus.com/project-FPfBGFj083KzGvZP2fQbfy32/listFolder response: body: {string: '{"folders":[]}'} headers: Connection: [keep-alive] Content-Length: ['14'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:43:52 GMT'] + Date: ['Wed, 14 Nov 2018 22:48:18 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593832908-912047] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235698549-89970] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -865,19 +865,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kV980Ykv9B0KJ8Bz7260z/destroy + uri: https://api.dnanexus.com/project-FPfBGFj083KzGvZP2fQbfy32/destroy response: - body: {string: '{"id":"project-FP9kV980Ykv9B0KJ8Bz7260z"}'} + body: {string: '{"id":"project-FPfBGFj083KzGvZP2fQbfy32"}'} headers: Connection: [keep-alive] Content-Length: ['41'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:43:55 GMT'] + Date: ['Wed, 14 Nov 2018 22:48:21 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593833024-913630] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235698654-756126] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} version: 1 diff --git a/stor/tests/cassettes_py3/TestCopyTree/test_posix_dir_to_dx_existing.yaml b/stor_dx/stor_dx/tests/cassettes_py3/TestCopyTree/test_posix_dir_to_dx_existing.yaml similarity index 74% rename from stor/tests/cassettes_py3/TestCopyTree/test_posix_dir_to_dx_existing.yaml rename to stor_dx/stor_dx/tests/cassettes_py3/TestCopyTree/test_posix_dir_to_dx_existing.yaml index 6273b632..b1fd801a 100644 --- a/stor/tests/cassettes_py3/TestCopyTree/test_posix_dir_to_dx_existing.yaml +++ b/stor_dx/stor_dx/tests/cassettes_py3/TestCopyTree/test_posix_dir_to_dx_existing.yaml @@ -1,6 +1,6 @@ interactions: - request: - body: '{"name": "TestCopyTree.test_posix_dir_to_dx_existing.46dfae8b"}' + body: '{"name": "TestCopyTree.test_posix_dir_to_dx_existing.c26eaaaf"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -22,17 +22,17 @@ interactions: method: POST uri: https://api.dnanexus.com/project/new response: - body: {string: '{"id":"project-FP9kVBj0y9X26vXb405Q2KfZ"}'} + body: {string: '{"id":"project-FPfBGJ8059xPGvZP2fQbfy33"}'} headers: Connection: [keep-alive] Content-Length: ['41'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:43:55 GMT'] + Date: ['Wed, 14 Nov 2018 22:48:21 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593835753-705181] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235701747-254683] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -56,19 +56,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kVBj0y9X26vXb405Q2KfZ/describe + uri: https://api.dnanexus.com/project-FPfBGJ8059xPGvZP2fQbfy33/describe response: - body: {string: '{"id":"project-FP9kVBj0y9X26vXb405Q2KfZ","name":"TestCopyTree.test_posix_dir_to_dx_existing.46dfae8b","class":"project","created":1540593835000,"modified":1540593835000,"billTo":"org-counsyl","level":"ADMINISTER","dataUsage":0,"sponsoredDataUsage":0,"region":"aws:us-east-1","summary":"","description":"","protected":false,"restricted":false,"downloadRestricted":false,"containsPHI":false,"createdBy":{"user":"user-akumar_counsyl"},"version":0,"storageCost":0,"pendingTransfer":null,"tags":[],"defaultInstanceType":"mem2_hdd2_x2","archivalState":"live","archivalProgress":null,"totalSponsoredEgressBytes":0,"consumedSponsoredEgressBytes":0,"atSpendingLimit":false}'} + body: {string: '{"id":"project-FPfBGJ8059xPGvZP2fQbfy33","name":"TestCopyTree.test_posix_dir_to_dx_existing.c26eaaaf","class":"project","created":1542235701000,"modified":1542235701000,"billTo":"org-counsyl","level":"ADMINISTER","dataUsage":0,"sponsoredDataUsage":0,"region":"aws:us-east-1","summary":"","description":"","protected":false,"restricted":false,"downloadRestricted":false,"containsPHI":false,"createdBy":{"user":"user-akumar_counsyl"},"version":0,"storageCost":0,"pendingTransfer":null,"tags":[],"defaultInstanceType":"mem2_hdd2_x2","archivalState":"live","archivalProgress":null,"totalSponsoredEgressBytes":0,"consumedSponsoredEgressBytes":0,"atSpendingLimit":false}'} headers: Connection: [keep-alive] Content-Length: ['664'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:43:55 GMT'] + Date: ['Wed, 14 Nov 2018 22:48:21 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593835866-561936] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235701858-265210] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -92,24 +92,24 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kVBj0y9X26vXb405Q2KfZ/newFolder + uri: https://api.dnanexus.com/project-FPfBGJ8059xPGvZP2fQbfy33/newFolder response: - body: {string: '{"id":"project-FP9kVBj0y9X26vXb405Q2KfZ"}'} + body: {string: '{"id":"project-FPfBGJ8059xPGvZP2fQbfy33"}'} headers: Connection: [keep-alive] Content-Length: ['41'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:43:56 GMT'] + Date: ['Wed, 14 Nov 2018 22:48:21 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593835991-268607] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235701969-703411] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"name": "file", "folder": "/existing_folder", "project": "project-FP9kVBj0y9X26vXb405Q2KfZ", - "nonce": "b''84a13fdea3ae437c8c436eb434cb83730f1d23f2c6f201332412630b8817be32''1540593836.070320"}' + body: '{"name": "file", "folder": "/existing_folder", "project": "project-FPfBGJ8059xPGvZP2fQbfy33", + "nonce": "b''3798801b17e7af2be65646d0654a9418661a91f0db1f4c97530a055e757ec887''1542235702.023297"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -131,17 +131,17 @@ interactions: method: POST uri: https://api.dnanexus.com/file/new response: - body: {string: '{"id":"file-FP9kVF00y9XGyGF83zZqbVq2"}'} + body: {string: '{"id":"file-FPfBGJQ059x390yB2f7kFyF2"}'} headers: Connection: [keep-alive] Content-Length: ['38'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:43:56 GMT'] + Date: ['Wed, 14 Nov 2018 22:48:22 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593836114-855357] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235702069-973238] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -165,19 +165,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kVBj0y9X26vXb405Q2KfZ/describe + uri: https://api.dnanexus.com/project-FPfBGJ8059xPGvZP2fQbfy33/describe response: - body: {string: '{"id":"project-FP9kVBj0y9X26vXb405Q2KfZ","fileUploadParameters":{"maximumPartSize":5368709120,"minimumPartSize":5242880,"maximumFileSize":5497558138880,"maximumNumParts":10000,"emptyLastPartAllowed":true}}'} + body: {string: '{"id":"project-FPfBGJ8059xPGvZP2fQbfy33","fileUploadParameters":{"maximumPartSize":5368709120,"minimumPartSize":5242880,"maximumFileSize":5497558138880,"maximumNumParts":10000,"emptyLastPartAllowed":true}}'} headers: Connection: [keep-alive] Content-Length: ['205'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:43:56 GMT'] + Date: ['Wed, 14 Nov 2018 22:48:22 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593836249-234442] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235702241-357206] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -201,19 +201,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kVF00y9XGyGF83zZqbVq2/upload + uri: https://api.dnanexus.com/file-FPfBGJQ059x390yB2f7kFyF2/upload response: - body: {string: '{"url":"https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/e92c/file/open/file-FP9kVF00y9XGyGF83zZqbVq2/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181026%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181026T224356Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=3b0df56afbaaff6edc7bd5a78facd705a3243f2537eeb6bd43bfcec4ad685038","headers":{"host":"dnanexus-platform-upload-prod.s3.amazonaws.com","content-type":"binary/octet-stream","x-amz-server-side-encryption":"AES256","content-md5":"c9//V/4k6Ae9T7G8TgfNcw==","content-length":"5"},"expires":1540593956371}'} + body: {string: '{"url":"https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/2b27/file/open/file-FPfBGJQ059x390yB2f7kFyF2/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181114%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181114T224822Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=4f666be404d4ff4ce1f42217e412426799f0aee7741b7fa418166008c0db9500","headers":{"host":"dnanexus-platform-upload-prod.s3.amazonaws.com","content-type":"binary/octet-stream","x-amz-server-side-encryption":"AES256","content-md5":"c9//V/4k6Ae9T7G8TgfNcw==","content-length":"5"},"expires":1542235822349}'} headers: Connection: [keep-alive] Content-Length: ['692'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:43:56 GMT'] + Date: ['Wed, 14 Nov 2018 22:48:22 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593836355-129493] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235702336-617497] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -241,21 +241,21 @@ interactions: : - !!binary | QUVTMjU2 method: PUT - uri: https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/e92c/file/open/file-FP9kVF00y9XGyGF83zZqbVq2/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181026%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181026T224356Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=3b0df56afbaaff6edc7bd5a78facd705a3243f2537eeb6bd43bfcec4ad685038 + uri: https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/2b27/file/open/file-FPfBGJQ059x390yB2f7kFyF2/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181114%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181114T224822Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=4f666be404d4ff4ce1f42217e412426799f0aee7741b7fa418166008c0db9500 response: body: {string: ''} headers: Content-Length: ['0'] - Date: ['Fri, 26 Oct 2018 22:43:57 GMT'] + Date: ['Wed, 14 Nov 2018 22:48:23 GMT'] ETag: ['"73dfff57fe24e807bd4fb1bc4e07cd73"'] Server: [AmazonS3] - x-amz-expiration: ['expiry-date="Sat, 17 Nov 2018 00:00:00 GMT", rule-id="3weekpurge"'] - x-amz-id-2: [tpFWfnPpE2MfH0bgFy8cKOLlULChH1+5At925tEPPPYf1zddfG1Ju79Q6iMCODXF+3G1POlU0qc=] - x-amz-request-id: [A3F0C297EECC091D] + x-amz-expiration: ['expiry-date="Thu, 06 Dec 2018 00:00:00 GMT", rule-id="3weekpurge"'] + x-amz-id-2: [JWsi3wjYe0f2WcfvjbMW54hcEMghY9nNS2nWfxPX6iiJy9CVUg669eiIjOCVYyuSVvV0Q/Vcjy0=] + x-amz-request-id: [091F1A40E6D97D27] x-amz-server-side-encryption: [AES256] status: {code: 200, message: OK} - request: - body: '{"fields": {"state": true}, "project": "project-FP9kVBj0y9X26vXb405Q2KfZ"}' + body: '{"fields": {"state": true}, "project": "project-FPfBGJ8059xPGvZP2fQbfy33"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -275,19 +275,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kVF00y9XGyGF83zZqbVq2/describe + uri: https://api.dnanexus.com/file-FPfBGJQ059x390yB2f7kFyF2/describe response: - body: {string: '{"id":"file-FP9kVF00y9XGyGF83zZqbVq2","state":"open"}'} + body: {string: '{"id":"file-FPfBGJQ059x390yB2f7kFyF2","state":"open"}'} headers: Connection: [keep-alive] Content-Length: ['53'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:43:57 GMT'] + Date: ['Wed, 14 Nov 2018 22:48:22 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593837098-248316] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235702804-372779] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -311,23 +311,23 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kVF00y9XGyGF83zZqbVq2/close + uri: https://api.dnanexus.com/file-FPfBGJQ059x390yB2f7kFyF2/close response: - body: {string: '{"id":"file-FP9kVF00y9XGyGF83zZqbVq2"}'} + body: {string: '{"id":"file-FPfBGJQ059x390yB2f7kFyF2"}'} headers: Connection: [keep-alive] Content-Length: ['38'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:43:57 GMT'] + Date: ['Wed, 14 Nov 2018 22:48:22 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593837216-818914] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235702901-369524] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"name": "TestCopyTree.test_posix_dir_to_dx_existing.46dfae8b", "level": + body: '{"name": "TestCopyTree.test_posix_dir_to_dx_existing.c26eaaaf", "level": "VIEW", "limit": 2}' headers: ? !!binary | @@ -350,17 +350,17 @@ interactions: method: POST uri: https://api.dnanexus.com/system/findProjects response: - body: {string: '{"results":[{"id":"project-FP9kVBj0y9X26vXb405Q2KfZ","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} + body: {string: '{"results":[{"id":"project-FPfBGJ8059xPGvZP2fQbfy33","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} headers: Connection: [keep-alive] Content-Length: ['147'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:43:57 GMT'] + Date: ['Wed, 14 Nov 2018 22:48:23 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593837344-618191] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235703089-10376] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -385,23 +385,23 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kVBj0y9X26vXb405Q2KfZ/listFolder + uri: https://api.dnanexus.com/project-FPfBGJ8059xPGvZP2fQbfy33/listFolder response: body: {string: '{"folders":[]}'} headers: Connection: [keep-alive] Content-Length: ['14'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:43:57 GMT'] + Date: ['Wed, 14 Nov 2018 22:48:23 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593837475-729199] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235703207-45451] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"name": "TestCopyTree.test_posix_dir_to_dx_existing.46dfae8b", "level": + body: '{"name": "TestCopyTree.test_posix_dir_to_dx_existing.c26eaaaf", "level": "VIEW", "limit": 2}' headers: ? !!binary | @@ -424,17 +424,17 @@ interactions: method: POST uri: https://api.dnanexus.com/system/findProjects response: - body: {string: '{"results":[{"id":"project-FP9kVBj0y9X26vXb405Q2KfZ","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} + body: {string: '{"results":[{"id":"project-FPfBGJ8059xPGvZP2fQbfy33","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} headers: Connection: [keep-alive] Content-Length: ['147'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:43:57 GMT'] + Date: ['Wed, 14 Nov 2018 22:48:23 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593837593-968591] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235703330-698745] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -459,26 +459,26 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kVBj0y9X26vXb405Q2KfZ/listFolder + uri: https://api.dnanexus.com/project-FPfBGJ8059xPGvZP2fQbfy33/listFolder response: body: {string: '{"error":{"type":"ResourceNotFound","message":"The specified folder - could not be found in project-FP9kVBj0y9X26vXb405Q2KfZ"}}'} + could not be found in project-FPfBGJ8059xPGvZP2fQbfy33"}}'} headers: Connection: [keep-alive] Content-Type: [application/json] - Date: ['Fri, 26 Oct 2018 22:43:57 GMT'] + Date: ['Wed, 14 Nov 2018 22:48:23 GMT'] Server: [nginx] Transfer-Encoding: [chunked] Vary: [Accept-Encoding] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593837735-978092] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235703453-963985] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 404, message: Not Found} - request: body: '{"objects": [{"name": "file2.txt", "folder": "/existing_folder/folder", - "project": "project-FP9kVBj0y9X26vXb405Q2KfZ", "batchsize": 2}]}' + "project": "project-FPfBGJ8059xPGvZP2fQbfy33", "batchsize": 2}]}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -505,17 +505,17 @@ interactions: Connection: [keep-alive] Content-Length: ['16'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:43:58 GMT'] + Date: ['Wed, 14 Nov 2018 22:48:23 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593838161-700863] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235703849-456880] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"project": "project-FP9kVBj0y9X26vXb405Q2KfZ", "folder": "/existing_folder/folder", - "parents": true, "name": "file2.txt", "nonce": "b''d3a7419f0b774bd388b22e8ec9fcdd397f07ff58917352cc35d03738ed55590f''1540593838.223027"}' + body: '{"project": "project-FPfBGJ8059xPGvZP2fQbfy33", "folder": "/existing_folder/folder", + "parents": true, "name": "file2.txt", "nonce": "b''b674cc596284f7714517395aa7fc22f82c9364c893513aff5ba361577216d46b''1542235703.916355"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -537,17 +537,17 @@ interactions: method: POST uri: https://api.dnanexus.com/file/new response: - body: {string: '{"id":"file-FP9kVFQ0y9X26vXb405Q2Kfb"}'} + body: {string: '{"id":"file-FPfBGJj059x04YP22fGQX3Vb"}'} headers: Connection: [keep-alive] Content-Length: ['38'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:43:58 GMT'] + Date: ['Wed, 14 Nov 2018 22:48:24 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593838272-863991] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235703962-882228] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -571,19 +571,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kVBj0y9X26vXb405Q2KfZ/describe + uri: https://api.dnanexus.com/project-FPfBGJ8059xPGvZP2fQbfy33/describe response: - body: {string: '{"id":"project-FP9kVBj0y9X26vXb405Q2KfZ","fileUploadParameters":{"maximumPartSize":5368709120,"minimumPartSize":5242880,"maximumFileSize":5497558138880,"maximumNumParts":10000,"emptyLastPartAllowed":true}}'} + body: {string: '{"id":"project-FPfBGJ8059xPGvZP2fQbfy33","fileUploadParameters":{"maximumPartSize":5368709120,"minimumPartSize":5242880,"maximumFileSize":5497558138880,"maximumNumParts":10000,"emptyLastPartAllowed":true}}'} headers: Connection: [keep-alive] Content-Length: ['205'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:43:58 GMT'] + Date: ['Wed, 14 Nov 2018 22:48:24 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593838414-876544] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235704097-712006] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -607,19 +607,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kVFQ0y9X26vXb405Q2Kfb/upload + uri: https://api.dnanexus.com/file-FPfBGJj059x04YP22fGQX3Vb/upload response: - body: {string: '{"url":"https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/3bdd/file/open/file-FP9kVFQ0y9X26vXb405Q2Kfb/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181026%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181026T224358Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=8ecd122dda4c588c65d67520c9a4a9d42056d5dba4ff5cf76329c98ef5292fa2","headers":{"host":"dnanexus-platform-upload-prod.s3.amazonaws.com","content-type":"binary/octet-stream","x-amz-server-side-encryption":"AES256","content-md5":"idkDvDXe3nJP1SxRQ3/1/Q==","content-length":"5"},"expires":1540593958547}'} + body: {string: '{"url":"https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/fae0/file/open/file-FPfBGJj059x04YP22fGQX3Vb/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181114%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181114T224824Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=d0c044f2ff615a0ab827c01c07723129dbfa5b441ebb17d3c50ee46a98486757","headers":{"host":"dnanexus-platform-upload-prod.s3.amazonaws.com","content-type":"binary/octet-stream","x-amz-server-side-encryption":"AES256","content-md5":"idkDvDXe3nJP1SxRQ3/1/Q==","content-length":"5"},"expires":1542235824230}'} headers: Connection: [keep-alive] Content-Length: ['692'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:43:58 GMT'] + Date: ['Wed, 14 Nov 2018 22:48:24 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593838534-254724] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235704218-907621] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -647,17 +647,17 @@ interactions: : - !!binary | QUVTMjU2 method: PUT - uri: https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/3bdd/file/open/file-FP9kVFQ0y9X26vXb405Q2Kfb/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181026%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181026T224358Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=8ecd122dda4c588c65d67520c9a4a9d42056d5dba4ff5cf76329c98ef5292fa2 + uri: https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/fae0/file/open/file-FPfBGJj059x04YP22fGQX3Vb/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181114%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181114T224824Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=d0c044f2ff615a0ab827c01c07723129dbfa5b441ebb17d3c50ee46a98486757 response: body: {string: ''} headers: Content-Length: ['0'] - Date: ['Fri, 26 Oct 2018 22:43:59 GMT'] + Date: ['Wed, 14 Nov 2018 22:48:25 GMT'] ETag: ['"89d903bc35dede724fd52c51437ff5fd"'] Server: [AmazonS3] - x-amz-expiration: ['expiry-date="Sat, 17 Nov 2018 00:00:00 GMT", rule-id="3weekpurge"'] - x-amz-id-2: [Hv5gM6vK6lJ5Um6REXE0MGvOR/LI0WWhstF/QtC6HX0ITQFdZh+SodskEwUZhTtIxOSbUvfB5kU=] - x-amz-request-id: [89A18D4CF7818C93] + x-amz-expiration: ['expiry-date="Thu, 06 Dec 2018 00:00:00 GMT", rule-id="3weekpurge"'] + x-amz-id-2: [oHLyhWNhFheocFXsToxN70dWVDUv1CsSlJgOr42PD97CM4O1693061RIST7IQC8r++w8lJyu714=] + x-amz-request-id: [064A164208274D6C] x-amz-server-side-encryption: [AES256] status: {code: 200, message: OK} - request: @@ -681,24 +681,24 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kVFQ0y9X26vXb405Q2Kfb/close + uri: https://api.dnanexus.com/file-FPfBGJj059x04YP22fGQX3Vb/close response: - body: {string: '{"id":"file-FP9kVFQ0y9X26vXb405Q2Kfb"}'} + body: {string: '{"id":"file-FPfBGJj059x04YP22fGQX3Vb"}'} headers: Connection: [keep-alive] Content-Length: ['38'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:43:59 GMT'] + Date: ['Wed, 14 Nov 2018 22:48:24 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593839082-657941] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235704682-863548] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: body: '{"objects": [{"name": "file.txt", "folder": "/existing_folder/folder", - "project": "project-FP9kVBj0y9X26vXb405Q2KfZ", "batchsize": 2}]}' + "project": "project-FPfBGJ8059xPGvZP2fQbfy33", "batchsize": 2}]}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -725,17 +725,17 @@ interactions: Connection: [keep-alive] Content-Length: ['16'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:43:59 GMT'] + Date: ['Wed, 14 Nov 2018 22:48:24 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593839202-902818] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235704904-343707] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"project": "project-FP9kVBj0y9X26vXb405Q2KfZ", "folder": "/existing_folder/folder", - "parents": true, "name": "file.txt", "nonce": "b''9eb2aa5d592b9bbbe29c22fa6b47b57edb0eb3720feef8ecf1f3e6511cc51bde''1540593839.263615"}' + body: '{"project": "project-FPfBGJ8059xPGvZP2fQbfy33", "folder": "/existing_folder/folder", + "parents": true, "name": "file.txt", "nonce": "b''29e27e92ce4539387ff071fdac2b5f979d6d26e31b0f2686c93c3446cbcf0497''1542235704.966832"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -757,17 +757,17 @@ interactions: method: POST uri: https://api.dnanexus.com/file/new response: - body: {string: '{"id":"file-FP9kVFj0y9XGfgvx3zz6pb2X"}'} + body: {string: '{"id":"file-FPfBGK8059x0B6KQ2bGvV8kB"}'} headers: Connection: [keep-alive] Content-Length: ['38'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:43:59 GMT'] + Date: ['Wed, 14 Nov 2018 22:48:25 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593839306-398216] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235705012-200612] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -791,19 +791,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kVBj0y9X26vXb405Q2KfZ/describe + uri: https://api.dnanexus.com/project-FPfBGJ8059xPGvZP2fQbfy33/describe response: - body: {string: '{"id":"project-FP9kVBj0y9X26vXb405Q2KfZ","fileUploadParameters":{"maximumPartSize":5368709120,"minimumPartSize":5242880,"maximumFileSize":5497558138880,"maximumNumParts":10000,"emptyLastPartAllowed":true}}'} + body: {string: '{"id":"project-FPfBGJ8059xPGvZP2fQbfy33","fileUploadParameters":{"maximumPartSize":5368709120,"minimumPartSize":5242880,"maximumFileSize":5497558138880,"maximumNumParts":10000,"emptyLastPartAllowed":true}}'} headers: Connection: [keep-alive] Content-Length: ['205'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:43:59 GMT'] + Date: ['Wed, 14 Nov 2018 22:48:25 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593839440-914375] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235705135-42058] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -827,19 +827,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kVFj0y9XGfgvx3zz6pb2X/upload + uri: https://api.dnanexus.com/file-FPfBGK8059x0B6KQ2bGvV8kB/upload response: - body: {string: '{"url":"https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/4bb0/file/open/file-FP9kVFj0y9XGfgvx3zz6pb2X/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181026%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181026T224359Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=dc7578794a55bd17658f9d3d3b76b168369b30b5c31f68fce704ba6263936d2e","headers":{"host":"dnanexus-platform-upload-prod.s3.amazonaws.com","content-type":"binary/octet-stream","x-amz-server-side-encryption":"AES256","content-md5":"c9//V/4k6Ae9T7G8TgfNcw==","content-length":"5"},"expires":1540593959576}'} + body: {string: '{"url":"https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/692e/file/open/file-FPfBGK8059x0B6KQ2bGvV8kB/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181114%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181114T224825Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=28f31d6223f075e467b224bcfc01e895da03d7306bdbecbcd18c4e92901b9f5e","headers":{"host":"dnanexus-platform-upload-prod.s3.amazonaws.com","content-type":"binary/octet-stream","x-amz-server-side-encryption":"AES256","content-md5":"c9//V/4k6Ae9T7G8TgfNcw==","content-length":"5"},"expires":1542235825309}'} headers: Connection: [keep-alive] Content-Length: ['692'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:43:59 GMT'] + Date: ['Wed, 14 Nov 2018 22:48:25 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593839563-822030] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235705297-740875] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -867,17 +867,17 @@ interactions: : - !!binary | QUVTMjU2 method: PUT - uri: https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/4bb0/file/open/file-FP9kVFj0y9XGfgvx3zz6pb2X/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181026%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181026T224359Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=dc7578794a55bd17658f9d3d3b76b168369b30b5c31f68fce704ba6263936d2e + uri: https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/692e/file/open/file-FPfBGK8059x0B6KQ2bGvV8kB/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181114%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181114T224825Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=28f31d6223f075e467b224bcfc01e895da03d7306bdbecbcd18c4e92901b9f5e response: body: {string: ''} headers: Content-Length: ['0'] - Date: ['Fri, 26 Oct 2018 22:44:00 GMT'] + Date: ['Wed, 14 Nov 2018 22:48:26 GMT'] ETag: ['"73dfff57fe24e807bd4fb1bc4e07cd73"'] Server: [AmazonS3] - x-amz-expiration: ['expiry-date="Sat, 17 Nov 2018 00:00:00 GMT", rule-id="3weekpurge"'] - x-amz-id-2: [vo29m3wnqvHz7eMierpPbgb4/IscG4FnsqPLtpIHlH90u2iHyVMPzS+nl08AdZBOK7SNobjSWw4=] - x-amz-request-id: [513626202FFBBC65] + x-amz-expiration: ['expiry-date="Thu, 06 Dec 2018 00:00:00 GMT", rule-id="3weekpurge"'] + x-amz-id-2: [EXPo2eqdjxsiBRhDVW5VBO8ecrRXGyT9zlVN7cQ6+/t16DctzoUO/ZhLgzZdpm9bwOmJdxaJiVg=] + x-amz-request-id: [BB77B19511CED38D] x-amz-server-side-encryption: [AES256] status: {code: 200, message: OK} - request: @@ -901,19 +901,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kVFj0y9XGfgvx3zz6pb2X/close + uri: https://api.dnanexus.com/file-FPfBGK8059x0B6KQ2bGvV8kB/close response: - body: {string: '{"id":"file-FP9kVFj0y9XGfgvx3zz6pb2X"}'} + body: {string: '{"id":"file-FPfBGK8059x0B6KQ2bGvV8kB"}'} headers: Connection: [keep-alive] Content-Length: ['38'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:43:59 GMT'] + Date: ['Wed, 14 Nov 2018 22:48:25 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593839935-497001] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235705506-157888] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -937,23 +937,23 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kVBj0y9X26vXb405Q2KfZ/newFolder + uri: https://api.dnanexus.com/project-FPfBGJ8059xPGvZP2fQbfy33/newFolder response: - body: {string: '{"id":"project-FP9kVBj0y9X26vXb405Q2KfZ"}'} + body: {string: '{"id":"project-FPfBGJ8059xPGvZP2fQbfy33"}'} headers: Connection: [keep-alive] Content-Length: ['41'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:44:00 GMT'] + Date: ['Wed, 14 Nov 2018 22:48:25 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593840058-618615] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235705649-563123] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"name": "TestCopyTree.test_posix_dir_to_dx_existing.46dfae8b", "level": + body: '{"name": "TestCopyTree.test_posix_dir_to_dx_existing.c26eaaaf", "level": "VIEW", "limit": 2}' headers: ? !!binary | @@ -976,22 +976,22 @@ interactions: method: POST uri: https://api.dnanexus.com/system/findProjects response: - body: {string: '{"results":[{"id":"project-FP9kVBj0y9X26vXb405Q2KfZ","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} + body: {string: '{"results":[{"id":"project-FPfBGJ8059xPGvZP2fQbfy33","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} headers: Connection: [keep-alive] Content-Length: ['147'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:44:00 GMT'] + Date: ['Wed, 14 Nov 2018 22:48:25 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593840169-583686] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235705812-833159] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: body: '{"objects": [{"name": "file.txt", "folder": "/existing_folder/folder", - "project": "project-FP9kVBj0y9X26vXb405Q2KfZ", "batchsize": 2}]}' + "project": "project-FPfBGJ8059xPGvZP2fQbfy33", "batchsize": 2}]}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -1013,21 +1013,21 @@ interactions: method: POST uri: https://api.dnanexus.com/system/resolveDataObjects response: - body: {string: '{"results":[[{"project":"project-FP9kVBj0y9X26vXb405Q2KfZ","id":"file-FP9kVFj0y9XGfgvx3zz6pb2X"}]]}'} + body: {string: '{"results":[[{"project":"project-FPfBGJ8059xPGvZP2fQbfy33","id":"file-FPfBGK8059x0B6KQ2bGvV8kB"}]]}'} headers: Connection: [keep-alive] Content-Length: ['99'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:44:00 GMT'] + Date: ['Wed, 14 Nov 2018 22:48:25 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593840290-463639] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235705927-914787] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"project": "project-FP9kVBj0y9X26vXb405Q2KfZ"}' + body: '{"project": "project-FPfBGJ8059xPGvZP2fQbfy33"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -1047,23 +1047,23 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kVFj0y9XGfgvx3zz6pb2X/describe + uri: https://api.dnanexus.com/file-FPfBGK8059x0B6KQ2bGvV8kB/describe response: - body: {string: '{"id":"file-FP9kVFj0y9XGfgvx3zz6pb2X","project":"project-FP9kVBj0y9X26vXb405Q2KfZ","class":"file","sponsored":false,"name":"file.txt","types":[],"state":"closing","hidden":false,"links":[],"folder":"/existing_folder/folder","tags":[],"created":1540593839000,"modified":1540593839948,"createdBy":{"user":"user-akumar_counsyl"},"media":"","archivalState":"live"}'} + body: {string: '{"id":"file-FPfBGK8059x0B6KQ2bGvV8kB","project":"project-FPfBGJ8059xPGvZP2fQbfy33","class":"file","sponsored":false,"name":"file.txt","types":[],"state":"closed","hidden":false,"links":[],"folder":"/existing_folder/folder","tags":[],"created":1542235705000,"modified":1542235705957,"createdBy":{"user":"user-akumar_counsyl"},"media":"text/plain","archivalState":"live","size":5}'} headers: Connection: [keep-alive] - Content-Length: ['360'] + Content-Length: ['378'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:44:00 GMT'] + Date: ['Wed, 14 Nov 2018 22:48:26 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593840404-643303] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235706034-206853] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"name": "TestCopyTree.test_posix_dir_to_dx_existing.46dfae8b", "level": + body: '{"name": "TestCopyTree.test_posix_dir_to_dx_existing.c26eaaaf", "level": "VIEW", "limit": 2}' headers: ? !!binary | @@ -1086,22 +1086,22 @@ interactions: method: POST uri: https://api.dnanexus.com/system/findProjects response: - body: {string: '{"results":[{"id":"project-FP9kVBj0y9X26vXb405Q2KfZ","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} + body: {string: '{"results":[{"id":"project-FPfBGJ8059xPGvZP2fQbfy33","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} headers: Connection: [keep-alive] Content-Length: ['147'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:44:00 GMT'] + Date: ['Wed, 14 Nov 2018 22:48:26 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593840516-168479] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235706145-556637] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: body: '{"objects": [{"name": "folder2", "folder": "/existing_folder/folder", "project": - "project-FP9kVBj0y9X26vXb405Q2KfZ", "batchsize": 2}]}' + "project-FPfBGJ8059xPGvZP2fQbfy33", "batchsize": 2}]}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -1128,12 +1128,12 @@ interactions: Connection: [keep-alive] Content-Length: ['16'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:44:00 GMT'] + Date: ['Wed, 14 Nov 2018 22:48:26 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593840646-586452] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235706820-72787] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -1158,19 +1158,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kVBj0y9X26vXb405Q2KfZ/listFolder + uri: https://api.dnanexus.com/project-FPfBGJ8059xPGvZP2fQbfy33/listFolder response: body: {string: '{"folders":[]}'} headers: Connection: [keep-alive] Content-Length: ['14'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:44:00 GMT'] + Date: ['Wed, 14 Nov 2018 22:48:26 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593840753-873332] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235706918-618285] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -1194,19 +1194,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kVBj0y9X26vXb405Q2KfZ/destroy + uri: https://api.dnanexus.com/project-FPfBGJ8059xPGvZP2fQbfy33/destroy response: - body: {string: '{"id":"project-FP9kVBj0y9X26vXb405Q2KfZ"}'} + body: {string: '{"id":"project-FPfBGJ8059xPGvZP2fQbfy33"}'} headers: Connection: [keep-alive] Content-Length: ['41'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:44:03 GMT'] + Date: ['Wed, 14 Nov 2018 22:48:30 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593840862-830872] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235707039-329079] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} version: 1 diff --git a/stor/tests/cassettes_py3/TestCopyTree/test_posix_dir_to_dx_fail.yaml b/stor_dx/stor_dx/tests/cassettes_py3/TestCopyTree/test_posix_dir_to_dx_fail.yaml similarity index 74% rename from stor/tests/cassettes_py3/TestCopyTree/test_posix_dir_to_dx_fail.yaml rename to stor_dx/stor_dx/tests/cassettes_py3/TestCopyTree/test_posix_dir_to_dx_fail.yaml index 10238faa..82481ead 100644 --- a/stor/tests/cassettes_py3/TestCopyTree/test_posix_dir_to_dx_fail.yaml +++ b/stor_dx/stor_dx/tests/cassettes_py3/TestCopyTree/test_posix_dir_to_dx_fail.yaml @@ -1,6 +1,6 @@ interactions: - request: - body: '{"name": "TestCopyTree.test_posix_dir_to_dx_fail.2f90df9a"}' + body: '{"name": "TestCopyTree.test_posix_dir_to_dx_fail.0fe3ca35"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -22,17 +22,17 @@ interactions: method: POST uri: https://api.dnanexus.com/project/new response: - body: {string: '{"id":"project-FP9kVGj04VVvyGF83zZqbVq6"}'} + body: {string: '{"id":"project-FPfBGPQ0q6QY90yB2f7kFyF6"}'} headers: Connection: [keep-alive] Content-Length: ['41'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:44:03 GMT'] + Date: ['Wed, 14 Nov 2018 22:48:30 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593843484-660767] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235710625-200964] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -56,19 +56,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kVGj04VVvyGF83zZqbVq6/describe + uri: https://api.dnanexus.com/project-FPfBGPQ0q6QY90yB2f7kFyF6/describe response: - body: {string: '{"id":"project-FP9kVGj04VVvyGF83zZqbVq6","name":"TestCopyTree.test_posix_dir_to_dx_fail.2f90df9a","class":"project","created":1540593843000,"modified":1540593843000,"billTo":"org-counsyl","level":"ADMINISTER","dataUsage":0,"sponsoredDataUsage":0,"region":"aws:us-east-1","summary":"","description":"","protected":false,"restricted":false,"downloadRestricted":false,"containsPHI":false,"createdBy":{"user":"user-akumar_counsyl"},"version":0,"storageCost":0,"pendingTransfer":null,"tags":[],"defaultInstanceType":"mem2_hdd2_x2","archivalState":"live","archivalProgress":null,"totalSponsoredEgressBytes":0,"consumedSponsoredEgressBytes":0,"atSpendingLimit":false}'} + body: {string: '{"id":"project-FPfBGPQ0q6QY90yB2f7kFyF6","name":"TestCopyTree.test_posix_dir_to_dx_fail.0fe3ca35","class":"project","created":1542235710000,"modified":1542235710000,"billTo":"org-counsyl","level":"ADMINISTER","dataUsage":0,"sponsoredDataUsage":0,"region":"aws:us-east-1","summary":"","description":"","protected":false,"restricted":false,"downloadRestricted":false,"containsPHI":false,"createdBy":{"user":"user-akumar_counsyl"},"version":0,"storageCost":0,"pendingTransfer":null,"tags":[],"defaultInstanceType":"mem2_hdd2_x2","archivalState":"live","archivalProgress":null,"totalSponsoredEgressBytes":0,"consumedSponsoredEgressBytes":0,"atSpendingLimit":false}'} headers: Connection: [keep-alive] Content-Length: ['660'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:44:03 GMT'] + Date: ['Wed, 14 Nov 2018 22:48:30 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593843608-705076] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235710782-756040] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -92,24 +92,24 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kVGj04VVvyGF83zZqbVq6/newFolder + uri: https://api.dnanexus.com/project-FPfBGPQ0q6QY90yB2f7kFyF6/newFolder response: - body: {string: '{"id":"project-FP9kVGj04VVvyGF83zZqbVq6"}'} + body: {string: '{"id":"project-FPfBGPQ0q6QY90yB2f7kFyF6"}'} headers: Connection: [keep-alive] Content-Length: ['41'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:44:03 GMT'] + Date: ['Wed, 14 Nov 2018 22:48:31 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593843731-626522] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235710976-30823] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"name": "file", "folder": "/temp_folder/folder", "project": "project-FP9kVGj04VVvyGF83zZqbVq6", - "nonce": "b''f2c5be941e18c11902e99ca8048c0e51d4aedbf9da03ead682f34e21ba92d317''1540593843.795954"}' + body: '{"name": "file", "folder": "/temp_folder/folder", "project": "project-FPfBGPQ0q6QY90yB2f7kFyF6", + "nonce": "b''452091e2bd07f283bc88f9606c9dd2294ebabafc834e7ca17f2faff2f5014732''1542235711.051059"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -131,17 +131,17 @@ interactions: method: POST uri: https://api.dnanexus.com/file/new response: - body: {string: '{"id":"file-FP9kVGj04VVk2JG740JK7J2g"}'} + body: {string: '{"id":"file-FPfBGPj0q6QvF0v02bbj0Vk2"}'} headers: Connection: [keep-alive] Content-Length: ['38'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:44:03 GMT'] + Date: ['Wed, 14 Nov 2018 22:48:31 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593843845-938262] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235711099-267838] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -165,19 +165,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kVGj04VVvyGF83zZqbVq6/describe + uri: https://api.dnanexus.com/project-FPfBGPQ0q6QY90yB2f7kFyF6/describe response: - body: {string: '{"id":"project-FP9kVGj04VVvyGF83zZqbVq6","fileUploadParameters":{"maximumPartSize":5368709120,"minimumPartSize":5242880,"maximumFileSize":5497558138880,"maximumNumParts":10000,"emptyLastPartAllowed":true}}'} + body: {string: '{"id":"project-FPfBGPQ0q6QY90yB2f7kFyF6","fileUploadParameters":{"maximumPartSize":5368709120,"minimumPartSize":5242880,"maximumFileSize":5497558138880,"maximumNumParts":10000,"emptyLastPartAllowed":true}}'} headers: Connection: [keep-alive] Content-Length: ['205'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:44:04 GMT'] + Date: ['Wed, 14 Nov 2018 22:48:31 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593843995-118457] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235711274-495596] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -201,19 +201,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kVGj04VVk2JG740JK7J2g/upload + uri: https://api.dnanexus.com/file-FPfBGPj0q6QvF0v02bbj0Vk2/upload response: - body: {string: '{"url":"https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/d318/file/open/file-FP9kVGj04VVk2JG740JK7J2g/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181026%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181026T224404Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=f0ea8371f2bf12ce0491625ad0d68bc7a97bd7864ec5970d4421930d84438d04","headers":{"host":"dnanexus-platform-upload-prod.s3.amazonaws.com","content-type":"binary/octet-stream","x-amz-server-side-encryption":"AES256","content-md5":"c9//V/4k6Ae9T7G8TgfNcw==","content-length":"5"},"expires":1540593964113}'} + body: {string: '{"url":"https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/0433/file/open/file-FPfBGPj0q6QvF0v02bbj0Vk2/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181114%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181114T224831Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=59fbe84e11fb5fe4e6a5a1ac385a2a4e154dca0bd3a3813923be9e565b634171","headers":{"host":"dnanexus-platform-upload-prod.s3.amazonaws.com","content-type":"binary/octet-stream","x-amz-server-side-encryption":"AES256","content-md5":"c9//V/4k6Ae9T7G8TgfNcw==","content-length":"5"},"expires":1542235831398}'} headers: Connection: [keep-alive] Content-Length: ['692'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:44:04 GMT'] + Date: ['Wed, 14 Nov 2018 22:48:31 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593844101-772972] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235711374-546797] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -241,21 +241,21 @@ interactions: : - !!binary | QUVTMjU2 method: PUT - uri: https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/d318/file/open/file-FP9kVGj04VVk2JG740JK7J2g/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181026%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181026T224404Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=f0ea8371f2bf12ce0491625ad0d68bc7a97bd7864ec5970d4421930d84438d04 + uri: https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/0433/file/open/file-FPfBGPj0q6QvF0v02bbj0Vk2/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181114%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181114T224831Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=59fbe84e11fb5fe4e6a5a1ac385a2a4e154dca0bd3a3813923be9e565b634171 response: body: {string: ''} headers: Content-Length: ['0'] - Date: ['Fri, 26 Oct 2018 22:44:05 GMT'] + Date: ['Wed, 14 Nov 2018 22:48:32 GMT'] ETag: ['"73dfff57fe24e807bd4fb1bc4e07cd73"'] Server: [AmazonS3] - x-amz-expiration: ['expiry-date="Sat, 17 Nov 2018 00:00:00 GMT", rule-id="3weekpurge"'] - x-amz-id-2: [3dCDUSlJSWY+itMI4dkmqhZ/YkTLV44huBUfwSeQXHCJNlV6kmHFNKH7rs+0dv8p3vQELbRhE4A=] - x-amz-request-id: [FE712A819E3F115E] + x-amz-expiration: ['expiry-date="Thu, 06 Dec 2018 00:00:00 GMT", rule-id="3weekpurge"'] + x-amz-id-2: [AjvYAXOzXEmY8cJxsk30A4UUkTHhUMcj/yfqgc9RnfGcP9UtXaDtmEsQVEijyPds4B1d0Wa+Bl4=] + x-amz-request-id: [66DDAE919E6F7BEC] x-amz-server-side-encryption: [AES256] status: {code: 200, message: OK} - request: - body: '{"fields": {"state": true}, "project": "project-FP9kVGj04VVvyGF83zZqbVq6"}' + body: '{"fields": {"state": true}, "project": "project-FPfBGPQ0q6QY90yB2f7kFyF6"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -275,19 +275,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kVGj04VVk2JG740JK7J2g/describe + uri: https://api.dnanexus.com/file-FPfBGPj0q6QvF0v02bbj0Vk2/describe response: - body: {string: '{"id":"file-FP9kVGj04VVk2JG740JK7J2g","state":"open"}'} + body: {string: '{"id":"file-FPfBGPj0q6QvF0v02bbj0Vk2","state":"open"}'} headers: Connection: [keep-alive] Content-Length: ['53'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:44:04 GMT'] + Date: ['Wed, 14 Nov 2018 22:48:31 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593844631-684292] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235711852-613881] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -311,23 +311,23 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kVGj04VVk2JG740JK7J2g/close + uri: https://api.dnanexus.com/file-FPfBGPj0q6QvF0v02bbj0Vk2/close response: - body: {string: '{"id":"file-FP9kVGj04VVk2JG740JK7J2g"}'} + body: {string: '{"id":"file-FPfBGPj0q6QvF0v02bbj0Vk2"}'} headers: Connection: [keep-alive] Content-Length: ['38'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:44:04 GMT'] + Date: ['Wed, 14 Nov 2018 22:48:32 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593844745-734384] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235711960-214832] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"name": "TestCopyTree.test_posix_dir_to_dx_fail.2f90df9a", "level": "VIEW", + body: '{"name": "TestCopyTree.test_posix_dir_to_dx_fail.0fe3ca35", "level": "VIEW", "limit": 2}' headers: ? !!binary | @@ -350,17 +350,17 @@ interactions: method: POST uri: https://api.dnanexus.com/system/findProjects response: - body: {string: '{"results":[{"id":"project-FP9kVGj04VVvyGF83zZqbVq6","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} + body: {string: '{"results":[{"id":"project-FPfBGPQ0q6QY90yB2f7kFyF6","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} headers: Connection: [keep-alive] Content-Length: ['147'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:44:04 GMT'] + Date: ['Wed, 14 Nov 2018 22:48:32 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593844863-485661] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235712146-383868] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -385,23 +385,23 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kVGj04VVvyGF83zZqbVq6/listFolder + uri: https://api.dnanexus.com/project-FPfBGPQ0q6QY90yB2f7kFyF6/listFolder response: body: {string: '{"folders":["/temp_folder/folder"]}'} headers: Connection: [keep-alive] Content-Length: ['35'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:44:05 GMT'] + Date: ['Wed, 14 Nov 2018 22:48:32 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593844991-362286] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235712289-481895] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"name": "TestCopyTree.test_posix_dir_to_dx_fail.2f90df9a", "level": "VIEW", + body: '{"name": "TestCopyTree.test_posix_dir_to_dx_fail.0fe3ca35", "level": "VIEW", "limit": 2}' headers: ? !!binary | @@ -424,17 +424,17 @@ interactions: method: POST uri: https://api.dnanexus.com/system/findProjects response: - body: {string: '{"results":[{"id":"project-FP9kVGj04VVvyGF83zZqbVq6","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} + body: {string: '{"results":[{"id":"project-FPfBGPQ0q6QY90yB2f7kFyF6","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} headers: Connection: [keep-alive] Content-Length: ['147'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:44:05 GMT'] + Date: ['Wed, 14 Nov 2018 22:48:32 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593845109-230219] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235712450-80928] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -459,19 +459,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kVGj04VVvyGF83zZqbVq6/listFolder + uri: https://api.dnanexus.com/project-FPfBGPQ0q6QY90yB2f7kFyF6/listFolder response: body: {string: '{"folders":[]}'} headers: Connection: [keep-alive] Content-Length: ['14'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:44:05 GMT'] + Date: ['Wed, 14 Nov 2018 22:48:32 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593845235-404037] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235712683-199294] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -495,19 +495,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kVGj04VVvyGF83zZqbVq6/destroy + uri: https://api.dnanexus.com/project-FPfBGPQ0q6QY90yB2f7kFyF6/destroy response: - body: {string: '{"id":"project-FP9kVGj04VVvyGF83zZqbVq6"}'} + body: {string: '{"id":"project-FPfBGPQ0q6QY90yB2f7kFyF6"}'} headers: Connection: [keep-alive] Content-Length: ['41'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:44:07 GMT'] + Date: ['Wed, 14 Nov 2018 22:48:36 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593845347-53314] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235712807-27748] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} version: 1 diff --git a/stor/tests/cassettes_py3/TestCopyTree/test_posix_dir_to_dx_nested.yaml b/stor_dx/stor_dx/tests/cassettes_py3/TestCopyTree/test_posix_dir_to_dx_nested.yaml similarity index 74% rename from stor/tests/cassettes_py3/TestCopyTree/test_posix_dir_to_dx_nested.yaml rename to stor_dx/stor_dx/tests/cassettes_py3/TestCopyTree/test_posix_dir_to_dx_nested.yaml index a3012335..fdde5982 100644 --- a/stor/tests/cassettes_py3/TestCopyTree/test_posix_dir_to_dx_nested.yaml +++ b/stor_dx/stor_dx/tests/cassettes_py3/TestCopyTree/test_posix_dir_to_dx_nested.yaml @@ -1,6 +1,6 @@ interactions: - request: - body: '{"name": "TestCopyTree.test_posix_dir_to_dx_nested.b93efc3b"}' + body: '{"name": "TestCopyTree.test_posix_dir_to_dx_nested.e780c606"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -22,17 +22,17 @@ interactions: method: POST uri: https://api.dnanexus.com/project/new response: - body: {string: '{"id":"project-FP9kVK008JPvyGF83zZqbVq7"}'} + body: {string: '{"id":"project-FPfBGV00pPBGF0v02bbj0Vk4"}'} headers: Connection: [keep-alive] Content-Length: ['41'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:44:08 GMT'] + Date: ['Wed, 14 Nov 2018 22:48:36 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593848275-210462] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235716498-939464] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -56,23 +56,23 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kVK008JPvyGF83zZqbVq7/describe + uri: https://api.dnanexus.com/project-FPfBGV00pPBGF0v02bbj0Vk4/describe response: - body: {string: '{"id":"project-FP9kVK008JPvyGF83zZqbVq7","name":"TestCopyTree.test_posix_dir_to_dx_nested.b93efc3b","class":"project","created":1540593848000,"modified":1540593848000,"billTo":"org-counsyl","level":"ADMINISTER","dataUsage":0,"sponsoredDataUsage":0,"region":"aws:us-east-1","summary":"","description":"","protected":false,"restricted":false,"downloadRestricted":false,"containsPHI":false,"createdBy":{"user":"user-akumar_counsyl"},"version":0,"storageCost":0,"pendingTransfer":null,"tags":[],"defaultInstanceType":"mem2_hdd2_x2","archivalState":"live","archivalProgress":null,"totalSponsoredEgressBytes":0,"consumedSponsoredEgressBytes":0,"atSpendingLimit":false}'} + body: {string: '{"id":"project-FPfBGV00pPBGF0v02bbj0Vk4","name":"TestCopyTree.test_posix_dir_to_dx_nested.e780c606","class":"project","created":1542235716000,"modified":1542235716000,"billTo":"org-counsyl","level":"ADMINISTER","dataUsage":0,"sponsoredDataUsage":0,"region":"aws:us-east-1","summary":"","description":"","protected":false,"restricted":false,"downloadRestricted":false,"containsPHI":false,"createdBy":{"user":"user-akumar_counsyl"},"version":0,"storageCost":0,"pendingTransfer":null,"tags":[],"defaultInstanceType":"mem2_hdd2_x2","archivalState":"live","archivalProgress":null,"totalSponsoredEgressBytes":0,"consumedSponsoredEgressBytes":0,"atSpendingLimit":false}'} headers: Connection: [keep-alive] Content-Length: ['662'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:44:08 GMT'] + Date: ['Wed, 14 Nov 2018 22:48:36 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593848394-823597] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235716612-932655] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"name": "TestCopyTree.test_posix_dir_to_dx_nested.b93efc3b", "level": + body: '{"name": "TestCopyTree.test_posix_dir_to_dx_nested.e780c606", "level": "VIEW", "limit": 2}' headers: ? !!binary | @@ -95,17 +95,17 @@ interactions: method: POST uri: https://api.dnanexus.com/system/findProjects response: - body: {string: '{"results":[{"id":"project-FP9kVK008JPvyGF83zZqbVq7","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} + body: {string: '{"results":[{"id":"project-FPfBGV00pPBGF0v02bbj0Vk4","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} headers: Connection: [keep-alive] Content-Length: ['147'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:44:08 GMT'] + Date: ['Wed, 14 Nov 2018 22:48:36 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593848521-30320] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235716809-94791] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -130,25 +130,25 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kVK008JPvyGF83zZqbVq7/listFolder + uri: https://api.dnanexus.com/project-FPfBGV00pPBGF0v02bbj0Vk4/listFolder response: body: {string: '{"error":{"type":"ResourceNotFound","message":"The specified folder - could not be found in project-FP9kVK008JPvyGF83zZqbVq7"}}'} + could not be found in project-FPfBGV00pPBGF0v02bbj0Vk4"}}'} headers: Connection: [keep-alive] Content-Type: [application/json] - Date: ['Fri, 26 Oct 2018 22:44:08 GMT'] + Date: ['Wed, 14 Nov 2018 22:48:36 GMT'] Server: [nginx] Transfer-Encoding: [chunked] Vary: [Accept-Encoding] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593848654-924138] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235716935-678642] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 404, message: Not Found} - request: - body: '{"name": "TestCopyTree.test_posix_dir_to_dx_nested.b93efc3b", "level": + body: '{"name": "TestCopyTree.test_posix_dir_to_dx_nested.e780c606", "level": "VIEW", "limit": 2}' headers: ? !!binary | @@ -171,17 +171,17 @@ interactions: method: POST uri: https://api.dnanexus.com/system/findProjects response: - body: {string: '{"results":[{"id":"project-FP9kVK008JPvyGF83zZqbVq7","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} + body: {string: '{"results":[{"id":"project-FPfBGV00pPBGF0v02bbj0Vk4","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} headers: Connection: [keep-alive] Content-Length: ['147'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:44:09 GMT'] + Date: ['Wed, 14 Nov 2018 22:48:37 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593849071-46845] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235717311-963987] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -206,26 +206,26 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kVK008JPvyGF83zZqbVq7/listFolder + uri: https://api.dnanexus.com/project-FPfBGV00pPBGF0v02bbj0Vk4/listFolder response: body: {string: '{"error":{"type":"ResourceNotFound","message":"The specified folder - could not be found in project-FP9kVK008JPvyGF83zZqbVq7"}}'} + could not be found in project-FPfBGV00pPBGF0v02bbj0Vk4"}}'} headers: Connection: [keep-alive] Content-Type: [application/json] - Date: ['Fri, 26 Oct 2018 22:44:09 GMT'] + Date: ['Wed, 14 Nov 2018 22:48:37 GMT'] Server: [nginx] Transfer-Encoding: [chunked] Vary: [Accept-Encoding] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593849206-703067] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235717447-166891] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 404, message: Not Found} - request: body: '{"objects": [{"name": "file2.txt", "folder": "/temp_folder/folder", "project": - "project-FP9kVK008JPvyGF83zZqbVq7", "batchsize": 2}]}' + "project-FPfBGV00pPBGF0v02bbj0Vk4", "batchsize": 2}]}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -252,17 +252,17 @@ interactions: Connection: [keep-alive] Content-Length: ['16'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:44:09 GMT'] + Date: ['Wed, 14 Nov 2018 22:48:37 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593849602-28081] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235717847-242359] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"project": "project-FP9kVK008JPvyGF83zZqbVq7", "folder": "/temp_folder/folder", - "parents": true, "name": "file2.txt", "nonce": "b''a69f1fe0a39453f5d0bcc8a39a7cd3b3b6801105dacf3c944ef94bda76c4f999''1540593849.664709"}' + body: '{"project": "project-FPfBGV00pPBGF0v02bbj0Vk4", "folder": "/temp_folder/folder", + "parents": true, "name": "file2.txt", "nonce": "b''96078227fb043e13ffd6270cfe126ee03ddfae13f8acc061e7ef829a3e5f6bee''1542235717.920218"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -284,17 +284,17 @@ interactions: method: POST uri: https://api.dnanexus.com/file/new response: - body: {string: '{"id":"file-FP9kVK808JPvfgvx3zz6pb2Z"}'} + body: {string: '{"id":"file-FPfBGVQ0pPB84Pz62bV2v5JB"}'} headers: Connection: [keep-alive] Content-Length: ['38'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:44:09 GMT'] + Date: ['Wed, 14 Nov 2018 22:48:38 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593849714-561117] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235717967-999299] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -318,19 +318,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kVK008JPvyGF83zZqbVq7/describe + uri: https://api.dnanexus.com/project-FPfBGV00pPBGF0v02bbj0Vk4/describe response: - body: {string: '{"id":"project-FP9kVK008JPvyGF83zZqbVq7","fileUploadParameters":{"maximumPartSize":5368709120,"minimumPartSize":5242880,"maximumFileSize":5497558138880,"maximumNumParts":10000,"emptyLastPartAllowed":true}}'} + body: {string: '{"id":"project-FPfBGV00pPBGF0v02bbj0Vk4","fileUploadParameters":{"maximumPartSize":5368709120,"minimumPartSize":5242880,"maximumFileSize":5497558138880,"maximumNumParts":10000,"emptyLastPartAllowed":true}}'} headers: Connection: [keep-alive] Content-Length: ['205'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:44:09 GMT'] + Date: ['Wed, 14 Nov 2018 22:48:38 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593849870-994013] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235718201-77482] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -354,19 +354,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kVK808JPvfgvx3zz6pb2Z/upload + uri: https://api.dnanexus.com/file-FPfBGVQ0pPB84Pz62bV2v5JB/upload response: - body: {string: '{"url":"https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/7655/file/open/file-FP9kVK808JPvfgvx3zz6pb2Z/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181026%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181026T224410Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=063975f6dd6860320f8cfd0ab67f174f15d9f24ac43826d3e06443e06ce22b09","headers":{"host":"dnanexus-platform-upload-prod.s3.amazonaws.com","content-type":"binary/octet-stream","x-amz-server-side-encryption":"AES256","content-md5":"idkDvDXe3nJP1SxRQ3/1/Q==","content-length":"5"},"expires":1540593970008}'} + body: {string: '{"url":"https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/c78e/file/open/file-FPfBGVQ0pPB84Pz62bV2v5JB/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181114%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181114T224838Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=7cd463abe10d42e18141583a5c8ff995b01601dd87c98c70e029870842866c3e","headers":{"host":"dnanexus-platform-upload-prod.s3.amazonaws.com","content-type":"binary/octet-stream","x-amz-server-side-encryption":"AES256","content-md5":"idkDvDXe3nJP1SxRQ3/1/Q==","content-length":"5"},"expires":1542235838340}'} headers: Connection: [keep-alive] Content-Length: ['692'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:44:10 GMT'] + Date: ['Wed, 14 Nov 2018 22:48:38 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593849992-680393] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235718321-62412] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -394,17 +394,17 @@ interactions: : - !!binary | QUVTMjU2 method: PUT - uri: https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/7655/file/open/file-FP9kVK808JPvfgvx3zz6pb2Z/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181026%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181026T224410Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=063975f6dd6860320f8cfd0ab67f174f15d9f24ac43826d3e06443e06ce22b09 + uri: https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/c78e/file/open/file-FPfBGVQ0pPB84Pz62bV2v5JB/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181114%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181114T224838Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=7cd463abe10d42e18141583a5c8ff995b01601dd87c98c70e029870842866c3e response: body: {string: ''} headers: Content-Length: ['0'] - Date: ['Fri, 26 Oct 2018 22:44:11 GMT'] + Date: ['Wed, 14 Nov 2018 22:48:39 GMT'] ETag: ['"89d903bc35dede724fd52c51437ff5fd"'] Server: [AmazonS3] - x-amz-expiration: ['expiry-date="Sat, 17 Nov 2018 00:00:00 GMT", rule-id="3weekpurge"'] - x-amz-id-2: [NI/66lrMykp58KCdoAz2WaxGC8+Jt4t+Gd7EyFT697QVkX0QdGZr58dfK7MYAXYpto8KoLH9/10=] - x-amz-request-id: [8D737E6119DD96DB] + x-amz-expiration: ['expiry-date="Thu, 06 Dec 2018 00:00:00 GMT", rule-id="3weekpurge"'] + x-amz-id-2: [Cqkh18id3ox2oy/q+je3SsZrwEgOGsDCxi5WRj53j9QZgGjbIGGEpecAVyRuI9Vhp1FYa47UczA=] + x-amz-request-id: [2C6309CBB41BF67E] x-amz-server-side-encryption: [AES256] status: {code: 200, message: OK} - request: @@ -428,24 +428,24 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kVK808JPvfgvx3zz6pb2Z/close + uri: https://api.dnanexus.com/file-FPfBGVQ0pPB84Pz62bV2v5JB/close response: - body: {string: '{"id":"file-FP9kVK808JPvfgvx3zz6pb2Z"}'} + body: {string: '{"id":"file-FPfBGVQ0pPB84Pz62bV2v5JB"}'} headers: Connection: [keep-alive] Content-Length: ['38'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:44:10 GMT'] + Date: ['Wed, 14 Nov 2018 22:48:38 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593850581-944249] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235718871-633716] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: body: '{"objects": [{"name": "file.txt", "folder": "/temp_folder/folder", "project": - "project-FP9kVK008JPvyGF83zZqbVq7", "batchsize": 2}]}' + "project-FPfBGV00pPBGF0v02bbj0Vk4", "batchsize": 2}]}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -472,17 +472,17 @@ interactions: Connection: [keep-alive] Content-Length: ['16'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:44:10 GMT'] + Date: ['Wed, 14 Nov 2018 22:48:39 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593850705-896422] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235719048-551096] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"project": "project-FP9kVK008JPvyGF83zZqbVq7", "folder": "/temp_folder/folder", - "parents": true, "name": "file.txt", "nonce": "b''4b6824321e29bbdb622e41838d96063d83bf767364d81a24219a5a7f63c5f024''1540593850.767868"}' + body: '{"project": "project-FPfBGV00pPBGF0v02bbj0Vk4", "folder": "/temp_folder/folder", + "parents": true, "name": "file.txt", "nonce": "b''c02d9c3a34e09d7fe7d78d52cc0e9b43cb87125697733b91c962af77337f5ca7''1542235719.126659"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -504,17 +504,17 @@ interactions: method: POST uri: https://api.dnanexus.com/file/new response: - body: {string: '{"id":"file-FP9kVKQ08JPk2JG740JK7J2k"}'} + body: {string: '{"id":"file-FPfBGVj0pPBGF0v02bbj0Vk5"}'} headers: Connection: [keep-alive] Content-Length: ['38'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:44:10 GMT'] + Date: ['Wed, 14 Nov 2018 22:48:39 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593850816-959607] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235719181-170883] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -538,19 +538,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kVK008JPvyGF83zZqbVq7/describe + uri: https://api.dnanexus.com/project-FPfBGV00pPBGF0v02bbj0Vk4/describe response: - body: {string: '{"id":"project-FP9kVK008JPvyGF83zZqbVq7","fileUploadParameters":{"maximumPartSize":5368709120,"minimumPartSize":5242880,"maximumFileSize":5497558138880,"maximumNumParts":10000,"emptyLastPartAllowed":true}}'} + body: {string: '{"id":"project-FPfBGV00pPBGF0v02bbj0Vk4","fileUploadParameters":{"maximumPartSize":5368709120,"minimumPartSize":5242880,"maximumFileSize":5497558138880,"maximumNumParts":10000,"emptyLastPartAllowed":true}}'} headers: Connection: [keep-alive] Content-Length: ['205'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:44:10 GMT'] + Date: ['Wed, 14 Nov 2018 22:48:39 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593850941-674334] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235719313-765821] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -574,19 +574,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kVKQ08JPk2JG740JK7J2k/upload + uri: https://api.dnanexus.com/file-FPfBGVj0pPBGF0v02bbj0Vk5/upload response: - body: {string: '{"url":"https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/093f/file/open/file-FP9kVKQ08JPk2JG740JK7J2k/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181026%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181026T224411Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=19dfa7872fd7de9fcd8299bdc288e728b8ed3bf7d75f4ff45688a8dffac09c5d","headers":{"host":"dnanexus-platform-upload-prod.s3.amazonaws.com","content-type":"binary/octet-stream","x-amz-server-side-encryption":"AES256","content-md5":"c9//V/4k6Ae9T7G8TgfNcw==","content-length":"5"},"expires":1540593971076}'} + body: {string: '{"url":"https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/901c/file/open/file-FPfBGVj0pPBGF0v02bbj0Vk5/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181114%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181114T224839Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=00c2ce52a022e2de79bf9f19ca2dd74301d8b2bb405a91fc28b5b2d12f9c005d","headers":{"host":"dnanexus-platform-upload-prod.s3.amazonaws.com","content-type":"binary/octet-stream","x-amz-server-side-encryption":"AES256","content-md5":"c9//V/4k6Ae9T7G8TgfNcw==","content-length":"5"},"expires":1542235839544}'} headers: Connection: [keep-alive] Content-Length: ['692'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:44:11 GMT'] + Date: ['Wed, 14 Nov 2018 22:48:39 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593851063-896672] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235719511-556226] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -614,17 +614,17 @@ interactions: : - !!binary | QUVTMjU2 method: PUT - uri: https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/093f/file/open/file-FP9kVKQ08JPk2JG740JK7J2k/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181026%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181026T224411Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=19dfa7872fd7de9fcd8299bdc288e728b8ed3bf7d75f4ff45688a8dffac09c5d + uri: https://dnanexus-platform-upload-prod.s3.amazonaws.com/filev2/901c/file/open/file-FPfBGVj0pPBGF0v02bbj0Vk5/1?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJDCC37XBLBSWJBVQ%2F20181114%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20181114T224839Z&X-Amz-Expires=120&X-Amz-SignedHeaders=content-length%3Bcontent-md5%3Bcontent-type%3Bhost%3Bx-amz-server-side-encryption&X-Amz-Signature=00c2ce52a022e2de79bf9f19ca2dd74301d8b2bb405a91fc28b5b2d12f9c005d response: body: {string: ''} headers: Content-Length: ['0'] - Date: ['Fri, 26 Oct 2018 22:44:12 GMT'] + Date: ['Wed, 14 Nov 2018 22:48:40 GMT'] ETag: ['"73dfff57fe24e807bd4fb1bc4e07cd73"'] Server: [AmazonS3] - x-amz-expiration: ['expiry-date="Sat, 17 Nov 2018 00:00:00 GMT", rule-id="3weekpurge"'] - x-amz-id-2: [MV9dBxWZxmZ1CR+oLfHeKemMShn2GW/MSxQqC1FUWkSt1H9ZSIhYKbuXCt/oYfUPKwLWo6YNNrU=] - x-amz-request-id: [8E78AC23496BAE3C] + x-amz-expiration: ['expiry-date="Thu, 06 Dec 2018 00:00:00 GMT", rule-id="3weekpurge"'] + x-amz-id-2: [2GoaT29LtADzvYcxtnRbK+ozbYU8tMu13vNm9GvxNFqqbCiUhTKYUyixBdfJTnum3/Uiosexv4E=] + x-amz-request-id: [5FD2CC2430BDB0AD] x-amz-server-side-encryption: [AES256] status: {code: 200, message: OK} - request: @@ -648,19 +648,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kVKQ08JPk2JG740JK7J2k/close + uri: https://api.dnanexus.com/file-FPfBGVj0pPBGF0v02bbj0Vk5/close response: - body: {string: '{"id":"file-FP9kVKQ08JPk2JG740JK7J2k"}'} + body: {string: '{"id":"file-FPfBGVj0pPBGF0v02bbj0Vk5"}'} headers: Connection: [keep-alive] Content-Length: ['38'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:44:11 GMT'] + Date: ['Wed, 14 Nov 2018 22:48:39 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593851331-749531] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235719770-658016] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -684,23 +684,23 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kVK008JPvyGF83zZqbVq7/newFolder + uri: https://api.dnanexus.com/project-FPfBGV00pPBGF0v02bbj0Vk4/newFolder response: - body: {string: '{"id":"project-FP9kVK008JPvyGF83zZqbVq7"}'} + body: {string: '{"id":"project-FPfBGV00pPBGF0v02bbj0Vk4"}'} headers: Connection: [keep-alive] Content-Length: ['41'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:44:11 GMT'] + Date: ['Wed, 14 Nov 2018 22:48:39 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593851473-393027] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235719936-822098] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"name": "TestCopyTree.test_posix_dir_to_dx_nested.b93efc3b", "level": + body: '{"name": "TestCopyTree.test_posix_dir_to_dx_nested.e780c606", "level": "VIEW", "limit": 2}' headers: ? !!binary | @@ -723,22 +723,22 @@ interactions: method: POST uri: https://api.dnanexus.com/system/findProjects response: - body: {string: '{"results":[{"id":"project-FP9kVK008JPvyGF83zZqbVq7","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} + body: {string: '{"results":[{"id":"project-FPfBGV00pPBGF0v02bbj0Vk4","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} headers: Connection: [keep-alive] Content-Length: ['147'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:44:11 GMT'] + Date: ['Wed, 14 Nov 2018 22:48:40 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593851581-199404] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235720049-924655] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: body: '{"objects": [{"name": "file.txt", "folder": "/temp_folder/folder", "project": - "project-FP9kVK008JPvyGF83zZqbVq7", "batchsize": 2}]}' + "project-FPfBGV00pPBGF0v02bbj0Vk4", "batchsize": 2}]}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -760,21 +760,21 @@ interactions: method: POST uri: https://api.dnanexus.com/system/resolveDataObjects response: - body: {string: '{"results":[[{"project":"project-FP9kVK008JPvyGF83zZqbVq7","id":"file-FP9kVKQ08JPk2JG740JK7J2k"}]]}'} + body: {string: '{"results":[[{"project":"project-FPfBGV00pPBGF0v02bbj0Vk4","id":"file-FPfBGVj0pPBGF0v02bbj0Vk5"}]]}'} headers: Connection: [keep-alive] Content-Length: ['99'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:44:11 GMT'] + Date: ['Wed, 14 Nov 2018 22:48:40 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593851707-244744] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235720247-890789] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"project": "project-FP9kVK008JPvyGF83zZqbVq7"}' + body: '{"project": "project-FPfBGV00pPBGF0v02bbj0Vk4"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -794,23 +794,23 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/file-FP9kVKQ08JPk2JG740JK7J2k/describe + uri: https://api.dnanexus.com/file-FPfBGVj0pPBGF0v02bbj0Vk5/describe response: - body: {string: '{"id":"file-FP9kVKQ08JPk2JG740JK7J2k","project":"project-FP9kVK008JPvyGF83zZqbVq7","class":"file","sponsored":false,"name":"file.txt","types":[],"state":"closing","hidden":false,"links":[],"folder":"/temp_folder/folder","tags":[],"created":1540593850000,"modified":1540593851356,"createdBy":{"user":"user-akumar_counsyl"},"media":"","archivalState":"live"}'} + body: {string: '{"id":"file-FPfBGVj0pPBGF0v02bbj0Vk5","project":"project-FPfBGV00pPBGF0v02bbj0Vk4","class":"file","sponsored":false,"name":"file.txt","types":[],"state":"closed","hidden":false,"links":[],"folder":"/temp_folder/folder","tags":[],"created":1542235719000,"modified":1542235720195,"createdBy":{"user":"user-akumar_counsyl"},"media":"text/plain","archivalState":"live","size":5}'} headers: Connection: [keep-alive] - Content-Length: ['356'] + Content-Length: ['374'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:44:11 GMT'] + Date: ['Wed, 14 Nov 2018 22:48:40 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593851824-902005] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235720377-838221] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"name": "TestCopyTree.test_posix_dir_to_dx_nested.b93efc3b", "level": + body: '{"name": "TestCopyTree.test_posix_dir_to_dx_nested.e780c606", "level": "VIEW", "limit": 2}' headers: ? !!binary | @@ -833,22 +833,22 @@ interactions: method: POST uri: https://api.dnanexus.com/system/findProjects response: - body: {string: '{"results":[{"id":"project-FP9kVK008JPvyGF83zZqbVq7","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} + body: {string: '{"results":[{"id":"project-FPfBGV00pPBGF0v02bbj0Vk4","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} headers: Connection: [keep-alive] Content-Length: ['147'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:44:11 GMT'] + Date: ['Wed, 14 Nov 2018 22:48:40 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593851946-10931] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235720511-660825] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: body: '{"objects": [{"name": "folder2", "folder": "/temp_folder/folder", "project": - "project-FP9kVK008JPvyGF83zZqbVq7", "batchsize": 2}]}' + "project-FPfBGV00pPBGF0v02bbj0Vk4", "batchsize": 2}]}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -875,12 +875,12 @@ interactions: Connection: [keep-alive] Content-Length: ['16'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:44:12 GMT'] + Date: ['Wed, 14 Nov 2018 22:48:40 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593852076-794166] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235720625-44245] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -905,19 +905,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kVK008JPvyGF83zZqbVq7/listFolder + uri: https://api.dnanexus.com/project-FPfBGV00pPBGF0v02bbj0Vk4/listFolder response: body: {string: '{"folders":[]}'} headers: Connection: [keep-alive] Content-Length: ['14'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:44:12 GMT'] + Date: ['Wed, 14 Nov 2018 22:48:40 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593852193-721175] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235720729-661450] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -941,19 +941,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kVK008JPvyGF83zZqbVq7/destroy + uri: https://api.dnanexus.com/project-FPfBGV00pPBGF0v02bbj0Vk4/destroy response: - body: {string: '{"id":"project-FP9kVK008JPvyGF83zZqbVq7"}'} + body: {string: '{"id":"project-FPfBGV00pPBGF0v02bbj0Vk4"}'} headers: Connection: [keep-alive] Content-Length: ['41'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:44:14 GMT'] + Date: ['Wed, 14 Nov 2018 22:48:43 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593852306-664005] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235720847-867217] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} version: 1 diff --git a/stor/tests/cassettes_py3/TestCopyTree/test_posix_file_to_dx.yaml b/stor_dx/stor_dx/tests/cassettes_py3/TestCopyTree/test_posix_file_to_dx.yaml similarity index 77% rename from stor/tests/cassettes_py3/TestCopyTree/test_posix_file_to_dx.yaml rename to stor_dx/stor_dx/tests/cassettes_py3/TestCopyTree/test_posix_file_to_dx.yaml index b2c2f607..d5f38bda 100644 --- a/stor/tests/cassettes_py3/TestCopyTree/test_posix_file_to_dx.yaml +++ b/stor_dx/stor_dx/tests/cassettes_py3/TestCopyTree/test_posix_file_to_dx.yaml @@ -1,6 +1,6 @@ interactions: - request: - body: '{"name": "TestCopyTree.test_posix_file_to_dx.c1825e7e"}' + body: '{"name": "TestCopyTree.test_posix_file_to_dx.116ffa8f"}' headers: ? !!binary | QXV0aG9yaXphdGlvbg== @@ -22,17 +22,17 @@ interactions: method: POST uri: https://api.dnanexus.com/project/new response: - body: {string: '{"id":"project-FP9kVPj05BKX6vXb405Q2Kfg"}'} + body: {string: '{"id":"project-FPfBGXj049xj4Pz62bV2v5JG"}'} headers: Connection: [keep-alive] Content-Length: ['41'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:44:15 GMT'] + Date: ['Wed, 14 Nov 2018 22:48:43 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593855320-828983] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235723800-239941] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -56,23 +56,23 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kVPj05BKX6vXb405Q2Kfg/describe + uri: https://api.dnanexus.com/project-FPfBGXj049xj4Pz62bV2v5JG/describe response: - body: {string: '{"id":"project-FP9kVPj05BKX6vXb405Q2Kfg","name":"TestCopyTree.test_posix_file_to_dx.c1825e7e","class":"project","created":1540593855000,"modified":1540593855000,"billTo":"org-counsyl","level":"ADMINISTER","dataUsage":0,"sponsoredDataUsage":0,"region":"aws:us-east-1","summary":"","description":"","protected":false,"restricted":false,"downloadRestricted":false,"containsPHI":false,"createdBy":{"user":"user-akumar_counsyl"},"version":0,"storageCost":0,"pendingTransfer":null,"tags":[],"defaultInstanceType":"mem2_hdd2_x2","archivalState":"live","archivalProgress":null,"totalSponsoredEgressBytes":0,"consumedSponsoredEgressBytes":0,"atSpendingLimit":false}'} + body: {string: '{"id":"project-FPfBGXj049xj4Pz62bV2v5JG","name":"TestCopyTree.test_posix_file_to_dx.116ffa8f","class":"project","created":1542235723000,"modified":1542235723000,"billTo":"org-counsyl","level":"ADMINISTER","dataUsage":0,"sponsoredDataUsage":0,"region":"aws:us-east-1","summary":"","description":"","protected":false,"restricted":false,"downloadRestricted":false,"containsPHI":false,"createdBy":{"user":"user-akumar_counsyl"},"version":0,"storageCost":0,"pendingTransfer":null,"tags":[],"defaultInstanceType":"mem2_hdd2_x2","archivalState":"live","archivalProgress":null,"totalSponsoredEgressBytes":0,"consumedSponsoredEgressBytes":0,"atSpendingLimit":false}'} headers: Connection: [keep-alive] Content-Length: ['656'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:44:15 GMT'] + Date: ['Wed, 14 Nov 2018 22:48:43 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593855458-874438] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235723964-395299] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: - body: '{"name": "TestCopyTree.test_posix_file_to_dx.c1825e7e", "level": "VIEW", + body: '{"name": "TestCopyTree.test_posix_file_to_dx.116ffa8f", "level": "VIEW", "limit": 2}' headers: ? !!binary | @@ -95,17 +95,17 @@ interactions: method: POST uri: https://api.dnanexus.com/system/findProjects response: - body: {string: '{"results":[{"id":"project-FP9kVPj05BKX6vXb405Q2Kfg","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} + body: {string: '{"results":[{"id":"project-FPfBGXj049xj4Pz62bV2v5JG","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} headers: Connection: [keep-alive] Content-Length: ['147'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:44:15 GMT'] + Date: ['Wed, 14 Nov 2018 22:48:44 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593855583-600788] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235724139-830790] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -130,25 +130,25 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kVPj05BKX6vXb405Q2Kfg/listFolder + uri: https://api.dnanexus.com/project-FPfBGXj049xj4Pz62bV2v5JG/listFolder response: body: {string: '{"error":{"type":"ResourceNotFound","message":"The specified folder - could not be found in project-FP9kVPj05BKX6vXb405Q2Kfg"}}'} + could not be found in project-FPfBGXj049xj4Pz62bV2v5JG"}}'} headers: Connection: [keep-alive] Content-Type: [application/json] - Date: ['Fri, 26 Oct 2018 22:44:15 GMT'] + Date: ['Wed, 14 Nov 2018 22:48:44 GMT'] Server: [nginx] Transfer-Encoding: [chunked] Vary: [Accept-Encoding] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593855713-547493] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235724263-93367] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 404, message: Not Found} - request: - body: '{"name": "TestCopyTree.test_posix_file_to_dx.c1825e7e", "level": "VIEW", + body: '{"name": "TestCopyTree.test_posix_file_to_dx.116ffa8f", "level": "VIEW", "limit": 2}' headers: ? !!binary | @@ -171,17 +171,17 @@ interactions: method: POST uri: https://api.dnanexus.com/system/findProjects response: - body: {string: '{"results":[{"id":"project-FP9kVPj05BKX6vXb405Q2Kfg","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} + body: {string: '{"results":[{"id":"project-FPfBGXj049xj4Pz62bV2v5JG","level":"ADMINISTER","permissionSources":["user-akumar_counsyl"],"public":false}],"next":null}'} headers: Connection: [keep-alive] Content-Length: ['147'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:44:16 GMT'] + Date: ['Wed, 14 Nov 2018 22:48:44 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593856110-174043] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235724631-731412] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} - request: @@ -206,21 +206,21 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kVPj05BKX6vXb405Q2Kfg/listFolder + uri: https://api.dnanexus.com/project-FPfBGXj049xj4Pz62bV2v5JG/listFolder response: body: {string: '{"error":{"type":"ResourceNotFound","message":"The specified folder - could not be found in project-FP9kVPj05BKX6vXb405Q2Kfg"}}'} + could not be found in project-FPfBGXj049xj4Pz62bV2v5JG"}}'} headers: Connection: [keep-alive] Content-Type: [application/json] - Date: ['Fri, 26 Oct 2018 22:44:16 GMT'] + Date: ['Wed, 14 Nov 2018 22:48:44 GMT'] Server: [nginx] Transfer-Encoding: [chunked] Vary: [Accept-Encoding] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593856254-521457] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235724765-556778] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 404, message: Not Found} - request: @@ -244,19 +244,19 @@ interactions: ZHhweS8wLjI2NS4wLTgwLWc0YjYwMTY4NyAoRGFyd2luLTE4LjAuMC14ODZfNjQtaTM4Ni02NGJp dCk= method: POST - uri: https://api.dnanexus.com/project-FP9kVPj05BKX6vXb405Q2Kfg/destroy + uri: https://api.dnanexus.com/project-FPfBGXj049xj4Pz62bV2v5JG/destroy response: - body: {string: '{"id":"project-FP9kVPj05BKX6vXb405Q2Kfg"}'} + body: {string: '{"id":"project-FPfBGXj049xj4Pz62bV2v5JG"}'} headers: Connection: [keep-alive] Content-Length: ['41'] Content-Type: [application/json; charset=utf-8] - Date: ['Fri, 26 Oct 2018 22:44:18 GMT'] + Date: ['Wed, 14 Nov 2018 22:48:48 GMT'] Server: [nginx] X-Content-Type-Options: [nosniff] X-Powered-By: [Express] - X-Request-ID: [1540593856650-713656] - X-Upgrade-Info: ['A recommended update (v0.266.1) is available for your client/SDK. + X-Request-ID: [1542235725127-800156] + X-Upgrade-Info: ['A recommended update (v0.267.1) is available for your client/SDK. You can download it from https://wiki.dnanexus.com/Downloads#Install'] status: {code: 200, message: OK} version: 1 diff --git a/stor/tests/cassettes_py3/TestDownloadObjects/test_absolute_paths.yaml b/stor_dx/stor_dx/tests/cassettes_py3/TestDownloadObjects/test_absolute_paths.yaml similarity index 100% rename from stor/tests/cassettes_py3/TestDownloadObjects/test_absolute_paths.yaml rename to stor_dx/stor_dx/tests/cassettes_py3/TestDownloadObjects/test_absolute_paths.yaml diff --git a/stor/tests/cassettes_py3/TestDownloadObjects/test_local_paths.yaml b/stor_dx/stor_dx/tests/cassettes_py3/TestDownloadObjects/test_local_paths.yaml similarity index 100% rename from stor/tests/cassettes_py3/TestDownloadObjects/test_local_paths.yaml rename to stor_dx/stor_dx/tests/cassettes_py3/TestDownloadObjects/test_local_paths.yaml diff --git a/stor/tests/cassettes_py3/TestExists/test_false_file.yaml b/stor_dx/stor_dx/tests/cassettes_py3/TestExists/test_false_file.yaml similarity index 100% rename from stor/tests/cassettes_py3/TestExists/test_false_file.yaml rename to stor_dx/stor_dx/tests/cassettes_py3/TestExists/test_false_file.yaml diff --git a/stor/tests/cassettes_py3/TestExists/test_false_folder.yaml b/stor_dx/stor_dx/tests/cassettes_py3/TestExists/test_false_folder.yaml similarity index 100% rename from stor/tests/cassettes_py3/TestExists/test_false_folder.yaml rename to stor_dx/stor_dx/tests/cassettes_py3/TestExists/test_false_folder.yaml diff --git a/stor/tests/cassettes_py3/TestExists/test_project_does_not_exist.yaml b/stor_dx/stor_dx/tests/cassettes_py3/TestExists/test_project_does_not_exist.yaml similarity index 100% rename from stor/tests/cassettes_py3/TestExists/test_project_does_not_exist.yaml rename to stor_dx/stor_dx/tests/cassettes_py3/TestExists/test_project_does_not_exist.yaml diff --git a/stor/tests/cassettes_py3/TestExists/test_true_dir_with_object.yaml b/stor_dx/stor_dx/tests/cassettes_py3/TestExists/test_true_dir_with_object.yaml similarity index 100% rename from stor/tests/cassettes_py3/TestExists/test_true_dir_with_object.yaml rename to stor_dx/stor_dx/tests/cassettes_py3/TestExists/test_true_dir_with_object.yaml diff --git a/stor/tests/cassettes_py3/TestExists/test_true_empty_dir.yaml b/stor_dx/stor_dx/tests/cassettes_py3/TestExists/test_true_empty_dir.yaml similarity index 100% rename from stor/tests/cassettes_py3/TestExists/test_true_empty_dir.yaml rename to stor_dx/stor_dx/tests/cassettes_py3/TestExists/test_true_empty_dir.yaml diff --git a/stor/tests/cassettes_py3/TestExists/test_true_file.yaml b/stor_dx/stor_dx/tests/cassettes_py3/TestExists/test_true_file.yaml similarity index 100% rename from stor/tests/cassettes_py3/TestExists/test_true_file.yaml rename to stor_dx/stor_dx/tests/cassettes_py3/TestExists/test_true_file.yaml diff --git a/stor/tests/cassettes_py3/TestGetSize/test_file.yaml b/stor_dx/stor_dx/tests/cassettes_py3/TestGetSize/test_file.yaml similarity index 100% rename from stor/tests/cassettes_py3/TestGetSize/test_file.yaml rename to stor_dx/stor_dx/tests/cassettes_py3/TestGetSize/test_file.yaml diff --git a/stor/tests/cassettes_py3/TestGetSize/test_folder.yaml b/stor_dx/stor_dx/tests/cassettes_py3/TestGetSize/test_folder.yaml similarity index 100% rename from stor/tests/cassettes_py3/TestGetSize/test_folder.yaml rename to stor_dx/stor_dx/tests/cassettes_py3/TestGetSize/test_folder.yaml diff --git a/stor/tests/cassettes_py3/TestGetSize/test_project.yaml b/stor_dx/stor_dx/tests/cassettes_py3/TestGetSize/test_project.yaml similarity index 100% rename from stor/tests/cassettes_py3/TestGetSize/test_project.yaml rename to stor_dx/stor_dx/tests/cassettes_py3/TestGetSize/test_project.yaml diff --git a/stor/tests/cassettes_py3/TestGlob/test_cond_no_met.yaml b/stor_dx/stor_dx/tests/cassettes_py3/TestGlob/test_cond_no_met.yaml similarity index 100% rename from stor/tests/cassettes_py3/TestGlob/test_cond_no_met.yaml rename to stor_dx/stor_dx/tests/cassettes_py3/TestGlob/test_cond_no_met.yaml diff --git a/stor/tests/cassettes_py3/TestGlob/test_glob_cond_met.yaml b/stor_dx/stor_dx/tests/cassettes_py3/TestGlob/test_glob_cond_met.yaml similarity index 100% rename from stor/tests/cassettes_py3/TestGlob/test_glob_cond_met.yaml rename to stor_dx/stor_dx/tests/cassettes_py3/TestGlob/test_glob_cond_met.yaml diff --git a/stor/tests/cassettes_py3/TestGlob/test_pattern_no_file_match.yaml b/stor_dx/stor_dx/tests/cassettes_py3/TestGlob/test_pattern_no_file_match.yaml similarity index 100% rename from stor/tests/cassettes_py3/TestGlob/test_pattern_no_file_match.yaml rename to stor_dx/stor_dx/tests/cassettes_py3/TestGlob/test_pattern_no_file_match.yaml diff --git a/stor/tests/cassettes_py3/TestGlob/test_prefix_pattern.yaml b/stor_dx/stor_dx/tests/cassettes_py3/TestGlob/test_prefix_pattern.yaml similarity index 100% rename from stor/tests/cassettes_py3/TestGlob/test_prefix_pattern.yaml rename to stor_dx/stor_dx/tests/cassettes_py3/TestGlob/test_prefix_pattern.yaml diff --git a/stor/tests/cassettes_py3/TestGlob/test_suffix_pattern.yaml b/stor_dx/stor_dx/tests/cassettes_py3/TestGlob/test_suffix_pattern.yaml similarity index 100% rename from stor/tests/cassettes_py3/TestGlob/test_suffix_pattern.yaml rename to stor_dx/stor_dx/tests/cassettes_py3/TestGlob/test_suffix_pattern.yaml diff --git a/stor/tests/cassettes_py3/TestGlob/test_valid_pattern.yaml b/stor_dx/stor_dx/tests/cassettes_py3/TestGlob/test_valid_pattern.yaml similarity index 100% rename from stor/tests/cassettes_py3/TestGlob/test_valid_pattern.yaml rename to stor_dx/stor_dx/tests/cassettes_py3/TestGlob/test_valid_pattern.yaml diff --git a/stor/tests/cassettes_py3/TestGlob/test_valid_pattern_wo_wildcard.yaml b/stor_dx/stor_dx/tests/cassettes_py3/TestGlob/test_valid_pattern_wo_wildcard.yaml similarity index 100% rename from stor/tests/cassettes_py3/TestGlob/test_valid_pattern_wo_wildcard.yaml rename to stor_dx/stor_dx/tests/cassettes_py3/TestGlob/test_valid_pattern_wo_wildcard.yaml diff --git a/stor/tests/cassettes_py3/TestList/test_list_absent_folder.yaml b/stor_dx/stor_dx/tests/cassettes_py3/TestList/test_list_absent_folder.yaml similarity index 100% rename from stor/tests/cassettes_py3/TestList/test_list_absent_folder.yaml rename to stor_dx/stor_dx/tests/cassettes_py3/TestList/test_list_absent_folder.yaml diff --git a/stor/tests/cassettes_py3/TestList/test_list_canonical.yaml b/stor_dx/stor_dx/tests/cassettes_py3/TestList/test_list_canonical.yaml similarity index 100% rename from stor/tests/cassettes_py3/TestList/test_list_canonical.yaml rename to stor_dx/stor_dx/tests/cassettes_py3/TestList/test_list_canonical.yaml diff --git a/stor/tests/cassettes_py3/TestList/test_list_empty_folder.yaml b/stor_dx/stor_dx/tests/cassettes_py3/TestList/test_list_empty_folder.yaml similarity index 100% rename from stor/tests/cassettes_py3/TestList/test_list_empty_folder.yaml rename to stor_dx/stor_dx/tests/cassettes_py3/TestList/test_list_empty_folder.yaml diff --git a/stor/tests/cassettes_py3/TestList/test_list_fail_w_condition.yaml b/stor_dx/stor_dx/tests/cassettes_py3/TestList/test_list_fail_w_condition.yaml similarity index 100% rename from stor/tests/cassettes_py3/TestList/test_list_fail_w_condition.yaml rename to stor_dx/stor_dx/tests/cassettes_py3/TestList/test_list_fail_w_condition.yaml diff --git a/stor/tests/cassettes_py3/TestList/test_list_file.yaml b/stor_dx/stor_dx/tests/cassettes_py3/TestList/test_list_file.yaml similarity index 100% rename from stor/tests/cassettes_py3/TestList/test_list_file.yaml rename to stor_dx/stor_dx/tests/cassettes_py3/TestList/test_list_file.yaml diff --git a/stor/tests/cassettes_py3/TestList/test_list_folder_share_filename.yaml b/stor_dx/stor_dx/tests/cassettes_py3/TestList/test_list_folder_share_filename.yaml similarity index 100% rename from stor/tests/cassettes_py3/TestList/test_list_folder_share_filename.yaml rename to stor_dx/stor_dx/tests/cassettes_py3/TestList/test_list_folder_share_filename.yaml diff --git a/stor/tests/cassettes_py3/TestList/test_list_folder_w_files.yaml b/stor_dx/stor_dx/tests/cassettes_py3/TestList/test_list_folder_w_files.yaml similarity index 100% rename from stor/tests/cassettes_py3/TestList/test_list_folder_w_files.yaml rename to stor_dx/stor_dx/tests/cassettes_py3/TestList/test_list_folder_w_files.yaml diff --git a/stor/tests/cassettes_py3/TestList/test_list_iter_canon_on_canon.yaml b/stor_dx/stor_dx/tests/cassettes_py3/TestList/test_list_iter_canon_on_canon.yaml similarity index 100% rename from stor/tests/cassettes_py3/TestList/test_list_iter_canon_on_canon.yaml rename to stor_dx/stor_dx/tests/cassettes_py3/TestList/test_list_iter_canon_on_canon.yaml diff --git a/stor/tests/cassettes_py3/TestList/test_list_iter_project.yaml b/stor_dx/stor_dx/tests/cassettes_py3/TestList/test_list_iter_project.yaml similarity index 100% rename from stor/tests/cassettes_py3/TestList/test_list_iter_project.yaml rename to stor_dx/stor_dx/tests/cassettes_py3/TestList/test_list_iter_project.yaml diff --git a/stor/tests/cassettes_py3/TestList/test_list_limit.yaml b/stor_dx/stor_dx/tests/cassettes_py3/TestList/test_list_limit.yaml similarity index 100% rename from stor/tests/cassettes_py3/TestList/test_list_limit.yaml rename to stor_dx/stor_dx/tests/cassettes_py3/TestList/test_list_limit.yaml diff --git a/stor/tests/cassettes_py3/TestList/test_list_on_canonical_project.yaml b/stor_dx/stor_dx/tests/cassettes_py3/TestList/test_list_on_canonical_project.yaml similarity index 100% rename from stor/tests/cassettes_py3/TestList/test_list_on_canonical_project.yaml rename to stor_dx/stor_dx/tests/cassettes_py3/TestList/test_list_on_canonical_project.yaml diff --git a/stor/tests/cassettes_py3/TestList/test_list_on_canonical_resource.yaml b/stor_dx/stor_dx/tests/cassettes_py3/TestList/test_list_on_canonical_resource.yaml similarity index 100% rename from stor/tests/cassettes_py3/TestList/test_list_on_canonical_resource.yaml rename to stor_dx/stor_dx/tests/cassettes_py3/TestList/test_list_on_canonical_resource.yaml diff --git a/stor/tests/cassettes_py3/TestList/test_list_project.yaml b/stor_dx/stor_dx/tests/cassettes_py3/TestList/test_list_project.yaml similarity index 100% rename from stor/tests/cassettes_py3/TestList/test_list_project.yaml rename to stor_dx/stor_dx/tests/cassettes_py3/TestList/test_list_project.yaml diff --git a/stor/tests/cassettes_py3/TestList/test_list_starts_with.yaml b/stor_dx/stor_dx/tests/cassettes_py3/TestList/test_list_starts_with.yaml similarity index 100% rename from stor/tests/cassettes_py3/TestList/test_list_starts_with.yaml rename to stor_dx/stor_dx/tests/cassettes_py3/TestList/test_list_starts_with.yaml diff --git a/stor/tests/cassettes_py3/TestList/test_list_w_category.yaml b/stor_dx/stor_dx/tests/cassettes_py3/TestList/test_list_w_category.yaml similarity index 100% rename from stor/tests/cassettes_py3/TestList/test_list_w_category.yaml rename to stor_dx/stor_dx/tests/cassettes_py3/TestList/test_list_w_category.yaml diff --git a/stor/tests/cassettes_py3/TestList/test_list_w_condition.yaml b/stor_dx/stor_dx/tests/cassettes_py3/TestList/test_list_w_condition.yaml similarity index 100% rename from stor/tests/cassettes_py3/TestList/test_list_w_condition.yaml rename to stor_dx/stor_dx/tests/cassettes_py3/TestList/test_list_w_condition.yaml diff --git a/stor/tests/cassettes_py3/TestListDir/test_listdir_absent_folder.yaml b/stor_dx/stor_dx/tests/cassettes_py3/TestListDir/test_listdir_absent_folder.yaml similarity index 100% rename from stor/tests/cassettes_py3/TestListDir/test_listdir_absent_folder.yaml rename to stor_dx/stor_dx/tests/cassettes_py3/TestListDir/test_listdir_absent_folder.yaml diff --git a/stor/tests/cassettes_py3/TestListDir/test_listdir_canonical.yaml b/stor_dx/stor_dx/tests/cassettes_py3/TestListDir/test_listdir_canonical.yaml similarity index 100% rename from stor/tests/cassettes_py3/TestListDir/test_listdir_canonical.yaml rename to stor_dx/stor_dx/tests/cassettes_py3/TestListDir/test_listdir_canonical.yaml diff --git a/stor/tests/cassettes_py3/TestListDir/test_listdir_empty_folder.yaml b/stor_dx/stor_dx/tests/cassettes_py3/TestListDir/test_listdir_empty_folder.yaml similarity index 100% rename from stor/tests/cassettes_py3/TestListDir/test_listdir_empty_folder.yaml rename to stor_dx/stor_dx/tests/cassettes_py3/TestListDir/test_listdir_empty_folder.yaml diff --git a/stor/tests/cassettes_py3/TestListDir/test_listdir_file.yaml b/stor_dx/stor_dx/tests/cassettes_py3/TestListDir/test_listdir_file.yaml similarity index 100% rename from stor/tests/cassettes_py3/TestListDir/test_listdir_file.yaml rename to stor_dx/stor_dx/tests/cassettes_py3/TestListDir/test_listdir_file.yaml diff --git a/stor/tests/cassettes_py3/TestListDir/test_listdir_folder_share_filename.yaml b/stor_dx/stor_dx/tests/cassettes_py3/TestListDir/test_listdir_folder_share_filename.yaml similarity index 100% rename from stor/tests/cassettes_py3/TestListDir/test_listdir_folder_share_filename.yaml rename to stor_dx/stor_dx/tests/cassettes_py3/TestListDir/test_listdir_folder_share_filename.yaml diff --git a/stor/tests/cassettes_py3/TestListDir/test_listdir_folder_w_file.yaml b/stor_dx/stor_dx/tests/cassettes_py3/TestListDir/test_listdir_folder_w_file.yaml similarity index 100% rename from stor/tests/cassettes_py3/TestListDir/test_listdir_folder_w_file.yaml rename to stor_dx/stor_dx/tests/cassettes_py3/TestListDir/test_listdir_folder_w_file.yaml diff --git a/stor/tests/cassettes_py3/TestListDir/test_listdir_iter_canon_on_canon.yaml b/stor_dx/stor_dx/tests/cassettes_py3/TestListDir/test_listdir_iter_canon_on_canon.yaml similarity index 100% rename from stor/tests/cassettes_py3/TestListDir/test_listdir_iter_canon_on_canon.yaml rename to stor_dx/stor_dx/tests/cassettes_py3/TestListDir/test_listdir_iter_canon_on_canon.yaml diff --git a/stor/tests/cassettes_py3/TestListDir/test_listdir_iter_project.yaml b/stor_dx/stor_dx/tests/cassettes_py3/TestListDir/test_listdir_iter_project.yaml similarity index 100% rename from stor/tests/cassettes_py3/TestListDir/test_listdir_iter_project.yaml rename to stor_dx/stor_dx/tests/cassettes_py3/TestListDir/test_listdir_iter_project.yaml diff --git a/stor/tests/cassettes_py3/TestListDir/test_listdir_on_canonical_project.yaml b/stor_dx/stor_dx/tests/cassettes_py3/TestListDir/test_listdir_on_canonical_project.yaml similarity index 100% rename from stor/tests/cassettes_py3/TestListDir/test_listdir_on_canonical_project.yaml rename to stor_dx/stor_dx/tests/cassettes_py3/TestListDir/test_listdir_on_canonical_project.yaml diff --git a/stor/tests/cassettes_py3/TestListDir/test_listdir_on_canonical_resource.yaml b/stor_dx/stor_dx/tests/cassettes_py3/TestListDir/test_listdir_on_canonical_resource.yaml similarity index 100% rename from stor/tests/cassettes_py3/TestListDir/test_listdir_on_canonical_resource.yaml rename to stor_dx/stor_dx/tests/cassettes_py3/TestListDir/test_listdir_on_canonical_resource.yaml diff --git a/stor/tests/cassettes_py3/TestListDir/test_listdir_project.yaml b/stor_dx/stor_dx/tests/cassettes_py3/TestListDir/test_listdir_project.yaml similarity index 100% rename from stor/tests/cassettes_py3/TestListDir/test_listdir_project.yaml rename to stor_dx/stor_dx/tests/cassettes_py3/TestListDir/test_listdir_project.yaml diff --git a/stor/tests/cassettes_py3/TestLoginAuth/test_login_auth.yaml b/stor_dx/stor_dx/tests/cassettes_py3/TestLoginAuth/test_login_auth.yaml similarity index 100% rename from stor/tests/cassettes_py3/TestLoginAuth/test_login_auth.yaml rename to stor_dx/stor_dx/tests/cassettes_py3/TestLoginAuth/test_login_auth.yaml diff --git a/stor/tests/cassettes_py3/TestMakedirsP/test_makedirs_p_folder.yaml b/stor_dx/stor_dx/tests/cassettes_py3/TestMakedirsP/test_makedirs_p_folder.yaml similarity index 100% rename from stor/tests/cassettes_py3/TestMakedirsP/test_makedirs_p_folder.yaml rename to stor_dx/stor_dx/tests/cassettes_py3/TestMakedirsP/test_makedirs_p_folder.yaml diff --git a/stor/tests/cassettes_py3/TestMakedirsP/test_makedirs_p_folder_exists.yaml b/stor_dx/stor_dx/tests/cassettes_py3/TestMakedirsP/test_makedirs_p_folder_exists.yaml similarity index 100% rename from stor/tests/cassettes_py3/TestMakedirsP/test_makedirs_p_folder_exists.yaml rename to stor_dx/stor_dx/tests/cassettes_py3/TestMakedirsP/test_makedirs_p_folder_exists.yaml diff --git a/stor/tests/cassettes_py3/TestMakedirsP/test_makedirs_p_nested_folder.yaml b/stor_dx/stor_dx/tests/cassettes_py3/TestMakedirsP/test_makedirs_p_nested_folder.yaml similarity index 100% rename from stor/tests/cassettes_py3/TestMakedirsP/test_makedirs_p_nested_folder.yaml rename to stor_dx/stor_dx/tests/cassettes_py3/TestMakedirsP/test_makedirs_p_nested_folder.yaml diff --git a/stor/tests/cassettes_py3/TestMakedirsP/test_makedirs_p_project.yaml b/stor_dx/stor_dx/tests/cassettes_py3/TestMakedirsP/test_makedirs_p_project.yaml similarity index 100% rename from stor/tests/cassettes_py3/TestMakedirsP/test_makedirs_p_project.yaml rename to stor_dx/stor_dx/tests/cassettes_py3/TestMakedirsP/test_makedirs_p_project.yaml diff --git a/stor/tests/cassettes_py3/TestMakedirsP/test_makedirs_p_project_exists.yaml b/stor_dx/stor_dx/tests/cassettes_py3/TestMakedirsP/test_makedirs_p_project_exists.yaml similarity index 100% rename from stor/tests/cassettes_py3/TestMakedirsP/test_makedirs_p_project_exists.yaml rename to stor_dx/stor_dx/tests/cassettes_py3/TestMakedirsP/test_makedirs_p_project_exists.yaml diff --git a/stor/tests/cassettes_py3/TestOpen/test_append_mode_fail.yaml b/stor_dx/stor_dx/tests/cassettes_py3/TestOpen/test_append_mode_fail.yaml similarity index 100% rename from stor/tests/cassettes_py3/TestOpen/test_append_mode_fail.yaml rename to stor_dx/stor_dx/tests/cassettes_py3/TestOpen/test_append_mode_fail.yaml diff --git a/stor/tests/cassettes_py3/TestOpen/test_read_dir_fail.yaml b/stor_dx/stor_dx/tests/cassettes_py3/TestOpen/test_read_dir_fail.yaml similarity index 100% rename from stor/tests/cassettes_py3/TestOpen/test_read_dir_fail.yaml rename to stor_dx/stor_dx/tests/cassettes_py3/TestOpen/test_read_dir_fail.yaml diff --git a/stor/tests/cassettes_py3/TestOpen/test_read_fail_on_closed_buffer.yaml b/stor_dx/stor_dx/tests/cassettes_py3/TestOpen/test_read_fail_on_closed_buffer.yaml similarity index 100% rename from stor/tests/cassettes_py3/TestOpen/test_read_fail_on_closed_buffer.yaml rename to stor_dx/stor_dx/tests/cassettes_py3/TestOpen/test_read_fail_on_closed_buffer.yaml diff --git a/stor/tests/cassettes_py3/TestOpen/test_read_on_open_buffer.yaml b/stor_dx/stor_dx/tests/cassettes_py3/TestOpen/test_read_on_open_buffer.yaml similarity index 100% rename from stor/tests/cassettes_py3/TestOpen/test_read_on_open_buffer.yaml rename to stor_dx/stor_dx/tests/cassettes_py3/TestOpen/test_read_on_open_buffer.yaml diff --git a/stor/tests/cassettes_py3/TestOpen/test_read_on_open_dx_file.yaml b/stor_dx/stor_dx/tests/cassettes_py3/TestOpen/test_read_on_open_dx_file.yaml similarity index 100% rename from stor/tests/cassettes_py3/TestOpen/test_read_on_open_dx_file.yaml rename to stor_dx/stor_dx/tests/cassettes_py3/TestOpen/test_read_on_open_dx_file.yaml diff --git a/stor/tests/cassettes_py3/TestOpen/test_write_multiple_flush_multiple_upload.yaml b/stor_dx/stor_dx/tests/cassettes_py3/TestOpen/test_write_multiple_flush_multiple_upload.yaml similarity index 100% rename from stor/tests/cassettes_py3/TestOpen/test_write_multiple_flush_multiple_upload.yaml rename to stor_dx/stor_dx/tests/cassettes_py3/TestOpen/test_write_multiple_flush_multiple_upload.yaml diff --git a/stor/tests/cassettes_py3/TestOpen/test_write_multiple_wo_context_manager.yaml b/stor_dx/stor_dx/tests/cassettes_py3/TestOpen/test_write_multiple_wo_context_manager.yaml similarity index 100% rename from stor/tests/cassettes_py3/TestOpen/test_write_multiple_wo_context_manager.yaml rename to stor_dx/stor_dx/tests/cassettes_py3/TestOpen/test_write_multiple_wo_context_manager.yaml diff --git a/stor/tests/cassettes_py3/TestOpen/test_write_read_over_files.yaml b/stor_dx/stor_dx/tests/cassettes_py3/TestOpen/test_write_read_over_files.yaml similarity index 100% rename from stor/tests/cassettes_py3/TestOpen/test_write_read_over_files.yaml rename to stor_dx/stor_dx/tests/cassettes_py3/TestOpen/test_write_read_over_files.yaml diff --git a/stor/tests/cassettes_py3/TestOpen/test_write_to_project_fail.yaml b/stor_dx/stor_dx/tests/cassettes_py3/TestOpen/test_write_to_project_fail.yaml similarity index 100% rename from stor/tests/cassettes_py3/TestOpen/test_write_to_project_fail.yaml rename to stor_dx/stor_dx/tests/cassettes_py3/TestOpen/test_write_to_project_fail.yaml diff --git a/stor/tests/cassettes_py3/TestOpen/test_write_w_settings_big_timeout.yaml b/stor_dx/stor_dx/tests/cassettes_py3/TestOpen/test_write_w_settings_big_timeout.yaml similarity index 100% rename from stor/tests/cassettes_py3/TestOpen/test_write_w_settings_big_timeout.yaml rename to stor_dx/stor_dx/tests/cassettes_py3/TestOpen/test_write_w_settings_big_timeout.yaml diff --git a/stor/tests/cassettes_py3/TestOpen/test_write_w_settings_no_timeout.yaml b/stor_dx/stor_dx/tests/cassettes_py3/TestOpen/test_write_w_settings_no_timeout.yaml similarity index 100% rename from stor/tests/cassettes_py3/TestOpen/test_write_w_settings_no_timeout.yaml rename to stor_dx/stor_dx/tests/cassettes_py3/TestOpen/test_write_w_settings_no_timeout.yaml diff --git a/stor/tests/cassettes_py3/TestRemove/test_fail_remove_folder.yaml b/stor_dx/stor_dx/tests/cassettes_py3/TestRemove/test_fail_remove_folder.yaml similarity index 100% rename from stor/tests/cassettes_py3/TestRemove/test_fail_remove_folder.yaml rename to stor_dx/stor_dx/tests/cassettes_py3/TestRemove/test_fail_remove_folder.yaml diff --git a/stor/tests/cassettes_py3/TestRemove/test_fail_remove_nonexistent_file.yaml b/stor_dx/stor_dx/tests/cassettes_py3/TestRemove/test_fail_remove_nonexistent_file.yaml similarity index 100% rename from stor/tests/cassettes_py3/TestRemove/test_fail_remove_nonexistent_file.yaml rename to stor_dx/stor_dx/tests/cassettes_py3/TestRemove/test_fail_remove_nonexistent_file.yaml diff --git a/stor/tests/cassettes_py3/TestRemove/test_fail_remove_nonexistent_project.yaml b/stor_dx/stor_dx/tests/cassettes_py3/TestRemove/test_fail_remove_nonexistent_project.yaml similarity index 100% rename from stor/tests/cassettes_py3/TestRemove/test_fail_remove_nonexistent_project.yaml rename to stor_dx/stor_dx/tests/cassettes_py3/TestRemove/test_fail_remove_nonexistent_project.yaml diff --git a/stor/tests/cassettes_py3/TestRemove/test_fail_remove_project.yaml b/stor_dx/stor_dx/tests/cassettes_py3/TestRemove/test_fail_remove_project.yaml similarity index 100% rename from stor/tests/cassettes_py3/TestRemove/test_fail_remove_project.yaml rename to stor_dx/stor_dx/tests/cassettes_py3/TestRemove/test_fail_remove_project.yaml diff --git a/stor/tests/cassettes_py3/TestRemove/test_fail_rmtree_file.yaml b/stor_dx/stor_dx/tests/cassettes_py3/TestRemove/test_fail_rmtree_file.yaml similarity index 100% rename from stor/tests/cassettes_py3/TestRemove/test_fail_rmtree_file.yaml rename to stor_dx/stor_dx/tests/cassettes_py3/TestRemove/test_fail_rmtree_file.yaml diff --git a/stor/tests/cassettes_py3/TestRemove/test_remove_file.yaml b/stor_dx/stor_dx/tests/cassettes_py3/TestRemove/test_remove_file.yaml similarity index 100% rename from stor/tests/cassettes_py3/TestRemove/test_remove_file.yaml rename to stor_dx/stor_dx/tests/cassettes_py3/TestRemove/test_remove_file.yaml diff --git a/stor/tests/cassettes_py3/TestRemove/test_rmtree_folder.yaml b/stor_dx/stor_dx/tests/cassettes_py3/TestRemove/test_rmtree_folder.yaml similarity index 100% rename from stor/tests/cassettes_py3/TestRemove/test_rmtree_folder.yaml rename to stor_dx/stor_dx/tests/cassettes_py3/TestRemove/test_rmtree_folder.yaml diff --git a/stor/tests/cassettes_py3/TestRemove/test_rmtree_project.yaml b/stor_dx/stor_dx/tests/cassettes_py3/TestRemove/test_rmtree_project.yaml similarity index 100% rename from stor/tests/cassettes_py3/TestRemove/test_rmtree_project.yaml rename to stor_dx/stor_dx/tests/cassettes_py3/TestRemove/test_rmtree_project.yaml diff --git a/stor/tests/cassettes_py3/TestRename/test_rename_file_pass.yaml b/stor_dx/stor_dx/tests/cassettes_py3/TestRename/test_rename_file_pass.yaml similarity index 100% rename from stor/tests/cassettes_py3/TestRename/test_rename_file_pass.yaml rename to stor_dx/stor_dx/tests/cassettes_py3/TestRename/test_rename_file_pass.yaml diff --git a/stor/tests/cassettes_py3/TestRename/test_rename_folder_fail.yaml b/stor_dx/stor_dx/tests/cassettes_py3/TestRename/test_rename_folder_fail.yaml similarity index 100% rename from stor/tests/cassettes_py3/TestRename/test_rename_folder_fail.yaml rename to stor_dx/stor_dx/tests/cassettes_py3/TestRename/test_rename_folder_fail.yaml diff --git a/stor/tests/cassettes_py3/TestRename/test_rename_to_self.yaml b/stor_dx/stor_dx/tests/cassettes_py3/TestRename/test_rename_to_self.yaml similarity index 100% rename from stor/tests/cassettes_py3/TestRename/test_rename_to_self.yaml rename to stor_dx/stor_dx/tests/cassettes_py3/TestRename/test_rename_to_self.yaml diff --git a/stor/tests/cassettes_py3/TestStat/test_stat_canonical_project.yaml b/stor_dx/stor_dx/tests/cassettes_py3/TestStat/test_stat_canonical_project.yaml similarity index 100% rename from stor/tests/cassettes_py3/TestStat/test_stat_canonical_project.yaml rename to stor_dx/stor_dx/tests/cassettes_py3/TestStat/test_stat_canonical_project.yaml diff --git a/stor/tests/cassettes_py3/TestStat/test_stat_canonical_resource.yaml b/stor_dx/stor_dx/tests/cassettes_py3/TestStat/test_stat_canonical_resource.yaml similarity index 100% rename from stor/tests/cassettes_py3/TestStat/test_stat_canonical_resource.yaml rename to stor_dx/stor_dx/tests/cassettes_py3/TestStat/test_stat_canonical_resource.yaml diff --git a/stor/tests/cassettes_py3/TestStat/test_stat_file.yaml b/stor_dx/stor_dx/tests/cassettes_py3/TestStat/test_stat_file.yaml similarity index 100% rename from stor/tests/cassettes_py3/TestStat/test_stat_file.yaml rename to stor_dx/stor_dx/tests/cassettes_py3/TestStat/test_stat_file.yaml diff --git a/stor/tests/cassettes_py3/TestStat/test_stat_folder.yaml b/stor_dx/stor_dx/tests/cassettes_py3/TestStat/test_stat_folder.yaml similarity index 100% rename from stor/tests/cassettes_py3/TestStat/test_stat_folder.yaml rename to stor_dx/stor_dx/tests/cassettes_py3/TestStat/test_stat_folder.yaml diff --git a/stor/tests/cassettes_py3/TestStat/test_stat_project_error.yaml b/stor_dx/stor_dx/tests/cassettes_py3/TestStat/test_stat_project_error.yaml similarity index 100% rename from stor/tests/cassettes_py3/TestStat/test_stat_project_error.yaml rename to stor_dx/stor_dx/tests/cassettes_py3/TestStat/test_stat_project_error.yaml diff --git a/stor/tests/cassettes_py3/TestStat/test_stat_virtual_project.yaml b/stor_dx/stor_dx/tests/cassettes_py3/TestStat/test_stat_virtual_project.yaml similarity index 100% rename from stor/tests/cassettes_py3/TestStat/test_stat_virtual_project.yaml rename to stor_dx/stor_dx/tests/cassettes_py3/TestStat/test_stat_virtual_project.yaml diff --git a/stor/tests/cassettes_py3/TestTempUrl/test_fail_on_folder.yaml b/stor_dx/stor_dx/tests/cassettes_py3/TestTempUrl/test_fail_on_folder.yaml similarity index 100% rename from stor/tests/cassettes_py3/TestTempUrl/test_fail_on_folder.yaml rename to stor_dx/stor_dx/tests/cassettes_py3/TestTempUrl/test_fail_on_folder.yaml diff --git a/stor/tests/cassettes_py3/TestTempUrl/test_fail_on_project.yaml b/stor_dx/stor_dx/tests/cassettes_py3/TestTempUrl/test_fail_on_project.yaml similarity index 100% rename from stor/tests/cassettes_py3/TestTempUrl/test_fail_on_project.yaml rename to stor_dx/stor_dx/tests/cassettes_py3/TestTempUrl/test_fail_on_project.yaml diff --git a/stor/tests/cassettes_py3/TestTempUrl/test_on_file.yaml b/stor_dx/stor_dx/tests/cassettes_py3/TestTempUrl/test_on_file.yaml similarity index 100% rename from stor/tests/cassettes_py3/TestTempUrl/test_on_file.yaml rename to stor_dx/stor_dx/tests/cassettes_py3/TestTempUrl/test_on_file.yaml diff --git a/stor/tests/cassettes_py3/TestTempUrl/test_on_file_canonical.yaml b/stor_dx/stor_dx/tests/cassettes_py3/TestTempUrl/test_on_file_canonical.yaml similarity index 100% rename from stor/tests/cassettes_py3/TestTempUrl/test_on_file_canonical.yaml rename to stor_dx/stor_dx/tests/cassettes_py3/TestTempUrl/test_on_file_canonical.yaml diff --git a/stor/tests/cassettes_py3/TestTempUrl/test_on_file_named_timed.yaml b/stor_dx/stor_dx/tests/cassettes_py3/TestTempUrl/test_on_file_named_timed.yaml similarity index 100% rename from stor/tests/cassettes_py3/TestTempUrl/test_on_file_named_timed.yaml rename to stor_dx/stor_dx/tests/cassettes_py3/TestTempUrl/test_on_file_named_timed.yaml diff --git a/stor/tests/cassettes_py3/TestWalkFiles/test_pattern_no_match.yaml b/stor_dx/stor_dx/tests/cassettes_py3/TestWalkFiles/test_pattern_no_match.yaml similarity index 100% rename from stor/tests/cassettes_py3/TestWalkFiles/test_pattern_no_match.yaml rename to stor_dx/stor_dx/tests/cassettes_py3/TestWalkFiles/test_pattern_no_match.yaml diff --git a/stor/tests/cassettes_py3/TestWalkFiles/test_pattern_share_folder_match.yaml b/stor_dx/stor_dx/tests/cassettes_py3/TestWalkFiles/test_pattern_share_folder_match.yaml similarity index 100% rename from stor/tests/cassettes_py3/TestWalkFiles/test_pattern_share_folder_match.yaml rename to stor_dx/stor_dx/tests/cassettes_py3/TestWalkFiles/test_pattern_share_folder_match.yaml diff --git a/stor/tests/cassettes_py3/TestWalkFiles/test_pattern_w_prefix.yaml b/stor_dx/stor_dx/tests/cassettes_py3/TestWalkFiles/test_pattern_w_prefix.yaml similarity index 100% rename from stor/tests/cassettes_py3/TestWalkFiles/test_pattern_w_prefix.yaml rename to stor_dx/stor_dx/tests/cassettes_py3/TestWalkFiles/test_pattern_w_prefix.yaml diff --git a/stor/tests/cassettes_py3/TestWalkFiles/test_pattern_w_prefix_suffix.yaml b/stor_dx/stor_dx/tests/cassettes_py3/TestWalkFiles/test_pattern_w_prefix_suffix.yaml similarity index 100% rename from stor/tests/cassettes_py3/TestWalkFiles/test_pattern_w_prefix_suffix.yaml rename to stor_dx/stor_dx/tests/cassettes_py3/TestWalkFiles/test_pattern_w_prefix_suffix.yaml diff --git a/stor/tests/cassettes_py3/TestWalkFiles/test_pattern_w_suffix.yaml b/stor_dx/stor_dx/tests/cassettes_py3/TestWalkFiles/test_pattern_w_suffix.yaml similarity index 100% rename from stor/tests/cassettes_py3/TestWalkFiles/test_pattern_w_suffix.yaml rename to stor_dx/stor_dx/tests/cassettes_py3/TestWalkFiles/test_pattern_w_suffix.yaml diff --git a/stor_dx/stor_dx/tests/file_data/s_3_2126.bcl.gz b/stor_dx/stor_dx/tests/file_data/s_3_2126.bcl.gz new file mode 100644 index 00000000..c98d2ee1 Binary files /dev/null and b/stor_dx/stor_dx/tests/file_data/s_3_2126.bcl.gz differ diff --git a/stor_dx/stor_dx/tests/file_data/test.cfg b/stor_dx/stor_dx/tests/file_data/test.cfg new file mode 100644 index 00000000..5e5f2508 --- /dev/null +++ b/stor_dx/stor_dx/tests/file_data/test.cfg @@ -0,0 +1,10 @@ +[stor] + +[swift] +username = fake_user +password = fake_password + +[swift:upload] + +[dx] +auth_token = fake_token \ No newline at end of file diff --git a/stor_dx/stor_dx/tests/test_cli_dx.py b/stor_dx/stor_dx/tests/test_cli_dx.py new file mode 100644 index 00000000..bddc6d14 --- /dev/null +++ b/stor_dx/stor_dx/tests/test_cli_dx.py @@ -0,0 +1,37 @@ +from __future__ import print_function + +import mock +import sys + +import six + +from stor_dx.dx import DXPath +from stor import cli +from stor_dx import test + + +class BaseCliTest(test.DXTestCase): + def setUp(self): + patcher = mock.patch.object(sys, 'stdout', six.StringIO()) + self.addCleanup(patcher.stop) + patcher.start() + + def parse_args(self, args): + with mock.patch.object(sys, 'argv', args.split()): + cli.main() + + +class TestList(BaseCliTest): + @mock.patch.object(DXPath, 'walkfiles', autospec=True) + def test_list_dx(self, mock_list): + mock_list.return_value = [ + DXPath('dx://t:/c/file1'), + DXPath('dx://t:/c/dir/file2'), + DXPath('dx://t:/c/file3') + ] + self.parse_args('stor list dx://t:/c/') + self.assertEquals(sys.stdout.getvalue(), + 'dx://t:/c/file1\n' + 'dx://t:/c/dir/file2\n' + 'dx://t:/c/file3\n') + mock_list.assert_called_once_with(DXPath('dx://t:/c/')) diff --git a/stor/tests/test_dx.py b/stor_dx/stor_dx/tests/test_dx.py similarity index 99% rename from stor/tests/test_dx.py rename to stor_dx/stor_dx/tests/test_dx.py index 4709bfed..c1f49ded 100644 --- a/stor/tests/test_dx.py +++ b/stor_dx/stor_dx/tests/test_dx.py @@ -8,14 +8,26 @@ import dxpy.bindings as dxb import mock -import stor from stor import exceptions from stor import Path -from stor import utils -from stor.dx import DXPath -import stor.dx as dx -from stor.test import DXTestCase from stor.tests.shared_obs import SharedOBSFileCases +from stor_dx import utils +from stor_dx.dx import DXPath +from stor_dx.test import DXTestCase +import stor +import stor_dx.dx as dx +import stor_dx + + +class TestInit(unittest.TestCase): + def test_dx_init(self): + cls, path = stor_dx.find_cls_for_path('dx', 'dx://temp:') + self.assertEqual(cls, dx.DXVirtualPath) + self.assertEqual(path, 'dx://temp:') + + def test_other_obs_init(self): + with pytest.raises(ValueError, match='Invalid prefix'): + stor_dx.find_cls_for_path('swift', 'swift://tenant/container') class TestBasicPathMethods(unittest.TestCase): @@ -45,7 +57,7 @@ def test_basename(self): class TestRepr(unittest.TestCase): def test_repr(self): - from stor.dx import DXVirtualPath # flake8: noqa + from stor_dx.dx import DXVirtualPath # flake8: noqa dx_p = DXPath('dx://t:/c/p') self.assertEqual(eval(repr(dx_p)), dx_p) @@ -316,7 +328,7 @@ class TestDXOBSFile(SharedOBSFileCases, unittest.TestCase): def setUp(self): super(TestDXOBSFile, self).setUp() - patcher = mock.patch('stor.obs.OBSFile._wait_on_close') + patcher = mock.patch('stor_dx.dx.DXFile._wait_on_close') self.addCleanup(patcher.stop) patcher.start() diff --git a/stor/tests/test_dx_path_compat.py b/stor_dx/stor_dx/tests/test_dx_path_compat.py similarity index 98% rename from stor/tests/test_dx_path_compat.py rename to stor_dx/stor_dx/tests/test_dx_path_compat.py index 59dee0cb..4c819909 100644 --- a/stor/tests/test_dx_path_compat.py +++ b/stor_dx/stor_dx/tests/test_dx_path_compat.py @@ -1,7 +1,7 @@ import pytest import unittest -from stor.dx import DXPath, DXCanonicalPath, DXVirtualPath +from stor_dx.dx import DXPath, DXCanonicalPath, DXVirtualPath class TestBasics(unittest.TestCase): diff --git a/stor/tests/test_integration_dx.py b/stor_dx/stor_dx/tests/test_integration_dx.py similarity index 99% rename from stor/tests/test_integration_dx.py rename to stor_dx/stor_dx/tests/test_integration_dx.py index a28bf44e..82505071 100644 --- a/stor/tests/test_integration_dx.py +++ b/stor_dx/stor_dx/tests/test_integration_dx.py @@ -9,10 +9,10 @@ from stor import NamedTemporaryDirectory from stor import Path -from stor.dx import DXPath -from stor.test import DXTestCase from stor.tests.shared import assert_same_data from stor.tests.test_integration import BaseIntegrationTest +from stor_dx.dx import DXPath +from stor_dx.test import DXTestCase import stor import stor.tests.test_integration as test_integration @@ -129,7 +129,6 @@ def test_read_bytes_from_binary(self): with stor.settings.use(self.DX_WAIT_SETTINGS): with stor.open(test_file, mode='wb') as fp: fp.write(test_integration.BYTE_STRING) - with stor.open(test_file, mode='rb') as fp: result = fp.read() assert result == test_integration.BYTE_STRING diff --git a/stor_dx/stor_dx/tests/test_utils_dx.py b/stor_dx/stor_dx/tests/test_utils_dx.py new file mode 100644 index 00000000..e69de29b diff --git a/stor_dx/stor_dx/utils.py b/stor_dx/stor_dx/utils.py new file mode 100644 index 00000000..f3178ada --- /dev/null +++ b/stor_dx/stor_dx/utils.py @@ -0,0 +1,60 @@ +from dxpy.bindings import verify_string_dxid +from dxpy.exceptions import DXError + + +def is_dx_path(p): + """Determines if the path is a DX path. + + All DX paths start with ``dx://`` + + Args: + p (str): The path string + + Returns + bool: True if p is a DX path, False otherwise. + """ + from stor_dx.dx import DXPath + return p.startswith(DXPath.drive) + + +def is_valid_dxid(dxid, expected_classes): + """wrapper class for verify_string_dxid, because + verify_string_dxid returns None if success, raises error if failed + + Args: Accepts same args as verify_string_dxid + + Returns + bool: Whether given dxid is a valid path of one of expected_classes + """ + try: + return verify_string_dxid(dxid, expected_classes) is None + except DXError: + return False + + +def find_dx_class(p): + """Finds the class of the DX path : DXVirtualPath or DXCanonicalPath + + Args: + p (str): The path string + + Returns + cls: DXVirtualPath or DXCanonicalPath + """ + from stor_dx.dx import DXPath, DXCanonicalPath, DXVirtualPath + colon_pieces = p[len(DXPath.drive):].split(':', 1) + if not colon_pieces or not colon_pieces[0] or '/' in colon_pieces[0]: + raise ValueError('Project is required to construct a DXPath') + project = colon_pieces[0] + resource = (colon_pieces[1] if len(colon_pieces) == 2 else '').lstrip('/') + resource_parts = resource.split('/') + root_name, rest = resource_parts[0], resource_parts[1:] + canonical_resource = is_valid_dxid(root_name, 'file') or not resource + if canonical_resource and rest: + raise ValueError('DX folder paths that start with a valid file dxid are ambiguous') + canonical_project = is_valid_dxid(project, 'project') + + if canonical_project and canonical_resource: + return DXCanonicalPath + else: + return DXVirtualPath diff --git a/stor_s3/requirements.txt b/stor_s3/requirements.txt new file mode 100644 index 00000000..6679508f --- /dev/null +++ b/stor_s3/requirements.txt @@ -0,0 +1 @@ +boto3>=1.4.0 diff --git a/stor_s3/setup.cfg b/stor_s3/setup.cfg new file mode 100644 index 00000000..94cefe8d --- /dev/null +++ b/stor_s3/setup.cfg @@ -0,0 +1,38 @@ +[metadata] +name = stor_s3 +author = Counsyl Inc. +author-email = opensource@counsyl.com +summary = Add-on package to stor for accessing S3 storage systems +home-page = https://github.com/counsyl/stor +requires-python = >=2.7 +license = MIT +classifier = + Topic :: Internet :: WWW/HTTP :: Dynamic Content + Intended Audience :: Developers + Programming Language :: Python + Programming Language :: Python :: 2 + Programming Language :: Python :: 2.7 + Programming Language :: Python :: 3 + Programming Language :: Python :: 3.4 + Programming Language :: Python :: 3.5 + Programming Language :: Python :: 3.6 + Development Status :: 5 - Production/Stable + Operating System :: OS Independent + +[files] +packages = stor_s3 + +[entry_points] +stor.providers = + s3 = stor_s3:find_cls_for_path + +[flake8] +max-complexity=10 +max-line-length=99 + +[pbr] +skip_authors = true +skip_changelog = true + +[bdist_wheel] +universal = 1 diff --git a/stor_s3/setup.py b/stor_s3/setup.py new file mode 100644 index 00000000..e74f898b --- /dev/null +++ b/stor_s3/setup.py @@ -0,0 +1,6 @@ +from setuptools import setup + +setup( + pbr=True, + setup_requires=['pbr'], +) diff --git a/stor_s3/stor_s3/__init__.py b/stor_s3/stor_s3/__init__.py new file mode 100644 index 00000000..1e9db8a3 --- /dev/null +++ b/stor_s3/stor_s3/__init__.py @@ -0,0 +1,11 @@ +from stor_s3.s3 import S3Path + + +drive = S3Path.drive + + +def find_cls_for_path(prefix, path): + if prefix+'://' != drive: + raise ValueError('Invalid prefix to initialize S3Paths: {}'.format(prefix)) + cls = S3Path + return cls, path diff --git a/stor/s3.py b/stor_s3/stor_s3/s3.py similarity index 95% rename from stor/s3.py rename to stor_s3/stor_s3/s3.py index 47b9b688..83a1cc01 100644 --- a/stor/s3.py +++ b/stor_s3/stor_s3/s3.py @@ -646,6 +646,36 @@ def _upload_object(self, upload_obj, config=None): return result + def _obs_copy(self, dest, **kwargs): + """Wrapper function for copy to OBSPaths""" + if utils.is_obs_path(dest): + raise ValueError('cannot copy one OBS path to another OBS path') + + def _obs_copytree(self, dest, **kwargs): + """Wrapper function for copytree to OBSPaths""" + if utils.is_obs_path(dest): + raise ValueError('cannot copy one OBS path to another OBS path') + + def _copy_upload(self, source, **kwargs): + """Wrapper function on upload for transformations when copying. + + Due to the legacy nature of upload being used in write_object/copy/copytree, + we cannot call upload directly from stor.copy, we need to perform checks here. + """ + if self.is_ambiguous(): + raise ValueError('S3 destination must be file with extension or directory with slash') + dest = self.parent + dest.upload(source, **kwargs) + + def _copytree_upload(self, source, **kwargs): + """Wrapper function on upload for transformations when copying. + + Due to the legacy nature of upload being used in write_object/copy/copytree, + we cannot call upload directly from stor.copytree, we need to perform checks here. + """ + with source: + self.upload(['.'], **kwargs) + def upload(self, source, condition=None, use_manifest=False, headers=None, **kwargs): """Uploads a list of files and directories to s3. diff --git a/stor_s3/stor_s3/test.py b/stor_s3/stor_s3/test.py new file mode 100644 index 00000000..0c6546bb --- /dev/null +++ b/stor_s3/stor_s3/test.py @@ -0,0 +1,104 @@ +import mock +import unittest + +from stor_s3 import s3 +from stor_s3.s3 import S3Path + + +class S3TestMixin(object): + """A mixin with helpers for mocking out S3. + + S3TestMixin should be used to create base test classes for anything + that accesses S3. + """ + def disable_get_s3_client_mock(self): + """Disables the mock for getting the S3 client.""" + try: + self._get_s3_client_patcher.stop() + except RuntimeError: + # If the user disables the mock, the mock will try + # to be stopped on test cleanup. Disable errors from that + pass + + def disable_get_s3_iterator_mock(self): + """Disables the mock for getting the S3 iterator.""" + try: + self._get_s3_iterator_patcher.stop() + except RuntimeError: + pass + + def setup_s3_mocks(self): + """Sets all of the relevant mocks for S3 communication. + + If you are testing outside of this library, you should either mock + S3 client methods or you should focus on manipulating return value + of mock_s3. + + Tests of methods that directly make API calls via _s3_client_call should + mock the return values of the API calls on mock_s3. Tests of methods that + do not directly make the API calls should mock any S3Path methods being called. + + The following variables are set up when calling this: + + - mock_s3_client: A mock of the Client instance returned by boto3.client + + - mock_s3: A mock of the Client instance returned by _get_s3_client in S3Path. + + - mock_get_s3_client: A mock of the _get_s3_client method in S3Path. + + - mock_get_s3_iterator: A mock of the _get_s3_iterator method in S3Path. + + - mock_s3_iterator: A mock of the iterable object returned by _get_s3_iterator in S3Path. + + - mock_s3_transfer: A mock of the Transfer instance returned by S3Transfer + + - mock_get_s3_transfer: A mock of the boto3.s3.transfer.S3Transfer object + """ + # Ensure that the S3 session will never be instantiated in tests + s3_session_patcher = mock.patch('boto3.session.Session', autospec=True) + self.addCleanup(s3_session_patcher.stop) + self.mock_s3_session = s3_session_patcher.start() + + # This is the mock returned by _get_s3_client. + # User can mock s3 methods on this mock. + self.mock_s3 = mock.Mock() + self._get_s3_client_patcher = mock.patch('stor_s3.s3._get_s3_client', + autospec=True) + self.addCleanup(self.disable_get_s3_client_mock) + self.mock_get_s3_client = self._get_s3_client_patcher.start() + self.mock_get_s3_client.return_value = self.mock_s3 + + # This is the mock returned by _get_s3_iterator. + # User should modify the __iter__.return_value property to specify return values. + self.mock_s3_iterator = mock.MagicMock() + self._get_s3_iterator_patcher = mock.patch.object(S3Path, '_get_s3_iterator', + autospec=True) + self.addCleanup(self.disable_get_s3_iterator_mock) + self.mock_get_s3_iterator = self._get_s3_iterator_patcher.start() + self.mock_get_s3_iterator.return_value = self.mock_s3_iterator + + # Ensure that an S3Transfer object will never be instantiated in tests. + # User can mock methods associated with S3Transfer on this mock. + self.mock_s3_transfer = mock.Mock() + s3_transfer_patcher = mock.patch('stor_s3.s3.S3Transfer', autospec=True) + self.addCleanup(s3_transfer_patcher.stop) + self.mock_get_s3_transfer = s3_transfer_patcher.start() + self.mock_get_s3_transfer.return_value = self.mock_s3_transfer + + # Mock the TransferConfig object + s3_transfer_config_patcher = mock.patch('stor_s3.s3.TransferConfig', + autospec=True) + self.addCleanup(s3_transfer_config_patcher.stop) + self.mock_get_s3_transfer_config = s3_transfer_config_patcher.start() + + +class S3TestCase(unittest.TestCase, S3TestMixin): + """A TestCase class that sets up S3 mocks""" + def setUp(self): + super(S3TestCase, self).setUp() + self.setup_s3_mocks() + try: + del s3._thread_local.s3_transfer + del s3._thread_local.s3_transfer_config + except AttributeError: + pass diff --git a/stor_s3/stor_s3/tests/__init__.py b/stor_s3/stor_s3/tests/__init__.py new file mode 100644 index 00000000..e69de29b diff --git a/stor_s3/stor_s3/tests/file_data/s_3_2126.bcl.gz b/stor_s3/stor_s3/tests/file_data/s_3_2126.bcl.gz new file mode 100644 index 00000000..c98d2ee1 Binary files /dev/null and b/stor_s3/stor_s3/tests/file_data/s_3_2126.bcl.gz differ diff --git a/stor_s3/stor_s3/tests/file_data/test.cfg b/stor_s3/stor_s3/tests/file_data/test.cfg new file mode 100644 index 00000000..5e5f2508 --- /dev/null +++ b/stor_s3/stor_s3/tests/file_data/test.cfg @@ -0,0 +1,10 @@ +[stor] + +[swift] +username = fake_user +password = fake_password + +[swift:upload] + +[dx] +auth_token = fake_token \ No newline at end of file diff --git a/stor/tests/test_cli.py b/stor_s3/stor_s3/tests/test_cli_s3.py similarity index 51% rename from stor/tests/test_cli.py rename to stor_s3/stor_s3/tests/test_cli_s3.py index 9c10f2b3..df47d9e0 100644 --- a/stor/tests/test_cli.py +++ b/stor_s3/stor_s3/tests/test_cli_s3.py @@ -1,5 +1,4 @@ from __future__ import print_function - import contextlib import os import mock @@ -8,17 +7,13 @@ import six -from stor.dx import DXPath -from stor.posix import PosixPath -from stor.s3 import S3Path -from stor.swift import SwiftPath from stor import cli from stor import exceptions -from stor import settings -from stor import test +from stor_s3 import test +from stor_s3.s3 import S3Path -class BaseCliTest(test.S3TestCase, test.SwiftTestCase): +class BaseCliTest(test.S3TestCase): def setUp(self): patcher = mock.patch.object(sys, 'stdout', six.StringIO()) self.addCleanup(patcher.stop) @@ -35,7 +30,7 @@ def assertOutputMatches(self, exit_status=None, stdout='', stderr=''): except SystemExit as e: self.assertEquals(e.code, int(exit_status)) else: - assert False, 'SystemExit not raised' + assert False, 'SystemExit not raised' # pragma: no cover else: yield if not stdout: @@ -52,29 +47,6 @@ def parse_args(self, args): cli.main() -class TestCliTestUtils(BaseCliTest): - def test_no_exit_status(self): - with six.assertRaisesRegex(self, AssertionError, 'SystemExit'): - with self.assertOutputMatches(exit_status='1'): - pass - - def test_stdout_matching(self): - with six.assertRaisesRegex(self, AssertionError, 'stdout'): - with self.assertOutputMatches(stdout=None): - print('blah') - - def test_stderr_matching(self): - with six.assertRaisesRegex(self, AssertionError, 'stderr'): - with self.assertOutputMatches(stderr=None): - print('blah', file=sys.stderr) - - def test_stderr_and_stdout_matching(self): - with six.assertRaisesRegex(self, AssertionError, 'stderr'): - with self.assertOutputMatches(stdout='apple', stderr=None): - print('apple') - print('blah', file=sys.stderr) - - class TestCliBasics(BaseCliTest): @mock.patch.object(S3Path, 'list', autospec=True) def test_cli_error(self, mock_list): @@ -82,88 +54,6 @@ def test_cli_error(self, mock_list): with self.assertOutputMatches(exit_status='1', stderr='RemoteError: some error'): self.parse_args('stor list s3://bucket') - @mock.patch.dict('stor.settings._global_settings', {}, clear=True) - @mock.patch.dict(os.environ, {}, clear=True) - @mock.patch('stor.copytree', autospec=True) - @mock.patch('stor.settings.USER_CONFIG_FILE', '') - def test_cli_config(self, mock_copytree): - expected_settings = { - 'stor': {}, - 's3': { - 'aws_access_key_id': '', - 'aws_secret_access_key': '', - 'aws_session_token': '', - 'profile_name': '', - 'region_name': '' - }, - 's3:upload': { - 'segment_size': 8388608, - 'object_threads': 10, - 'segment_threads': 10 - }, - 's3:download': { - 'segment_size': 8388608, - 'object_threads': 10, - 'segment_threads': 10 - }, - 'swift': { - 'username': 'fake_user', - 'password': 'fake_password', - 'auth_url': '', - 'temp_url_key': '', - 'num_retries': 0 - }, - 'swift:delete': { - 'object_threads': 10 - }, - 'swift:download': { - 'container_threads': 10, - 'object_threads': 10, - 'shuffle': True, - 'skip_identical': True - }, - 'swift:upload': { - 'changed': False, - 'checksum': True, - 'leave_segments': True, - 'object_threads': 10, - 'segment_size': 1073741824, - 'segment_threads': 10, - 'skip_identical': False, - 'use_slo': True - }, - 'dx': { - 'auth_token': 'fake_token', - 'wait_on_close': 0 - } - } - filename = os.path.join(os.path.dirname(__file__), 'file_data', 'test.cfg') - self.parse_args('stor --config %s cp -r source dest' % filename) - self.assertEquals(settings._global_settings, expected_settings) - - @mock.patch('stor.copy', autospec=True) - def test_not_implemented_error(self, mock_copy): - mock_copy.side_effect = NotImplementedError - with self.assertOutputMatches(exit_status='1', stderr='not a valid command'): - self.parse_args('stor cp some/path some/where') - - @mock.patch('stor.cli._clear_env', autospec=True) - def test_not_implemented_error_no_args(self, mock_clear): - mock_clear.side_effect = NotImplementedError - with self.assertOutputMatches(exit_status='1', stderr='not a valid command'): - self.parse_args('stor clear') - - @mock.patch.object(PosixPath, 'list', autospec=True) - def test_not_implemented_error_path(self, mock_list): - mock_list.side_effect = NotImplementedError - with self.assertOutputMatches(exit_status='1', stderr='not a valid command'): - self.parse_args('stor list some_path') - - def test_no_cmd_provided(self): - with self.assertOutputMatches(exit_status='2', stderr='stor: error:.*arguments'): - with mock.patch.object(sys, 'argv', ['stor']): - cli.main() - @mock.patch('stor.cli._get_pwd', autospec=True) class TestGetPath(BaseCliTest): @@ -172,79 +62,40 @@ def test_relpath_no_s3(self, mock_pwd): with self.assertRaisesRegexp(ValueError, 'relative path'): cli.get_path('s3:../test') - def test_relpath_no_swift(self, mock_pwd): - mock_pwd.return_value = 'swift://' - with self.assertRaisesRegexp(ValueError, 'relative path'): - cli.get_path('swift:../test') - def test_relpath_empty_s3(self, mock_pwd): with self.assertRaisesRegexp(ValueError, 'invalid'): cli.get_path('s3:') - def test_relpath_empty_swift(self, mock_pwd): - with self.assertRaisesRegexp(ValueError, 'invalid'): - cli.get_path('swift:') - def test_relpath_current_s3(self, mock_pwd): mock_pwd.return_value = 's3://test' self.assertEquals(cli.get_path('s3:.'), S3Path('s3://test/')) mock_pwd.return_value = 's3://test/' self.assertEquals(cli.get_path('s3:.'), S3Path('s3://test/')) - def test_relpath_current_swift(self, mock_pwd): - mock_pwd.return_value = 'swift://test' - self.assertEquals(cli.get_path('swift:.'), SwiftPath('swift://test/')) - mock_pwd.return_value = 'swift://test/' - self.assertEquals(cli.get_path('swift:.'), SwiftPath('swift://test/')) - def test_relpath_current_subdir_s3(self, mock_pwd): mock_pwd.return_value = 's3://test' self.assertEquals(cli.get_path('s3:./b/c'), S3Path('s3://test/b/c')) mock_pwd.return_value = 's3://test/' self.assertEquals(cli.get_path('s3:./b/c'), S3Path('s3://test/b/c')) - def test_relpath_current_subdir_swift(self, mock_pwd): - mock_pwd.return_value = 'swift://test/cont' - self.assertEquals(cli.get_path('swift:./b/c'), SwiftPath('swift://test/cont/b/c')) - mock_pwd.return_value = 'swift://test/cont/' - self.assertEquals(cli.get_path('swift:./b/c'), SwiftPath('swift://test/cont/b/c')) - def test_relpath_current_subdir_no_dot_s3(self, mock_pwd): mock_pwd.return_value = 's3://test' self.assertEquals(cli.get_path('s3:b/c'), S3Path('s3://test/b/c')) mock_pwd.return_value = 's3://test/' self.assertEquals(cli.get_path('s3:b/c'), S3Path('s3://test/b/c')) - def test_relpath_current_subdir_no_dot_swift(self, mock_pwd): - mock_pwd.return_value = 'swift://test/cont' - self.assertEquals(cli.get_path('swift:b/c'), SwiftPath('swift://test/cont/b/c')) - mock_pwd.return_value = 'swift://test/cont/' - self.assertEquals(cli.get_path('swift:b/c'), SwiftPath('swift://test/cont/b/c')) - def test_relpath_parent_s3(self, mock_pwd): mock_pwd.return_value = 's3://test/dir' self.assertEquals(cli.get_path('s3:..'), S3Path('s3://test/')) mock_pwd.return_value = 's3://test/dir/' self.assertEquals(cli.get_path('s3:..'), S3Path('s3://test/')) - def test_relpath_parent_swift(self, mock_pwd): - mock_pwd.return_value = 'swift://test/dir' - self.assertEquals(cli.get_path('swift:..'), SwiftPath('swift://test/')) - mock_pwd.return_value = 'swift://test/dir/' - self.assertEquals(cli.get_path('swift:..'), SwiftPath('swift://test/')) - def test_relpath_parent_subdir_s3(self, mock_pwd): mock_pwd.return_value = 's3://test/dir' self.assertEquals(cli.get_path('s3:../b/c'), S3Path('s3://test/b/c')) mock_pwd.return_value = 's3://test/dir/' self.assertEquals(cli.get_path('s3:../b/c'), S3Path('s3://test/b/c')) - def test_relpath_parent_subdir_swift(self, mock_pwd): - mock_pwd.return_value = 'swift://test/cont/dir' - self.assertEquals(cli.get_path('swift:../b/c'), SwiftPath('swift://test/cont/b/c')) - mock_pwd.return_value = 'swift://test/cont/dir/' - self.assertEquals(cli.get_path('swift:../b/c'), SwiftPath('swift://test/cont/b/c')) - def test_relpath_no_parent_s3(self, mock_pwd): mock_pwd.return_value = 's3://test' with self.assertRaisesRegexp(ValueError, 'Relative path.*invalid'): @@ -253,19 +104,9 @@ def test_relpath_no_parent_s3(self, mock_pwd): with self.assertRaisesRegexp(ValueError, 'Relative path.*invalid'): cli.get_path('s3:../b/c') - def test_relpath_no_parent_swift(self, mock_pwd): - mock_pwd.return_value = 'swift://test' - with self.assertRaisesRegexp(ValueError, 'Relative path.*invalid'): - cli.get_path('swift:../b/c') - mock_pwd.return_value = 'swift://test/' - with self.assertRaisesRegexp(ValueError, 'Relative path.*invalid'): - cli.get_path('swift:../b/c') - def test_relpath_nested_parent(self, mock_pwd): mock_pwd.return_value = 's3://a/b/c' self.assertEquals(cli.get_path('s3:../../d'), S3Path('s3://a/d')) - mock_pwd.return_value = 'swift://a/b/c/' - self.assertEquals(cli.get_path('swift:../../d'), SwiftPath('swift://a/d')) def test_relpath_nested_parent_error(self, mock_pwd): mock_pwd.return_value = 's3://a/b/c' @@ -279,10 +120,6 @@ def test_invalid_abspath_s3(self, mock_pwd): with self.assertRaisesRegexp(ValueError, 'invalid path'): cli.get_path('s3:/some/path') - def test_invalid_abspath_swift(self, mock_pwd): - with self.assertRaisesRegexp(ValueError, 'invalid path'): - cli.get_path('swift:/some/path') - class TestList(BaseCliTest): @mock.patch.object(S3Path, 'list', autospec=True) @@ -297,34 +134,6 @@ def test_list_s3(self, mock_list): 's3://a/b/c\ns3://a/file1\ns3://a/file2\n') mock_list.assert_called_once_with(S3Path('s3://a')) - @mock.patch.object(SwiftPath, 'list', autospec=True) - def test_list_swift(self, mock_list): - mock_list.return_value = [ - SwiftPath('swift://t/c/file1'), - SwiftPath('swift://t/c/dir/file2'), - SwiftPath('swift://t/c/file3') - ] - self.parse_args('stor list swift://t/c/') - self.assertEquals(sys.stdout.getvalue(), - 'swift://t/c/file1\n' - 'swift://t/c/dir/file2\n' - 'swift://t/c/file3\n') - mock_list.assert_called_once_with(SwiftPath('swift://t/c/')) - - @mock.patch.object(DXPath, 'walkfiles', autospec=True) - def test_list_dx(self, mock_list): - mock_list.return_value = [ - DXPath('dx://t:/c/file1'), - DXPath('dx://t:/c/dir/file2'), - DXPath('dx://t:/c/file3') - ] - self.parse_args('stor list dx://t:/c/') - self.assertEquals(sys.stdout.getvalue(), - 'dx://t:/c/file1\n' - 'dx://t:/c/dir/file2\n' - 'dx://t:/c/file3\n') - mock_list.assert_called_once_with(DXPath('dx://t:/c/')) - @mock.patch.object(S3Path, 'list', autospec=True) def test_list_options(self, mock_list): mock_list.side_effect = [[ @@ -377,43 +186,13 @@ def test_listdir_s3(self, mock_listdir): 's3://bucket/dir/\n') mock_listdir.assert_called_once_with(S3Path('s3://bucket')) - @mock.patch.object(SwiftPath, 'listdir', autospec=True) - def test_listdir_swift(self, mock_listdir): - mock_listdir.return_value = [ - SwiftPath('swift://t/c/file1'), - SwiftPath('swift://t/c/dir/'), - SwiftPath('swift://t/c/file3') - ] - self.parse_args('stor ls swift://t/c') - self.assertEquals(sys.stdout.getvalue(), - 'swift://t/c/file1\n' - 'swift://t/c/dir/\n' - 'swift://t/c/file3\n') - mock_listdir.assert_called_once_with(SwiftPath('swift://t/c')) - @mock.patch('stor.copy', autospec=True) class TestCopy(BaseCliTest): - def mock_copy_source(self, source, dest, *args, **kwargs): - with open(dest, 'w') as outfile, open(source) as infile: - outfile.write(infile.read()) - def test_copy(self, mock_copy): self.parse_args('stor cp s3://bucket/file.txt ./file1') mock_copy.assert_called_once_with(source='s3://bucket/file.txt', dest='./file1') - @mock.patch('sys.stdin', new=six.StringIO('some stdin input\n')) - def test_copy_stdin(self, mock_copy): - mock_copy.side_effect = self.mock_copy_source - with NamedTemporaryFile(delete=False) as ntf: - test_file = ntf.name - self.parse_args('stor cp - %s' % test_file) - self.assertEquals(open(test_file).read(), 'some stdin input\n') - temp_file = mock_copy.call_args_list[0][1]['source'] - self.assertFalse(os.path.exists(temp_file)) - os.remove(test_file) - self.assertFalse(os.path.exists(test_file)) - @mock.patch('stor.copytree', autospec=True) class TestCopytree(BaseCliTest): @@ -432,21 +211,11 @@ def test_remove_s3(self, mock_remove): self.parse_args('stor rm s3://bucket/file1') mock_remove.assert_called_once_with(S3Path('s3://bucket/file1')) - @mock.patch.object(SwiftPath, 'remove', autospec=True) - def test_remove_swift(self, mock_remove): - self.parse_args('stor rm swift://t/c/file1') - mock_remove.assert_called_once_with(SwiftPath('swift://t/c/file1')) - @mock.patch.object(S3Path, 'rmtree', autospec=True) def test_rmtree_s3(self, mock_rmtree): self.parse_args('stor rm -r s3://bucket/dir') mock_rmtree.assert_called_once_with(S3Path('s3://bucket/dir')) - @mock.patch.object(SwiftPath, 'rmtree', autospec=True) - def test_rmtree_swift(self, mock_rmtree): - self.parse_args('stor rm -r swift://t/c/dir') - mock_rmtree.assert_called_once_with(SwiftPath('swift://t/c/dir')) - class TestWalkfiles(BaseCliTest): @mock.patch.object(S3Path, 'walkfiles', autospec=True) @@ -463,60 +232,12 @@ def test_walkfiles_s3(self, mock_walkfiles): 's3://bucket/d.txt\n') mock_walkfiles.assert_called_once_with(S3Path('s3://bucket'), pattern='*.txt') - @mock.patch.object(SwiftPath, 'walkfiles', autospec=True) - def test_walkfiles_swift(self, mock_walkfiles): - mock_walkfiles.return_value = [ - 'swift://t/c/a/b.txt', - 'swift://t/c/c.txt', - 'swift://t/c/d.txt' - ] - self.parse_args('stor walkfiles -p=*.txt swift://bucket') - self.assertEquals(sys.stdout.getvalue(), - 'swift://t/c/a/b.txt\n' - 'swift://t/c/c.txt\n' - 'swift://t/c/d.txt\n') - mock_walkfiles.assert_called_once_with(SwiftPath('swift://bucket'), pattern='*.txt') - - @mock.patch.object(PosixPath, 'walkfiles', autospec=True) - def test_walkfiles_posix(self, mock_walkfiles): - mock_walkfiles.return_value = [ - './a/b.txt', - './c.txt', - './d.txt' - ] - self.parse_args('stor walkfiles -p=*.txt .') - self.assertEquals(sys.stdout.getvalue(), - './a/b.txt\n' - './c.txt\n' - './d.txt\n') - mock_walkfiles.assert_called_once_with(PosixPath('.'), pattern='*.txt') - - @mock.patch.object(PosixPath, 'walkfiles', autospec=True) - def test_walkfiles_no_pattern(self, mock_walkfiles): - mock_walkfiles.return_value = [ - './a/b.txt', - './c.txt', - './d.txt', - './file' - ] - self.parse_args('stor walkfiles .') - self.assertEquals(sys.stdout.getvalue(), - './a/b.txt\n' - './c.txt\n' - './d.txt\n' - './file\n') - mock_walkfiles.assert_called_once_with(PosixPath('.')) - class TestToUri(BaseCliTest): def test_to_url(self): with self.assertOutputMatches(stdout='^https://test.s3.amazonaws.com/file\n$'): self.parse_args('stor url s3://test/file') - def test_file_uri_error(self): - with self.assertOutputMatches(exit_status='1', stderr='must be swift or s3 path'): - self.parse_args('stor url /test/file') - class TestCat(BaseCliTest): @mock.patch.object(S3Path, 'read_object', autospec=True) @@ -526,13 +247,6 @@ def test_cat_s3(self, mock_read): self.assertEquals(sys.stdout.getvalue(), 'hello world\n') mock_read.assert_called_once_with(S3Path('s3://test/file')) - @mock.patch.object(SwiftPath, 'read_object', autospec=True) - def test_cat_swift(self, mock_read): - mock_read.return_value = b'hello world' - self.parse_args('stor cat swift://some/test/file') - self.assertEquals(sys.stdout.getvalue(), 'hello world\n') - mock_read.assert_called_once_with(SwiftPath('swift://some/test/file')) - class TestCd(BaseCliTest): def setUp(self): @@ -560,22 +274,11 @@ def test_cd_s3(self, mock_isdir): self.assertIn(self.generate_env_text(s3_path='s3://test'), open(self.test_env_file).read()) - @mock.patch.object(SwiftPath, 'isdir', return_value=True, autospec=True) - def test_cd_swift(self, mock_isdir): - self.parse_args('stor cd swift://test/container') - self.assertIn(self.generate_env_text(swift_path='swift://test/container'), - open(self.test_env_file).read()) - @mock.patch.object(S3Path, 'isdir', return_value=False, autospec=True) def test_cd_not_dir_s3(self, mock_isdir): with self.assertOutputMatches(exit_status=1, stderr='not a directory'): self.parse_args('stor cd s3://test/file') - @mock.patch.object(SwiftPath, 'isdir', return_value=False, autospec=True) - def test_cd_not_dir_swift(self, mock_isdir): - with self.assertOutputMatches(exit_status=1, stderr='not a directory'): - self.parse_args('stor cd swift://test/container/file') - def test_cd_bad_path_error(self): with self.assertOutputMatches(exit_status=1, stderr='invalid path'): self.parse_args('stor cd drive://not/correct') diff --git a/stor/tests/test_integration_s3.py b/stor_s3/stor_s3/tests/test_integration_s3.py similarity index 100% rename from stor/tests/test_integration_s3.py rename to stor_s3/stor_s3/tests/test_integration_s3.py diff --git a/stor_s3/stor_s3/tests/test_posix_s3.py b/stor_s3/stor_s3/tests/test_posix_s3.py new file mode 100644 index 00000000..a431ac10 --- /dev/null +++ b/stor_s3/stor_s3/tests/test_posix_s3.py @@ -0,0 +1,59 @@ +import mock +import tempfile +import unittest + +import stor +from stor import Path +from stor import posix +from stor_s3 import s3 + + +class TestDiv(unittest.TestCase): + def test_w_s3_component(self): + p = posix.PosixPath('my/path') / s3.S3Path('s3://b/name').name + self.assertEquals(p, posix.PosixPath('my/path/name')) + self.assertEquals(stor.join('my/path', + s3.S3Path('s3://b/name').name), + p) + + +class TestAdd(unittest.TestCase): + def test_w_s3_component(self): + p = posix.PosixPath('my/path') + s3.S3Path('s3://b/name').name + self.assertEquals(p, posix.PosixPath('my/pathname')) + + +class TestCopy(unittest.TestCase): + @mock.patch.object(s3.S3Path, 'upload', autospec=True) + def test_s3_destination(self, mock_upload): + dest = Path('s3://bucket/key/file.txt') + with tempfile.NamedTemporaryFile() as tmp_f: + Path(tmp_f.name).copy(dest) + upload_args = mock_upload.call_args_list[0][0] + self.assertEquals(upload_args[0], dest.parent) + self.assertEquals(upload_args[1][0].source, tmp_f.name) + self.assertEquals(upload_args[1][0].object_name, 'key/file.txt') + + def test_ambigious_s3_destination(self): + with stor.NamedTemporaryDirectory() as tmp_d: + source = tmp_d / '1' + with open(source, 'w') as tmp_file: + tmp_file.write('1') + + dest = 's3://tenant/ambiguous-container' + with self.assertRaisesRegexp(ValueError, 'S3 destination'): + stor.copy(source, dest) + + +class TestCopytree(unittest.TestCase): + @mock.patch.object(s3.S3Path, 'upload', autospec=True) + def test_s3_destination(self, mock_upload): + source = '.' + dest = Path('s3://tenant/container') + stor.copytree(source, dest) + mock_upload.assert_called_once_with( + dest, + ['.'], + condition=None, + use_manifest=False, + headers=None) diff --git a/stor/tests/test_s3.py b/stor_s3/stor_s3/tests/test_s3.py similarity index 97% rename from stor/tests/test_s3.py rename to stor_s3/stor_s3/tests/test_s3.py index 72b040a6..2af705f6 100644 --- a/stor/tests/test_s3.py +++ b/stor_s3/stor_s3/tests/test_s3.py @@ -10,17 +10,29 @@ import mock from testfixtures import LogCapture -import stor from stor import exceptions from stor import NamedTemporaryDirectory -from stor.obs import OBSUploadObject from stor import Path from stor import settings -from stor import s3 -from stor.s3 import S3Path -from stor.test import S3TestCase -from stor.tests.shared_obs import SharedOBSFileCases from stor import utils +from stor.obs import OBSUploadObject +from stor.tests.shared_obs import SharedOBSFileCases +from stor_s3 import s3 +from stor_s3.s3 import S3Path +from stor_s3.test import S3TestCase +import stor +import stor_s3 + + +class TestInit(unittest.TestCase): + def test_s3_init(self): + cls, path = stor_s3.find_cls_for_path('s3', 's3://random/path') + self.assertEqual(cls, S3Path) + self.assertEqual(path, 's3://random/path') + + def test_other_obs_init(self): + with self.assertRaisesRegexp(ValueError, 'Invalid prefix'): + stor_s3.find_cls_for_path('dx', 'dx://tenant:/container') class TestBasicPathMethods(unittest.TestCase): @@ -119,7 +131,7 @@ def test_resource_nested_dir(self): self.assertEquals(s3_p.resource, 'nested/dir/') -@mock.patch('stor.s3._thread_local', mock.Mock()) +@mock.patch('stor_s3.s3._thread_local', mock.Mock()) class TestGetS3Client(S3TestCase): def test_get_s3_client_exists(self): s3._thread_local.s3_client = 'client' @@ -1085,7 +1097,7 @@ def test_upload_w_use_manifest_single_file(self, mock_getsize, mock_files): S3Path('s3://bucket/path').upload(['file'], use_manifest=True) - @mock.patch('stor.s3.ThreadPool', autospec=True) + @mock.patch('stor_s3.s3.ThreadPool', autospec=True) def test_upload_object_threads(self, mock_pool, mock_getsize, mock_files): mock_files.return_value = { 'file%s' % i: 20 @@ -1143,13 +1155,13 @@ def test_upload_progress_logging(self, mock_getsize, mock_files): mock_getsize.return_value = 20 s3_p = S3Path('s3://bucket') - with LogCapture('stor.s3.progress') as progress_log: + with LogCapture('stor_s3.s3.progress') as progress_log: s3_p.upload(['upload']) progress_log.check( - ('stor.s3.progress', 'INFO', 'starting upload of 20 objects'), # nopep8 - ('stor.s3.progress', 'INFO', '10/20\t0:00:00\t0.00 MB\t0.00 MB/s'), # nopep8 - ('stor.s3.progress', 'INFO', '20/20\t0:00:00\t0.00 MB\t0.00 MB/s'), # nopep8 - ('stor.s3.progress', 'INFO', 'upload complete - 20/20\t0:00:00\t0.00 MB\t0.00 MB/s'), # nopep8 + ('stor_s3.s3.progress', 'INFO', 'starting upload of 20 objects'), # nopep8 + ('stor_s3.s3.progress', 'INFO', '10/20\t0:00:00\t0.00 MB\t0.00 MB/s'), # nopep8 + ('stor_s3.s3.progress', 'INFO', '20/20\t0:00:00\t0.00 MB\t0.00 MB/s'), # nopep8 + ('stor_s3.s3.progress', 'INFO', 'upload complete - 20/20\t0:00:00\t0.00 MB\t0.00 MB/s'), # nopep8 ) @@ -1276,7 +1288,7 @@ def test_download_w_condition_and_use_manifest(self, mock_stream, mock_list, moc self.assertEquals(self.mock_s3_transfer.download_file.call_count, 3) @mock.patch.object(S3Path, 'list', autospec=True) - @mock.patch('stor.s3.ThreadPool', autospec=True) + @mock.patch('stor_s3.s3.ThreadPool', autospec=True) def test_download_object_threads(self, mock_pool, mock_list, mock_getsize, mock_make_dest_dir): mock_list.return_value = [ @@ -1337,13 +1349,13 @@ def test_download_progress_logging(self, mock_list, mock_getsize, mock_make_dest mock_getsize.return_value = 100 s3_p = S3Path('s3://bucket') - with LogCapture('stor.s3.progress') as progress_log: + with LogCapture('stor_s3.s3.progress') as progress_log: s3_p.download('output_dir') progress_log.check( - ('stor.s3.progress', 'INFO', 'starting download of 20 objects'), # nopep8 - ('stor.s3.progress', 'INFO', '10/20\t0:00:00\t0.00 MB\t0.00 MB/s'), # nopep8 - ('stor.s3.progress', 'INFO', '20/20\t0:00:00\t0.00 MB\t0.00 MB/s'), # nopep8 - ('stor.s3.progress', 'INFO', 'download complete - 20/20\t0:00:00\t0.00 MB\t0.00 MB/s'), # nopep8 + ('stor_s3.s3.progress', 'INFO', 'starting download of 20 objects'), # nopep8 + ('stor_s3.s3.progress', 'INFO', '10/20\t0:00:00\t0.00 MB\t0.00 MB/s'), # nopep8 + ('stor_s3.s3.progress', 'INFO', '20/20\t0:00:00\t0.00 MB\t0.00 MB/s'), # nopep8 + ('stor_s3.s3.progress', 'INFO', 'download complete - 20/20\t0:00:00\t0.00 MB\t0.00 MB/s'), # nopep8 ) diff --git a/stor/tests/test_s3_path_compat.py b/stor_s3/stor_s3/tests/test_s3_path_compat.py similarity index 98% rename from stor/tests/test_s3_path_compat.py rename to stor_s3/stor_s3/tests/test_s3_path_compat.py index dd9f79d9..ad6eda1a 100644 --- a/stor/tests/test_s3_path_compat.py +++ b/stor_s3/stor_s3/tests/test_s3_path_compat.py @@ -1,6 +1,6 @@ import unittest -from stor.s3 import S3Path +from stor_s3.s3 import S3Path class TestBasics(unittest.TestCase): diff --git a/stor_s3/stor_s3/tests/test_utils_s3.py b/stor_s3/stor_s3/tests/test_utils_s3.py new file mode 100644 index 00000000..d0417731 --- /dev/null +++ b/stor_s3/stor_s3/tests/test_utils_s3.py @@ -0,0 +1,52 @@ +import mock +import unittest + +from stor import Path +from stor_s3 import utils +from stor_s3.s3 import S3Path +import stor + + +class TestPath(unittest.TestCase): + def test_s3_returned(self): + p = Path('s3://my/s3/path') + self.assertTrue(isinstance(p, S3Path)) + + +class TestIsS3Path(unittest.TestCase): + def test_true(self): + self.assertTrue(utils.is_s3_path('s3://my/s3/path')) + + def test_false(self): + self.assertFalse(utils.is_s3_path('my/posix/path')) + + +class TestIsWriteableS3(unittest.TestCase): + def setUp(self): + super(TestIsWriteableS3, self).setUp() + + mock_copy_patcher = mock.patch('stor.copy') + self.mock_copy = mock_copy_patcher.start() + self.addCleanup(mock_copy_patcher.stop) + + mock_remove_patcher = mock.patch('stor.remove', autospec=True) + self.mock_remove = mock_remove_patcher.start() + self.addCleanup(mock_remove_patcher.stop) + + mock_tmpfile_patcher = mock.patch( + 'stor.utils.tempfile.NamedTemporaryFile', autospec=True) + self.filename = 'test_file' + self.mock_tmpfile = mock_tmpfile_patcher.start() + self.mock_tmpfile.return_value.__enter__.return_value.name = self.filename + self.addCleanup(mock_tmpfile_patcher.stop) + + def test_success(self): + path = 's3://stor-test/foo/bar' + self.assertTrue(utils.is_writeable(path)) + self.mock_remove.assert_called_with( + S3Path('{}/{}'.format(path, self.filename))) + + def test_path_no_perms(self): + self.mock_copy.side_effect = stor.exceptions.FailedUploadError('foo') + self.assertFalse(utils.is_writeable('s3://stor-test/foo/bar')) + self.assertFalse(self.mock_remove.called) diff --git a/stor_s3/stor_s3/tests/test_windows_s3.py b/stor_s3/stor_s3/tests/test_windows_s3.py new file mode 100644 index 00000000..75cccd6e --- /dev/null +++ b/stor_s3/stor_s3/tests/test_windows_s3.py @@ -0,0 +1,15 @@ +from stor import windows +from stor_s3 import s3 +import unittest + + +class TestDiv(unittest.TestCase): + def test_w_s3_component(self): + with self.assertRaisesRegexp(TypeError, 'unsupported operand'): + windows.WindowsPath(r'my\path') / s3.S3Path('s3://b/name').name + + +class TestAdd(unittest.TestCase): + def test_w_s3_component(self): + with self.assertRaisesRegexp(TypeError, 'unsupported operand'): + windows.WindowsPath(r'my\path') + s3.S3Path('s3://b/name').name diff --git a/stor_s3/stor_s3/utils.py b/stor_s3/stor_s3/utils.py new file mode 100644 index 00000000..187aca32 --- /dev/null +++ b/stor_s3/stor_s3/utils.py @@ -0,0 +1,86 @@ +import tempfile + +import stor.utils as stor_utils + + +def is_s3_path(p): + """Determines if the path is a S3 path. + + All S3 paths start with ``s3://`` + + Args: + p (str): The path string + + Returns + bool: True if p is a S3 path, False otherwise. + """ + from stor_s3.s3 import S3Path + return p.startswith(S3Path.drive) + + +def is_writeable(path, swift_retry_options=None): + """ + Determine whether we have permission to write to path. + + Behavior of this method is slightly different for different storage types when the + directory doesn't exist: + 1. For local file systems, this function will return True if the target directory + exists and a file written to it. + 2. For AWS S3, this function will return True only if the target bucket is already + present and we have write access to the bucket. + 3. For Swift, this function will return True, only if the target tenant is already + present and we have write access to the tenant and container. The container doesn't + have to be present. + + This is function is useful, because `stor.stat()` will succeed if we have read-only + permissions to `path`, but the eventual attempt to upload will fail. + + Secondly, `path` might not exist yet. If the intent of the caller is to create it, , + stor.stat() will fail, however the eventual upload attempt would succeed. + + Args: + path (stor.Path|str): The path to check. + swift_retry_options (dict): Optional retry arguments to use for swift + upload or download. View the + `swift module-level documentation ` for more + information on retry arguments. If the goal is to not use + exponential backoff, pass ``{'num_retries': 0}`` here. + + Returns: + bool: Whether ``path`` is writeable or not. + """ + from stor import basename + from stor import join + from stor import Path + from stor import remove + from stor.exceptions import UnauthorizedError + from stor.exceptions import UnavailableError + from stor.exceptions import ConflictError + from stor.exceptions import FailedUploadError + import stor + + path = stor_utils.with_trailing_slash(Path(path)) + + container_path = None + container_existed = None + + with tempfile.NamedTemporaryFile() as tmpfile: + try: + # Attempt to create a file in the `path`. + stor.copy(tmpfile.name, path, swift_retry_options=swift_retry_options) + # Remove the file that was created. + remove(join(path, basename(tmpfile.name))) + answer = True + except (UnauthorizedError, UnavailableError, IOError, OSError, FailedUploadError): # nopep8 + answer = False + + # Remove the Swift container if it didn't exist when calling this function, but exists + # now. This way this function remains a no-op with regards to container structure. + if container_existed is False and container_path.exists(): # pragma: no cover + try: + container_path.remove_container() + except ConflictError: + # Ignore if some other thread/user created the container in the meantime. + pass + + return answer diff --git a/stor_swift/requirements.txt b/stor_swift/requirements.txt new file mode 100644 index 00000000..9d44a4e6 --- /dev/null +++ b/stor_swift/requirements.txt @@ -0,0 +1 @@ +python-keystoneclient>=1.8.1 \ No newline at end of file diff --git a/stor_swift/setup.cfg b/stor_swift/setup.cfg new file mode 100644 index 00000000..5343de0d --- /dev/null +++ b/stor_swift/setup.cfg @@ -0,0 +1,38 @@ +[metadata] +name = stor_swift +author = Counsyl Inc. +author-email = opensource@counsyl.com +summary = Add-on package to stor for accessing Swift storage systems +home-page = https://github.com/counsyl/stor +requires-python = >=2.7 +license = MIT +classifier = + Topic :: Internet :: WWW/HTTP :: Dynamic Content + Intended Audience :: Developers + Programming Language :: Python + Programming Language :: Python :: 2 + Programming Language :: Python :: 2.7 + Programming Language :: Python :: 3 + Programming Language :: Python :: 3.4 + Programming Language :: Python :: 3.5 + Programming Language :: Python :: 3.6 + Development Status :: 5 - Production/Stable + Operating System :: OS Independent + +[files] +packages = stor_swift + +[entry_points] +stor.providers = + swift = stor_swift:find_cls_for_path + +[flake8] +max-complexity=10 +max-line-length=99 + +[pbr] +skip_authors = true +skip_changelog = true + +[bdist_wheel] +universal = 1 diff --git a/stor_swift/setup.py b/stor_swift/setup.py new file mode 100644 index 00000000..e74f898b --- /dev/null +++ b/stor_swift/setup.py @@ -0,0 +1,6 @@ +from setuptools import setup + +setup( + pbr=True, + setup_requires=['pbr'], +) diff --git a/stor_swift/stor_swift/__init__.py b/stor_swift/stor_swift/__init__.py new file mode 100644 index 00000000..1a4eef04 --- /dev/null +++ b/stor_swift/stor_swift/__init__.py @@ -0,0 +1,11 @@ +from stor_swift.swift import SwiftPath + + +drive = SwiftPath.drive + + +def find_cls_for_path(prefix, path): + if prefix+'://' != drive: + raise ValueError('Invalid prefix to initialize SwiftPaths: {}'.format(prefix)) + cls = SwiftPath + return cls, path diff --git a/stor/swift.py b/stor_swift/stor_swift/swift.py similarity index 97% rename from stor/swift.py rename to stor_swift/stor_swift/swift.py index 9a9b0c01..ea4ea23c 100644 --- a/stor/swift.py +++ b/stor_swift/stor_swift/swift.py @@ -17,7 +17,7 @@ A basic example of configuring the swift authentication parameters and downloading a directory:: - >>> from stor import swift + >>> from stor_swift import swift >>> from stor import settings >>> settings.update({ ... 'swift': { @@ -50,7 +50,6 @@ from swiftclient.utils import generate_temp_url from stor import exceptions as stor_exceptions -from stor import is_swift_path from stor import settings from stor import utils from stor.base import Path @@ -58,6 +57,7 @@ from stor.obs import OBSUploadObject from stor.posix import PosixPath from stor.third_party.backoff import with_backoff +from stor_swift.utils import is_swift_path logger = logging.getLogger(__name__) @@ -953,7 +953,7 @@ def download(self, This method retries ``num_retries`` times if swift is unavailable or if the returned download result does not match the ``condition`` - condition. View `module-level documentation ` + condition. View `module-level documentation ` for more information about configuring retry logic at the module or method level. @@ -1016,6 +1016,42 @@ def download(self, utils.check_condition(condition, results) return results + def _obs_copy(self, dest, **kwargs): + """Wrapper function for copy to OBSPaths""" + if utils.is_obs_path(dest): + raise ValueError('cannot copy one OBS path to another OBS path') + + def _obs_copytree(self, dest, **kwargs): + """Wrapper function for copytree to OBSPaths""" + if utils.is_obs_path(dest): + raise ValueError('cannot copy one OBS path to another OBS path') + + def _copy_upload(self, source, **kwargs): + """Wrapper function on upload for transformations when copying. + + Due to the legacy nature of upload being used in write_object/copy/copytree, + we cannot call upload directly from stor.copy, we need to perform checks here. + """ + if self.is_ambiguous(): + raise ValueError('Swift destination must be file with extension or directory ' + 'with slash') + if not self.parent.container: + raise ValueError(( + 'cannot copy to tenant "%s" and file ' + '"%s"' % (self.parent, self.name) + )) + dest = self.parent + dest.upload(source, **kwargs) + + def _copytree_upload(self, source, **kwargs): + """Wrapper function on upload for transformations when copying. + + Due to the legacy nature of upload being used in write_object/copy/copytree, + we cannot call upload directly from stor.copytree, we need to perform checks here. + """ + with source: + self.upload(['.'], **kwargs) + @_swift_retry( exceptions=( ConditionNotMetError, @@ -1028,12 +1064,13 @@ def upload(self, to_upload, condition=None, use_manifest=False, - headers=None): + headers=None, + **kwargs): """Uploads a list of files and directories to swift. This method retries ``num_retries`` times if swift is unavailable or if the returned upload result does not match the ``condition`` - condition. View `module-level documentation ` + condition. View `module-level documentation ` for more information about configuring retry logic at the module or method level. @@ -1192,7 +1229,7 @@ def remove(self): def rmtree(self): """Removes a resource and all of its contents. This method retries ``num_retries`` times if swift is unavailable. - View `module-level documentation ` for more + View `module-level documentation ` for more information about configuring retry logic at the module or method level. diff --git a/stor_swift/stor_swift/test.py b/stor_swift/stor_swift/test.py new file mode 100644 index 00000000..51a5886d --- /dev/null +++ b/stor_swift/stor_swift/test.py @@ -0,0 +1,109 @@ +import mock +import unittest + +from stor import settings +from stor_swift.swift import SwiftPath + + +class SwiftTestMixin(object): + """A mixin with helpers for mocking out swift. + + SwiftTestMixin should be used to create base test classes for anything + that accesses swift. + """ + def disable_get_swift_service_mock(self): + """Disables the mock for getting the swift service. + """ + try: + self._get_swift_patcher.stop() + except RuntimeError: + # If the user disables the mock, the mock will try + # to be stopped on test cleanup. Disable errors from that + pass + + def setup_swift_mocks(self): + """Sets all of the relevant mocks for Swift communication. + + If you are testing outside of this library, you should either mock + swift object methods or you should focus on manipulating return value + of mock_swift. + + The following variables are set up when calling this: + + - mock_swift_service: A mock of the SwiftService class defined in + swiftclient.service. + + - mock_swift_get_conn: A mock of the get_conn function in the + swiftclient.service module + + - mock_swift_conn: A mock of the SwiftConnection returned by + get_conn + + - mock_swift_get_auth_keystone: mock of the get_keystone_auth function + that caches identity credentials + + - mock_get_swift_service: A mock of the _get_swift_service method of + SwiftPath + + - mock_swift: A mock of the SwiftService instance returned by + _get_swift_service in SwiftPath + """ + # Ensure that SwiftService will never be instantiated in tests + swift_service_patcher = mock.patch('swiftclient.service.SwiftService', + autospec=True) + self.addCleanup(swift_service_patcher.stop) + self.mock_swift_service = swift_service_patcher.start() + + # Ensure that SwiftConnections will never be instantiated in tests + swift_get_conn_patcher = mock.patch('swiftclient.service.get_conn', + autospec=True) + self.addCleanup(swift_get_conn_patcher.stop) + self.mock_swift_get_conn = swift_get_conn_patcher.start() + self.mock_swift_conn = mock.Mock() + self.mock_swift_get_conn.return_value = self.mock_swift_conn + + # Ensure that no keystone auth calls will go out + swift_keystone_mock_patcher = mock.patch('swiftclient.client.get_auth_keystone', + autospec=True) + self.addCleanup(swift_keystone_mock_patcher.stop) + self.mock_swift_get_auth_keystone = swift_keystone_mock_patcher.start() + self.mock_swift_get_auth_keystone.return_value = ('dummy_storage_url', 'dummy_auth_token') + + # This is the mock that will always be returned by _get_swift_service. + # The user can mock out any swift methods on this mock + self.mock_swift = mock.Mock() + self._get_swift_patcher = mock.patch.object(SwiftPath, + '_get_swift_service', + autospec=True) + self.addCleanup(self.disable_get_swift_service_mock) + self.mock_get_swift_service = self._get_swift_patcher.start() + self.mock_get_swift_service.return_value = self.mock_swift + + # ensures we never cache data between tests + _cache_patcher = mock.patch.dict('stor_swift.swift._cached_auth_token_map', clear=True) + self.addCleanup(_cache_patcher.stop) + _cache_patcher.start() + + def assertSwiftListResultsEqual(self, r1, r2): + """ + Swift list resolves duplicates, so the ordering of the results are not + always the same as what the swift client returns. Compare results as + sorted lists + """ + self.assertEquals(sorted(r1), sorted(r2)) + + +class SwiftTestCase(unittest.TestCase, SwiftTestMixin): + """A TestCase class that sets up swift mocks and provides additional assertions""" + def setUp(self): + super(SwiftTestCase, self).setUp() + self.setup_swift_mocks() + + # make sure swift credentials aren't included + settings.update({ + 'swift': { + 'username': '__dummy__', + 'password': '__dummy__', + 'auth_url': '__dummy__' + } + }) diff --git a/stor_swift/stor_swift/tests/__init__.py b/stor_swift/stor_swift/tests/__init__.py new file mode 100644 index 00000000..e69de29b diff --git a/stor_swift/stor_swift/tests/file_data/s_3_2126.bcl.gz b/stor_swift/stor_swift/tests/file_data/s_3_2126.bcl.gz new file mode 100644 index 00000000..c98d2ee1 Binary files /dev/null and b/stor_swift/stor_swift/tests/file_data/s_3_2126.bcl.gz differ diff --git a/stor_swift/stor_swift/tests/file_data/test.cfg b/stor_swift/stor_swift/tests/file_data/test.cfg new file mode 100644 index 00000000..5e5f2508 --- /dev/null +++ b/stor_swift/stor_swift/tests/file_data/test.cfg @@ -0,0 +1,10 @@ +[stor] + +[swift] +username = fake_user +password = fake_password + +[swift:upload] + +[dx] +auth_token = fake_token \ No newline at end of file diff --git a/stor_swift/stor_swift/tests/test_cli_swift.py b/stor_swift/stor_swift/tests/test_cli_swift.py new file mode 100644 index 00000000..7f90725e --- /dev/null +++ b/stor_swift/stor_swift/tests/test_cli_swift.py @@ -0,0 +1,258 @@ +from __future__ import print_function + +import contextlib +import os +import mock +import sys +from tempfile import NamedTemporaryFile + +import six + +from stor import cli +from stor_swift.swift import SwiftPath +from stor_swift import test + + +class BaseCliTest(test.SwiftTestCase): + def setUp(self): + patcher = mock.patch.object(sys, 'stdout', six.StringIO()) + self.addCleanup(patcher.stop) + patcher.start() + + @contextlib.contextmanager + def assertOutputMatches(self, exit_status=None, stdout='', stderr=''): # pragma: no cover + patch = mock.patch('sys.stderr', new=six.StringIO()) + self.addCleanup(patch.stop) + patch.start() + if exit_status is not None: + try: + yield + except SystemExit as e: + self.assertEquals(e.code, int(exit_status)) + else: + assert False, 'SystemExit not raised' + else: + yield + if not stdout: + self.assertEquals(sys.stdout.getvalue(), '', 'stdout') + else: + self.assertRegexpMatches(sys.stdout.getvalue(), stdout, 'stdout') + if not stderr: + self.assertEquals(sys.stderr.getvalue(), '', 'stderr') + else: + self.assertRegexpMatches(sys.stderr.getvalue(), stderr, 'stderr') + + def parse_args(self, args): + with mock.patch.object(sys, 'argv', args.split()): + cli.main() + + +@mock.patch('stor.cli._get_pwd', autospec=True) +class TestGetPath(BaseCliTest): + def test_relpath_no_swift(self, mock_pwd): + mock_pwd.return_value = 'swift://' + with self.assertRaisesRegexp(ValueError, 'relative path'): + cli.get_path('swift:../test') + + def test_relpath_empty_swift(self, mock_pwd): + with self.assertRaisesRegexp(ValueError, 'invalid'): + cli.get_path('swift:') + + def test_relpath_current_swift(self, mock_pwd): + mock_pwd.return_value = 'swift://test' + self.assertEquals(cli.get_path('swift:.'), SwiftPath('swift://test/')) + mock_pwd.return_value = 'swift://test/' + self.assertEquals(cli.get_path('swift:.'), SwiftPath('swift://test/')) + + def test_relpath_current_subdir_swift(self, mock_pwd): + mock_pwd.return_value = 'swift://test/cont' + self.assertEquals(cli.get_path('swift:./b/c'), SwiftPath('swift://test/cont/b/c')) + mock_pwd.return_value = 'swift://test/cont/' + self.assertEquals(cli.get_path('swift:./b/c'), SwiftPath('swift://test/cont/b/c')) + + def test_relpath_current_subdir_no_dot_swift(self, mock_pwd): + mock_pwd.return_value = 'swift://test/cont' + self.assertEquals(cli.get_path('swift:b/c'), SwiftPath('swift://test/cont/b/c')) + mock_pwd.return_value = 'swift://test/cont/' + self.assertEquals(cli.get_path('swift:b/c'), SwiftPath('swift://test/cont/b/c')) + + def test_relpath_parent_swift(self, mock_pwd): + mock_pwd.return_value = 'swift://test/dir' + self.assertEquals(cli.get_path('swift:..'), SwiftPath('swift://test/')) + mock_pwd.return_value = 'swift://test/dir/' + self.assertEquals(cli.get_path('swift:..'), SwiftPath('swift://test/')) + + def test_relpath_parent_subdir_swift(self, mock_pwd): + mock_pwd.return_value = 'swift://test/cont/dir' + self.assertEquals(cli.get_path('swift:../b/c'), SwiftPath('swift://test/cont/b/c')) + mock_pwd.return_value = 'swift://test/cont/dir/' + self.assertEquals(cli.get_path('swift:../b/c'), SwiftPath('swift://test/cont/b/c')) + + def test_relpath_no_parent_swift(self, mock_pwd): + mock_pwd.return_value = 'swift://test' + with self.assertRaisesRegexp(ValueError, 'Relative path.*invalid'): + cli.get_path('swift:../b/c') + mock_pwd.return_value = 'swift://test/' + with self.assertRaisesRegexp(ValueError, 'Relative path.*invalid'): + cli.get_path('swift:../b/c') + + def test_relpath_nested_parent(self, mock_pwd): + mock_pwd.return_value = 'swift://a/b/c/' + self.assertEquals(cli.get_path('swift:../../d'), SwiftPath('swift://a/d')) + + def test_invalid_abspath_swift(self, mock_pwd): + with self.assertRaisesRegexp(ValueError, 'invalid path'): + cli.get_path('swift:/some/path') + + +class TestList(BaseCliTest): + @mock.patch.object(SwiftPath, 'list', autospec=True) + def test_list_swift(self, mock_list): + mock_list.return_value = [ + SwiftPath('swift://t/c/file1'), + SwiftPath('swift://t/c/dir/file2'), + SwiftPath('swift://t/c/file3') + ] + self.parse_args('stor list swift://t/c/') + self.assertEquals(sys.stdout.getvalue(), + 'swift://t/c/file1\n' + 'swift://t/c/dir/file2\n' + 'swift://t/c/file3\n') + mock_list.assert_called_once_with(SwiftPath('swift://t/c/')) + + +class TestLs(BaseCliTest): + @mock.patch.object(SwiftPath, 'listdir', autospec=True) + def test_listdir_swift(self, mock_listdir): + mock_listdir.return_value = [ + SwiftPath('swift://t/c/file1'), + SwiftPath('swift://t/c/dir/'), + SwiftPath('swift://t/c/file3') + ] + self.parse_args('stor ls swift://t/c') + self.assertEquals(sys.stdout.getvalue(), + 'swift://t/c/file1\n' + 'swift://t/c/dir/\n' + 'swift://t/c/file3\n') + mock_listdir.assert_called_once_with(SwiftPath('swift://t/c')) + + +class TestRemove(BaseCliTest): + @mock.patch.object(SwiftPath, 'remove', autospec=True) + def test_remove_swift(self, mock_remove): + self.parse_args('stor rm swift://t/c/file1') + mock_remove.assert_called_once_with(SwiftPath('swift://t/c/file1')) + + @mock.patch.object(SwiftPath, 'rmtree', autospec=True) + def test_rmtree_swift(self, mock_rmtree): + self.parse_args('stor rm -r swift://t/c/dir') + mock_rmtree.assert_called_once_with(SwiftPath('swift://t/c/dir')) + + +class TestWalkfiles(BaseCliTest): + @mock.patch.object(SwiftPath, 'walkfiles', autospec=True) + def test_walkfiles_swift(self, mock_walkfiles): + mock_walkfiles.return_value = [ + 'swift://t/c/a/b.txt', + 'swift://t/c/c.txt', + 'swift://t/c/d.txt' + ] + self.parse_args('stor walkfiles -p=*.txt swift://bucket') + self.assertEquals(sys.stdout.getvalue(), + 'swift://t/c/a/b.txt\n' + 'swift://t/c/c.txt\n' + 'swift://t/c/d.txt\n') + mock_walkfiles.assert_called_once_with(SwiftPath('swift://bucket'), pattern='*.txt') + + +class TestCat(BaseCliTest): + @mock.patch.object(SwiftPath, 'read_object', autospec=True) + def test_cat_swift(self, mock_read): + mock_read.return_value = b'hello world' + self.parse_args('stor cat swift://some/test/file') + self.assertEquals(sys.stdout.getvalue(), 'hello world\n') + mock_read.assert_called_once_with(SwiftPath('swift://some/test/file')) + + +class TestCd(BaseCliTest): + def setUp(self): + # set up a temp file to use as env file so we don't mess up real defaults + self.test_env_file = NamedTemporaryFile(delete=False).name + mock_env_file_patcher = mock.patch('stor.cli.ENV_FILE', self.test_env_file) + self.mock_env_file = mock_env_file_patcher.start() + self.addCleanup(mock_env_file_patcher.stop) + + with mock.patch('os.path.exists', return_value=False, autospec=True): + cli._clear_env() + super(TestCd, self).setUp() + + def tearDown(self): + cli._clear_env() + os.remove(self.test_env_file) + super(TestCd, self).tearDown() + + def generate_env_text(self, s3_path='s3://', swift_path='swift://'): + return '[env]\ns3 = %s\nswift = %s\n' % (s3_path, swift_path) + + @mock.patch.object(SwiftPath, 'isdir', return_value=True, autospec=True) + def test_cd_swift(self, mock_isdir): + self.parse_args('stor cd swift://test/container') + self.assertIn(self.generate_env_text(swift_path='swift://test/container'), + open(self.test_env_file).read()) + + @mock.patch.object(SwiftPath, 'isdir', return_value=False, autospec=True) + def test_cd_not_dir_swift(self, mock_isdir): + with self.assertOutputMatches(exit_status=1, stderr='not a directory'): + self.parse_args('stor cd swift://test/container/file') + + def test_cd_bad_path_error(self): + with self.assertOutputMatches(exit_status=1, stderr='invalid path'): + self.parse_args('stor cd drive://not/correct') + + def test_clear_all(self): + with open(self.test_env_file, 'w') as outfile: + outfile.write(self.generate_env_text(s3_path='s3://test', + swift_path='swift://test/container')) + self.parse_args('stor clear') + self.assertIn(self.generate_env_text(), open(self.test_env_file).read()) + + def test_clear_s3(self): + with open(self.test_env_file, 'w') as outfile: + outfile.write(self.generate_env_text(s3_path='s3://test', + swift_path='swift://test/container')) + self.parse_args('stor clear s3') + self.assertIn(self.generate_env_text(swift_path='swift://test/container'), + open(self.test_env_file).read()) + + def test_clear_swift(self): + with open(self.test_env_file, 'w') as outfile: + outfile.write(self.generate_env_text(s3_path='s3://test', + swift_path='swift://test/container')) + self.parse_args('stor clear swift') + self.assertIn(self.generate_env_text(s3_path='s3://test'), + open(self.test_env_file).read()) + + def test_pwd_all(self): + with open(self.test_env_file, 'w') as outfile: + outfile.write(self.generate_env_text(s3_path='s3://test', + swift_path='swift://test/container')) + self.parse_args('stor pwd') + self.assertEquals(sys.stdout.getvalue(), 's3://test/\nswift://test/container/\n') + + def test_pwd_s3(self): + with open(self.test_env_file, 'w') as outfile: + outfile.write(self.generate_env_text(s3_path='s3://test', + swift_path='swift://test/container')) + self.parse_args('stor pwd s3') + self.assertEquals(sys.stdout.getvalue(), 's3://test/\n') + + def test_pwd_swift(self): + with open(self.test_env_file, 'w') as outfile: + outfile.write(self.generate_env_text(s3_path='s3://test', + swift_path='swift://test/container')) + self.parse_args('stor pwd swift') + self.assertEquals(sys.stdout.getvalue(), 'swift://test/container/\n') + + def test_pwd_error(self): + with self.assertOutputMatches(exit_status=1, stderr='invalid service'): + self.parse_args('stor pwd service') diff --git a/stor/tests/test_integration_swift.py b/stor_swift/stor_swift/tests/test_integration_swift.py similarity index 99% rename from stor/tests/test_integration_swift.py rename to stor_swift/stor_swift/tests/test_integration_swift.py index e458df98..603944a3 100644 --- a/stor/tests/test_integration_swift.py +++ b/stor_swift/stor_swift/tests/test_integration_swift.py @@ -12,7 +12,7 @@ from stor import NamedTemporaryDirectory from stor import Path from stor import settings -from stor import swift +from stor_swift import swift from stor import utils from stor.tests.test_integration import BaseIntegrationTest diff --git a/stor_swift/stor_swift/tests/test_posix_swift.py b/stor_swift/stor_swift/tests/test_posix_swift.py new file mode 100644 index 00000000..05fd2cef --- /dev/null +++ b/stor_swift/stor_swift/tests/test_posix_swift.py @@ -0,0 +1,90 @@ +import os +import mock +import tempfile +import unittest + +import stor +from stor import Path +from stor import posix +from stor import settings +from stor_swift import swift + + +class TestDiv(unittest.TestCase): + def test_w_swift_component(self): + p = posix.PosixPath('my/path') / swift.SwiftPath('swift://t/c/name').name + self.assertEquals(p, posix.PosixPath('my/path/name')) + self.assertEquals(stor.join('my/path', + swift.SwiftPath('swift://t/c/name').name), + p) + + +class TestAdd(unittest.TestCase): + def test_w_swift_component(self): + p = posix.PosixPath('my/path') + swift.SwiftPath('swift://t/c/name').name + self.assertEquals(p, posix.PosixPath('my/pathname')) + + +class TestCopy(unittest.TestCase): + @mock.patch.object(swift.SwiftPath, 'upload', autospec=True) + def test_swift_destination(self, mock_upload): + dest = Path('swift://tenant/container/file.txt') + with tempfile.NamedTemporaryFile() as tmp_f: + Path(tmp_f.name).copy(dest) + upload_args = mock_upload.call_args_list[0][0] + self.assertEquals(upload_args[0], dest.parent) + self.assertEquals(upload_args[1][0].source, tmp_f.name) + self.assertEquals(upload_args[1][0].object_name, 'file.txt') + + def test_ambigious_swift_resource_destination(self): + with stor.NamedTemporaryDirectory() as tmp_d: + source = tmp_d / '1' + with open(source, 'w') as tmp_file: + tmp_file.write('1') + + dest = 'swift://tenant/container/ambiguous-resource' + with self.assertRaisesRegexp(ValueError, 'Swift destination'): + stor.copy(source, dest) + + def test_ambigious_swift_container_destination(self): + with stor.NamedTemporaryDirectory() as tmp_d: + source = tmp_d / '1' + with open(source, 'w') as tmp_file: + tmp_file.write('1') + + dest = 'swift://tenant/ambiguous-container' + with self.assertRaisesRegexp(ValueError, 'Swift destination'): + stor.copy(source, dest) + + def test_tenant_swift_destination(self): + with stor.NamedTemporaryDirectory() as tmp_d: + source = tmp_d / 'source' + os.mkdir(source) + with open(source / '1.txt', 'w') as tmp_file: + tmp_file.write('1') + + dest = 'swift://tenant/' + with self.assertRaisesRegexp(ValueError, 'copy to tenant'): + stor.copy(source / '1.txt', dest) + + +class TestCopytree(unittest.TestCase): + @mock.patch.object(swift.SwiftPath, 'upload', autospec=True) + def test_swift_destination(self, mock_upload): + source = '.' + dest = Path('swift://tenant/container') + options = { + 'swift:upload': { + 'object_threads': 30, + 'segment_threads': 40 + } + } + + with settings.use(options): + stor.copytree(source, dest) + mock_upload.assert_called_once_with( + dest, + ['.'], + condition=None, + use_manifest=False, + headers=None) diff --git a/stor/tests/test_swift.py b/stor_swift/stor_swift/tests/test_swift.py similarity index 98% rename from stor/tests/test_swift.py rename to stor_swift/stor_swift/tests/test_swift.py index 9673cca2..aeaf8d5a 100644 --- a/stor/tests/test_swift.py +++ b/stor_swift/stor_swift/tests/test_swift.py @@ -11,16 +11,17 @@ from swiftclient.service import SwiftError from testfixtures import LogCapture -import stor from stor import exceptions from stor import NamedTemporaryDirectory from stor import Path from stor import settings -from stor import swift from stor import utils -from stor.swift import SwiftPath -from stor.test import SwiftTestCase from stor.tests.shared_obs import SharedOBSFileCases +from stor_swift import swift +from stor_swift.swift import SwiftPath +from stor_swift.test import SwiftTestCase +import stor +import stor_swift def _service_404_exception(): @@ -45,8 +46,19 @@ def _make_stat_response(stat_response=None): return [defaults] +class TestInit(unittest.TestCase): + def test_swift_init(self): + cls, path = stor_swift.find_cls_for_path('swift', 'swift://tenant/') + self.assertEqual(cls, SwiftPath) + self.assertEqual(path, 'swift://tenant/') + + def test_other_obs_init(self): + with self.assertRaisesRegexp(ValueError, 'Invalid prefix'): + stor_swift.find_cls_for_path('dx', 'swift://tenant/container') + + class TestPatchedGetAuthKeystone(unittest.TestCase): - @mock.patch('stor.swift.real_get_auth_keystone', autospec=True) + @mock.patch('stor_swift.swift.real_get_auth_keystone', autospec=True) def test_patched_get_auth_keystone(self, mock_get_real_auth_keystone): mock_get_real_auth_keystone.side_effect = Exception os_options = {'auth_token': 'token'} @@ -83,7 +95,7 @@ def test_basename(self): self.assertEquals(p.basename(), 'resource') def test_to_url(self): - with mock.patch('stor.swift._get_or_create_auth_credentials', + with mock.patch('stor_swift.swift._get_or_create_auth_credentials', # storage url may be an opaque value... ensure we roll with that return_value={'os_storage_url': 'https://example.com/v1.0/othertenant', 'os_auth_token': 'sometoken'}): @@ -1213,7 +1225,7 @@ def test_raises_inconsistent_error(self): class TestGetProgressLogger(unittest.TestCase): def test_success(self): l = swift.get_progress_logger() - expected = logging.getLogger('stor.swift.progress') + expected = logging.getLogger('stor_swift.swift.progress') self.assertEquals(l, expected) @@ -1261,13 +1273,13 @@ def test_progress_logging(self): self.mock_swift.download.return_value.append({'action': 'random_action'}) swift_p = SwiftPath('swift://tenant/container') - with LogCapture('stor.swift.progress') as progress_log: + with LogCapture('stor_swift.swift.progress') as progress_log: swift_p.download('output_dir') progress_log.check( - ('stor.swift.progress', 'INFO', 'starting download'), - ('stor.swift.progress', 'INFO', '10\t0:00:00\t0.00 MB\t0.00 MB/s'), # nopep8 - ('stor.swift.progress', 'INFO', '20\t0:00:00\t0.00 MB\t0.00 MB/s'), # nopep8 - ('stor.swift.progress', 'INFO', 'download complete - 20\t0:00:00\t0.00 MB\t0.00 MB/s'), # nopep8 + ('stor_swift.swift.progress', 'INFO', 'starting download'), + ('stor_swift.swift.progress', 'INFO', '10\t0:00:00\t0.00 MB\t0.00 MB/s'), # nopep8 + ('stor_swift.swift.progress', 'INFO', '20\t0:00:00\t0.00 MB\t0.00 MB/s'), # nopep8 + ('stor_swift.swift.progress', 'INFO', 'download complete - 20\t0:00:00\t0.00 MB\t0.00 MB/s'), # nopep8 ) def test_download_resource(self): @@ -1740,14 +1752,14 @@ def test_progress_logging(self, mock_walk_files_and_dirs): } swift_p = SwiftPath('swift://tenant/container') - with LogCapture('stor.swift.progress') as progress_log: + with LogCapture('stor_swift.swift.progress') as progress_log: with settings.use(upload_settings): swift_p.upload(['upload']) progress_log.check( - ('stor.swift.progress', 'INFO', 'starting upload of 20 objects'), - ('stor.swift.progress', 'INFO', '10/20\t0:00:00\t0.00 MB\t0.00 MB/s'), # nopep8 - ('stor.swift.progress', 'INFO', '20/20\t0:00:00\t0.00 MB\t0.00 MB/s'), # nopep8 - ('stor.swift.progress', 'INFO', 'upload complete - 20/20\t0:00:00\t0.00 MB\t0.00 MB/s'), # nopep8 + ('stor_swift.swift.progress', 'INFO', 'starting upload of 20 objects'), + ('stor_swift.swift.progress', 'INFO', '10/20\t0:00:00\t0.00 MB\t0.00 MB/s'), # nopep8 + ('stor_swift.swift.progress', 'INFO', '20/20\t0:00:00\t0.00 MB\t0.00 MB/s'), # nopep8 + ('stor_swift.swift.progress', 'INFO', 'upload complete - 20/20\t0:00:00\t0.00 MB\t0.00 MB/s'), # nopep8 ) def test_upload_to_tenant(self, mock_walk_files_and_dirs): @@ -2491,7 +2503,7 @@ def test_normpath(self): class TestAuthCacheRetrying(SwiftTestCase): - @mock.patch('stor.swift._clear_cached_auth_credentials', spec_set=True) + @mock.patch('stor_swift.swift._clear_cached_auth_credentials', spec_set=True) def test_refresh_cache_once_on_auth_err(self, mock_clear_cached_auth_credentials): self.mock_swift.download.side_effect = swift.AuthenticationError('auth err') diff --git a/stor/tests/test_swift_path_compat.py b/stor_swift/stor_swift/tests/test_swift_path_compat.py similarity index 97% rename from stor/tests/test_swift_path_compat.py rename to stor_swift/stor_swift/tests/test_swift_path_compat.py index 19d2df1b..546de56b 100644 --- a/stor/tests/test_swift_path_compat.py +++ b/stor_swift/stor_swift/tests/test_swift_path_compat.py @@ -1,6 +1,6 @@ import unittest -from stor.swift import SwiftPath +from stor_swift.swift import SwiftPath class TestBasics(unittest.TestCase): diff --git a/stor_swift/stor_swift/tests/test_utils_swift.py b/stor_swift/stor_swift/tests/test_utils_swift.py new file mode 100644 index 00000000..b137ce53 --- /dev/null +++ b/stor_swift/stor_swift/tests/test_utils_swift.py @@ -0,0 +1,100 @@ +import mock +import unittest + +from stor import Path +from stor import utils as stor_utils +from stor_swift import utils +from stor_swift.swift import SwiftPath +import stor_swift + + +class TestPath(unittest.TestCase): + def test_swift_returned(self): + p = Path('swift://my/swift/path') + self.assertTrue(isinstance(p, SwiftPath)) + + +class TestIsSwiftPath(unittest.TestCase): + def test_true(self): + self.assertTrue(utils.is_swift_path('swift://my/swift/path')) + + def test_false(self): + self.assertFalse(utils.is_swift_path('my/posix/path')) + + +class TestIsWriteableSwift(unittest.TestCase): + def setUp(self): + super(TestIsWriteableSwift, self).setUp() + + mock_exists_patcher = mock.patch('stor_swift.swift.SwiftPath.exists', autospec=True) + self.mock_exists = mock_exists_patcher.start() + self.addCleanup(mock_exists_patcher.stop) + + mock_copy_patcher = mock.patch('stor.copy', autospec=True) + self.mock_copy = mock_copy_patcher.start() + self.addCleanup(mock_copy_patcher.stop) + + mock_remove_container_patcher = mock.patch( + 'stor_swift.swift.SwiftPath.remove_container', autospec=True) + self.mock_remove_container = mock_remove_container_patcher.start() + self.addCleanup(mock_remove_container_patcher.stop) + + mock_remove_patcher = mock.patch('stor.remove', autospec=True) + self.mock_remove = mock_remove_patcher.start() + self.addCleanup(mock_remove_patcher.stop) + + mock_tmpfile_patcher = mock.patch( + 'stor.utils.tempfile.NamedTemporaryFile', autospec=True) + self.filename = 'test_file' + self.mock_tmpfile = mock_tmpfile_patcher.start() + self.mock_tmpfile.return_value.__enter__.return_value.name = self.filename + self.addCleanup(mock_tmpfile_patcher.stop) + + def test_existing_path(self): + self.mock_exists.return_value = True + path = SwiftPath('swift://AUTH_stor_test/container/test/') + self.assertTrue(utils.is_writeable(path)) + self.mock_remove.assert_called_with(path / self.filename) + + def test_non_existing_path(self): + self.mock_exists.return_value = False + self.assertTrue(utils.is_writeable('swift://AUTH_stor_test/container/test/')) + + def test_path_unchanged(self): + # Make the first call to exists() return False and the second return True. + self.mock_exists.side_effect = [False, True] + utils.is_writeable('swift://AUTH_stor_test/container/test/') + self.mock_remove_container.assert_called_once_with( + SwiftPath('swift://AUTH_stor_test/container/')) + + def test_existing_path_not_removed(self): + self.mock_exists.return_value = True + utils.is_writeable('swift://AUTH_stor_test/container/test/') + self.assertFalse(self.mock_remove_container.called) + + def test_path_no_perms(self): + self.mock_copy.side_effect = stor_swift.swift.UnauthorizedError('foo') + self.assertFalse(utils.is_writeable('swift://AUTH_stor_test/container/test/')) + + def test_disable_backoff(self): + path = Path('swift://AUTH_stor_test/container/test/') + swift_opts = {'num_retries': 0} + utils.is_writeable(path, swift_opts) + self.mock_copy.assert_called_with( + self.filename, path, swift_retry_options=swift_opts) + + def test_no_trailing_slash(self): + path = SwiftPath('swift://AUTH_stor_test/container') + utils.is_writeable(path) # no trailing slash + self.mock_copy.assert_called_with( + self.filename, + stor_utils.with_trailing_slash(path), + swift_retry_options=None + ) + + def test_container_created_in_another_client(self): + # Simulate that container doesn't exist at the beginning, but is created after the + # is_writeable is called. + self.mock_exists.side_effect = [False, True] + self.mock_remove_container.side_effect = stor_swift.swift.ConflictError('foo') + self.assertTrue(utils.is_writeable('swift://AUTH_stor_test/container/')) diff --git a/stor_swift/stor_swift/tests/test_windows_swift.py b/stor_swift/stor_swift/tests/test_windows_swift.py new file mode 100644 index 00000000..9a938050 --- /dev/null +++ b/stor_swift/stor_swift/tests/test_windows_swift.py @@ -0,0 +1,15 @@ +from stor import windows +from stor_swift import swift +import unittest + + +class TestDiv(unittest.TestCase): + def test_w_swift_component(self): + with self.assertRaisesRegexp(TypeError, 'unsupported operand'): + windows.WindowsPath(r'my\path') / swift.SwiftPath('swift://t/c/name').name + + +class TestAdd(unittest.TestCase): + def test_w_swift_component(self): + with self.assertRaisesRegexp(TypeError, 'unsupported operand'): + windows.WindowsPath(r'my\path') + swift.SwiftPath('swift://t/c/name').name diff --git a/stor_swift/stor_swift/utils.py b/stor_swift/stor_swift/utils.py new file mode 100644 index 00000000..a290a852 --- /dev/null +++ b/stor_swift/stor_swift/utils.py @@ -0,0 +1,96 @@ +import tempfile + +from stor import exceptions +import stor.utils as stor_utils + + +def is_swift_path(p): + """Determines if the path is a Swift path. + + All Swift paths start with swift:// + + Args: + p (str): The path string + + Returns: + bool: True if p is a Swift path, False otherwise. + """ + from stor_swift.swift import SwiftPath + return p.startswith(SwiftPath.drive) + + +def is_writeable(path, swift_retry_options=None): + """ + Determine whether we have permission to write to path. + + Behavior of this method is slightly different for different storage types when the + directory doesn't exist: + 1. For local file systems, this function will return True if the target directory + exists and a file written to it. + 2. For AWS S3, this function will return True only if the target bucket is already + present and we have write access to the bucket. + 3. For Swift, this function will return True, only if the target tenant is already + present and we have write access to the tenant and container. The container doesn't + have to be present. + + This is function is useful, because `stor.stat()` will succeed if we have read-only + permissions to `path`, but the eventual attempt to upload will fail. + + Secondly, `path` might not exist yet. If the intent of the caller is to create it, , + stor.stat() will fail, however the eventual upload attempt would succeed. + + Args: + path (stor.Path|str): The path to check. + swift_retry_options (dict): Optional retry arguments to use for swift + upload or download. View the + `swift module-level documentation ` for more + information on retry arguments. If the goal is to not use + exponential backoff, pass ``{'num_retries': 0}`` here. + + Returns: + bool: Whether ``path`` is writeable or not. + """ + from stor import basename + from stor import join + from stor import Path + from stor import remove + from stor_swift.swift import ConflictError + from stor_swift.swift import SwiftPath + from stor_swift.swift import UnauthorizedError + from stor_swift.swift import UnavailableError + import stor + + path = stor_utils.with_trailing_slash(Path(path)) + + # We want this function to behave as a no-op with regards to the underlying + # container structure. Therefore we need to remove any containers created by this + # function that were not present when it was called. The `container_existed` + # defined below will store whether the container that we're checking existed when + # calling this function, so that we know if it should be removed at the end. + container_path = Path('{}{}/{}/'.format( + SwiftPath.drive, + path.tenant, + path.container + )) + container_existed = container_path.exists() + + with tempfile.NamedTemporaryFile() as tmpfile: + try: + # Attempt to create a file in the `path`. + stor.copy(tmpfile.name, path, swift_retry_options=swift_retry_options) + # Remove the file that was created. + remove(join(path, basename(tmpfile.name))) + answer = True + except (UnauthorizedError, UnavailableError, IOError, OSError, exceptions.FailedUploadError): # nopep8 + answer = False + + # Remove the Swift container if it didn't exist when calling this function, but exists + # now. This way this function remains a no-op with regards to container structure. + if container_existed is False and container_path.exists(): + try: + container_path.remove_container() + except ConflictError: + # Ignore if some other thread/user created the container in the meantime. + pass + + return answer diff --git a/tox.ini b/tox.ini index 1de069ec..107b72c1 100644 --- a/tox.ini +++ b/tox.ini @@ -1,4 +1,5 @@ [tox] +skipsdist=True install_command = pip install {opts} {packages} indexserver = default = https://pypi.python.org/simple/ @@ -10,9 +11,12 @@ setenv = XUNIT_FILE=nosetests-{envname}.xml commands = rm -f .coverage - py.test -v -rsx --cov=stor {posargs:stor} + ./run_all.sh 'pip install -e .' stor/ stor_dx/ stor_swift/ stor_s3/ + py.test -v -rsx --cov-config .coveragerc --cov=stor/stor --cov=stor_swift/stor_swift --cov=stor_dx/stor_dx \ + --cov=stor_s3/stor_s3 {posargs: stor/stor/tests} {posargs: stor_dx/stor_dx/tests} {posargs: stor_swift/stor_swift/tests} {posargs: stor_s3/stor_s3/tests} + deps = - -r{toxinidir}/requirements-dev.txt + -r{toxinidir}/stor/requirements-dev.txt whitelist_externals = make bash nosetests