Build: #17 failed

Job: multiprovider directory stat directio failed

Build log

The build generated 2,139 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 07:04:53
24-Dec-2019 07:04:53     @pytest.fixture(scope='module', autouse=True)
24-Dec-2019 07:04:53     def env_desc(env_description_abs_path, hosts, request, users,
24-Dec-2019 07:04:53                  previous_env):
24-Dec-2019 07:04:53         """
24-Dec-2019 07:04:53         Sets up environment and returns environment description.
24-Dec-2019 07:04:53         """
24-Dec-2019 07:04:53         test_type = get_test_type(request)
24-Dec-2019 07:04:53         start_env = _check_if_should_start_new_env(env_description_abs_path,
24-Dec-2019 07:04:53                                                    previous_env)
24-Dec-2019 07:04:53    
24-Dec-2019 07:04:53         if test_type in ['gui']:
24-Dec-2019 07:04:53             # For now gui tests do not use onenv patch
24-Dec-2019 07:04:53             if start_env:
24-Dec-2019 07:04:53                 previous_env['started'] = start_environment(
24-Dec-2019 07:04:53                     env_description_abs_path, request, hosts, '', users,
24-Dec-2019 07:04:53                     env_description_abs_path
24-Dec-2019 07:04:53                 )
24-Dec-2019 07:04:53             return ''
24-Dec-2019 07:04:53    
24-Dec-2019 07:04:53         elif test_type == 'mixed':
24-Dec-2019 07:04:53             with open(env_description_abs_path, 'r') as env_desc_file:
24-Dec-2019 07:04:53                 env_desc = yaml.load(env_desc_file)
24-Dec-2019 07:04:53             scenario = env_desc.get('scenario')
24-Dec-2019 07:04:53             scenarios_dir_path = SCENARIO_DIRS.get(get_test_type(request))
24-Dec-2019 07:04:53             scenario_path = os.path.abspath(os.path.join(scenarios_dir_path,
24-Dec-2019 07:04:53                                                          scenario))
24-Dec-2019 07:04:53    
24-Dec-2019 07:04:53             if start_env:
24-Dec-2019 07:04:53                 previous_env['started'] = start_environment(
24-Dec-2019 07:04:53                     scenario_path, request, hosts, '', users,
24-Dec-2019 07:04:53                     env_description_abs_path
24-Dec-2019 07:04:53                 )
24-Dec-2019 07:04:53             return env_desc
24-Dec-2019 07:04:53    
24-Dec-2019 07:04:53         elif test_type in ['oneclient', 'onedata_fs', 'performance']:
24-Dec-2019 07:04:53             with open(env_description_abs_path, 'r') as env_desc_file:
24-Dec-2019 07:04:53                 env_desc = yaml.load(env_desc_file)
24-Dec-2019 07:04:53    
24-Dec-2019 07:04:53             scenario = env_desc.get('scenario')
24-Dec-2019 07:04:53             scenarios_dir_path = SCENARIO_DIRS.get(get_test_type(request))
24-Dec-2019 07:04:53             scenario_path = os.path.abspath(os.path.join(scenarios_dir_path,
24-Dec-2019 07:04:53                                                          scenario))
24-Dec-2019 07:04:53    
24-Dec-2019 07:04:53             patch = env_desc.get('patch')
24-Dec-2019 07:04:53             patch_dir_path = PATCHES_DIR.get(get_test_type(request))
24-Dec-2019 07:04:53             patch_path = os.path.join(patch_dir_path, patch)
24-Dec-2019 07:04:53             if start_env:
24-Dec-2019 07:04:53                 previous_env['started'] = start_environment(
24-Dec-2019 07:04:53                     scenario_path, request, hosts, patch_path, users,
24-Dec-2019 07:04:53 >                   env_description_abs_path
24-Dec-2019 07:04:53                 )
24-Dec-2019 07:04:53
24-Dec-2019 07:04:53 tests/conftest.py:356:
24-Dec-2019 07:04:53 _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
24-Dec-2019 07:04:53 tests/conftest.py:455: in start_environment
24-Dec-2019 07:04:53     pods_cfg = check_deployment()
24-Dec-2019 07:04:53 tests/conftest.py:484: in check_deployment
24-Dec-2019 07:04:53     status_output = yaml.load(status_output.decode('utf-8'))
24-Dec-2019 07:04:53 /usr/local/lib/python2.7/dist-packages/yaml/__init__.py:71: in load
24-Dec-2019 07:04:53     return loader.get_single_data()
24-Dec-2019 07:04:53 /usr/local/lib/python2.7/dist-packages/yaml/constructor.py:37: in get_single_data
24-Dec-2019 07:04:53     node = self.get_single_node()
24-Dec-2019 07:04:53 /usr/local/lib/python2.7/dist-packages/yaml/composer.py:36: in get_single_node
24-Dec-2019 07:04:53     document = self.compose_document()
24-Dec-2019 07:04:53 /usr/local/lib/python2.7/dist-packages/yaml/composer.py:55: in compose_document
24-Dec-2019 07:04:53     node = self.compose_node(None, None)
24-Dec-2019 07:04:53 /usr/local/lib/python2.7/dist-packages/yaml/composer.py:84: in compose_node
24-Dec-2019 07:04:53     node = self.compose_mapping_node(anchor)
24-Dec-2019 07:04:53 /usr/local/lib/python2.7/dist-packages/yaml/composer.py:127: in compose_mapping_node
24-Dec-2019 07:04:53     while not self.check_event(MappingEndEvent):
24-Dec-2019 07:04:53 /usr/local/lib/python2.7/dist-packages/yaml/parser.py:98: in check_event
24-Dec-2019 07:04:53     self.current_event = self.state()
24-Dec-2019 07:04:53 /usr/local/lib/python2.7/dist-packages/yaml/parser.py:428: in parse_block_mapping_key
24-Dec-2019 07:04:53     if self.check_token(KeyToken):
24-Dec-2019 07:04:53 /usr/local/lib/python2.7/dist-packages/yaml/scanner.py:116: in check_token
24-Dec-2019 07:04:53     self.fetch_more_tokens()
24-Dec-2019 07:04:53 /usr/local/lib/python2.7/dist-packages/yaml/scanner.py:220: in fetch_more_tokens
24-Dec-2019 07:04:53     return self.fetch_value()
24-Dec-2019 07:04:53 _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
24-Dec-2019 07:04:53
24-Dec-2019 07:04:53 self = <yaml.loader.Loader object at 0x7f6d7b18ab90>
24-Dec-2019 07:04:53
24-Dec-2019 07:04:53     def fetch_value(self):
24-Dec-2019 07:04:53    
24-Dec-2019 07:04:53         # Do we determine a simple key?
24-Dec-2019 07:04:53         if self.flow_level in self.possible_simple_keys:
24-Dec-2019 07:04:53    
24-Dec-2019 07:04:53             # Add KEY.
24-Dec-2019 07:04:53             key = self.possible_simple_keys[self.flow_level]
24-Dec-2019 07:04:53             del self.possible_simple_keys[self.flow_level]
24-Dec-2019 07:04:53             self.tokens.insert(key.token_number-self.tokens_taken,
24-Dec-2019 07:04:53                     KeyToken(key.mark, key.mark))
24-Dec-2019 07:04:53    
24-Dec-2019 07:04:53             # If this key starts a new block mapping, we need to add
24-Dec-2019 07:04:53             # BLOCK-MAPPING-START.
24-Dec-2019 07:04:53             if not self.flow_level:
24-Dec-2019 07:04:53                 if self.add_indent(key.column):
24-Dec-2019 07:04:53                     self.tokens.insert(key.token_number-self.tokens_taken,
24-Dec-2019 07:04:53                             BlockMappingStartToken(key.mark, key.mark))
24-Dec-2019 07:04:53    
24-Dec-2019 07:04:53             # There cannot be two simple keys one after another.
24-Dec-2019 07:04:53             self.allow_simple_key = False
24-Dec-2019 07:04:53    
24-Dec-2019 07:04:53         # It must be a part of a complex key.
24-Dec-2019 07:04:53         else:
24-Dec-2019 07:04:53    
24-Dec-2019 07:04:53             # Block context needs additional checks.
24-Dec-2019 07:04:53             # (Do we really need them? They will be catched by the parser
24-Dec-2019 07:04:53             # anyway.)
24-Dec-2019 07:04:53             if not self.flow_level:
24-Dec-2019 07:04:53    
24-Dec-2019 07:04:53                 # We are allowed to start a complex value if and only if
24-Dec-2019 07:04:53                 # we can start a simple key.
24-Dec-2019 07:04:53                 if not self.allow_simple_key:
24-Dec-2019 07:04:53                     raise ScannerError(None, None,
24-Dec-2019 07:04:53                             "mapping values are not allowed here",
24-Dec-2019 07:04:53 >                           self.get_mark())
24-Dec-2019 07:04:53 E                   ScannerError: mapping values are not allowed here
24-Dec-2019 07:04:53 E                     in "<unicode string>", line 1, column 90:
24-Dec-2019 07:04:53 E                        ... py:91: RequestsDependencyWarning: urllib3 (1.25.7) or chardet (3 ...
24-Dec-2019 07:04:53 E                                                            ^
24-Dec-2019 07:04:53
24-Dec-2019 07:04:53 /usr/local/lib/python2.7/dist-packages/yaml/scanner.py:576: ScannerError
24-Dec-2019 07:04:53 _ ERROR at setup of test_update_timestamp_without_permission[multiprovider_directio] _
24-Dec-2019 07:04:53
24-Dec-2019 07:04:53 env_description_abs_path = '/mnt/storage/bamboo-agent-home/xml-data/build-dir/TEST-OCAST-MDSD/onedata/tests/oneclient/environments/multiprovider_directio.yaml'
24-Dec-2019 07:04:53 hosts = {}
24-Dec-2019 07:04:53 request = <SubRequest 'env_desc' for <Function 'test_type[multiprovider_directio]'>>
24-Dec-2019 07:04:53 users = {}
24-Dec-2019 07:04:53 previous_env = {'env_path': '/mnt/storage/bamboo-agent-home/xml-data/build-dir/TEST-OCAST-MDSD/onedata/tests/oneclient/environments/multiprovider_directio.yaml'}
24-Dec-2019 07:04:53
24-Dec-2019 07:04:53     @pytest.fixture(scope='module', autouse=True)
24-Dec-2019 07:04:53     def env_desc(env_description_abs_path, hosts, request, users,
24-Dec-2019 07:04:53                  previous_env):
24-Dec-2019 07:04:53         """
24-Dec-2019 07:04:53         Sets up environment and returns environment description.
24-Dec-2019 07:04:53         """
24-Dec-2019 07:04:53         test_type = get_test_type(request)
24-Dec-2019 07:04:53         start_env = _check_if_should_start_new_env(env_description_abs_path,
24-Dec-2019 07:04:53                                                    previous_env)
24-Dec-2019 07:04:53    
24-Dec-2019 07:04:53         if test_type in ['gui']:
24-Dec-2019 07:04:53             # For now gui tests do not use onenv patch
24-Dec-2019 07:04:53             if start_env:
24-Dec-2019 07:04:53                 previous_env['started'] = start_environment(
24-Dec-2019 07:04:53                     env_description_abs_path, request, hosts, '', users,
24-Dec-2019 07:04:53                     env_description_abs_path
24-Dec-2019 07:04:53                 )
24-Dec-2019 07:04:53             return ''
24-Dec-2019 07:04:53    
24-Dec-2019 07:04:53         elif test_type == 'mixed':
24-Dec-2019 07:04:53             with open(env_description_abs_path, 'r') as env_desc_file:
24-Dec-2019 07:04:53                 env_desc = yaml.load(env_desc_file)
24-Dec-2019 07:04:53             scenario = env_desc.get('scenario')
24-Dec-2019 07:04:53             scenarios_dir_path = SCENARIO_DIRS.get(get_test_type(request))
24-Dec-2019 07:04:53             scenario_path = os.path.abspath(os.path.join(scenarios_dir_path,
24-Dec-2019 07:04:53                                                          scenario))
24-Dec-2019 07:04:53    
24-Dec-2019 07:04:53             if start_env:
24-Dec-2019 07:04:53                 previous_env['started'] = start_environment(
24-Dec-2019 07:04:53                     scenario_path, request, hosts, '', users,
24-Dec-2019 07:04:53                     env_description_abs_path
24-Dec-2019 07:04:53                 )
24-Dec-2019 07:04:53             return env_desc
24-Dec-2019 07:04:53    
24-Dec-2019 07:04:53         elif test_type in ['oneclient', 'onedata_fs', 'performance']:
24-Dec-2019 07:04:53             with open(env_description_abs_path, 'r') as env_desc_file:
24-Dec-2019 07:04:53                 env_desc = yaml.load(env_desc_file)
24-Dec-2019 07:04:53    
24-Dec-2019 07:04:53             scenario = env_desc.get('scenario')
24-Dec-2019 07:04:53             scenarios_dir_path = SCENARIO_DIRS.get(get_test_type(request))
24-Dec-2019 07:04:53             scenario_path = os.path.abspath(os.path.join(scenarios_dir_path,
24-Dec-2019 07:04:53                                                          scenario))
24-Dec-2019 07:04:53    
24-Dec-2019 07:04:53             patch = env_desc.get('patch')
24-Dec-2019 07:04:53             patch_dir_path = PATCHES_DIR.get(get_test_type(request))
24-Dec-2019 07:04:53             patch_path = os.path.join(patch_dir_path, patch)
24-Dec-2019 07:04:53             if start_env:
24-Dec-2019 07:04:53                 previous_env['started'] = start_environment(
24-Dec-2019 07:04:53                     scenario_path, request, hosts, patch_path, users,
24-Dec-2019 07:04:53 >                   env_description_abs_path
24-Dec-2019 07:04:53                 )
24-Dec-2019 07:04:53
24-Dec-2019 07:04:53 tests/conftest.py:356:
24-Dec-2019 07:04:53 _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
24-Dec-2019 07:04:53 tests/conftest.py:455: in start_environment
24-Dec-2019 07:04:53     pods_cfg = check_deployment()
24-Dec-2019 07:04:53 tests/conftest.py:484: in check_deployment
24-Dec-2019 07:04:53     status_output = yaml.load(status_output.decode('utf-8'))
24-Dec-2019 07:04:53 /usr/local/lib/python2.7/dist-packages/yaml/__init__.py:71: in load
24-Dec-2019 07:04:53     return loader.get_single_data()
24-Dec-2019 07:04:53 /usr/local/lib/python2.7/dist-packages/yaml/constructor.py:37: in get_single_data
24-Dec-2019 07:04:53     node = self.get_single_node()
24-Dec-2019 07:04:53 /usr/local/lib/python2.7/dist-packages/yaml/composer.py:36: in get_single_node
24-Dec-2019 07:04:53     document = self.compose_document()
24-Dec-2019 07:04:53 /usr/local/lib/python2.7/dist-packages/yaml/composer.py:55: in compose_document
24-Dec-2019 07:04:53     node = self.compose_node(None, None)
24-Dec-2019 07:04:53 /usr/local/lib/python2.7/dist-packages/yaml/composer.py:84: in compose_node
24-Dec-2019 07:04:53     node = self.compose_mapping_node(anchor)
24-Dec-2019 07:04:53 /usr/local/lib/python2.7/dist-packages/yaml/composer.py:127: in compose_mapping_node
24-Dec-2019 07:04:53     while not self.check_event(MappingEndEvent):
24-Dec-2019 07:04:53 /usr/local/lib/python2.7/dist-packages/yaml/parser.py:98: in check_event
24-Dec-2019 07:04:53     self.current_event = self.state()
24-Dec-2019 07:04:53 /usr/local/lib/python2.7/dist-packages/yaml/parser.py:428: in parse_block_mapping_key
24-Dec-2019 07:04:53     if self.check_token(KeyToken):
24-Dec-2019 07:04:53 /usr/local/lib/python2.7/dist-packages/yaml/scanner.py:116: in check_token
24-Dec-2019 07:04:53     self.fetch_more_tokens()
24-Dec-2019 07:04:53 /usr/local/lib/python2.7/dist-packages/yaml/scanner.py:220: in fetch_more_tokens
24-Dec-2019 07:04:53     return self.fetch_value()
24-Dec-2019 07:04:53 _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
24-Dec-2019 07:04:53
24-Dec-2019 07:04:53 self = <yaml.loader.Loader object at 0x7f6d7b18ab90>
24-Dec-2019 07:04:53
24-Dec-2019 07:04:53     def fetch_value(self):
24-Dec-2019 07:04:53    
24-Dec-2019 07:04:53         # Do we determine a simple key?
24-Dec-2019 07:04:53         if self.flow_level in self.possible_simple_keys:
24-Dec-2019 07:04:53    
24-Dec-2019 07:04:53             # Add KEY.
24-Dec-2019 07:04:53             key = self.possible_simple_keys[self.flow_level]
24-Dec-2019 07:04:53             del self.possible_simple_keys[self.flow_level]
24-Dec-2019 07:04:53             self.tokens.insert(key.token_number-self.tokens_taken,
24-Dec-2019 07:04:53                     KeyToken(key.mark, key.mark))
24-Dec-2019 07:04:53    
24-Dec-2019 07:04:53             # If this key starts a new block mapping, we need to add
24-Dec-2019 07:04:53             # BLOCK-MAPPING-START.
24-Dec-2019 07:04:53             if not self.flow_level:
24-Dec-2019 07:04:53                 if self.add_indent(key.column):
24-Dec-2019 07:04:53                     self.tokens.insert(key.token_number-self.tokens_taken,
24-Dec-2019 07:04:53                             BlockMappingStartToken(key.mark, key.mark))
24-Dec-2019 07:04:53    
24-Dec-2019 07:04:53             # There cannot be two simple keys one after another.
24-Dec-2019 07:04:53             self.allow_simple_key = False
24-Dec-2019 07:04:53    
24-Dec-2019 07:04:53         # It must be a part of a complex key.
24-Dec-2019 07:04:53         else:
24-Dec-2019 07:04:53    
24-Dec-2019 07:04:53             # Block context needs additional checks.
24-Dec-2019 07:04:53             # (Do we really need them? They will be catched by the parser
24-Dec-2019 07:04:53             # anyway.)
24-Dec-2019 07:04:53             if not self.flow_level:
24-Dec-2019 07:04:53    
24-Dec-2019 07:04:53                 # We are allowed to start a complex value if and only if
24-Dec-2019 07:04:53                 # we can start a simple key.
24-Dec-2019 07:04:53                 if not self.allow_simple_key:
24-Dec-2019 07:04:53                     raise ScannerError(None, None,
24-Dec-2019 07:04:53                             "mapping values are not allowed here",
24-Dec-2019 07:04:53 >                           self.get_mark())
24-Dec-2019 07:04:53 E                   ScannerError: mapping values are not allowed here
24-Dec-2019 07:04:53 E                     in "<unicode string>", line 1, column 90:
24-Dec-2019 07:04:53 E                        ... py:91: RequestsDependencyWarning: urllib3 (1.25.7) or chardet (3 ...
24-Dec-2019 07:04:53 E                                                            ^
24-Dec-2019 07:04:53
24-Dec-2019 07:04:53 /usr/local/lib/python2.7/dist-packages/yaml/scanner.py:576: ScannerError
24-Dec-2019 07:04:53 _ ERROR at setup of test_update_timestamp_with_permission[multiprovider_directio] _
24-Dec-2019 07:04:53
24-Dec-2019 07:04:53 env_description_abs_path = '/mnt/storage/bamboo-agent-home/xml-data/build-dir/TEST-OCAST-MDSD/onedata/tests/oneclient/environments/multiprovider_directio.yaml'
24-Dec-2019 07:04:53 hosts = {}
24-Dec-2019 07:04:53 request = <SubRequest 'env_desc' for <Function 'test_type[multiprovider_directio]'>>
24-Dec-2019 07:04:53 users = {}
24-Dec-2019 07:04:53 previous_env = {'env_path': '/mnt/storage/bamboo-agent-home/xml-data/build-dir/TEST-OCAST-MDSD/onedata/tests/oneclient/environments/multiprovider_directio.yaml'}
24-Dec-2019 07:04:53
24-Dec-2019 07:04:53     @pytest.fixture(scope='module', autouse=True)
24-Dec-2019 07:04:53     def env_desc(env_description_abs_path, hosts, request, users,
24-Dec-2019 07:04:53                  previous_env):
24-Dec-2019 07:04:53         """
24-Dec-2019 07:04:53         Sets up environment and returns environment description.
24-Dec-2019 07:04:53         """
24-Dec-2019 07:04:53         test_type = get_test_type(request)
24-Dec-2019 07:04:53         start_env = _check_if_should_start_new_env(env_description_abs_path,
24-Dec-2019 07:04:53                                                    previous_env)
24-Dec-2019 07:04:53    
24-Dec-2019 07:04:53         if test_type in ['gui']:
24-Dec-2019 07:04:53             # For now gui tests do not use onenv patch
24-Dec-2019 07:04:53             if start_env:
24-Dec-2019 07:04:53                 previous_env['started'] = start_environment(
24-Dec-2019 07:04:53                     env_description_abs_path, request, hosts, '', users,
24-Dec-2019 07:04:53                     env_description_abs_path
24-Dec-2019 07:04:53                 )
24-Dec-2019 07:04:53             return ''
24-Dec-2019 07:04:53    
24-Dec-2019 07:04:53         elif test_type == 'mixed':
24-Dec-2019 07:04:53             with open(env_description_abs_path, 'r') as env_desc_file:
24-Dec-2019 07:04:53                 env_desc = yaml.load(env_desc_file)
24-Dec-2019 07:04:53             scenario = env_desc.get('scenario')
24-Dec-2019 07:04:53             scenarios_dir_path = SCENARIO_DIRS.get(get_test_type(request))
24-Dec-2019 07:04:53             scenario_path = os.path.abspath(os.path.join(scenarios_dir_path,
24-Dec-2019 07:04:53                                                          scenario))
24-Dec-2019 07:04:53    
24-Dec-2019 07:04:53             if start_env:
24-Dec-2019 07:04:53                 previous_env['started'] = start_environment(
24-Dec-2019 07:04:53                     scenario_path, request, hosts, '', users,
24-Dec-2019 07:04:53                     env_description_abs_path
24-Dec-2019 07:04:53                 )
24-Dec-2019 07:04:53             return env_desc
24-Dec-2019 07:04:53    
24-Dec-2019 07:04:53         elif test_type in ['oneclient', 'onedata_fs', 'performance']:
24-Dec-2019 07:04:53             with open(env_description_abs_path, 'r') as env_desc_file:
24-Dec-2019 07:04:53                 env_desc = yaml.load(env_desc_file)
24-Dec-2019 07:04:53    
24-Dec-2019 07:04:53             scenario = env_desc.get('scenario')
24-Dec-2019 07:04:53             scenarios_dir_path = SCENARIO_DIRS.get(get_test_type(request))
24-Dec-2019 07:04:53             scenario_path = os.path.abspath(os.path.join(scenarios_dir_path,
24-Dec-2019 07:04:53                                                          scenario))
24-Dec-2019 07:04:53    
24-Dec-2019 07:04:53             patch = env_desc.get('patch')
24-Dec-2019 07:04:53             patch_dir_path = PATCHES_DIR.get(get_test_type(request))
24-Dec-2019 07:04:53             patch_path = os.path.join(patch_dir_path, patch)
24-Dec-2019 07:04:53             if start_env:
24-Dec-2019 07:04:53                 previous_env['started'] = start_environment(
24-Dec-2019 07:04:53                     scenario_path, request, hosts, patch_path, users,
24-Dec-2019 07:04:53 >                   env_description_abs_path
24-Dec-2019 07:04:53                 )
24-Dec-2019 07:04:53
24-Dec-2019 07:04:53 tests/conftest.py:356:
24-Dec-2019 07:04:53 _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
24-Dec-2019 07:04:53 tests/conftest.py:455: in start_environment
24-Dec-2019 07:04:53     pods_cfg = check_deployment()
24-Dec-2019 07:04:53 tests/conftest.py:484: in check_deployment
24-Dec-2019 07:04:53     status_output = yaml.load(status_output.decode('utf-8'))
24-Dec-2019 07:04:53 /usr/local/lib/python2.7/dist-packages/yaml/__init__.py:71: in load
24-Dec-2019 07:04:53     return loader.get_single_data()
24-Dec-2019 07:04:53 /usr/local/lib/python2.7/dist-packages/yaml/constructor.py:37: in get_single_data
24-Dec-2019 07:04:53     node = self.get_single_node()
24-Dec-2019 07:04:53 /usr/local/lib/python2.7/dist-packages/yaml/composer.py:36: in get_single_node
24-Dec-2019 07:04:53     document = self.compose_document()
24-Dec-2019 07:04:53 /usr/local/lib/python2.7/dist-packages/yaml/composer.py:55: in compose_document
24-Dec-2019 07:04:53     node = self.compose_node(None, None)
24-Dec-2019 07:04:53 /usr/local/lib/python2.7/dist-packages/yaml/composer.py:84: in compose_node
24-Dec-2019 07:04:53     node = self.compose_mapping_node(anchor)
24-Dec-2019 07:04:53 /usr/local/lib/python2.7/dist-packages/yaml/composer.py:127: in compose_mapping_node
24-Dec-2019 07:04:53     while not self.check_event(MappingEndEvent):
24-Dec-2019 07:04:53 /usr/local/lib/python2.7/dist-packages/yaml/parser.py:98: in check_event
24-Dec-2019 07:04:53     self.current_event = self.state()
24-Dec-2019 07:04:53 /usr/local/lib/python2.7/dist-packages/yaml/parser.py:428: in parse_block_mapping_key
24-Dec-2019 07:04:53     if self.check_token(KeyToken):
24-Dec-2019 07:04:53 /usr/local/lib/python2.7/dist-packages/yaml/scanner.py:116: in check_token
24-Dec-2019 07:04:53     self.fetch_more_tokens()
24-Dec-2019 07:04:53 /usr/local/lib/python2.7/dist-packages/yaml/scanner.py:220: in fetch_more_tokens
24-Dec-2019 07:04:53     return self.fetch_value()
24-Dec-2019 07:04:53 _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
24-Dec-2019 07:04:53
24-Dec-2019 07:04:53 self = <yaml.loader.Loader object at 0x7f6d7b18ab90>
24-Dec-2019 07:04:53
24-Dec-2019 07:04:53     def fetch_value(self):
24-Dec-2019 07:04:53    
24-Dec-2019 07:04:53         # Do we determine a simple key?
24-Dec-2019 07:04:53         if self.flow_level in self.possible_simple_keys:
24-Dec-2019 07:04:53    
24-Dec-2019 07:04:53             # Add KEY.
24-Dec-2019 07:04:53             key = self.possible_simple_keys[self.flow_level]
24-Dec-2019 07:04:53             del self.possible_simple_keys[self.flow_level]
24-Dec-2019 07:04:53             self.tokens.insert(key.token_number-self.tokens_taken,
24-Dec-2019 07:04:53                     KeyToken(key.mark, key.mark))
24-Dec-2019 07:04:53    
24-Dec-2019 07:04:53             # If this key starts a new block mapping, we need to add
24-Dec-2019 07:04:53             # BLOCK-MAPPING-START.
24-Dec-2019 07:04:53             if not self.flow_level:
24-Dec-2019 07:04:53                 if self.add_indent(key.column):
24-Dec-2019 07:04:53                     self.tokens.insert(key.token_number-self.tokens_taken,
24-Dec-2019 07:04:53                             BlockMappingStartToken(key.mark, key.mark))
24-Dec-2019 07:04:53    
24-Dec-2019 07:04:53             # There cannot be two simple keys one after another.
24-Dec-2019 07:04:53             self.allow_simple_key = False
24-Dec-2019 07:04:53    
24-Dec-2019 07:04:53         # It must be a part of a complex key.
24-Dec-2019 07:04:53         else:
24-Dec-2019 07:04:53    
24-Dec-2019 07:04:53             # Block context needs additional checks.
24-Dec-2019 07:04:53             # (Do we really need them? They will be catched by the parser
24-Dec-2019 07:04:53             # anyway.)
24-Dec-2019 07:04:53             if not self.flow_level:
24-Dec-2019 07:04:53    
24-Dec-2019 07:04:53                 # We are allowed to start a complex value if and only if
24-Dec-2019 07:04:53                 # we can start a simple key.
24-Dec-2019 07:04:53                 if not self.allow_simple_key:
24-Dec-2019 07:04:53                     raise ScannerError(None, None,
24-Dec-2019 07:04:53                             "mapping values are not allowed here",
24-Dec-2019 07:04:53 >                           self.get_mark())
24-Dec-2019 07:04:53 E                   ScannerError: mapping values are not allowed here
24-Dec-2019 07:04:53 E                     in "<unicode string>", line 1, column 90:
24-Dec-2019 07:04:53 E                        ... py:91: RequestsDependencyWarning: urllib3 (1.25.7) or chardet (3 ...
24-Dec-2019 07:04:53 E                                                            ^
24-Dec-2019 07:04:53
24-Dec-2019 07:04:53 /usr/local/lib/python2.7/dist-packages/yaml/scanner.py:576: ScannerError
24-Dec-2019 07:04:53 __________ ERROR at setup of test_access_time[multiprovider_directio] __________
24-Dec-2019 07:04:53
24-Dec-2019 07:04:53 env_description_abs_path = '/mnt/storage/bamboo-agent-home/xml-data/build-dir/TEST-OCAST-MDSD/onedata/tests/oneclient/environments/multiprovider_directio.yaml'
24-Dec-2019 07:04:53 hosts = {}
24-Dec-2019 07:04:53 request = <SubRequest 'env_desc' for <Function 'test_type[multiprovider_directio]'>>
24-Dec-2019 07:04:53 users = {}
24-Dec-2019 07:04:53 previous_env = {'env_path': '/mnt/storage/bamboo-agent-home/xml-data/build-dir/TEST-OCAST-MDSD/onedata/tests/oneclient/environments/multiprovider_directio.yaml'}
24-Dec-2019 07:04:53
24-Dec-2019 07:04:53     @pytest.fixture(scope='module', autouse=True)
24-Dec-2019 07:04:53     def env_desc(env_description_abs_path, hosts, request, users,
24-Dec-2019 07:04:53                  previous_env):
24-Dec-2019 07:04:53         """
24-Dec-2019 07:04:53         Sets up environment and returns environment description.
24-Dec-2019 07:04:53         """
24-Dec-2019 07:04:53         test_type = get_test_type(request)
24-Dec-2019 07:04:53         start_env = _check_if_should_start_new_env(env_description_abs_path,
24-Dec-2019 07:04:53                                                    previous_env)
24-Dec-2019 07:04:53    
24-Dec-2019 07:04:53         if test_type in ['gui']:
24-Dec-2019 07:04:53             # For now gui tests do not use onenv patch
24-Dec-2019 07:04:53             if start_env:
24-Dec-2019 07:04:53                 previous_env['started'] = start_environment(
24-Dec-2019 07:04:53                     env_description_abs_path, request, hosts, '', users,
24-Dec-2019 07:04:53                     env_description_abs_path
24-Dec-2019 07:04:53                 )
24-Dec-2019 07:04:53             return ''
24-Dec-2019 07:04:53    
24-Dec-2019 07:04:53         elif test_type == 'mixed':
24-Dec-2019 07:04:53             with open(env_description_abs_path, 'r') as env_desc_file:
24-Dec-2019 07:04:53                 env_desc = yaml.load(env_desc_file)
24-Dec-2019 07:04:53             scenario = env_desc.get('scenario')
24-Dec-2019 07:04:53             scenarios_dir_path = SCENARIO_DIRS.get(get_test_type(request))
24-Dec-2019 07:04:53             scenario_path = os.path.abspath(os.path.join(scenarios_dir_path,
24-Dec-2019 07:04:53                                                          scenario))
24-Dec-2019 07:04:53    
24-Dec-2019 07:04:53             if start_env:
24-Dec-2019 07:04:53                 previous_env['started'] = start_environment(
24-Dec-2019 07:04:53                     scenario_path, request, hosts, '', users,
24-Dec-2019 07:04:53                     env_description_abs_path
24-Dec-2019 07:04:53                 )
24-Dec-2019 07:04:53             return env_desc
24-Dec-2019 07:04:53    
24-Dec-2019 07:04:53         elif test_type in ['oneclient', 'onedata_fs', 'performance']:
24-Dec-2019 07:04:53             with open(env_description_abs_path, 'r') as env_desc_file:
24-Dec-2019 07:04:53                 env_desc = yaml.load(env_desc_file)
24-Dec-2019 07:04:53    
24-Dec-2019 07:04:53             scenario = env_desc.get('scenario')
24-Dec-2019 07:04:53             scenarios_dir_path = SCENARIO_DIRS.get(get_test_type(request))
24-Dec-2019 07:04:53             scenario_path = os.path.abspath(os.path.join(scenarios_dir_path,
24-Dec-2019 07:04:53                                                          scenario))
24-Dec-2019 07:04:53    
24-Dec-2019 07:04:53             patch = env_desc.get('patch')
24-Dec-2019 07:04:53             patch_dir_path = PATCHES_DIR.get(get_test_type(request))
24-Dec-2019 07:04:53             patch_path = os.path.join(patch_dir_path, patch)
24-Dec-2019 07:04:53             if start_env:
24-Dec-2019 07:04:53                 previous_env['started'] = start_environment(
24-Dec-2019 07:04:53                     scenario_path, request, hosts, patch_path, users,
24-Dec-2019 07:04:53 >                   env_description_abs_path
24-Dec-2019 07:04:53                 )
24-Dec-2019 07:04:53
24-Dec-2019 07:04:53 tests/conftest.py:356:
24-Dec-2019 07:04:53 _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
24-Dec-2019 07:04:53 tests/conftest.py:455: in start_environment
24-Dec-2019 07:04:53     pods_cfg = check_deployment()
24-Dec-2019 07:04:53 tests/conftest.py:484: in check_deployment
24-Dec-2019 07:04:53     status_output = yaml.load(status_output.decode('utf-8'))
24-Dec-2019 07:04:53 /usr/local/lib/python2.7/dist-packages/yaml/__init__.py:71: in load
24-Dec-2019 07:04:53     return loader.get_single_data()
24-Dec-2019 07:04:53 /usr/local/lib/python2.7/dist-packages/yaml/constructor.py:37: in get_single_data
24-Dec-2019 07:04:53     node = self.get_single_node()
24-Dec-2019 07:04:53 /usr/local/lib/python2.7/dist-packages/yaml/composer.py:36: in get_single_node
24-Dec-2019 07:04:54     document = self.compose_document()
24-Dec-2019 07:04:54 /usr/local/lib/python2.7/dist-packages/yaml/composer.py:55: in compose_document
24-Dec-2019 07:04:54     node = self.compose_node(None, None)
24-Dec-2019 07:04:54 /usr/local/lib/python2.7/dist-packages/yaml/composer.py:84: in compose_node
24-Dec-2019 07:04:54     node = self.compose_mapping_node(anchor)
24-Dec-2019 07:04:54 /usr/local/lib/python2.7/dist-packages/yaml/composer.py:127: in compose_mapping_node
24-Dec-2019 07:04:54     while not self.check_event(MappingEndEvent):
24-Dec-2019 07:04:54 /usr/local/lib/python2.7/dist-packages/yaml/parser.py:98: in check_event
24-Dec-2019 07:04:54     self.current_event = self.state()
24-Dec-2019 07:04:54 /usr/local/lib/python2.7/dist-packages/yaml/parser.py:428: in parse_block_mapping_key
24-Dec-2019 07:04:54     if self.check_token(KeyToken):
24-Dec-2019 07:04:54 /usr/local/lib/python2.7/dist-packages/yaml/scanner.py:116: in check_token
24-Dec-2019 07:04:54     self.fetch_more_tokens()
24-Dec-2019 07:04:54 /usr/local/lib/python2.7/dist-packages/yaml/scanner.py:220: in fetch_more_tokens
24-Dec-2019 07:04:54     return self.fetch_value()
24-Dec-2019 07:04:54 _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
24-Dec-2019 07:04:54
24-Dec-2019 07:04:54 self = <yaml.loader.Loader object at 0x7f6d7b18ab90>
24-Dec-2019 07:04:54
24-Dec-2019 07:04:54     def fetch_value(self):
24-Dec-2019 07:04:54    
24-Dec-2019 07:04:54         # Do we determine a simple key?
24-Dec-2019 07:04:54         if self.flow_level in self.possible_simple_keys:
24-Dec-2019 07:04:54    
24-Dec-2019 07:04:54             # Add KEY.
24-Dec-2019 07:04:54             key = self.possible_simple_keys[self.flow_level]
24-Dec-2019 07:04:54             del self.possible_simple_keys[self.flow_level]
24-Dec-2019 07:04:54             self.tokens.insert(key.token_number-self.tokens_taken,
24-Dec-2019 07:04:54                     KeyToken(key.mark, key.mark))
24-Dec-2019 07:04:54    
24-Dec-2019 07:04:54             # If this key starts a new block mapping, we need to add
24-Dec-2019 07:04:54             # BLOCK-MAPPING-START.
24-Dec-2019 07:04:54             if not self.flow_level:
24-Dec-2019 07:04:54                 if self.add_indent(key.column):
24-Dec-2019 07:04:54                     self.tokens.insert(key.token_number-self.tokens_taken,
24-Dec-2019 07:04:54                             BlockMappingStartToken(key.mark, key.mark))
24-Dec-2019 07:04:54    
24-Dec-2019 07:04:54             # There cannot be two simple keys one after another.
24-Dec-2019 07:04:54             self.allow_simple_key = False
24-Dec-2019 07:04:54    
24-Dec-2019 07:04:54         # It must be a part of a complex key.
24-Dec-2019 07:04:54         else:
24-Dec-2019 07:04:54    
24-Dec-2019 07:04:54             # Block context needs additional checks.
24-Dec-2019 07:04:54             # (Do we really need them? They will be catched by the parser
24-Dec-2019 07:04:54             # anyway.)
24-Dec-2019 07:04:54             if not self.flow_level:
24-Dec-2019 07:04:54    
24-Dec-2019 07:04:54                 # We are allowed to start a complex value if and only if
24-Dec-2019 07:04:54                 # we can start a simple key.
24-Dec-2019 07:04:54                 if not self.allow_simple_key:
24-Dec-2019 07:04:54                     raise ScannerError(None, None,
24-Dec-2019 07:04:54                             "mapping values are not allowed here",
24-Dec-2019 07:04:54 >                           self.get_mark())
24-Dec-2019 07:04:54 E                   ScannerError: mapping values are not allowed here
24-Dec-2019 07:04:54 E                     in "<unicode string>", line 1, column 90:
24-Dec-2019 07:04:54 E                        ... py:91: RequestsDependencyWarning: urllib3 (1.25.7) or chardet (3 ...
24-Dec-2019 07:04:54 E                                                            ^
24-Dec-2019 07:04:54
24-Dec-2019 07:04:54 /usr/local/lib/python2.7/dist-packages/yaml/scanner.py:576: ScannerError
24-Dec-2019 07:04:54 _______ ERROR at setup of test_modification_time[multiprovider_directio] _______
24-Dec-2019 07:04:54
24-Dec-2019 07:04:54 env_description_abs_path = '/mnt/storage/bamboo-agent-home/xml-data/build-dir/TEST-OCAST-MDSD/onedata/tests/oneclient/environments/multiprovider_directio.yaml'
24-Dec-2019 07:04:54 hosts = {}
24-Dec-2019 07:04:54 request = <SubRequest 'env_desc' for <Function 'test_type[multiprovider_directio]'>>
24-Dec-2019 07:04:54 users = {}
24-Dec-2019 07:04:54 previous_env = {'env_path': '/mnt/storage/bamboo-agent-home/xml-data/build-dir/TEST-OCAST-MDSD/onedata/tests/oneclient/environments/multiprovider_directio.yaml'}
24-Dec-2019 07:04:54
24-Dec-2019 07:04:54     @pytest.fixture(scope='module', autouse=True)
24-Dec-2019 07:04:54     def env_desc(env_description_abs_path, hosts, request, users,
24-Dec-2019 07:04:54                  previous_env):
24-Dec-2019 07:04:54         """
24-Dec-2019 07:04:54         Sets up environment and returns environment description.
24-Dec-2019 07:04:54         """
24-Dec-2019 07:04:54         test_type = get_test_type(request)
24-Dec-2019 07:04:54         start_env = _check_if_should_start_new_env(env_description_abs_path,
24-Dec-2019 07:04:54                                                    previous_env)
24-Dec-2019 07:04:54    
24-Dec-2019 07:04:54         if test_type in ['gui']:
24-Dec-2019 07:04:54             # For now gui tests do not use onenv patch
24-Dec-2019 07:04:54             if start_env:
24-Dec-2019 07:04:54                 previous_env['started'] = start_environment(
24-Dec-2019 07:04:54                     env_description_abs_path, request, hosts, '', users,
24-Dec-2019 07:04:54                     env_description_abs_path
24-Dec-2019 07:04:54                 )
24-Dec-2019 07:04:54             return ''
24-Dec-2019 07:04:54    
24-Dec-2019 07:04:54         elif test_type == 'mixed':
24-Dec-2019 07:04:54             with open(env_description_abs_path, 'r') as env_desc_file:
24-Dec-2019 07:04:54                 env_desc = yaml.load(env_desc_file)
24-Dec-2019 07:04:54             scenario = env_desc.get('scenario')
24-Dec-2019 07:04:54             scenarios_dir_path = SCENARIO_DIRS.get(get_test_type(request))
24-Dec-2019 07:04:54             scenario_path = os.path.abspath(os.path.join(scenarios_dir_path,
24-Dec-2019 07:04:54                                                          scenario))
24-Dec-2019 07:04:54    
24-Dec-2019 07:04:54             if start_env:
24-Dec-2019 07:04:54                 previous_env['started'] = start_environment(
24-Dec-2019 07:04:54                     scenario_path, request, hosts, '', users,
24-Dec-2019 07:04:54                     env_description_abs_path
24-Dec-2019 07:04:54                 )
24-Dec-2019 07:04:54             return env_desc
24-Dec-2019 07:04:54    
24-Dec-2019 07:04:54         elif test_type in ['oneclient', 'onedata_fs', 'performance']:
24-Dec-2019 07:04:54             with open(env_description_abs_path, 'r') as env_desc_file:
24-Dec-2019 07:04:54                 env_desc = yaml.load(env_desc_file)
24-Dec-2019 07:04:54    
24-Dec-2019 07:04:54             scenario = env_desc.get('scenario')
24-Dec-2019 07:04:54             scenarios_dir_path = SCENARIO_DIRS.get(get_test_type(request))
24-Dec-2019 07:04:54             scenario_path = os.path.abspath(os.path.join(scenarios_dir_path,
24-Dec-2019 07:04:54                                                          scenario))
24-Dec-2019 07:04:54    
24-Dec-2019 07:04:54             patch = env_desc.get('patch')
24-Dec-2019 07:04:54             patch_dir_path = PATCHES_DIR.get(get_test_type(request))
24-Dec-2019 07:04:54             patch_path = os.path.join(patch_dir_path, patch)
24-Dec-2019 07:04:54             if start_env:
24-Dec-2019 07:04:54                 previous_env['started'] = start_environment(
24-Dec-2019 07:04:54                     scenario_path, request, hosts, patch_path, users,
24-Dec-2019 07:04:54 >                   env_description_abs_path
24-Dec-2019 07:04:54                 )
24-Dec-2019 07:04:54
24-Dec-2019 07:04:54 tests/conftest.py:356:
24-Dec-2019 07:04:54 _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
24-Dec-2019 07:04:54 tests/conftest.py:455: in start_environment
24-Dec-2019 07:04:54     pods_cfg = check_deployment()
24-Dec-2019 07:04:54 tests/conftest.py:484: in check_deployment
24-Dec-2019 07:04:54     status_output = yaml.load(status_output.decode('utf-8'))
24-Dec-2019 07:04:54 /usr/local/lib/python2.7/dist-packages/yaml/__init__.py:71: in load
24-Dec-2019 07:04:54     return loader.get_single_data()
24-Dec-2019 07:04:54 /usr/local/lib/python2.7/dist-packages/yaml/constructor.py:37: in get_single_data
24-Dec-2019 07:04:54     node = self.get_single_node()
24-Dec-2019 07:04:54 /usr/local/lib/python2.7/dist-packages/yaml/composer.py:36: in get_single_node
24-Dec-2019 07:04:54     document = self.compose_document()
24-Dec-2019 07:04:54 /usr/local/lib/python2.7/dist-packages/yaml/composer.py:55: in compose_document
24-Dec-2019 07:04:54     node = self.compose_node(None, None)
24-Dec-2019 07:04:54 /usr/local/lib/python2.7/dist-packages/yaml/composer.py:84: in compose_node
24-Dec-2019 07:04:54     node = self.compose_mapping_node(anchor)
24-Dec-2019 07:04:54 /usr/local/lib/python2.7/dist-packages/yaml/composer.py:127: in compose_mapping_node
24-Dec-2019 07:04:54     while not self.check_event(MappingEndEvent):
24-Dec-2019 07:04:54 /usr/local/lib/python2.7/dist-packages/yaml/parser.py:98: in check_event
24-Dec-2019 07:04:54     self.current_event = self.state()
24-Dec-2019 07:04:54 /usr/local/lib/python2.7/dist-packages/yaml/parser.py:428: in parse_block_mapping_key
24-Dec-2019 07:04:54     if self.check_token(KeyToken):
24-Dec-2019 07:04:54 /usr/local/lib/python2.7/dist-packages/yaml/scanner.py:116: in check_token
24-Dec-2019 07:04:54     self.fetch_more_tokens()
24-Dec-2019 07:04:54 /usr/local/lib/python2.7/dist-packages/yaml/scanner.py:220: in fetch_more_tokens
24-Dec-2019 07:04:54     return self.fetch_value()
24-Dec-2019 07:04:54 _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
24-Dec-2019 07:04:54
24-Dec-2019 07:04:54 self = <yaml.loader.Loader object at 0x7f6d7b18ab90>
24-Dec-2019 07:04:54
24-Dec-2019 07:04:54     def fetch_value(self):
24-Dec-2019 07:04:54    
24-Dec-2019 07:04:54         # Do we determine a simple key?
24-Dec-2019 07:04:54         if self.flow_level in self.possible_simple_keys:
24-Dec-2019 07:04:54    
24-Dec-2019 07:04:54             # Add KEY.
24-Dec-2019 07:04:54             key = self.possible_simple_keys[self.flow_level]
24-Dec-2019 07:04:54             del self.possible_simple_keys[self.flow_level]
24-Dec-2019 07:04:54             self.tokens.insert(key.token_number-self.tokens_taken,
24-Dec-2019 07:04:54                     KeyToken(key.mark, key.mark))
24-Dec-2019 07:04:54    
24-Dec-2019 07:04:54             # If this key starts a new block mapping, we need to add
24-Dec-2019 07:04:54             # BLOCK-MAPPING-START.
24-Dec-2019 07:04:54             if not self.flow_level:
24-Dec-2019 07:04:54                 if self.add_indent(key.column):
24-Dec-2019 07:04:54                     self.tokens.insert(key.token_number-self.tokens_taken,
24-Dec-2019 07:04:54                             BlockMappingStartToken(key.mark, key.mark))
24-Dec-2019 07:04:54    
24-Dec-2019 07:04:54             # There cannot be two simple keys one after another.
24-Dec-2019 07:04:54             self.allow_simple_key = False
24-Dec-2019 07:04:54    
24-Dec-2019 07:04:54         # It must be a part of a complex key.
24-Dec-2019 07:04:54         else:
24-Dec-2019 07:04:54    
24-Dec-2019 07:04:54             # Block context needs additional checks.
24-Dec-2019 07:04:54             # (Do we really need them? They will be catched by the parser
24-Dec-2019 07:04:54             # anyway.)
24-Dec-2019 07:04:54             if not self.flow_level:
24-Dec-2019 07:04:54    
24-Dec-2019 07:04:54                 # We are allowed to start a complex value if and only if
24-Dec-2019 07:04:54                 # we can start a simple key.
24-Dec-2019 07:04:54                 if not self.allow_simple_key:
24-Dec-2019 07:04:54                     raise ScannerError(None, None,
24-Dec-2019 07:04:54                             "mapping values are not allowed here",
24-Dec-2019 07:04:54 >                           self.get_mark())
24-Dec-2019 07:04:54 E                   ScannerError: mapping values are not allowed here
24-Dec-2019 07:04:54 E                     in "<unicode string>", line 1, column 90:
24-Dec-2019 07:04:54 E                        ... py:91: RequestsDependencyWarning: urllib3 (1.25.7) or chardet (3 ...
24-Dec-2019 07:04:54 E                                                            ^
24-Dec-2019 07:04:54
24-Dec-2019 07:04:54 /usr/local/lib/python2.7/dist-packages/yaml/scanner.py:576: ScannerError
24-Dec-2019 07:04:54 ______ ERROR at setup of test_stat_change_time_mv[multiprovider_directio] ______
24-Dec-2019 07:04:54
24-Dec-2019 07:04:54 env_description_abs_path = '/mnt/storage/bamboo-agent-home/xml-data/build-dir/TEST-OCAST-MDSD/onedata/tests/oneclient/environments/multiprovider_directio.yaml'
24-Dec-2019 07:04:54 hosts = {}
24-Dec-2019 07:04:54 request = <SubRequest 'env_desc' for <Function 'test_type[multiprovider_directio]'>>
24-Dec-2019 07:04:54 users = {}
24-Dec-2019 07:04:54 previous_env = {'env_path': '/mnt/storage/bamboo-agent-home/xml-data/build-dir/TEST-OCAST-MDSD/onedata/tests/oneclient/environments/multiprovider_directio.yaml'}
24-Dec-2019 07:04:54
24-Dec-2019 07:04:54     @pytest.fixture(scope='module', autouse=True)
24-Dec-2019 07:04:54     def env_desc(env_description_abs_path, hosts, request, users,
24-Dec-2019 07:04:54                  previous_env):
24-Dec-2019 07:04:54         """
24-Dec-2019 07:04:54         Sets up environment and returns environment description.
24-Dec-2019 07:04:54         """
24-Dec-2019 07:04:54         test_type = get_test_type(request)
24-Dec-2019 07:04:54         start_env = _check_if_should_start_new_env(env_description_abs_path,
24-Dec-2019 07:04:54                                                    previous_env)
24-Dec-2019 07:04:54    
24-Dec-2019 07:04:54         if test_type in ['gui']:
24-Dec-2019 07:04:54             # For now gui tests do not use onenv patch
24-Dec-2019 07:04:54             if start_env:
24-Dec-2019 07:04:54                 previous_env['started'] = start_environment(
24-Dec-2019 07:04:54                     env_description_abs_path, request, hosts, '', users,
24-Dec-2019 07:04:54                     env_description_abs_path
24-Dec-2019 07:04:54                 )
24-Dec-2019 07:04:54             return ''
24-Dec-2019 07:04:54    
24-Dec-2019 07:04:54         elif test_type == 'mixed':
24-Dec-2019 07:04:54             with open(env_description_abs_path, 'r') as env_desc_file:
24-Dec-2019 07:04:54                 env_desc = yaml.load(env_desc_file)
24-Dec-2019 07:04:54             scenario = env_desc.get('scenario')
24-Dec-2019 07:04:54             scenarios_dir_path = SCENARIO_DIRS.get(get_test_type(request))
24-Dec-2019 07:04:54             scenario_path = os.path.abspath(os.path.join(scenarios_dir_path,
24-Dec-2019 07:04:54                                                          scenario))
24-Dec-2019 07:04:54    
24-Dec-2019 07:04:54             if start_env:
24-Dec-2019 07:04:54                 previous_env['started'] = start_environment(
24-Dec-2019 07:04:54                     scenario_path, request, hosts, '', users,
24-Dec-2019 07:04:54                     env_description_abs_path
24-Dec-2019 07:04:54                 )
24-Dec-2019 07:04:54             return env_desc
24-Dec-2019 07:04:54    
24-Dec-2019 07:04:54         elif test_type in ['oneclient', 'onedata_fs', 'performance']:
24-Dec-2019 07:04:54             with open(env_description_abs_path, 'r') as env_desc_file:
24-Dec-2019 07:04:54                 env_desc = yaml.load(env_desc_file)
24-Dec-2019 07:04:54    
24-Dec-2019 07:04:54             scenario = env_desc.get('scenario')
24-Dec-2019 07:04:54             scenarios_dir_path = SCENARIO_DIRS.get(get_test_type(request))
24-Dec-2019 07:04:54             scenario_path = os.path.abspath(os.path.join(scenarios_dir_path,
24-Dec-2019 07:04:54                                                          scenario))
24-Dec-2019 07:04:54    
24-Dec-2019 07:04:54             patch = env_desc.get('patch')
24-Dec-2019 07:04:54             patch_dir_path = PATCHES_DIR.get(get_test_type(request))
24-Dec-2019 07:04:54             patch_path = os.path.join(patch_dir_path, patch)
24-Dec-2019 07:04:54             if start_env:
24-Dec-2019 07:04:54                 previous_env['started'] = start_environment(
24-Dec-2019 07:04:54                     scenario_path, request, hosts, patch_path, users,
24-Dec-2019 07:04:54 >                   env_description_abs_path
24-Dec-2019 07:04:54                 )
24-Dec-2019 07:04:54
24-Dec-2019 07:04:54 tests/conftest.py:356:
24-Dec-2019 07:04:54 _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
24-Dec-2019 07:04:54 tests/conftest.py:455: in start_environment
24-Dec-2019 07:04:54     pods_cfg = check_deployment()
24-Dec-2019 07:04:54 tests/conftest.py:484: in check_deployment
24-Dec-2019 07:04:54     status_output = yaml.load(status_output.decode('utf-8'))
24-Dec-2019 07:04:54 /usr/local/lib/python2.7/dist-packages/yaml/__init__.py:71: in load
24-Dec-2019 07:04:54     return loader.get_single_data()
24-Dec-2019 07:04:54 /usr/local/lib/python2.7/dist-packages/yaml/constructor.py:37: in get_single_data
24-Dec-2019 07:04:54     node = self.get_single_node()
24-Dec-2019 07:04:54 /usr/local/lib/python2.7/dist-packages/yaml/composer.py:36: in get_single_node
24-Dec-2019 07:04:54     document = self.compose_document()
24-Dec-2019 07:04:54 /usr/local/lib/python2.7/dist-packages/yaml/composer.py:55: in compose_document
24-Dec-2019 07:04:54     node = self.compose_node(None, None)
24-Dec-2019 07:04:54 /usr/local/lib/python2.7/dist-packages/yaml/composer.py:84: in compose_node
24-Dec-2019 07:04:54     node = self.compose_mapping_node(anchor)
24-Dec-2019 07:04:54 /usr/local/lib/python2.7/dist-packages/yaml/composer.py:127: in compose_mapping_node
24-Dec-2019 07:04:54     while not self.check_event(MappingEndEvent):
24-Dec-2019 07:04:54 /usr/local/lib/python2.7/dist-packages/yaml/parser.py:98: in check_event
24-Dec-2019 07:04:54     self.current_event = self.state()
24-Dec-2019 07:04:54 /usr/local/lib/python2.7/dist-packages/yaml/parser.py:428: in parse_block_mapping_key
24-Dec-2019 07:04:54     if self.check_token(KeyToken):
24-Dec-2019 07:04:54 /usr/local/lib/python2.7/dist-packages/yaml/scanner.py:116: in check_token
24-Dec-2019 07:04:54     self.fetch_more_tokens()
24-Dec-2019 07:04:54 /usr/local/lib/python2.7/dist-packages/yaml/scanner.py:220: in fetch_more_tokens
24-Dec-2019 07:04:54     return self.fetch_value()
24-Dec-2019 07:04:54 _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
24-Dec-2019 07:04:54
24-Dec-2019 07:04:54 self = <yaml.loader.Loader object at 0x7f6d7b18ab90>
24-Dec-2019 07:04:54
24-Dec-2019 07:04:54     def fetch_value(self):
24-Dec-2019 07:04:54    
24-Dec-2019 07:04:54         # Do we determine a simple key?
24-Dec-2019 07:04:54         if self.flow_level in self.possible_simple_keys:
24-Dec-2019 07:04:54    
24-Dec-2019 07:04:54             # Add KEY.
24-Dec-2019 07:04:54             key = self.possible_simple_keys[self.flow_level]
24-Dec-2019 07:04:54             del self.possible_simple_keys[self.flow_level]
24-Dec-2019 07:04:54             self.tokens.insert(key.token_number-self.tokens_taken,
24-Dec-2019 07:04:54                     KeyToken(key.mark, key.mark))
24-Dec-2019 07:04:54    
24-Dec-2019 07:04:54             # If this key starts a new block mapping, we need to add
24-Dec-2019 07:04:54             # BLOCK-MAPPING-START.
24-Dec-2019 07:04:54             if not self.flow_level:
24-Dec-2019 07:04:54                 if self.add_indent(key.column):
24-Dec-2019 07:04:54                     self.tokens.insert(key.token_number-self.tokens_taken,
24-Dec-2019 07:04:54                             BlockMappingStartToken(key.mark, key.mark))
24-Dec-2019 07:04:54    
24-Dec-2019 07:04:54             # There cannot be two simple keys one after another.
24-Dec-2019 07:04:54             self.allow_simple_key = False
24-Dec-2019 07:04:54    
24-Dec-2019 07:04:54         # It must be a part of a complex key.
24-Dec-2019 07:04:54         else:
24-Dec-2019 07:04:54    
24-Dec-2019 07:04:54             # Block context needs additional checks.
24-Dec-2019 07:04:54             # (Do we really need them? They will be catched by the parser
24-Dec-2019 07:04:54             # anyway.)
24-Dec-2019 07:04:54             if not self.flow_level:
24-Dec-2019 07:04:54    
24-Dec-2019 07:04:54                 # We are allowed to start a complex value if and only if
24-Dec-2019 07:04:54                 # we can start a simple key.
24-Dec-2019 07:04:54                 if not self.allow_simple_key:
24-Dec-2019 07:04:54                     raise ScannerError(None, None,
24-Dec-2019 07:04:54                             "mapping values are not allowed here",
24-Dec-2019 07:04:54 >                           self.get_mark())
24-Dec-2019 07:04:54 E                   ScannerError: mapping values are not allowed here
24-Dec-2019 07:04:54 E                     in "<unicode string>", line 1, column 90:
24-Dec-2019 07:04:54 E                        ... py:91: RequestsDependencyWarning: urllib3 (1.25.7) or chardet (3 ...
24-Dec-2019 07:04:54 E                                                            ^
24-Dec-2019 07:04:54
24-Dec-2019 07:04:54 /usr/local/lib/python2.7/dist-packages/yaml/scanner.py:576: ScannerError
24-Dec-2019 07:04:54 ____ ERROR at setup of test_stat_change_time_chmod[multiprovider_directio] _____
24-Dec-2019 07:04:54
24-Dec-2019 07:04:54 env_description_abs_path = '/mnt/storage/bamboo-agent-home/xml-data/build-dir/TEST-OCAST-MDSD/onedata/tests/oneclient/environments/multiprovider_directio.yaml'
24-Dec-2019 07:04:54 hosts = {}
24-Dec-2019 07:04:54 request = <SubRequest 'env_desc' for <Function 'test_type[multiprovider_directio]'>>
24-Dec-2019 07:04:54 users = {}
24-Dec-2019 07:04:54 previous_env = {'env_path': '/mnt/storage/bamboo-agent-home/xml-data/build-dir/TEST-OCAST-MDSD/onedata/tests/oneclient/environments/multiprovider_directio.yaml'}
24-Dec-2019 07:04:54
24-Dec-2019 07:04:54     @pytest.fixture(scope='module', autouse=True)
24-Dec-2019 07:04:54     def env_desc(env_description_abs_path, hosts, request, users,
24-Dec-2019 07:04:54                  previous_env):
24-Dec-2019 07:04:54         """
24-Dec-2019 07:04:54         Sets up environment and returns environment description.
24-Dec-2019 07:04:54         """
24-Dec-2019 07:04:54         test_type = get_test_type(request)
24-Dec-2019 07:04:54         start_env = _check_if_should_start_new_env(env_description_abs_path,
24-Dec-2019 07:04:54                                                    previous_env)
24-Dec-2019 07:04:54    
24-Dec-2019 07:04:54         if test_type in ['gui']:
24-Dec-2019 07:04:54             # For now gui tests do not use onenv patch
24-Dec-2019 07:04:54             if start_env:
24-Dec-2019 07:04:54                 previous_env['started'] = start_environment(
24-Dec-2019 07:04:54                     env_description_abs_path, request, hosts, '', users,
24-Dec-2019 07:04:54                     env_description_abs_path
24-Dec-2019 07:04:54                 )
24-Dec-2019 07:04:54             return ''
24-Dec-2019 07:04:54    
24-Dec-2019 07:04:54         elif test_type == 'mixed':
24-Dec-2019 07:04:54             with open(env_description_abs_path, 'r') as env_desc_file:
24-Dec-2019 07:04:54                 env_desc = yaml.load(env_desc_file)
24-Dec-2019 07:04:54             scenario = env_desc.get('scenario')
24-Dec-2019 07:04:54             scenarios_dir_path = SCENARIO_DIRS.get(get_test_type(request))
24-Dec-2019 07:04:54             scenario_path = os.path.abspath(os.path.join(scenarios_dir_path,
24-Dec-2019 07:04:54                                                          scenario))
24-Dec-2019 07:04:54    
24-Dec-2019 07:04:54             if start_env:
24-Dec-2019 07:04:54                 previous_env['started'] = start_environment(
24-Dec-2019 07:04:54                     scenario_path, request, hosts, '', users,
24-Dec-2019 07:04:54                     env_description_abs_path
24-Dec-2019 07:04:54                 )
24-Dec-2019 07:04:54             return env_desc
24-Dec-2019 07:04:54    
24-Dec-2019 07:04:54         elif test_type in ['oneclient', 'onedata_fs', 'performance']:
24-Dec-2019 07:04:54             with open(env_description_abs_path, 'r') as env_desc_file:
24-Dec-2019 07:04:54                 env_desc = yaml.load(env_desc_file)
24-Dec-2019 07:04:54    
24-Dec-2019 07:04:54             scenario = env_desc.get('scenario')
24-Dec-2019 07:04:54             scenarios_dir_path = SCENARIO_DIRS.get(get_test_type(request))
24-Dec-2019 07:04:54             scenario_path = os.path.abspath(os.path.join(scenarios_dir_path,
24-Dec-2019 07:04:54                                                          scenario))
24-Dec-2019 07:04:54    
24-Dec-2019 07:04:54             patch = env_desc.get('patch')
24-Dec-2019 07:04:54             patch_dir_path = PATCHES_DIR.get(get_test_type(request))
24-Dec-2019 07:04:54             patch_path = os.path.join(patch_dir_path, patch)
24-Dec-2019 07:04:54             if start_env:
24-Dec-2019 07:04:54                 previous_env['started'] = start_environment(
24-Dec-2019 07:04:54                     scenario_path, request, hosts, patch_path, users,
24-Dec-2019 07:04:54 >                   env_description_abs_path
24-Dec-2019 07:04:54                 )
24-Dec-2019 07:04:54
24-Dec-2019 07:04:54 tests/conftest.py:356:
24-Dec-2019 07:04:54 _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
24-Dec-2019 07:04:54 tests/conftest.py:455: in start_environment
24-Dec-2019 07:04:54     pods_cfg = check_deployment()
24-Dec-2019 07:04:54 tests/conftest.py:484: in check_deployment
24-Dec-2019 07:04:54     status_output = yaml.load(status_output.decode('utf-8'))
24-Dec-2019 07:04:54 /usr/local/lib/python2.7/dist-packages/yaml/__init__.py:71: in load
24-Dec-2019 07:04:54     return loader.get_single_data()
24-Dec-2019 07:04:54 /usr/local/lib/python2.7/dist-packages/yaml/constructor.py:37: in get_single_data
24-Dec-2019 07:04:54     node = self.get_single_node()
24-Dec-2019 07:04:54 /usr/local/lib/python2.7/dist-packages/yaml/composer.py:36: in get_single_node
24-Dec-2019 07:04:54     document = self.compose_document()
24-Dec-2019 07:04:54 /usr/local/lib/python2.7/dist-packages/yaml/composer.py:55: in compose_document
24-Dec-2019 07:04:54     node = self.compose_node(None, None)
24-Dec-2019 07:04:54 /usr/local/lib/python2.7/dist-packages/yaml/composer.py:84: in compose_node
24-Dec-2019 07:04:54     node = self.compose_mapping_node(anchor)
24-Dec-2019 07:04:54 /usr/local/lib/python2.7/dist-packages/yaml/composer.py:127: in compose_mapping_node
24-Dec-2019 07:04:54     while not self.check_event(MappingEndEvent):
24-Dec-2019 07:04:54 /usr/local/lib/python2.7/dist-packages/yaml/parser.py:98: in check_event
24-Dec-2019 07:04:54     self.current_event = self.state()
24-Dec-2019 07:04:54 /usr/local/lib/python2.7/dist-packages/yaml/parser.py:428: in parse_block_mapping_key
24-Dec-2019 07:04:54     if self.check_token(KeyToken):
24-Dec-2019 07:04:54 /usr/local/lib/python2.7/dist-packages/yaml/scanner.py:116: in check_token
24-Dec-2019 07:04:54     self.fetch_more_tokens()
24-Dec-2019 07:04:54 /usr/local/lib/python2.7/dist-packages/yaml/scanner.py:220: in fetch_more_tokens
24-Dec-2019 07:04:54     return self.fetch_value()
24-Dec-2019 07:04:54 _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
24-Dec-2019 07:04:54
24-Dec-2019 07:04:54 self = <yaml.loader.Loader object at 0x7f6d7b18ab90>
24-Dec-2019 07:04:54
24-Dec-2019 07:04:54     def fetch_value(self):
24-Dec-2019 07:04:54    
24-Dec-2019 07:04:54         # Do we determine a simple key?
24-Dec-2019 07:04:54         if self.flow_level in self.possible_simple_keys:
24-Dec-2019 07:04:54    
24-Dec-2019 07:04:54             # Add KEY.
24-Dec-2019 07:04:54             key = self.possible_simple_keys[self.flow_level]
24-Dec-2019 07:04:54             del self.possible_simple_keys[self.flow_level]
24-Dec-2019 07:04:54             self.tokens.insert(key.token_number-self.tokens_taken,
24-Dec-2019 07:04:54                     KeyToken(key.mark, key.mark))
24-Dec-2019 07:04:54    
24-Dec-2019 07:04:54             # If this key starts a new block mapping, we need to add
24-Dec-2019 07:04:54             # BLOCK-MAPPING-START.
24-Dec-2019 07:04:54             if not self.flow_level:
24-Dec-2019 07:04:54                 if self.add_indent(key.column):
24-Dec-2019 07:04:54                     self.tokens.insert(key.token_number-self.tokens_taken,
24-Dec-2019 07:04:54                             BlockMappingStartToken(key.mark, key.mark))
24-Dec-2019 07:04:54    
24-Dec-2019 07:04:54             # There cannot be two simple keys one after another.
24-Dec-2019 07:04:54             self.allow_simple_key = False
24-Dec-2019 07:04:54    
24-Dec-2019 07:04:54         # It must be a part of a complex key.
24-Dec-2019 07:04:54         else:
24-Dec-2019 07:04:54    
24-Dec-2019 07:04:54             # Block context needs additional checks.
24-Dec-2019 07:04:54             # (Do we really need them? They will be catched by the parser
24-Dec-2019 07:04:54             # anyway.)
24-Dec-2019 07:04:54             if not self.flow_level:
24-Dec-2019 07:04:54    
24-Dec-2019 07:04:54                 # We are allowed to start a complex value if and only if
24-Dec-2019 07:04:54                 # we can start a simple key.
24-Dec-2019 07:04:54                 if not self.allow_simple_key:
24-Dec-2019 07:04:54                     raise ScannerError(None, None,
24-Dec-2019 07:04:54                             "mapping values are not allowed here",
24-Dec-2019 07:04:54 >                           self.get_mark())
24-Dec-2019 07:04:54 E                   ScannerError: mapping values are not allowed here
24-Dec-2019 07:04:54 E                     in "<unicode string>", line 1, column 90:
24-Dec-2019 07:04:54 E                        ... py:91: RequestsDependencyWarning: urllib3 (1.25.7) or chardet (3 ...
24-Dec-2019 07:04:54 E                                                            ^
24-Dec-2019 07:04:54
24-Dec-2019 07:04:54 /usr/local/lib/python2.7/dist-packages/yaml/scanner.py:576: ScannerError
24-Dec-2019 07:04:54 ========================= 11 error in 1279.84 seconds ==========================
24-Dec-2019 07:05:21 release "dev" deleted
24-Dec-2019 07:05:22 /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 07:05:22   RequestsDependencyWarning)
24-Dec-2019 07:05:22 3136d53351d5
24-Dec-2019 07:05:22 Using image: docker.onedata.org/onezone-dev:ID-9d85e52816 for onezone service
24-Dec-2019 07:05:22 Using image: docker.onedata.org/oneprovider-dev:ID-96429fd39a for oneprovider service
24-Dec-2019 07:05:22 Using image: docker.onedata.org/rest-cli:ID-48767260b4 for rest cli service
24-Dec-2019 07:05:22 Using image: docker.onedata.org/oneclient-dev:ID-f9ca716885 for oneclient service
24-Dec-2019 07:05:22 Using image: docker.onedata.org/luma:ID-578faeaeaf for LUMA service
24-Dec-2019 07:05:22 Finished task 'Run acceptance mixed tests in Chrome' with result: Success
24-Dec-2019 07:05:22 Starting task 'Parse test results' of type 'com.atlassian.bamboo.plugins.testresultparser:task.testresultparser.junit'
24-Dec-2019 07:05:22 Parsing test results under /home/bamboo/bamboo-agent-home/xml-data/build-dir/TEST-OCAST-MDSD...
24-Dec-2019 07:05:22 Failing task since 11 failing test cases were found.
24-Dec-2019 07:05:22 Finished task 'Parse test results' with result: Failed
24-Dec-2019 07:05:22 Starting task 'Pack logs' of type 'com.atlassian.bamboo.plugins.scripttask:task.builder.script'
24-Dec-2019 07:05:22
Beginning to execute external process for build 'Testing - oneclient-acceptance-src-test - multiprovider directory stat directio #17 (TEST-OCAST-MDSD-17)'
... running command line:
/bin/sh /home/bamboo/bamboo-agent-home/temp/TEST-OCAST-MDSD-17-ScriptBuildTask-7378138725506995164.sh
... in: /home/bamboo/bamboo-agent-home/xml-data/build-dir/TEST-OCAST-MDSD
... 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-MDSD-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-MDSD
bamboo_planRepository_1_name=onedata-acceptance
bamboo_buildKey=TEST-OCAST-MDSD
bamboo_shortPlanName=oneclient-acceptance-src-test
bamboo_capability_minikube=true
bamboo_planRepository_name=onedata-acceptance
bamboo_buildNumber=17
bamboo_shortJobName=multiprovider directory stat directio
bamboo_buildResultsUrl=https://bamboo.onedata.org/browse/TEST-OCAST-MDSD-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-MDSD-17-ScriptBuildTask-68603742801881178.sh
bamboo_build_commandline_com_atlassian_bamboo_plugins_scripttask_task_builder_script_6=/home/bamboo/bamboo-agent-home/temp/TEST-OCAST-MDSD-17-ScriptBuildTask-831951145887734499.sh
bamboo_shortPlanKey=OCAST
bamboo_shortJobKey=MDSD
bamboo_planRepository_revision=569cf78a555db26982dc3aafc6e34e10c259c8bf
bamboo_artifactRepoHostname=S3
bamboo_buildTimeStamp=2019-12-23T15:37:08.283Z
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-MDSD-17-ScriptBuildTask-61665868399676976.sh
bamboo_build_commandline_com_atlassian_bamboo_plugins_scripttask_task_builder_script_3=/home/bamboo/bamboo-agent-home/temp/TEST-OCAST-MDSD-17-ScriptBuildTask-4519568335677475241.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-MDSD-17-ScriptBuildTask-7202749139224546192.sh
bamboo_build_commandline_com_atlassian_bamboo_plugins_scripttask_task_builder_script_5=/bin/sh /home/bamboo/bamboo-agent-home/temp/TEST-OCAST-MDSD-17-ScriptBuildTask-5373299909627340555.sh
bamboo_repository_git_branch=develop
bamboo_buildResultKey=TEST-OCAST-MDSD-17
bamboo_repository_branch_name=develop
bamboo_buildPlanName=Testing - oneclient-acceptance-src-test - multiprovider directory stat directio
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-MDSD
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 07:05:22 cp: cannot stat 'onedata/one_env/sources_info.yaml': No such file or directory
24-Dec-2019 07:05:22 mv: cannot stat 'onedata/tests/oneclient/logs/*/*/images.yaml': Not a directory
24-Dec-2019 07:05:22 Finished task 'Pack logs' with result: Success
24-Dec-2019 07:05:22
Substituting variable: ${bamboo.OnedataFinalTasksURL} with https://raw.githubusercontent.com/onedata/bamboos/develop/final_tasks.sh
24-Dec-2019 07:05:22 Starting task 'Clear env' of type 'com.atlassian.bamboo.plugins.scripttask:task.builder.script'
24-Dec-2019 07:05:22
Beginning to execute external process for build 'Testing - oneclient-acceptance-src-test - multiprovider directory stat directio #17 (TEST-OCAST-MDSD-17)'
... running command line:
/bin/sh /home/bamboo/bamboo-agent-home/temp/TEST-OCAST-MDSD-17-ScriptBuildTask-3407163388608188626.sh
... in: /home/bamboo/bamboo-agent-home/xml-data/build-dir/TEST-OCAST-MDSD
... 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-MDSD-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-MDSD
bamboo_planRepository_1_name=onedata-acceptance
bamboo_buildKey=TEST-OCAST-MDSD
bamboo_shortPlanName=oneclient-acceptance-src-test
bamboo_capability_minikube=true
bamboo_planRepository_name=onedata-acceptance
bamboo_buildNumber=17
bamboo_shortJobName=multiprovider directory stat directio
bamboo_buildResultsUrl=https://bamboo.onedata.org/browse/TEST-OCAST-MDSD-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-MDSD-17-ScriptBuildTask-68603742801881178.sh
bamboo_build_commandline_com_atlassian_bamboo_plugins_scripttask_task_builder_script_6=/home/bamboo/bamboo-agent-home/temp/TEST-OCAST-MDSD-17-ScriptBuildTask-831951145887734499.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-MDSD-17-ScriptBuildTask-7378138725506995164.sh
bamboo_shortJobKey=MDSD
bamboo_planRepository_revision=569cf78a555db26982dc3aafc6e34e10c259c8bf
bamboo_artifactRepoHostname=S3
bamboo_buildTimeStamp=2019-12-23T15:37:08.283Z
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-MDSD-17-ScriptBuildTask-61665868399676976.sh
bamboo_build_commandline_com_atlassian_bamboo_plugins_scripttask_task_builder_script_3=/home/bamboo/bamboo-agent-home/temp/TEST-OCAST-MDSD-17-ScriptBuildTask-4519568335677475241.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-MDSD-17-ScriptBuildTask-7202749139224546192.sh
bamboo_build_commandline_com_atlassian_bamboo_plugins_scripttask_task_builder_script_5=/bin/sh /home/bamboo/bamboo-agent-home/temp/TEST-OCAST-MDSD-17-ScriptBuildTask-5373299909627340555.sh
bamboo_repository_git_branch=develop
bamboo_buildResultKey=TEST-OCAST-MDSD-17
bamboo_repository_branch_name=develop
bamboo_buildPlanName=Testing - oneclient-acceptance-src-test - multiprovider directory stat directio
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-MDSD
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 07:05:23   % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
24-Dec-2019 07:05:23                                  Dload  Upload   Total   Spent    Left  Speed
24-Dec-2019 07:05:23
24-Dec-2019 07:05:24   0     0    0     0    0     0      0      0 --:--:-- --:--:-- --:--:--     0
24-Dec-2019 07:05:24   0     0    0     0    0     0      0      0 --:--:--  0:00:01 --:--:--     0
24-Dec-2019 07:05:24 100  4419  100  4419    0     0   3119      0  0:00:01  0:00:01 --:--:--  3120
24-Dec-2019 07:05:24 Clearing /tmp/onedata and /home/bamboo/.one-env
24-Dec-2019 07:05:25 Cleaning helm deployments
24-Dec-2019 07:05:26 Cleanining pods
24-Dec-2019 07:05:29 Cleaning kube persistant volumes
24-Dec-2019 07:05:30 pod "dev-oneprovider-krakow-ready-check-zp7zx" deleted
24-Dec-2019 07:05:40 Error from server (NotFound): pods "dev-oneprovider-paris-ready-check-w6m5x" not found
24-Dec-2019 07:05:40 Error from server (NotFound): pods "dev-onezone-ready-check-r24w5" not found
24-Dec-2019 07:05:40 Cleaning dockswift container
24-Dec-2019 07:05:40 Cleaning docker containers
24-Dec-2019 07:05:42 Stalled docker containers to remove:
24-Dec-2019 07:05:42 567b61342923 dd2004e0210f ea5b6709a016 8122713e43c7 7122c98e368f f600e81b4387 6327602097f0 1038c38aadc5 898cb1b05512 df4c66ea6b09 169c5b2a0652
24-Dec-2019 07:05:42 Removing stalled docker containers
24-Dec-2019 07:05:42 Error response from daemon: Cannot kill container: 567b61342923: Container 567b613429234459e58c821337ecc8e1bd3af4d8950ff31938d51900ffcb1dc9 is not running
24-Dec-2019 07:05:42 567b61342923
24-Dec-2019 07:05:42 Error response from daemon: Cannot kill container: dd2004e0210f: Container dd2004e0210f33f50a1af65fce9406b68d70e9f922099fda14ffbe8580c3dfbf is not running
24-Dec-2019 07:05:42 dd2004e0210f
24-Dec-2019 07:05:42 Error response from daemon: Cannot kill container: ea5b6709a016: Container ea5b6709a016c9783ff92a52c300ca4e3d1becfe7539df8d174ede1713c7d598 is not running
24-Dec-2019 07:05:42 ea5b6709a016
24-Dec-2019 07:05:42 Error response from daemon: Cannot kill container: 8122713e43c7: Container 8122713e43c79e6db0740c7c34e81bf9d44f793518dca259f3cb7ef63873268e is not running
24-Dec-2019 07:05:42 8122713e43c7
24-Dec-2019 07:05:42 Error response from daemon: Cannot kill container: 7122c98e368f: Container 7122c98e368fc3ae33d784410fabd22e61a736eb91bdb33c32776af569a5c0af is not running
24-Dec-2019 07:05:42 7122c98e368f
24-Dec-2019 07:05:42 Error response from daemon: Cannot kill container: f600e81b4387: Container f600e81b4387fd06fb7fedff569c53aafdc2d4a5b93712310db289b80ee8d0fc is not running
24-Dec-2019 07:05:42 f600e81b4387
24-Dec-2019 07:05:42 Error response from daemon: Cannot kill container: 6327602097f0: Container 6327602097f0033f22b791e7f15262c0223a481dad20d706da794703e91913cd is not running
24-Dec-2019 07:05:43 6327602097f0
24-Dec-2019 07:05:43 Error response from daemon: Cannot kill container: 1038c38aadc5: Container 1038c38aadc585aae5615673e6e01221698f15cdf8455856473292d9a1ba7acd is not running
24-Dec-2019 07:05:43 1038c38aadc5
24-Dec-2019 07:05:43 Error response from daemon: Cannot kill container: 898cb1b05512: Container 898cb1b05512c5542fbc1c59d3941f686e371eac911ee4042b600b3b24c0b546 is not running
24-Dec-2019 07:05:43 898cb1b05512
24-Dec-2019 07:05:43 Error response from daemon: Cannot kill container: df4c66ea6b09: Container df4c66ea6b091dd33d66bdae83a4798b5692b2dc704b8232571a0077f1dc3550 is not running
24-Dec-2019 07:05:43 df4c66ea6b09
24-Dec-2019 07:05:43 Error response from daemon: Cannot kill container: 169c5b2a0652: Container 169c5b2a0652aecbe173fe48315213fa397b216b6cc46001bf82d7fd07cae58b is not running
24-Dec-2019 07:05:43 169c5b2a0652
24-Dec-2019 07:05:43 Stalled docker volumes to remove:
24-Dec-2019 07:05:43
24-Dec-2019 07:05:43 Removing stalled docker volumes
24-Dec-2019 07:05:43 Removing stalled loopdevices
24-Dec-2019 07:05:44 Done
24-Dec-2019 07:05:44 Finished task 'Clear env' with result: Success
24-Dec-2019 07:05:44 Running post build plugin 'Docker Container Cleanup'
24-Dec-2019 07:05:44 Running post build plugin 'NCover Results Collector'
24-Dec-2019 07:05:44 Running post build plugin 'Clover Results Collector'
24-Dec-2019 07:05:44 Running post build plugin 'npm Cache Cleanup'
24-Dec-2019 07:05:44 Running post build plugin 'Artifact Copier'
24-Dec-2019 07:05:44 Publishing an artifact: test_logs.tar.gz
24-Dec-2019 07:05:44 Finished publishing of artifact Non required job artifact: [test_logs.tar.gz], pattern: [test_logs.tar.gz] in 9.561 ms
24-Dec-2019 07:05:47 Successfully removed working directory at '/home/bamboo/bamboo-agent-home/xml-data/build-dir/TEST-OCAST-MDSD'
24-Dec-2019 07:05:47 Finalising the build...
24-Dec-2019 07:05:47 Stopping timer.
24-Dec-2019 07:05:47 Build TEST-OCAST-MDSD-17 completed.
24-Dec-2019 07:05:47 Running on server: post build plugin 'NCover Results Collector'
24-Dec-2019 07:05:47 Running on server: post build plugin 'Build Hanging Detection Configuration'
24-Dec-2019 07:05:47 Running on server: post build plugin 'Clover Delta Calculator'
24-Dec-2019 07:05:47 Running on server: post build plugin 'Maven Dependencies Postprocessor'
24-Dec-2019 07:05:47 All post build plugins have finished
24-Dec-2019 07:05:47 Generating build results summary...
24-Dec-2019 07:05:47 Saving build results to disk...
24-Dec-2019 07:05:47 Logging substituted variables...
24-Dec-2019 07:05:47 Indexing build results...
24-Dec-2019 07:05:47 Finished building TEST-OCAST-MDSD-17.