Build: #17 failed

Job: multiprovider regular file CRUD proxyio failed

Build log

The build generated 4,015 lines of output.   The output is too long and has been truncated to the last 1,000 lines. Download or view full build log.

24-Dec-2019 08:16:54             if start_env:
24-Dec-2019 08:16:54                 previous_env['started'] = start_environment(
24-Dec-2019 08:16:54                     scenario_path, request, hosts, '', users,
24-Dec-2019 08:16:54                     env_description_abs_path
24-Dec-2019 08:16:54                 )
24-Dec-2019 08:16:54             return env_desc
24-Dec-2019 08:16:54    
24-Dec-2019 08:16:54         elif test_type in ['oneclient', 'onedata_fs', 'performance']:
24-Dec-2019 08:16:54             with open(env_description_abs_path, 'r') as env_desc_file:
24-Dec-2019 08:16:54                 env_desc = yaml.load(env_desc_file)
24-Dec-2019 08:16:54    
24-Dec-2019 08:16:54             scenario = env_desc.get('scenario')
24-Dec-2019 08:16:54             scenarios_dir_path = SCENARIO_DIRS.get(get_test_type(request))
24-Dec-2019 08:16:54             scenario_path = os.path.abspath(os.path.join(scenarios_dir_path,
24-Dec-2019 08:16:54                                                          scenario))
24-Dec-2019 08:16:54    
24-Dec-2019 08:16:54             patch = env_desc.get('patch')
24-Dec-2019 08:16:54             patch_dir_path = PATCHES_DIR.get(get_test_type(request))
24-Dec-2019 08:16:54             patch_path = os.path.join(patch_dir_path, patch)
24-Dec-2019 08:16:54             if start_env:
24-Dec-2019 08:16:54                 previous_env['started'] = start_environment(
24-Dec-2019 08:16:54                     scenario_path, request, hosts, patch_path, users,
24-Dec-2019 08:16:54 >                   env_description_abs_path
24-Dec-2019 08:16:54                 )
24-Dec-2019 08:16:54
24-Dec-2019 08:16:54 tests/conftest.py:356:
24-Dec-2019 08:16:54 _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
24-Dec-2019 08:16:54 tests/conftest.py:455: in start_environment
24-Dec-2019 08:16:54     pods_cfg = check_deployment()
24-Dec-2019 08:16:54 tests/conftest.py:484: in check_deployment
24-Dec-2019 08:16:54     status_output = yaml.load(status_output.decode('utf-8'))
24-Dec-2019 08:16:54 /usr/local/lib/python2.7/dist-packages/yaml/__init__.py:71: in load
24-Dec-2019 08:16:54     return loader.get_single_data()
24-Dec-2019 08:16:54 /usr/local/lib/python2.7/dist-packages/yaml/constructor.py:37: in get_single_data
24-Dec-2019 08:16:54     node = self.get_single_node()
24-Dec-2019 08:16:54 /usr/local/lib/python2.7/dist-packages/yaml/composer.py:36: in get_single_node
24-Dec-2019 08:16:54     document = self.compose_document()
24-Dec-2019 08:16:54 /usr/local/lib/python2.7/dist-packages/yaml/composer.py:55: in compose_document
24-Dec-2019 08:16:54     node = self.compose_node(None, None)
24-Dec-2019 08:16:54 /usr/local/lib/python2.7/dist-packages/yaml/composer.py:84: in compose_node
24-Dec-2019 08:16:54     node = self.compose_mapping_node(anchor)
24-Dec-2019 08:16:54 /usr/local/lib/python2.7/dist-packages/yaml/composer.py:127: in compose_mapping_node
24-Dec-2019 08:16:54     while not self.check_event(MappingEndEvent):
24-Dec-2019 08:16:54 /usr/local/lib/python2.7/dist-packages/yaml/parser.py:98: in check_event
24-Dec-2019 08:16:54     self.current_event = self.state()
24-Dec-2019 08:16:54 /usr/local/lib/python2.7/dist-packages/yaml/parser.py:428: in parse_block_mapping_key
24-Dec-2019 08:16:54     if self.check_token(KeyToken):
24-Dec-2019 08:16:54 /usr/local/lib/python2.7/dist-packages/yaml/scanner.py:116: in check_token
24-Dec-2019 08:16:54     self.fetch_more_tokens()
24-Dec-2019 08:16:54 /usr/local/lib/python2.7/dist-packages/yaml/scanner.py:220: in fetch_more_tokens
24-Dec-2019 08:16:54     return self.fetch_value()
24-Dec-2019 08:16:54 _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
24-Dec-2019 08:16:54
24-Dec-2019 08:16:54 self = <yaml.loader.Loader object at 0x7f6d5ed6f490>
24-Dec-2019 08:16:54
24-Dec-2019 08:16:54     def fetch_value(self):
24-Dec-2019 08:16:54    
24-Dec-2019 08:16:54         # Do we determine a simple key?
24-Dec-2019 08:16:54         if self.flow_level in self.possible_simple_keys:
24-Dec-2019 08:16:54    
24-Dec-2019 08:16:54             # Add KEY.
24-Dec-2019 08:16:54             key = self.possible_simple_keys[self.flow_level]
24-Dec-2019 08:16:54             del self.possible_simple_keys[self.flow_level]
24-Dec-2019 08:16:54             self.tokens.insert(key.token_number-self.tokens_taken,
24-Dec-2019 08:16:54                     KeyToken(key.mark, key.mark))
24-Dec-2019 08:16:54    
24-Dec-2019 08:16:54             # If this key starts a new block mapping, we need to add
24-Dec-2019 08:16:54             # BLOCK-MAPPING-START.
24-Dec-2019 08:16:54             if not self.flow_level:
24-Dec-2019 08:16:54                 if self.add_indent(key.column):
24-Dec-2019 08:16:54                     self.tokens.insert(key.token_number-self.tokens_taken,
24-Dec-2019 08:16:54                             BlockMappingStartToken(key.mark, key.mark))
24-Dec-2019 08:16:54    
24-Dec-2019 08:16:54             # There cannot be two simple keys one after another.
24-Dec-2019 08:16:54             self.allow_simple_key = False
24-Dec-2019 08:16:54    
24-Dec-2019 08:16:54         # It must be a part of a complex key.
24-Dec-2019 08:16:54         else:
24-Dec-2019 08:16:54    
24-Dec-2019 08:16:54             # Block context needs additional checks.
24-Dec-2019 08:16:54             # (Do we really need them? They will be catched by the parser
24-Dec-2019 08:16:54             # anyway.)
24-Dec-2019 08:16:54             if not self.flow_level:
24-Dec-2019 08:16:54    
24-Dec-2019 08:16:54                 # We are allowed to start a complex value if and only if
24-Dec-2019 08:16:54                 # we can start a simple key.
24-Dec-2019 08:16:54                 if not self.allow_simple_key:
24-Dec-2019 08:16:54                     raise ScannerError(None, None,
24-Dec-2019 08:16:54                             "mapping values are not allowed here",
24-Dec-2019 08:16:54 >                           self.get_mark())
24-Dec-2019 08:16:54 E                   ScannerError: mapping values are not allowed here
24-Dec-2019 08:16:54 E                     in "<unicode string>", line 1, column 90:
24-Dec-2019 08:16:54 E                        ... py:91: RequestsDependencyWarning: urllib3 (1.25.7) or chardet (3 ...
24-Dec-2019 08:16:54 E                                                            ^
24-Dec-2019 08:16:54
24-Dec-2019 08:16:54 /usr/local/lib/python2.7/dist-packages/yaml/scanner.py:576: ScannerError
24-Dec-2019 08:16:54 __ ERROR at setup of test_delete_file_opened_for_rdwr[multiprovider_proxyio] ___
24-Dec-2019 08:16:54
24-Dec-2019 08:16:54 env_description_abs_path = '/mnt/storage/bamboo-agent-home/xml-data/build-dir/TEST-OCAST-MRFCP/onedata/tests/oneclient/environments/multiprovider_proxyio.yaml'
24-Dec-2019 08:16:54 hosts = {}
24-Dec-2019 08:16:54 request = <SubRequest 'env_desc' for <Function 'test_create[multiprovider_proxyio]'>>
24-Dec-2019 08:16:54 users = {}
24-Dec-2019 08:16:54 previous_env = {'env_path': '/mnt/storage/bamboo-agent-home/xml-data/build-dir/TEST-OCAST-MRFCP/onedata/tests/oneclient/environments/multiprovider_proxyio.yaml'}
24-Dec-2019 08:16:54
24-Dec-2019 08:16:54     @pytest.fixture(scope='module', autouse=True)
24-Dec-2019 08:16:54     def env_desc(env_description_abs_path, hosts, request, users,
24-Dec-2019 08:16:54                  previous_env):
24-Dec-2019 08:16:54         """
24-Dec-2019 08:16:54         Sets up environment and returns environment description.
24-Dec-2019 08:16:54         """
24-Dec-2019 08:16:54         test_type = get_test_type(request)
24-Dec-2019 08:16:54         start_env = _check_if_should_start_new_env(env_description_abs_path,
24-Dec-2019 08:16:54                                                    previous_env)
24-Dec-2019 08:16:54    
24-Dec-2019 08:16:54         if test_type in ['gui']:
24-Dec-2019 08:16:54             # For now gui tests do not use onenv patch
24-Dec-2019 08:16:54             if start_env:
24-Dec-2019 08:16:54                 previous_env['started'] = start_environment(
24-Dec-2019 08:16:54                     env_description_abs_path, request, hosts, '', users,
24-Dec-2019 08:16:54                     env_description_abs_path
24-Dec-2019 08:16:54                 )
24-Dec-2019 08:16:54             return ''
24-Dec-2019 08:16:54    
24-Dec-2019 08:16:54         elif test_type == 'mixed':
24-Dec-2019 08:16:54             with open(env_description_abs_path, 'r') as env_desc_file:
24-Dec-2019 08:16:54                 env_desc = yaml.load(env_desc_file)
24-Dec-2019 08:16:54             scenario = env_desc.get('scenario')
24-Dec-2019 08:16:54             scenarios_dir_path = SCENARIO_DIRS.get(get_test_type(request))
24-Dec-2019 08:16:54             scenario_path = os.path.abspath(os.path.join(scenarios_dir_path,
24-Dec-2019 08:16:54                                                          scenario))
24-Dec-2019 08:16:54    
24-Dec-2019 08:16:54             if start_env:
24-Dec-2019 08:16:54                 previous_env['started'] = start_environment(
24-Dec-2019 08:16:54                     scenario_path, request, hosts, '', users,
24-Dec-2019 08:16:54                     env_description_abs_path
24-Dec-2019 08:16:54                 )
24-Dec-2019 08:16:54             return env_desc
24-Dec-2019 08:16:54    
24-Dec-2019 08:16:54         elif test_type in ['oneclient', 'onedata_fs', 'performance']:
24-Dec-2019 08:16:54             with open(env_description_abs_path, 'r') as env_desc_file:
24-Dec-2019 08:16:54                 env_desc = yaml.load(env_desc_file)
24-Dec-2019 08:16:54    
24-Dec-2019 08:16:54             scenario = env_desc.get('scenario')
24-Dec-2019 08:16:54             scenarios_dir_path = SCENARIO_DIRS.get(get_test_type(request))
24-Dec-2019 08:16:54             scenario_path = os.path.abspath(os.path.join(scenarios_dir_path,
24-Dec-2019 08:16:54                                                          scenario))
24-Dec-2019 08:16:54    
24-Dec-2019 08:16:54             patch = env_desc.get('patch')
24-Dec-2019 08:16:54             patch_dir_path = PATCHES_DIR.get(get_test_type(request))
24-Dec-2019 08:16:54             patch_path = os.path.join(patch_dir_path, patch)
24-Dec-2019 08:16:54             if start_env:
24-Dec-2019 08:16:54                 previous_env['started'] = start_environment(
24-Dec-2019 08:16:54                     scenario_path, request, hosts, patch_path, users,
24-Dec-2019 08:16:54 >                   env_description_abs_path
24-Dec-2019 08:16:54                 )
24-Dec-2019 08:16:54
24-Dec-2019 08:16:54 tests/conftest.py:356:
24-Dec-2019 08:16:54 _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
24-Dec-2019 08:16:54 tests/conftest.py:455: in start_environment
24-Dec-2019 08:16:54     pods_cfg = check_deployment()
24-Dec-2019 08:16:54 tests/conftest.py:484: in check_deployment
24-Dec-2019 08:16:54     status_output = yaml.load(status_output.decode('utf-8'))
24-Dec-2019 08:16:54 /usr/local/lib/python2.7/dist-packages/yaml/__init__.py:71: in load
24-Dec-2019 08:16:54     return loader.get_single_data()
24-Dec-2019 08:16:54 /usr/local/lib/python2.7/dist-packages/yaml/constructor.py:37: in get_single_data
24-Dec-2019 08:16:54     node = self.get_single_node()
24-Dec-2019 08:16:54 /usr/local/lib/python2.7/dist-packages/yaml/composer.py:36: in get_single_node
24-Dec-2019 08:16:54     document = self.compose_document()
24-Dec-2019 08:16:54 /usr/local/lib/python2.7/dist-packages/yaml/composer.py:55: in compose_document
24-Dec-2019 08:16:54     node = self.compose_node(None, None)
24-Dec-2019 08:16:54 /usr/local/lib/python2.7/dist-packages/yaml/composer.py:84: in compose_node
24-Dec-2019 08:16:54     node = self.compose_mapping_node(anchor)
24-Dec-2019 08:16:54 /usr/local/lib/python2.7/dist-packages/yaml/composer.py:127: in compose_mapping_node
24-Dec-2019 08:16:54     while not self.check_event(MappingEndEvent):
24-Dec-2019 08:16:54 /usr/local/lib/python2.7/dist-packages/yaml/parser.py:98: in check_event
24-Dec-2019 08:16:54     self.current_event = self.state()
24-Dec-2019 08:16:54 /usr/local/lib/python2.7/dist-packages/yaml/parser.py:428: in parse_block_mapping_key
24-Dec-2019 08:16:54     if self.check_token(KeyToken):
24-Dec-2019 08:16:54 /usr/local/lib/python2.7/dist-packages/yaml/scanner.py:116: in check_token
24-Dec-2019 08:16:54     self.fetch_more_tokens()
24-Dec-2019 08:16:54 /usr/local/lib/python2.7/dist-packages/yaml/scanner.py:220: in fetch_more_tokens
24-Dec-2019 08:16:54     return self.fetch_value()
24-Dec-2019 08:16:54 _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
24-Dec-2019 08:16:54
24-Dec-2019 08:16:54 self = <yaml.loader.Loader object at 0x7f6d5ed6f490>
24-Dec-2019 08:16:54
24-Dec-2019 08:16:54     def fetch_value(self):
24-Dec-2019 08:16:54    
24-Dec-2019 08:16:54         # Do we determine a simple key?
24-Dec-2019 08:16:54         if self.flow_level in self.possible_simple_keys:
24-Dec-2019 08:16:54    
24-Dec-2019 08:16:54             # Add KEY.
24-Dec-2019 08:16:54             key = self.possible_simple_keys[self.flow_level]
24-Dec-2019 08:16:54             del self.possible_simple_keys[self.flow_level]
24-Dec-2019 08:16:54             self.tokens.insert(key.token_number-self.tokens_taken,
24-Dec-2019 08:16:54                     KeyToken(key.mark, key.mark))
24-Dec-2019 08:16:54    
24-Dec-2019 08:16:54             # If this key starts a new block mapping, we need to add
24-Dec-2019 08:16:54             # BLOCK-MAPPING-START.
24-Dec-2019 08:16:54             if not self.flow_level:
24-Dec-2019 08:16:54                 if self.add_indent(key.column):
24-Dec-2019 08:16:54                     self.tokens.insert(key.token_number-self.tokens_taken,
24-Dec-2019 08:16:54                             BlockMappingStartToken(key.mark, key.mark))
24-Dec-2019 08:16:54    
24-Dec-2019 08:16:54             # There cannot be two simple keys one after another.
24-Dec-2019 08:16:54             self.allow_simple_key = False
24-Dec-2019 08:16:54    
24-Dec-2019 08:16:54         # It must be a part of a complex key.
24-Dec-2019 08:16:54         else:
24-Dec-2019 08:16:54    
24-Dec-2019 08:16:54             # Block context needs additional checks.
24-Dec-2019 08:16:54             # (Do we really need them? They will be catched by the parser
24-Dec-2019 08:16:54             # anyway.)
24-Dec-2019 08:16:54             if not self.flow_level:
24-Dec-2019 08:16:54    
24-Dec-2019 08:16:54                 # We are allowed to start a complex value if and only if
24-Dec-2019 08:16:54                 # we can start a simple key.
24-Dec-2019 08:16:54                 if not self.allow_simple_key:
24-Dec-2019 08:16:54                     raise ScannerError(None, None,
24-Dec-2019 08:16:54                             "mapping values are not allowed here",
24-Dec-2019 08:16:54 >                           self.get_mark())
24-Dec-2019 08:16:54 E                   ScannerError: mapping values are not allowed here
24-Dec-2019 08:16:54 E                     in "<unicode string>", line 1, column 90:
24-Dec-2019 08:16:54 E                        ... py:91: RequestsDependencyWarning: urllib3 (1.25.7) or chardet (3 ...
24-Dec-2019 08:16:54 E                                                            ^
24-Dec-2019 08:16:54
24-Dec-2019 08:16:54 /usr/local/lib/python2.7/dist-packages/yaml/scanner.py:576: ScannerError
24-Dec-2019 08:16:54 _ ERROR at setup of test_delete_opened_file_without_permission[multiprovider_proxyio] _
24-Dec-2019 08:16:54
24-Dec-2019 08:16:54 env_description_abs_path = '/mnt/storage/bamboo-agent-home/xml-data/build-dir/TEST-OCAST-MRFCP/onedata/tests/oneclient/environments/multiprovider_proxyio.yaml'
24-Dec-2019 08:16:54 hosts = {}
24-Dec-2019 08:16:54 request = <SubRequest 'env_desc' for <Function 'test_create[multiprovider_proxyio]'>>
24-Dec-2019 08:16:54 users = {}
24-Dec-2019 08:16:54 previous_env = {'env_path': '/mnt/storage/bamboo-agent-home/xml-data/build-dir/TEST-OCAST-MRFCP/onedata/tests/oneclient/environments/multiprovider_proxyio.yaml'}
24-Dec-2019 08:16:54
24-Dec-2019 08:16:54     @pytest.fixture(scope='module', autouse=True)
24-Dec-2019 08:16:54     def env_desc(env_description_abs_path, hosts, request, users,
24-Dec-2019 08:16:54                  previous_env):
24-Dec-2019 08:16:54         """
24-Dec-2019 08:16:54         Sets up environment and returns environment description.
24-Dec-2019 08:16:54         """
24-Dec-2019 08:16:54         test_type = get_test_type(request)
24-Dec-2019 08:16:54         start_env = _check_if_should_start_new_env(env_description_abs_path,
24-Dec-2019 08:16:54                                                    previous_env)
24-Dec-2019 08:16:54    
24-Dec-2019 08:16:54         if test_type in ['gui']:
24-Dec-2019 08:16:54             # For now gui tests do not use onenv patch
24-Dec-2019 08:16:54             if start_env:
24-Dec-2019 08:16:54                 previous_env['started'] = start_environment(
24-Dec-2019 08:16:54                     env_description_abs_path, request, hosts, '', users,
24-Dec-2019 08:16:54                     env_description_abs_path
24-Dec-2019 08:16:54                 )
24-Dec-2019 08:16:54             return ''
24-Dec-2019 08:16:54    
24-Dec-2019 08:16:54         elif test_type == 'mixed':
24-Dec-2019 08:16:54             with open(env_description_abs_path, 'r') as env_desc_file:
24-Dec-2019 08:16:54                 env_desc = yaml.load(env_desc_file)
24-Dec-2019 08:16:54             scenario = env_desc.get('scenario')
24-Dec-2019 08:16:54             scenarios_dir_path = SCENARIO_DIRS.get(get_test_type(request))
24-Dec-2019 08:16:54             scenario_path = os.path.abspath(os.path.join(scenarios_dir_path,
24-Dec-2019 08:16:54                                                          scenario))
24-Dec-2019 08:16:54    
24-Dec-2019 08:16:54             if start_env:
24-Dec-2019 08:16:54                 previous_env['started'] = start_environment(
24-Dec-2019 08:16:54                     scenario_path, request, hosts, '', users,
24-Dec-2019 08:16:54                     env_description_abs_path
24-Dec-2019 08:16:54                 )
24-Dec-2019 08:16:54             return env_desc
24-Dec-2019 08:16:54    
24-Dec-2019 08:16:54         elif test_type in ['oneclient', 'onedata_fs', 'performance']:
24-Dec-2019 08:16:54             with open(env_description_abs_path, 'r') as env_desc_file:
24-Dec-2019 08:16:54                 env_desc = yaml.load(env_desc_file)
24-Dec-2019 08:16:54    
24-Dec-2019 08:16:54             scenario = env_desc.get('scenario')
24-Dec-2019 08:16:54             scenarios_dir_path = SCENARIO_DIRS.get(get_test_type(request))
24-Dec-2019 08:16:54             scenario_path = os.path.abspath(os.path.join(scenarios_dir_path,
24-Dec-2019 08:16:54                                                          scenario))
24-Dec-2019 08:16:54    
24-Dec-2019 08:16:54             patch = env_desc.get('patch')
24-Dec-2019 08:16:54             patch_dir_path = PATCHES_DIR.get(get_test_type(request))
24-Dec-2019 08:16:54             patch_path = os.path.join(patch_dir_path, patch)
24-Dec-2019 08:16:54             if start_env:
24-Dec-2019 08:16:54                 previous_env['started'] = start_environment(
24-Dec-2019 08:16:54                     scenario_path, request, hosts, patch_path, users,
24-Dec-2019 08:16:54 >                   env_description_abs_path
24-Dec-2019 08:16:54                 )
24-Dec-2019 08:16:54
24-Dec-2019 08:16:54 tests/conftest.py:356:
24-Dec-2019 08:16:54 _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
24-Dec-2019 08:16:54 tests/conftest.py:455: in start_environment
24-Dec-2019 08:16:54     pods_cfg = check_deployment()
24-Dec-2019 08:16:54 tests/conftest.py:484: in check_deployment
24-Dec-2019 08:16:54     status_output = yaml.load(status_output.decode('utf-8'))
24-Dec-2019 08:16:54 /usr/local/lib/python2.7/dist-packages/yaml/__init__.py:71: in load
24-Dec-2019 08:16:54     return loader.get_single_data()
24-Dec-2019 08:16:54 /usr/local/lib/python2.7/dist-packages/yaml/constructor.py:37: in get_single_data
24-Dec-2019 08:16:54     node = self.get_single_node()
24-Dec-2019 08:16:54 /usr/local/lib/python2.7/dist-packages/yaml/composer.py:36: in get_single_node
24-Dec-2019 08:16:54     document = self.compose_document()
24-Dec-2019 08:16:54 /usr/local/lib/python2.7/dist-packages/yaml/composer.py:55: in compose_document
24-Dec-2019 08:16:54     node = self.compose_node(None, None)
24-Dec-2019 08:16:54 /usr/local/lib/python2.7/dist-packages/yaml/composer.py:84: in compose_node
24-Dec-2019 08:16:54     node = self.compose_mapping_node(anchor)
24-Dec-2019 08:16:54 /usr/local/lib/python2.7/dist-packages/yaml/composer.py:127: in compose_mapping_node
24-Dec-2019 08:16:54     while not self.check_event(MappingEndEvent):
24-Dec-2019 08:16:54 /usr/local/lib/python2.7/dist-packages/yaml/parser.py:98: in check_event
24-Dec-2019 08:16:54     self.current_event = self.state()
24-Dec-2019 08:16:54 /usr/local/lib/python2.7/dist-packages/yaml/parser.py:428: in parse_block_mapping_key
24-Dec-2019 08:16:54     if self.check_token(KeyToken):
24-Dec-2019 08:16:54 /usr/local/lib/python2.7/dist-packages/yaml/scanner.py:116: in check_token
24-Dec-2019 08:16:54     self.fetch_more_tokens()
24-Dec-2019 08:16:54 /usr/local/lib/python2.7/dist-packages/yaml/scanner.py:220: in fetch_more_tokens
24-Dec-2019 08:16:54     return self.fetch_value()
24-Dec-2019 08:16:54 _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
24-Dec-2019 08:16:54
24-Dec-2019 08:16:54 self = <yaml.loader.Loader object at 0x7f6d5ed6f490>
24-Dec-2019 08:16:54
24-Dec-2019 08:16:54     def fetch_value(self):
24-Dec-2019 08:16:54    
24-Dec-2019 08:16:54         # Do we determine a simple key?
24-Dec-2019 08:16:54         if self.flow_level in self.possible_simple_keys:
24-Dec-2019 08:16:54    
24-Dec-2019 08:16:54             # Add KEY.
24-Dec-2019 08:16:54             key = self.possible_simple_keys[self.flow_level]
24-Dec-2019 08:16:54             del self.possible_simple_keys[self.flow_level]
24-Dec-2019 08:16:54             self.tokens.insert(key.token_number-self.tokens_taken,
24-Dec-2019 08:16:54                     KeyToken(key.mark, key.mark))
24-Dec-2019 08:16:54    
24-Dec-2019 08:16:54             # If this key starts a new block mapping, we need to add
24-Dec-2019 08:16:54             # BLOCK-MAPPING-START.
24-Dec-2019 08:16:54             if not self.flow_level:
24-Dec-2019 08:16:54                 if self.add_indent(key.column):
24-Dec-2019 08:16:54                     self.tokens.insert(key.token_number-self.tokens_taken,
24-Dec-2019 08:16:54                             BlockMappingStartToken(key.mark, key.mark))
24-Dec-2019 08:16:54    
24-Dec-2019 08:16:54             # There cannot be two simple keys one after another.
24-Dec-2019 08:16:54             self.allow_simple_key = False
24-Dec-2019 08:16:54    
24-Dec-2019 08:16:54         # It must be a part of a complex key.
24-Dec-2019 08:16:54         else:
24-Dec-2019 08:16:54    
24-Dec-2019 08:16:54             # Block context needs additional checks.
24-Dec-2019 08:16:54             # (Do we really need them? They will be catched by the parser
24-Dec-2019 08:16:54             # anyway.)
24-Dec-2019 08:16:54             if not self.flow_level:
24-Dec-2019 08:16:54    
24-Dec-2019 08:16:54                 # We are allowed to start a complex value if and only if
24-Dec-2019 08:16:54                 # we can start a simple key.
24-Dec-2019 08:16:54                 if not self.allow_simple_key:
24-Dec-2019 08:16:54                     raise ScannerError(None, None,
24-Dec-2019 08:16:54                             "mapping values are not allowed here",
24-Dec-2019 08:16:54 >                           self.get_mark())
24-Dec-2019 08:16:54 E                   ScannerError: mapping values are not allowed here
24-Dec-2019 08:16:54 E                     in "<unicode string>", line 1, column 90:
24-Dec-2019 08:16:54 E                        ... py:91: RequestsDependencyWarning: urllib3 (1.25.7) or chardet (3 ...
24-Dec-2019 08:16:54 E                                                            ^
24-Dec-2019 08:16:54
24-Dec-2019 08:16:54 /usr/local/lib/python2.7/dist-packages/yaml/scanner.py:576: ScannerError
24-Dec-2019 08:16:54 ____ ERROR at setup of test_delete_right_after_close[multiprovider_proxyio] ____
24-Dec-2019 08:16:54
24-Dec-2019 08:16:54 env_description_abs_path = '/mnt/storage/bamboo-agent-home/xml-data/build-dir/TEST-OCAST-MRFCP/onedata/tests/oneclient/environments/multiprovider_proxyio.yaml'
24-Dec-2019 08:16:54 hosts = {}
24-Dec-2019 08:16:54 request = <SubRequest 'env_desc' for <Function 'test_create[multiprovider_proxyio]'>>
24-Dec-2019 08:16:54 users = {}
24-Dec-2019 08:16:54 previous_env = {'env_path': '/mnt/storage/bamboo-agent-home/xml-data/build-dir/TEST-OCAST-MRFCP/onedata/tests/oneclient/environments/multiprovider_proxyio.yaml'}
24-Dec-2019 08:16:54
24-Dec-2019 08:16:54     @pytest.fixture(scope='module', autouse=True)
24-Dec-2019 08:16:54     def env_desc(env_description_abs_path, hosts, request, users,
24-Dec-2019 08:16:54                  previous_env):
24-Dec-2019 08:16:54         """
24-Dec-2019 08:16:54         Sets up environment and returns environment description.
24-Dec-2019 08:16:54         """
24-Dec-2019 08:16:54         test_type = get_test_type(request)
24-Dec-2019 08:16:54         start_env = _check_if_should_start_new_env(env_description_abs_path,
24-Dec-2019 08:16:54                                                    previous_env)
24-Dec-2019 08:16:54    
24-Dec-2019 08:16:54         if test_type in ['gui']:
24-Dec-2019 08:16:54             # For now gui tests do not use onenv patch
24-Dec-2019 08:16:54             if start_env:
24-Dec-2019 08:16:54                 previous_env['started'] = start_environment(
24-Dec-2019 08:16:54                     env_description_abs_path, request, hosts, '', users,
24-Dec-2019 08:16:54                     env_description_abs_path
24-Dec-2019 08:16:54                 )
24-Dec-2019 08:16:54             return ''
24-Dec-2019 08:16:54    
24-Dec-2019 08:16:54         elif test_type == 'mixed':
24-Dec-2019 08:16:54             with open(env_description_abs_path, 'r') as env_desc_file:
24-Dec-2019 08:16:54                 env_desc = yaml.load(env_desc_file)
24-Dec-2019 08:16:54             scenario = env_desc.get('scenario')
24-Dec-2019 08:16:54             scenarios_dir_path = SCENARIO_DIRS.get(get_test_type(request))
24-Dec-2019 08:16:54             scenario_path = os.path.abspath(os.path.join(scenarios_dir_path,
24-Dec-2019 08:16:54                                                          scenario))
24-Dec-2019 08:16:54    
24-Dec-2019 08:16:54             if start_env:
24-Dec-2019 08:16:54                 previous_env['started'] = start_environment(
24-Dec-2019 08:16:54                     scenario_path, request, hosts, '', users,
24-Dec-2019 08:16:54                     env_description_abs_path
24-Dec-2019 08:16:54                 )
24-Dec-2019 08:16:54             return env_desc
24-Dec-2019 08:16:54    
24-Dec-2019 08:16:54         elif test_type in ['oneclient', 'onedata_fs', 'performance']:
24-Dec-2019 08:16:54             with open(env_description_abs_path, 'r') as env_desc_file:
24-Dec-2019 08:16:54                 env_desc = yaml.load(env_desc_file)
24-Dec-2019 08:16:54    
24-Dec-2019 08:16:54             scenario = env_desc.get('scenario')
24-Dec-2019 08:16:54             scenarios_dir_path = SCENARIO_DIRS.get(get_test_type(request))
24-Dec-2019 08:16:54             scenario_path = os.path.abspath(os.path.join(scenarios_dir_path,
24-Dec-2019 08:16:54                                                          scenario))
24-Dec-2019 08:16:54    
24-Dec-2019 08:16:54             patch = env_desc.get('patch')
24-Dec-2019 08:16:54             patch_dir_path = PATCHES_DIR.get(get_test_type(request))
24-Dec-2019 08:16:54             patch_path = os.path.join(patch_dir_path, patch)
24-Dec-2019 08:16:54             if start_env:
24-Dec-2019 08:16:54                 previous_env['started'] = start_environment(
24-Dec-2019 08:16:54                     scenario_path, request, hosts, patch_path, users,
24-Dec-2019 08:16:54 >                   env_description_abs_path
24-Dec-2019 08:16:54                 )
24-Dec-2019 08:16:54
24-Dec-2019 08:16:54 tests/conftest.py:356:
24-Dec-2019 08:16:54 _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
24-Dec-2019 08:16:54 tests/conftest.py:455: in start_environment
24-Dec-2019 08:16:54     pods_cfg = check_deployment()
24-Dec-2019 08:16:54 tests/conftest.py:484: in check_deployment
24-Dec-2019 08:16:54     status_output = yaml.load(status_output.decode('utf-8'))
24-Dec-2019 08:16:54 /usr/local/lib/python2.7/dist-packages/yaml/__init__.py:71: in load
24-Dec-2019 08:16:54     return loader.get_single_data()
24-Dec-2019 08:16:54 /usr/local/lib/python2.7/dist-packages/yaml/constructor.py:37: in get_single_data
24-Dec-2019 08:16:54     node = self.get_single_node()
24-Dec-2019 08:16:54 /usr/local/lib/python2.7/dist-packages/yaml/composer.py:36: in get_single_node
24-Dec-2019 08:16:54     document = self.compose_document()
24-Dec-2019 08:16:54 /usr/local/lib/python2.7/dist-packages/yaml/composer.py:55: in compose_document
24-Dec-2019 08:16:54     node = self.compose_node(None, None)
24-Dec-2019 08:16:54 /usr/local/lib/python2.7/dist-packages/yaml/composer.py:84: in compose_node
24-Dec-2019 08:16:54     node = self.compose_mapping_node(anchor)
24-Dec-2019 08:16:54 /usr/local/lib/python2.7/dist-packages/yaml/composer.py:127: in compose_mapping_node
24-Dec-2019 08:16:54     while not self.check_event(MappingEndEvent):
24-Dec-2019 08:16:54 /usr/local/lib/python2.7/dist-packages/yaml/parser.py:98: in check_event
24-Dec-2019 08:16:54     self.current_event = self.state()
24-Dec-2019 08:16:54 /usr/local/lib/python2.7/dist-packages/yaml/parser.py:428: in parse_block_mapping_key
24-Dec-2019 08:16:54     if self.check_token(KeyToken):
24-Dec-2019 08:16:54 /usr/local/lib/python2.7/dist-packages/yaml/scanner.py:116: in check_token
24-Dec-2019 08:16:54     self.fetch_more_tokens()
24-Dec-2019 08:16:54 /usr/local/lib/python2.7/dist-packages/yaml/scanner.py:220: in fetch_more_tokens
24-Dec-2019 08:16:54     return self.fetch_value()
24-Dec-2019 08:16:54 _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
24-Dec-2019 08:16:54
24-Dec-2019 08:16:54 self = <yaml.loader.Loader object at 0x7f6d5ed6f490>
24-Dec-2019 08:16:54
24-Dec-2019 08:16:54     def fetch_value(self):
24-Dec-2019 08:16:54    
24-Dec-2019 08:16:54         # Do we determine a simple key?
24-Dec-2019 08:16:54         if self.flow_level in self.possible_simple_keys:
24-Dec-2019 08:16:54    
24-Dec-2019 08:16:54             # Add KEY.
24-Dec-2019 08:16:54             key = self.possible_simple_keys[self.flow_level]
24-Dec-2019 08:16:54             del self.possible_simple_keys[self.flow_level]
24-Dec-2019 08:16:54             self.tokens.insert(key.token_number-self.tokens_taken,
24-Dec-2019 08:16:54                     KeyToken(key.mark, key.mark))
24-Dec-2019 08:16:54    
24-Dec-2019 08:16:54             # If this key starts a new block mapping, we need to add
24-Dec-2019 08:16:54             # BLOCK-MAPPING-START.
24-Dec-2019 08:16:54             if not self.flow_level:
24-Dec-2019 08:16:54                 if self.add_indent(key.column):
24-Dec-2019 08:16:54                     self.tokens.insert(key.token_number-self.tokens_taken,
24-Dec-2019 08:16:54                             BlockMappingStartToken(key.mark, key.mark))
24-Dec-2019 08:16:54    
24-Dec-2019 08:16:54             # There cannot be two simple keys one after another.
24-Dec-2019 08:16:54             self.allow_simple_key = False
24-Dec-2019 08:16:54    
24-Dec-2019 08:16:54         # It must be a part of a complex key.
24-Dec-2019 08:16:54         else:
24-Dec-2019 08:16:54    
24-Dec-2019 08:16:54             # Block context needs additional checks.
24-Dec-2019 08:16:54             # (Do we really need them? They will be catched by the parser
24-Dec-2019 08:16:54             # anyway.)
24-Dec-2019 08:16:54             if not self.flow_level:
24-Dec-2019 08:16:54    
24-Dec-2019 08:16:54                 # We are allowed to start a complex value if and only if
24-Dec-2019 08:16:54                 # we can start a simple key.
24-Dec-2019 08:16:54                 if not self.allow_simple_key:
24-Dec-2019 08:16:54                     raise ScannerError(None, None,
24-Dec-2019 08:16:54                             "mapping values are not allowed here",
24-Dec-2019 08:16:54 >                           self.get_mark())
24-Dec-2019 08:16:54 E                   ScannerError: mapping values are not allowed here
24-Dec-2019 08:16:54 E                     in "<unicode string>", line 1, column 90:
24-Dec-2019 08:16:54 E                        ... py:91: RequestsDependencyWarning: urllib3 (1.25.7) or chardet (3 ...
24-Dec-2019 08:16:54 E                                                            ^
24-Dec-2019 08:16:54
24-Dec-2019 08:16:54 /usr/local/lib/python2.7/dist-packages/yaml/scanner.py:576: ScannerError
24-Dec-2019 08:16:54 __________ ERROR at setup of test_create_many[multiprovider_proxyio] ___________
24-Dec-2019 08:16:54
24-Dec-2019 08:16:54 env_description_abs_path = '/mnt/storage/bamboo-agent-home/xml-data/build-dir/TEST-OCAST-MRFCP/onedata/tests/oneclient/environments/multiprovider_proxyio.yaml'
24-Dec-2019 08:16:54 hosts = {}
24-Dec-2019 08:16:54 request = <SubRequest 'env_desc' for <Function 'test_create[multiprovider_proxyio]'>>
24-Dec-2019 08:16:54 users = {}
24-Dec-2019 08:16:54 previous_env = {'env_path': '/mnt/storage/bamboo-agent-home/xml-data/build-dir/TEST-OCAST-MRFCP/onedata/tests/oneclient/environments/multiprovider_proxyio.yaml'}
24-Dec-2019 08:16:54
24-Dec-2019 08:16:54     @pytest.fixture(scope='module', autouse=True)
24-Dec-2019 08:16:54     def env_desc(env_description_abs_path, hosts, request, users,
24-Dec-2019 08:16:54                  previous_env):
24-Dec-2019 08:16:54         """
24-Dec-2019 08:16:54         Sets up environment and returns environment description.
24-Dec-2019 08:16:54         """
24-Dec-2019 08:16:54         test_type = get_test_type(request)
24-Dec-2019 08:16:54         start_env = _check_if_should_start_new_env(env_description_abs_path,
24-Dec-2019 08:16:54                                                    previous_env)
24-Dec-2019 08:16:54    
24-Dec-2019 08:16:54         if test_type in ['gui']:
24-Dec-2019 08:16:54             # For now gui tests do not use onenv patch
24-Dec-2019 08:16:54             if start_env:
24-Dec-2019 08:16:54                 previous_env['started'] = start_environment(
24-Dec-2019 08:16:54                     env_description_abs_path, request, hosts, '', users,
24-Dec-2019 08:16:54                     env_description_abs_path
24-Dec-2019 08:16:54                 )
24-Dec-2019 08:16:54             return ''
24-Dec-2019 08:16:54    
24-Dec-2019 08:16:54         elif test_type == 'mixed':
24-Dec-2019 08:16:54             with open(env_description_abs_path, 'r') as env_desc_file:
24-Dec-2019 08:16:54                 env_desc = yaml.load(env_desc_file)
24-Dec-2019 08:16:54             scenario = env_desc.get('scenario')
24-Dec-2019 08:16:54             scenarios_dir_path = SCENARIO_DIRS.get(get_test_type(request))
24-Dec-2019 08:16:54             scenario_path = os.path.abspath(os.path.join(scenarios_dir_path,
24-Dec-2019 08:16:54                                                          scenario))
24-Dec-2019 08:16:54    
24-Dec-2019 08:16:54             if start_env:
24-Dec-2019 08:16:54                 previous_env['started'] = start_environment(
24-Dec-2019 08:16:54                     scenario_path, request, hosts, '', users,
24-Dec-2019 08:16:54                     env_description_abs_path
24-Dec-2019 08:16:54                 )
24-Dec-2019 08:16:54             return env_desc
24-Dec-2019 08:16:54    
24-Dec-2019 08:16:54         elif test_type in ['oneclient', 'onedata_fs', 'performance']:
24-Dec-2019 08:16:54             with open(env_description_abs_path, 'r') as env_desc_file:
24-Dec-2019 08:16:54                 env_desc = yaml.load(env_desc_file)
24-Dec-2019 08:16:54    
24-Dec-2019 08:16:54             scenario = env_desc.get('scenario')
24-Dec-2019 08:16:54             scenarios_dir_path = SCENARIO_DIRS.get(get_test_type(request))
24-Dec-2019 08:16:54             scenario_path = os.path.abspath(os.path.join(scenarios_dir_path,
24-Dec-2019 08:16:54                                                          scenario))
24-Dec-2019 08:16:54    
24-Dec-2019 08:16:54             patch = env_desc.get('patch')
24-Dec-2019 08:16:54             patch_dir_path = PATCHES_DIR.get(get_test_type(request))
24-Dec-2019 08:16:54             patch_path = os.path.join(patch_dir_path, patch)
24-Dec-2019 08:16:54             if start_env:
24-Dec-2019 08:16:54                 previous_env['started'] = start_environment(
24-Dec-2019 08:16:54                     scenario_path, request, hosts, patch_path, users,
24-Dec-2019 08:16:54 >                   env_description_abs_path
24-Dec-2019 08:16:54                 )
24-Dec-2019 08:16:54
24-Dec-2019 08:16:54 tests/conftest.py:356:
24-Dec-2019 08:16:54 _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
24-Dec-2019 08:16:54 tests/conftest.py:455: in start_environment
24-Dec-2019 08:16:54     pods_cfg = check_deployment()
24-Dec-2019 08:16:54 tests/conftest.py:484: in check_deployment
24-Dec-2019 08:16:54     status_output = yaml.load(status_output.decode('utf-8'))
24-Dec-2019 08:16:54 /usr/local/lib/python2.7/dist-packages/yaml/__init__.py:71: in load
24-Dec-2019 08:16:54     return loader.get_single_data()
24-Dec-2019 08:16:54 /usr/local/lib/python2.7/dist-packages/yaml/constructor.py:37: in get_single_data
24-Dec-2019 08:16:54     node = self.get_single_node()
24-Dec-2019 08:16:54 /usr/local/lib/python2.7/dist-packages/yaml/composer.py:36: in get_single_node
24-Dec-2019 08:16:54     document = self.compose_document()
24-Dec-2019 08:16:54 /usr/local/lib/python2.7/dist-packages/yaml/composer.py:55: in compose_document
24-Dec-2019 08:16:54     node = self.compose_node(None, None)
24-Dec-2019 08:16:54 /usr/local/lib/python2.7/dist-packages/yaml/composer.py:84: in compose_node
24-Dec-2019 08:16:54     node = self.compose_mapping_node(anchor)
24-Dec-2019 08:16:54 /usr/local/lib/python2.7/dist-packages/yaml/composer.py:127: in compose_mapping_node
24-Dec-2019 08:16:54     while not self.check_event(MappingEndEvent):
24-Dec-2019 08:16:54 /usr/local/lib/python2.7/dist-packages/yaml/parser.py:98: in check_event
24-Dec-2019 08:16:54     self.current_event = self.state()
24-Dec-2019 08:16:54 /usr/local/lib/python2.7/dist-packages/yaml/parser.py:428: in parse_block_mapping_key
24-Dec-2019 08:16:54     if self.check_token(KeyToken):
24-Dec-2019 08:16:54 /usr/local/lib/python2.7/dist-packages/yaml/scanner.py:116: in check_token
24-Dec-2019 08:16:54     self.fetch_more_tokens()
24-Dec-2019 08:16:54 /usr/local/lib/python2.7/dist-packages/yaml/scanner.py:220: in fetch_more_tokens
24-Dec-2019 08:16:54     return self.fetch_value()
24-Dec-2019 08:16:54 _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
24-Dec-2019 08:16:54
24-Dec-2019 08:16:54 self = <yaml.loader.Loader object at 0x7f6d5ed6f490>
24-Dec-2019 08:16:54
24-Dec-2019 08:16:54     def fetch_value(self):
24-Dec-2019 08:16:54    
24-Dec-2019 08:16:54         # Do we determine a simple key?
24-Dec-2019 08:16:54         if self.flow_level in self.possible_simple_keys:
24-Dec-2019 08:16:54    
24-Dec-2019 08:16:54             # Add KEY.
24-Dec-2019 08:16:54             key = self.possible_simple_keys[self.flow_level]
24-Dec-2019 08:16:54             del self.possible_simple_keys[self.flow_level]
24-Dec-2019 08:16:54             self.tokens.insert(key.token_number-self.tokens_taken,
24-Dec-2019 08:16:54                     KeyToken(key.mark, key.mark))
24-Dec-2019 08:16:54    
24-Dec-2019 08:16:54             # If this key starts a new block mapping, we need to add
24-Dec-2019 08:16:54             # BLOCK-MAPPING-START.
24-Dec-2019 08:16:54             if not self.flow_level:
24-Dec-2019 08:16:54                 if self.add_indent(key.column):
24-Dec-2019 08:16:54                     self.tokens.insert(key.token_number-self.tokens_taken,
24-Dec-2019 08:16:54                             BlockMappingStartToken(key.mark, key.mark))
24-Dec-2019 08:16:54    
24-Dec-2019 08:16:54             # There cannot be two simple keys one after another.
24-Dec-2019 08:16:54             self.allow_simple_key = False
24-Dec-2019 08:16:54    
24-Dec-2019 08:16:54         # It must be a part of a complex key.
24-Dec-2019 08:16:54         else:
24-Dec-2019 08:16:54    
24-Dec-2019 08:16:54             # Block context needs additional checks.
24-Dec-2019 08:16:54             # (Do we really need them? They will be catched by the parser
24-Dec-2019 08:16:54             # anyway.)
24-Dec-2019 08:16:54             if not self.flow_level:
24-Dec-2019 08:16:54    
24-Dec-2019 08:16:54                 # We are allowed to start a complex value if and only if
24-Dec-2019 08:16:54                 # we can start a simple key.
24-Dec-2019 08:16:54                 if not self.allow_simple_key:
24-Dec-2019 08:16:54                     raise ScannerError(None, None,
24-Dec-2019 08:16:54                             "mapping values are not allowed here",
24-Dec-2019 08:16:54 >                           self.get_mark())
24-Dec-2019 08:16:54 E                   ScannerError: mapping values are not allowed here
24-Dec-2019 08:16:54 E                     in "<unicode string>", line 1, column 90:
24-Dec-2019 08:16:54 E                        ... py:91: RequestsDependencyWarning: urllib3 (1.25.7) or chardet (3 ...
24-Dec-2019 08:16:54 E                                                            ^
24-Dec-2019 08:16:54
24-Dec-2019 08:16:54 /usr/local/lib/python2.7/dist-packages/yaml/scanner.py:576: ScannerError
24-Dec-2019 08:16:54 __________ ERROR at setup of test_copy_delete[multiprovider_proxyio] ___________
24-Dec-2019 08:16:54
24-Dec-2019 08:16:54 env_description_abs_path = '/mnt/storage/bamboo-agent-home/xml-data/build-dir/TEST-OCAST-MRFCP/onedata/tests/oneclient/environments/multiprovider_proxyio.yaml'
24-Dec-2019 08:16:54 hosts = {}
24-Dec-2019 08:16:54 request = <SubRequest 'env_desc' for <Function 'test_create[multiprovider_proxyio]'>>
24-Dec-2019 08:16:54 users = {}
24-Dec-2019 08:16:54 previous_env = {'env_path': '/mnt/storage/bamboo-agent-home/xml-data/build-dir/TEST-OCAST-MRFCP/onedata/tests/oneclient/environments/multiprovider_proxyio.yaml'}
24-Dec-2019 08:16:54
24-Dec-2019 08:16:54     @pytest.fixture(scope='module', autouse=True)
24-Dec-2019 08:16:54     def env_desc(env_description_abs_path, hosts, request, users,
24-Dec-2019 08:16:54                  previous_env):
24-Dec-2019 08:16:54         """
24-Dec-2019 08:16:54         Sets up environment and returns environment description.
24-Dec-2019 08:16:54         """
24-Dec-2019 08:16:54         test_type = get_test_type(request)
24-Dec-2019 08:16:54         start_env = _check_if_should_start_new_env(env_description_abs_path,
24-Dec-2019 08:16:54                                                    previous_env)
24-Dec-2019 08:16:54    
24-Dec-2019 08:16:54         if test_type in ['gui']:
24-Dec-2019 08:16:54             # For now gui tests do not use onenv patch
24-Dec-2019 08:16:54             if start_env:
24-Dec-2019 08:16:54                 previous_env['started'] = start_environment(
24-Dec-2019 08:16:54                     env_description_abs_path, request, hosts, '', users,
24-Dec-2019 08:16:54                     env_description_abs_path
24-Dec-2019 08:16:54                 )
24-Dec-2019 08:16:54             return ''
24-Dec-2019 08:16:54    
24-Dec-2019 08:16:54         elif test_type == 'mixed':
24-Dec-2019 08:16:54             with open(env_description_abs_path, 'r') as env_desc_file:
24-Dec-2019 08:16:54                 env_desc = yaml.load(env_desc_file)
24-Dec-2019 08:16:54             scenario = env_desc.get('scenario')
24-Dec-2019 08:16:54             scenarios_dir_path = SCENARIO_DIRS.get(get_test_type(request))
24-Dec-2019 08:16:54             scenario_path = os.path.abspath(os.path.join(scenarios_dir_path,
24-Dec-2019 08:16:54                                                          scenario))
24-Dec-2019 08:16:54    
24-Dec-2019 08:16:54             if start_env:
24-Dec-2019 08:16:54                 previous_env['started'] = start_environment(
24-Dec-2019 08:16:54                     scenario_path, request, hosts, '', users,
24-Dec-2019 08:16:54                     env_description_abs_path
24-Dec-2019 08:16:54                 )
24-Dec-2019 08:16:54             return env_desc
24-Dec-2019 08:16:54    
24-Dec-2019 08:16:54         elif test_type in ['oneclient', 'onedata_fs', 'performance']:
24-Dec-2019 08:16:54             with open(env_description_abs_path, 'r') as env_desc_file:
24-Dec-2019 08:16:54                 env_desc = yaml.load(env_desc_file)
24-Dec-2019 08:16:54    
24-Dec-2019 08:16:54             scenario = env_desc.get('scenario')
24-Dec-2019 08:16:54             scenarios_dir_path = SCENARIO_DIRS.get(get_test_type(request))
24-Dec-2019 08:16:54             scenario_path = os.path.abspath(os.path.join(scenarios_dir_path,
24-Dec-2019 08:16:54                                                          scenario))
24-Dec-2019 08:16:54    
24-Dec-2019 08:16:54             patch = env_desc.get('patch')
24-Dec-2019 08:16:54             patch_dir_path = PATCHES_DIR.get(get_test_type(request))
24-Dec-2019 08:16:54             patch_path = os.path.join(patch_dir_path, patch)
24-Dec-2019 08:16:54             if start_env:
24-Dec-2019 08:16:54                 previous_env['started'] = start_environment(
24-Dec-2019 08:16:54                     scenario_path, request, hosts, patch_path, users,
24-Dec-2019 08:16:54 >                   env_description_abs_path
24-Dec-2019 08:16:54                 )
24-Dec-2019 08:16:54
24-Dec-2019 08:16:54 tests/conftest.py:356:
24-Dec-2019 08:16:54 _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
24-Dec-2019 08:16:54 tests/conftest.py:455: in start_environment
24-Dec-2019 08:16:54     pods_cfg = check_deployment()
24-Dec-2019 08:16:54 tests/conftest.py:484: in check_deployment
24-Dec-2019 08:16:54     status_output = yaml.load(status_output.decode('utf-8'))
24-Dec-2019 08:16:54 /usr/local/lib/python2.7/dist-packages/yaml/__init__.py:71: in load
24-Dec-2019 08:16:54     return loader.get_single_data()
24-Dec-2019 08:16:54 /usr/local/lib/python2.7/dist-packages/yaml/constructor.py:37: in get_single_data
24-Dec-2019 08:16:54     node = self.get_single_node()
24-Dec-2019 08:16:54 /usr/local/lib/python2.7/dist-packages/yaml/composer.py:36: in get_single_node
24-Dec-2019 08:16:54     document = self.compose_document()
24-Dec-2019 08:16:54 /usr/local/lib/python2.7/dist-packages/yaml/composer.py:55: in compose_document
24-Dec-2019 08:16:54     node = self.compose_node(None, None)
24-Dec-2019 08:16:54 /usr/local/lib/python2.7/dist-packages/yaml/composer.py:84: in compose_node
24-Dec-2019 08:16:54     node = self.compose_mapping_node(anchor)
24-Dec-2019 08:16:54 /usr/local/lib/python2.7/dist-packages/yaml/composer.py:127: in compose_mapping_node
24-Dec-2019 08:16:54     while not self.check_event(MappingEndEvent):
24-Dec-2019 08:16:54 /usr/local/lib/python2.7/dist-packages/yaml/parser.py:98: in check_event
24-Dec-2019 08:16:54     self.current_event = self.state()
24-Dec-2019 08:16:54 /usr/local/lib/python2.7/dist-packages/yaml/parser.py:428: in parse_block_mapping_key
24-Dec-2019 08:16:54     if self.check_token(KeyToken):
24-Dec-2019 08:16:54 /usr/local/lib/python2.7/dist-packages/yaml/scanner.py:116: in check_token
24-Dec-2019 08:16:54     self.fetch_more_tokens()
24-Dec-2019 08:16:54 /usr/local/lib/python2.7/dist-packages/yaml/scanner.py:220: in fetch_more_tokens
24-Dec-2019 08:16:54     return self.fetch_value()
24-Dec-2019 08:16:54 _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
24-Dec-2019 08:16:54
24-Dec-2019 08:16:54 self = <yaml.loader.Loader object at 0x7f6d5ed6f490>
24-Dec-2019 08:16:54
24-Dec-2019 08:16:54     def fetch_value(self):
24-Dec-2019 08:16:54    
24-Dec-2019 08:16:54         # Do we determine a simple key?
24-Dec-2019 08:16:54         if self.flow_level in self.possible_simple_keys:
24-Dec-2019 08:16:54    
24-Dec-2019 08:16:54             # Add KEY.
24-Dec-2019 08:16:54             key = self.possible_simple_keys[self.flow_level]
24-Dec-2019 08:16:54             del self.possible_simple_keys[self.flow_level]
24-Dec-2019 08:16:54             self.tokens.insert(key.token_number-self.tokens_taken,
24-Dec-2019 08:16:54                     KeyToken(key.mark, key.mark))
24-Dec-2019 08:16:54    
24-Dec-2019 08:16:54             # If this key starts a new block mapping, we need to add
24-Dec-2019 08:16:54             # BLOCK-MAPPING-START.
24-Dec-2019 08:16:54             if not self.flow_level:
24-Dec-2019 08:16:54                 if self.add_indent(key.column):
24-Dec-2019 08:16:54                     self.tokens.insert(key.token_number-self.tokens_taken,
24-Dec-2019 08:16:54                             BlockMappingStartToken(key.mark, key.mark))
24-Dec-2019 08:16:54    
24-Dec-2019 08:16:54             # There cannot be two simple keys one after another.
24-Dec-2019 08:16:54             self.allow_simple_key = False
24-Dec-2019 08:16:54    
24-Dec-2019 08:16:54         # It must be a part of a complex key.
24-Dec-2019 08:16:54         else:
24-Dec-2019 08:16:54    
24-Dec-2019 08:16:54             # Block context needs additional checks.
24-Dec-2019 08:16:54             # (Do we really need them? They will be catched by the parser
24-Dec-2019 08:16:54             # anyway.)
24-Dec-2019 08:16:54             if not self.flow_level:
24-Dec-2019 08:16:54    
24-Dec-2019 08:16:54                 # We are allowed to start a complex value if and only if
24-Dec-2019 08:16:54                 # we can start a simple key.
24-Dec-2019 08:16:54                 if not self.allow_simple_key:
24-Dec-2019 08:16:54                     raise ScannerError(None, None,
24-Dec-2019 08:16:54                             "mapping values are not allowed here",
24-Dec-2019 08:16:54 >                           self.get_mark())
24-Dec-2019 08:16:54 E                   ScannerError: mapping values are not allowed here
24-Dec-2019 08:16:54 E                     in "<unicode string>", line 1, column 90:
24-Dec-2019 08:16:54 E                        ... py:91: RequestsDependencyWarning: urllib3 (1.25.7) or chardet (3 ...
24-Dec-2019 08:16:54 E                                                            ^
24-Dec-2019 08:16:54
24-Dec-2019 08:16:54 /usr/local/lib/python2.7/dist-packages/yaml/scanner.py:576: ScannerError
24-Dec-2019 08:16:54 ______ ERROR at setup of test_move_between_spaces[multiprovider_proxyio] _______
24-Dec-2019 08:16:54
24-Dec-2019 08:16:54 env_description_abs_path = '/mnt/storage/bamboo-agent-home/xml-data/build-dir/TEST-OCAST-MRFCP/onedata/tests/oneclient/environments/multiprovider_proxyio.yaml'
24-Dec-2019 08:16:54 hosts = {}
24-Dec-2019 08:16:54 request = <SubRequest 'env_desc' for <Function 'test_create[multiprovider_proxyio]'>>
24-Dec-2019 08:16:54 users = {}
24-Dec-2019 08:16:54 previous_env = {'env_path': '/mnt/storage/bamboo-agent-home/xml-data/build-dir/TEST-OCAST-MRFCP/onedata/tests/oneclient/environments/multiprovider_proxyio.yaml'}
24-Dec-2019 08:16:54
24-Dec-2019 08:16:54     @pytest.fixture(scope='module', autouse=True)
24-Dec-2019 08:16:54     def env_desc(env_description_abs_path, hosts, request, users,
24-Dec-2019 08:16:54                  previous_env):
24-Dec-2019 08:16:54         """
24-Dec-2019 08:16:54         Sets up environment and returns environment description.
24-Dec-2019 08:16:54         """
24-Dec-2019 08:16:54         test_type = get_test_type(request)
24-Dec-2019 08:16:54         start_env = _check_if_should_start_new_env(env_description_abs_path,
24-Dec-2019 08:16:54                                                    previous_env)
24-Dec-2019 08:16:54    
24-Dec-2019 08:16:54         if test_type in ['gui']:
24-Dec-2019 08:16:54             # For now gui tests do not use onenv patch
24-Dec-2019 08:16:54             if start_env:
24-Dec-2019 08:16:54                 previous_env['started'] = start_environment(
24-Dec-2019 08:16:54                     env_description_abs_path, request, hosts, '', users,
24-Dec-2019 08:16:54                     env_description_abs_path
24-Dec-2019 08:16:54                 )
24-Dec-2019 08:16:54             return ''
24-Dec-2019 08:16:54    
24-Dec-2019 08:16:54         elif test_type == 'mixed':
24-Dec-2019 08:16:54             with open(env_description_abs_path, 'r') as env_desc_file:
24-Dec-2019 08:16:54                 env_desc = yaml.load(env_desc_file)
24-Dec-2019 08:16:54             scenario = env_desc.get('scenario')
24-Dec-2019 08:16:54             scenarios_dir_path = SCENARIO_DIRS.get(get_test_type(request))
24-Dec-2019 08:16:54             scenario_path = os.path.abspath(os.path.join(scenarios_dir_path,
24-Dec-2019 08:16:54                                                          scenario))
24-Dec-2019 08:16:54    
24-Dec-2019 08:16:54             if start_env:
24-Dec-2019 08:16:54                 previous_env['started'] = start_environment(
24-Dec-2019 08:16:54                     scenario_path, request, hosts, '', users,
24-Dec-2019 08:16:54                     env_description_abs_path
24-Dec-2019 08:16:54                 )
24-Dec-2019 08:16:54             return env_desc
24-Dec-2019 08:16:54    
24-Dec-2019 08:16:54         elif test_type in ['oneclient', 'onedata_fs', 'performance']:
24-Dec-2019 08:16:54             with open(env_description_abs_path, 'r') as env_desc_file:
24-Dec-2019 08:16:54                 env_desc = yaml.load(env_desc_file)
24-Dec-2019 08:16:54    
24-Dec-2019 08:16:54             scenario = env_desc.get('scenario')
24-Dec-2019 08:16:54             scenarios_dir_path = SCENARIO_DIRS.get(get_test_type(request))
24-Dec-2019 08:16:54             scenario_path = os.path.abspath(os.path.join(scenarios_dir_path,
24-Dec-2019 08:16:54                                                          scenario))
24-Dec-2019 08:16:54    
24-Dec-2019 08:16:54             patch = env_desc.get('patch')
24-Dec-2019 08:16:54             patch_dir_path = PATCHES_DIR.get(get_test_type(request))
24-Dec-2019 08:16:54             patch_path = os.path.join(patch_dir_path, patch)
24-Dec-2019 08:16:54             if start_env:
24-Dec-2019 08:16:54                 previous_env['started'] = start_environment(
24-Dec-2019 08:16:54                     scenario_path, request, hosts, patch_path, users,
24-Dec-2019 08:16:54 >                   env_description_abs_path
24-Dec-2019 08:16:54                 )
24-Dec-2019 08:16:54
24-Dec-2019 08:16:54 tests/conftest.py:356:
24-Dec-2019 08:16:54 _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
24-Dec-2019 08:16:54 tests/conftest.py:455: in start_environment
24-Dec-2019 08:16:54     pods_cfg = check_deployment()
24-Dec-2019 08:16:54 tests/conftest.py:484: in check_deployment
24-Dec-2019 08:16:54     status_output = yaml.load(status_output.decode('utf-8'))
24-Dec-2019 08:16:54 /usr/local/lib/python2.7/dist-packages/yaml/__init__.py:71: in load
24-Dec-2019 08:16:54     return loader.get_single_data()
24-Dec-2019 08:16:54 /usr/local/lib/python2.7/dist-packages/yaml/constructor.py:37: in get_single_data
24-Dec-2019 08:16:54     node = self.get_single_node()
24-Dec-2019 08:16:54 /usr/local/lib/python2.7/dist-packages/yaml/composer.py:36: in get_single_node
24-Dec-2019 08:16:54     document = self.compose_document()
24-Dec-2019 08:16:54 /usr/local/lib/python2.7/dist-packages/yaml/composer.py:55: in compose_document
24-Dec-2019 08:16:54     node = self.compose_node(None, None)
24-Dec-2019 08:16:54 /usr/local/lib/python2.7/dist-packages/yaml/composer.py:84: in compose_node
24-Dec-2019 08:16:54     node = self.compose_mapping_node(anchor)
24-Dec-2019 08:16:54 /usr/local/lib/python2.7/dist-packages/yaml/composer.py:127: in compose_mapping_node
24-Dec-2019 08:16:54     while not self.check_event(MappingEndEvent):
24-Dec-2019 08:16:54 /usr/local/lib/python2.7/dist-packages/yaml/parser.py:98: in check_event
24-Dec-2019 08:16:54     self.current_event = self.state()
24-Dec-2019 08:16:54 /usr/local/lib/python2.7/dist-packages/yaml/parser.py:428: in parse_block_mapping_key
24-Dec-2019 08:16:54     if self.check_token(KeyToken):
24-Dec-2019 08:16:54 /usr/local/lib/python2.7/dist-packages/yaml/scanner.py:116: in check_token
24-Dec-2019 08:16:54     self.fetch_more_tokens()
24-Dec-2019 08:16:54 /usr/local/lib/python2.7/dist-packages/yaml/scanner.py:220: in fetch_more_tokens
24-Dec-2019 08:16:54     return self.fetch_value()
24-Dec-2019 08:16:54 _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
24-Dec-2019 08:16:54
24-Dec-2019 08:16:54 self = <yaml.loader.Loader object at 0x7f6d5ed6f490>
24-Dec-2019 08:16:54
24-Dec-2019 08:16:54     def fetch_value(self):
24-Dec-2019 08:16:54    
24-Dec-2019 08:16:54         # Do we determine a simple key?
24-Dec-2019 08:16:54         if self.flow_level in self.possible_simple_keys:
24-Dec-2019 08:16:54    
24-Dec-2019 08:16:54             # Add KEY.
24-Dec-2019 08:16:54             key = self.possible_simple_keys[self.flow_level]
24-Dec-2019 08:16:54             del self.possible_simple_keys[self.flow_level]
24-Dec-2019 08:16:54             self.tokens.insert(key.token_number-self.tokens_taken,
24-Dec-2019 08:16:54                     KeyToken(key.mark, key.mark))
24-Dec-2019 08:16:54    
24-Dec-2019 08:16:54             # If this key starts a new block mapping, we need to add
24-Dec-2019 08:16:54             # BLOCK-MAPPING-START.
24-Dec-2019 08:16:54             if not self.flow_level:
24-Dec-2019 08:16:54                 if self.add_indent(key.column):
24-Dec-2019 08:16:54                     self.tokens.insert(key.token_number-self.tokens_taken,
24-Dec-2019 08:16:54                             BlockMappingStartToken(key.mark, key.mark))
24-Dec-2019 08:16:54    
24-Dec-2019 08:16:54             # There cannot be two simple keys one after another.
24-Dec-2019 08:16:54             self.allow_simple_key = False
24-Dec-2019 08:16:54    
24-Dec-2019 08:16:54         # It must be a part of a complex key.
24-Dec-2019 08:16:54         else:
24-Dec-2019 08:16:54    
24-Dec-2019 08:16:54             # Block context needs additional checks.
24-Dec-2019 08:16:54             # (Do we really need them? They will be catched by the parser
24-Dec-2019 08:16:54             # anyway.)
24-Dec-2019 08:16:54             if not self.flow_level:
24-Dec-2019 08:16:54    
24-Dec-2019 08:16:54                 # We are allowed to start a complex value if and only if
24-Dec-2019 08:16:54                 # we can start a simple key.
24-Dec-2019 08:16:54                 if not self.allow_simple_key:
24-Dec-2019 08:16:54                     raise ScannerError(None, None,
24-Dec-2019 08:16:54                             "mapping values are not allowed here",
24-Dec-2019 08:16:54 >                           self.get_mark())
24-Dec-2019 08:16:54 E                   ScannerError: mapping values are not allowed here
24-Dec-2019 08:16:54 E                     in "<unicode string>", line 1, column 90:
24-Dec-2019 08:16:54 E                        ... py:91: RequestsDependencyWarning: urllib3 (1.25.7) or chardet (3 ...
24-Dec-2019 08:16:54 E                                                            ^
24-Dec-2019 08:16:54
24-Dec-2019 08:16:54 /usr/local/lib/python2.7/dist-packages/yaml/scanner.py:576: ScannerError
24-Dec-2019 08:16:54 ========================= 25 error in 1280.86 seconds ==========================
24-Dec-2019 08:17:21 release "dev" deleted
24-Dec-2019 08:17:21 /usr/local/lib/python3.6/dist-packages/requests/__init__.py:91: RequestsDependencyWarning: urllib3 (1.25.7) or chardet (3.0.4) doesn't match a supported version!
24-Dec-2019 08:17:21   RequestsDependencyWarning)
24-Dec-2019 08:17:21 2a8b9c978c21
24-Dec-2019 08:17:21 Using image: docker.onedata.org/onezone-dev:ID-9d85e52816 for onezone service
24-Dec-2019 08:17:21 Using image: docker.onedata.org/oneprovider-dev:ID-96429fd39a for oneprovider service
24-Dec-2019 08:17:21 Using image: docker.onedata.org/rest-cli:ID-48767260b4 for rest cli service
24-Dec-2019 08:17:21 Using image: docker.onedata.org/oneclient-dev:ID-f9ca716885 for oneclient service
24-Dec-2019 08:17:21 Using image: docker.onedata.org/luma:ID-578faeaeaf for LUMA service
24-Dec-2019 08:17:21 Finished task 'Run acceptance mixed tests in Chrome' with result: Success
24-Dec-2019 08:17:21 Starting task 'Parse test results' of type 'com.atlassian.bamboo.plugins.testresultparser:task.testresultparser.junit'
24-Dec-2019 08:17:21 Parsing test results under /home/bamboo/bamboo-agent-home/xml-data/build-dir/TEST-OCAST-MRFCP...
24-Dec-2019 08:17:21 Failing task since 25 failing test cases were found.
24-Dec-2019 08:17:21 Finished task 'Parse test results' with result: Failed
24-Dec-2019 08:17:21 Starting task 'Pack logs' of type 'com.atlassian.bamboo.plugins.scripttask:task.builder.script'
24-Dec-2019 08:17:21
Beginning to execute external process for build 'Testing - oneclient-acceptance-src-test - multiprovider regular file CRUD proxyio #17 (TEST-OCAST-MRFCP-17)'
... running command line:
/bin/sh /home/bamboo/bamboo-agent-home/temp/TEST-OCAST-MRFCP-17-ScriptBuildTask-8202300718436509182.sh
... in: /home/bamboo/bamboo-agent-home/xml-data/build-dir/TEST-OCAST-MRFCP
... using extra environment variables:
bamboo_planRepository_1_branch=develop
bamboo_capability_kubeadm=true
bamboo_capability_system_builder_command_bash=/bin/bash
bamboo_planRepository_1_branchDisplayName=develop
bamboo_repository_revision_number=569cf78a555db26982dc3aafc6e34e10c259c8bf
bamboo_resultsUrl=https://bamboo.onedata.org/browse/TEST-OCAST-MRFCP-17
bamboo_repository_222199898_git_branch=develop
bamboo_capability_system_builder_command_Git=/usr/bin/git
bamboo_build_working_directory=/home/bamboo/bamboo-agent-home/xml-data/build-dir/TEST-OCAST-MRFCP
bamboo_planRepository_1_name=onedata-acceptance
bamboo_buildKey=TEST-OCAST-MRFCP
bamboo_shortPlanName=oneclient-acceptance-src-test
bamboo_capability_minikube=true
bamboo_planRepository_name=onedata-acceptance
bamboo_buildNumber=17
bamboo_shortJobName=multiprovider regular file CRUD proxyio
bamboo_buildResultsUrl=https://bamboo.onedata.org/browse/TEST-OCAST-MRFCP-17
bamboo_planRepository_repositoryUrl=ssh://git@git.onedata.org:7999/vfs/onedata-acceptance.git
bamboo_agentId=205258755
bamboo_capability_onedata=true
bamboo_planName=Testing - oneclient-acceptance-src-test
bamboo_build_commandline_com_atlassian_bamboo_plugins_scripttask_task_builder_script_7=/bin/sh /home/bamboo/bamboo-agent-home/temp/TEST-OCAST-MRFCP-17-ScriptBuildTask-1916029493813593964.sh
bamboo_build_commandline_com_atlassian_bamboo_plugins_scripttask_task_builder_script_6=/home/bamboo/bamboo-agent-home/temp/TEST-OCAST-MRFCP-17-ScriptBuildTask-1163693510173741094.sh
bamboo_shortPlanKey=OCAST
bamboo_shortJobKey=MRFCP
bamboo_planRepository_revision=569cf78a555db26982dc3aafc6e34e10c259c8bf
bamboo_artifactRepoHostname=S3
bamboo_buildTimeStamp=2019-12-23T15:37:08.313Z
bamboo_repository_previous_revision_number=edb49f6afff0f6efec6231b857452404d7f7b7e6
bamboo_build_commandline_com_atlassian_bamboo_plugins_scripttask_task_builder_script_1=/bin/sh /home/bamboo/bamboo-agent-home/temp/TEST-OCAST-MRFCP-17-ScriptBuildTask-1754854804424183760.sh
bamboo_build_commandline_com_atlassian_bamboo_plugins_scripttask_task_builder_script_3=/home/bamboo/bamboo-agent-home/temp/TEST-OCAST-MRFCP-17-ScriptBuildTask-4243165667723284999.sh
bamboo_planRepository_previousRevision=edb49f6afff0f6efec6231b857452404d7f7b7e6
bamboo_build_commandline_com_atlassian_bamboo_plugins_scripttask_task_builder_script_2=/bin/sh /home/bamboo/bamboo-agent-home/temp/TEST-OCAST-MRFCP-17-ScriptBuildTask-5031789898319599417.sh
bamboo_build_commandline_com_atlassian_bamboo_plugins_scripttask_task_builder_script_5=/bin/sh /home/bamboo/bamboo-agent-home/temp/TEST-OCAST-MRFCP-17-ScriptBuildTask-4904026783069664596.sh
bamboo_repository_git_branch=develop
bamboo_buildResultKey=TEST-OCAST-MRFCP-17
bamboo_repository_branch_name=develop
bamboo_buildPlanName=Testing - oneclient-acceptance-src-test - multiprovider regular file CRUD proxyio
bamboo_planRepository_1_revision=569cf78a555db26982dc3aafc6e34e10c259c8bf
bamboo_artifactRepoPort=10161
bamboo_OnedataFinalTasksURL=https://raw.githubusercontent.com/onedata/bamboos/develop/final_tasks.sh
bamboo_repository_name=onedata-acceptance
bamboo_buildFailed=false
bamboo_repository_222199898_revision_number=569cf78a555db26982dc3aafc6e34e10c259c8bf
bamboo_capability_system_docker_executable=/usr/bin/docker
bamboo_repository_222199898_name=onedata-acceptance
bamboo_planRepository_branch=develop
bamboo_agentWorkingDirectory=/home/bamboo/bamboo-agent-home/xml-data/build-dir
bamboo_jobFailed=true
bamboo_capability_system_git_executable=/usr/bin/git
bamboo_repository_git_username=
bamboo_planRepository_1_previousRevision=edb49f6afff0f6efec6231b857452404d7f7b7e6
bamboo_repository_222199898_branch_name=develop
bamboo_planRepository_branchDisplayName=develop
bamboo_artifactRepoUsername=ubuntu
bamboo_planRepository_1_type=bbserver
bamboo_planRepository_branchName=develop
bamboo_repository_222199898_git_repositoryUrl=ssh://git@git.onedata.org:7999/vfs/onedata-acceptance.git
bamboo_capability_system_jdk_JDK=/usr/lib/jvm/java-8-oracle
bamboo_repository_222199898_previous_revision_number=edb49f6afff0f6efec6231b857452404d7f7b7e6
bamboo_plan_storageTag=plan-222068858
bamboo_hg_cache_directory=/home/bamboo/bamboo-agent-home/xml-data/build-dir/_hg-repositories-cache
bamboo_planRepository_1_username=
bamboo_planRepository_type=bbserver
bamboo_git_cache_directory=/home/bamboo/bamboo-agent-home/xml-data/build-dir/_git-repositories-cache
bamboo_repository_git_repositoryUrl=ssh://git@git.onedata.org:7999/vfs/onedata-acceptance.git
bamboo_repository_222199898_git_username=
bamboo_tmp_directory=/home/bamboo/bamboo-agent-home/temp
bamboo_working_directory=/home/bamboo/bamboo-agent-home/xml-data/build-dir/TEST-OCAST-MRFCP
bamboo_capability_onedata_pkg_builder=true
bamboo_planKey=TEST-OCAST
bamboo_planRepository_1_repositoryUrl=ssh://git@git.onedata.org:7999/vfs/onedata-acceptance.git
bamboo_planRepository_username=
bamboo_capability_system_jdk_JDK_1_8=/usr/lib/jvm/java-8-oracle
bamboo_capability_system_jdk_JDK_1_8_0_161=/usr/lib/jvm/java-8-oracle
bamboo_artifactOpts=--hostname S3 --port 10161 --username ubuntu
bamboo_planRepository_1_branchName=develop
24-Dec-2019 08:17:21 cp: cannot stat 'onedata/one_env/sources_info.yaml': No such file or directory
24-Dec-2019 08:17:21 mv: cannot stat 'onedata/tests/oneclient/logs/*/*/images.yaml': Not a directory
24-Dec-2019 08:17:21 Finished task 'Pack logs' with result: Success
24-Dec-2019 08:17:21
Substituting variable: ${bamboo.OnedataFinalTasksURL} with https://raw.githubusercontent.com/onedata/bamboos/develop/final_tasks.sh
24-Dec-2019 08:17:21 Starting task 'Clear env' of type 'com.atlassian.bamboo.plugins.scripttask:task.builder.script'
24-Dec-2019 08:17:21
Beginning to execute external process for build 'Testing - oneclient-acceptance-src-test - multiprovider regular file CRUD proxyio #17 (TEST-OCAST-MRFCP-17)'
... running command line:
/bin/sh /home/bamboo/bamboo-agent-home/temp/TEST-OCAST-MRFCP-17-ScriptBuildTask-6747507421174063632.sh
... in: /home/bamboo/bamboo-agent-home/xml-data/build-dir/TEST-OCAST-MRFCP
... using extra environment variables:
bamboo_planRepository_1_branch=develop
bamboo_capability_kubeadm=true
bamboo_capability_system_builder_command_bash=/bin/bash
bamboo_planRepository_1_branchDisplayName=develop
bamboo_repository_revision_number=569cf78a555db26982dc3aafc6e34e10c259c8bf
bamboo_resultsUrl=https://bamboo.onedata.org/browse/TEST-OCAST-MRFCP-17
bamboo_repository_222199898_git_branch=develop
bamboo_capability_system_builder_command_Git=/usr/bin/git
bamboo_build_working_directory=/home/bamboo/bamboo-agent-home/xml-data/build-dir/TEST-OCAST-MRFCP
bamboo_planRepository_1_name=onedata-acceptance
bamboo_buildKey=TEST-OCAST-MRFCP
bamboo_shortPlanName=oneclient-acceptance-src-test
bamboo_capability_minikube=true
bamboo_planRepository_name=onedata-acceptance
bamboo_buildNumber=17
bamboo_shortJobName=multiprovider regular file CRUD proxyio
bamboo_buildResultsUrl=https://bamboo.onedata.org/browse/TEST-OCAST-MRFCP-17
bamboo_planRepository_repositoryUrl=ssh://git@git.onedata.org:7999/vfs/onedata-acceptance.git
bamboo_agentId=205258755
bamboo_capability_onedata=true
bamboo_planName=Testing - oneclient-acceptance-src-test
bamboo_build_commandline_com_atlassian_bamboo_plugins_scripttask_task_builder_script_7=/bin/sh /home/bamboo/bamboo-agent-home/temp/TEST-OCAST-MRFCP-17-ScriptBuildTask-1916029493813593964.sh
bamboo_build_commandline_com_atlassian_bamboo_plugins_scripttask_task_builder_script_6=/home/bamboo/bamboo-agent-home/temp/TEST-OCAST-MRFCP-17-ScriptBuildTask-1163693510173741094.sh
bamboo_shortPlanKey=OCAST
bamboo_build_commandline_com_atlassian_bamboo_plugins_scripttask_task_builder_script_9=/bin/sh /home/bamboo/bamboo-agent-home/temp/TEST-OCAST-MRFCP-17-ScriptBuildTask-8202300718436509182.sh
bamboo_shortJobKey=MRFCP
bamboo_planRepository_revision=569cf78a555db26982dc3aafc6e34e10c259c8bf
bamboo_artifactRepoHostname=S3
bamboo_buildTimeStamp=2019-12-23T15:37:08.313Z
bamboo_repository_previous_revision_number=edb49f6afff0f6efec6231b857452404d7f7b7e6
bamboo_build_commandline_com_atlassian_bamboo_plugins_scripttask_task_builder_script_1=/bin/sh /home/bamboo/bamboo-agent-home/temp/TEST-OCAST-MRFCP-17-ScriptBuildTask-1754854804424183760.sh
bamboo_build_commandline_com_atlassian_bamboo_plugins_scripttask_task_builder_script_3=/home/bamboo/bamboo-agent-home/temp/TEST-OCAST-MRFCP-17-ScriptBuildTask-4243165667723284999.sh
bamboo_planRepository_previousRevision=edb49f6afff0f6efec6231b857452404d7f7b7e6
bamboo_build_commandline_com_atlassian_bamboo_plugins_scripttask_task_builder_script_2=/bin/sh /home/bamboo/bamboo-agent-home/temp/TEST-OCAST-MRFCP-17-ScriptBuildTask-5031789898319599417.sh
bamboo_build_commandline_com_atlassian_bamboo_plugins_scripttask_task_builder_script_5=/bin/sh /home/bamboo/bamboo-agent-home/temp/TEST-OCAST-MRFCP-17-ScriptBuildTask-4904026783069664596.sh
bamboo_repository_git_branch=develop
bamboo_buildResultKey=TEST-OCAST-MRFCP-17
bamboo_repository_branch_name=develop
bamboo_buildPlanName=Testing - oneclient-acceptance-src-test - multiprovider regular file CRUD proxyio
bamboo_planRepository_1_revision=569cf78a555db26982dc3aafc6e34e10c259c8bf
bamboo_artifactRepoPort=10161
bamboo_OnedataFinalTasksURL=https://raw.githubusercontent.com/onedata/bamboos/develop/final_tasks.sh
bamboo_repository_name=onedata-acceptance
bamboo_buildFailed=false
bamboo_repository_222199898_revision_number=569cf78a555db26982dc3aafc6e34e10c259c8bf
bamboo_capability_system_docker_executable=/usr/bin/docker
bamboo_repository_222199898_name=onedata-acceptance
bamboo_planRepository_branch=develop
bamboo_agentWorkingDirectory=/home/bamboo/bamboo-agent-home/xml-data/build-dir
bamboo_jobFailed=true
bamboo_capability_system_git_executable=/usr/bin/git
bamboo_repository_git_username=
bamboo_planRepository_1_previousRevision=edb49f6afff0f6efec6231b857452404d7f7b7e6
bamboo_repository_222199898_branch_name=develop
bamboo_planRepository_branchDisplayName=develop
bamboo_artifactRepoUsername=ubuntu
bamboo_planRepository_1_type=bbserver
bamboo_planRepository_branchName=develop
bamboo_repository_222199898_git_repositoryUrl=ssh://git@git.onedata.org:7999/vfs/onedata-acceptance.git
bamboo_capability_system_jdk_JDK=/usr/lib/jvm/java-8-oracle
bamboo_repository_222199898_previous_revision_number=edb49f6afff0f6efec6231b857452404d7f7b7e6
bamboo_plan_storageTag=plan-222068858
bamboo_hg_cache_directory=/home/bamboo/bamboo-agent-home/xml-data/build-dir/_hg-repositories-cache
bamboo_planRepository_1_username=
bamboo_planRepository_type=bbserver
bamboo_git_cache_directory=/home/bamboo/bamboo-agent-home/xml-data/build-dir/_git-repositories-cache
bamboo_repository_git_repositoryUrl=ssh://git@git.onedata.org:7999/vfs/onedata-acceptance.git
bamboo_repository_222199898_git_username=
bamboo_tmp_directory=/home/bamboo/bamboo-agent-home/temp
bamboo_working_directory=/home/bamboo/bamboo-agent-home/xml-data/build-dir/TEST-OCAST-MRFCP
bamboo_capability_onedata_pkg_builder=true
bamboo_planKey=TEST-OCAST
bamboo_planRepository_1_repositoryUrl=ssh://git@git.onedata.org:7999/vfs/onedata-acceptance.git
bamboo_planRepository_username=
bamboo_capability_system_jdk_JDK_1_8=/usr/lib/jvm/java-8-oracle
bamboo_capability_system_jdk_JDK_1_8_0_161=/usr/lib/jvm/java-8-oracle
bamboo_artifactOpts=--hostname S3 --port 10161 --username ubuntu
bamboo_planRepository_1_branchName=develop
24-Dec-2019 08:17:21   % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
24-Dec-2019 08:17:21                                  Dload  Upload   Total   Spent    Left  Speed
24-Dec-2019 08:17:21
24-Dec-2019 08:17:22   0     0    0     0    0     0      0      0 --:--:-- --:--:-- --:--:--     0
24-Dec-2019 08:17:22   0     0    0     0    0     0      0      0 --:--:-- --:--:-- --:--:--     0
24-Dec-2019 08:17:22 100  4419  100  4419    0     0   6281      0 --:--:-- --:--:-- --:--:--  6276
24-Dec-2019 08:17:22 Clearing /tmp/onedata and /home/bamboo/.one-env
24-Dec-2019 08:17:22 Unable to find image 'alpine:latest' locally
24-Dec-2019 08:17:24 latest: Pulling from library/alpine
24-Dec-2019 08:17:24 63bc94deeb28: Pulling fs layer
24-Dec-2019 08:17:25 63bc94deeb28: Verifying Checksum
24-Dec-2019 08:17:25 63bc94deeb28: Download complete
24-Dec-2019 08:17:25 63bc94deeb28: Pull complete
24-Dec-2019 08:17:25 Digest: sha256:7c92a2c6bbcb6b6beff92d0a940779769c2477b807c202954c537e2e0deb9bed
24-Dec-2019 08:17:25 Status: Downloaded newer image for alpine:latest
24-Dec-2019 08:17:26 Cleaning helm deployments
24-Dec-2019 08:17:27 Cleanining pods
24-Dec-2019 08:17:28 Cleaning kube persistant volumes
24-Dec-2019 08:17:28 pod "dev-oneprovider-krakow-ready-check-ptmrf" deleted
24-Dec-2019 08:17:33 pod "dev-oneprovider-paris-ready-check-v94d9" deleted
24-Dec-2019 08:17:40 Error from server (NotFound): pods "dev-onezone-ready-check-9s8sq" not found
24-Dec-2019 08:17:40 Cleaning dockswift container
24-Dec-2019 08:17:40 Cleaning docker containers
24-Dec-2019 08:17:42 Stalled docker containers to remove:
24-Dec-2019 08:17:42 9035576b23d7 68badcfd9353 c3bf423e0f05 603a4a9a4324 70a087c40370 341612d0bda5 6d717a1aca29 36ad45bd7dda d477dae62ea3 3aab000d767f b5a76da1abd6
24-Dec-2019 08:17:42 Removing stalled docker containers
24-Dec-2019 08:17:42 Error response from daemon: Cannot kill container: 9035576b23d7: Container 9035576b23d7b4416774a429f739a0f4c287dcf75e506a846828f3f45a1e9927 is not running
24-Dec-2019 08:17:42 9035576b23d7
24-Dec-2019 08:17:42 Error response from daemon: Cannot kill container: 68badcfd9353: Container 68badcfd93537a526cfe000884b510337b93c5bf09f35ea62c571a9825b8dd02 is not running
24-Dec-2019 08:17:42 68badcfd9353
24-Dec-2019 08:17:42 Error response from daemon: Cannot kill container: c3bf423e0f05: Container c3bf423e0f05e59c80636c3e6ccd0ebb715321caee5d3bda2f852c0fecd2ca4a is not running
24-Dec-2019 08:17:42 c3bf423e0f05
24-Dec-2019 08:17:42 Error response from daemon: Cannot kill container: 603a4a9a4324: Container 603a4a9a432402d032a90c20e091da6149367afc4f66a98348b687e6762a9f92 is not running
24-Dec-2019 08:17:42 603a4a9a4324
24-Dec-2019 08:17:42 Error response from daemon: Cannot kill container: 70a087c40370: Container 70a087c4037088d7c85efc87b8e9849cd7fdc8dda68632f97899ce7366497651 is not running
24-Dec-2019 08:17:42 70a087c40370
24-Dec-2019 08:17:42 Error response from daemon: Cannot kill container: 341612d0bda5: Container 341612d0bda5909cb840870792066c8e3b0d1fb7110f70fd40623a9b37c81720 is not running
24-Dec-2019 08:17:42 341612d0bda5
24-Dec-2019 08:17:42 Error response from daemon: Cannot kill container: 6d717a1aca29: Container 6d717a1aca29fce44bb5241c2e3d62d2531d31b856a39c1bd8537f2c7f3f5f0f is not running
24-Dec-2019 08:17:42 6d717a1aca29
24-Dec-2019 08:17:43 Error response from daemon: Cannot kill container: 36ad45bd7dda: Container 36ad45bd7dda64e8221ed286dbee0793fbdad0b9560bc6efa64ffdefce4ec05a is not running
24-Dec-2019 08:17:43 36ad45bd7dda
24-Dec-2019 08:17:43 Error response from daemon: Cannot kill container: d477dae62ea3: Container d477dae62ea376384208ffae4d92dd255cdcd05b9edb860ffacfcb010b0c0462 is not running
24-Dec-2019 08:17:43 d477dae62ea3
24-Dec-2019 08:17:43 Error response from daemon: Cannot kill container: 3aab000d767f: Container 3aab000d767f1740c757b3e128417c17bb1c039b226feb30e7f6a321f9f6018a is not running
24-Dec-2019 08:17:43 3aab000d767f
24-Dec-2019 08:17:43 Error response from daemon: Cannot kill container: b5a76da1abd6: Container b5a76da1abd687d58a7cd6ff5ecaa1ba14b4baac76c0289e913550080fad8c65 is not running
24-Dec-2019 08:17:43 b5a76da1abd6
24-Dec-2019 08:17:43 Stalled docker volumes to remove:
24-Dec-2019 08:17:43
24-Dec-2019 08:17:43 Removing stalled docker volumes
24-Dec-2019 08:17:43 Removing stalled loopdevices
24-Dec-2019 08:17:43 Unable to find image 'ubuntu:14.10' locally
24-Dec-2019 08:17:44 14.10: Pulling from library/ubuntu
24-Dec-2019 08:17:44 b0efe5c05b4c: Pulling fs layer
24-Dec-2019 08:17:44 0a1f1b169319: Pulling fs layer
24-Dec-2019 08:17:44 1ceb0a3c7c48: Pulling fs layer
24-Dec-2019 08:17:44 a3ed95caeb02: Pulling fs layer
24-Dec-2019 08:17:44 a3ed95caeb02: Waiting
24-Dec-2019 08:17:45 1ceb0a3c7c48: Verifying Checksum
24-Dec-2019 08:17:45 1ceb0a3c7c48: Download complete
24-Dec-2019 08:17:45 0a1f1b169319: Verifying Checksum
24-Dec-2019 08:17:45 0a1f1b169319: Download complete
24-Dec-2019 08:17:46 a3ed95caeb02: Verifying Checksum
24-Dec-2019 08:17:46 a3ed95caeb02: Download complete
24-Dec-2019 08:17:46 b0efe5c05b4c: Download complete
24-Dec-2019 08:17:50 b0efe5c05b4c: Pull complete
24-Dec-2019 08:17:50 0a1f1b169319: Pull complete
24-Dec-2019 08:17:50 1ceb0a3c7c48: Pull complete
24-Dec-2019 08:17:50 a3ed95caeb02: Pull complete
24-Dec-2019 08:17:50 Digest: sha256:6341c688b4b0b82ec735389b3c97df8cf2831b8cb8bd1856779130a86574ac5c
24-Dec-2019 08:17:50 Status: Downloaded newer image for ubuntu:14.10
24-Dec-2019 08:17:51 Done
24-Dec-2019 08:17:51 Finished task 'Clear env' with result: Success
24-Dec-2019 08:17:51 Running post build plugin 'Docker Container Cleanup'
24-Dec-2019 08:17:51 Running post build plugin 'NCover Results Collector'
24-Dec-2019 08:17:51 Running post build plugin 'Clover Results Collector'
24-Dec-2019 08:17:51 Running post build plugin 'npm Cache Cleanup'
24-Dec-2019 08:17:51 Running post build plugin 'Artifact Copier'
24-Dec-2019 08:17:51 Publishing an artifact: test_logs.tar.gz
24-Dec-2019 08:17:51 Finished publishing of artifact Non required job artifact: [test_logs.tar.gz], pattern: [test_logs.tar.gz] in 9.039 ms
24-Dec-2019 08:17:54 Successfully removed working directory at '/home/bamboo/bamboo-agent-home/xml-data/build-dir/TEST-OCAST-MRFCP'
24-Dec-2019 08:17:54 Finalising the build...
24-Dec-2019 08:17:54 Stopping timer.
24-Dec-2019 08:17:54 Build TEST-OCAST-MRFCP-17 completed.
24-Dec-2019 08:17:54 Running on server: post build plugin 'NCover Results Collector'
24-Dec-2019 08:17:54 Running on server: post build plugin 'Build Hanging Detection Configuration'
24-Dec-2019 08:17:54 Running on server: post build plugin 'Clover Delta Calculator'
24-Dec-2019 08:17:54 Running on server: post build plugin 'Maven Dependencies Postprocessor'
24-Dec-2019 08:17:54 All post build plugins have finished
24-Dec-2019 08:17:54 Generating build results summary...
24-Dec-2019 08:17:54 Saving build results to disk...
24-Dec-2019 08:17:54 Logging substituted variables...
24-Dec-2019 08:17:54 Indexing build results...
24-Dec-2019 08:17:54 Finished building TEST-OCAST-MRFCP-17.