Build: #17 failed

Job: regular file stat directio failed

Build log

The build generated 2,526 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 12:36:06     def env_desc(env_description_abs_path, hosts, request, users,
24-Dec-2019 12:36:06                  previous_env):
24-Dec-2019 12:36:06         """
24-Dec-2019 12:36:06         Sets up environment and returns environment description.
24-Dec-2019 12:36:06         """
24-Dec-2019 12:36:06         test_type = get_test_type(request)
24-Dec-2019 12:36:06         start_env = _check_if_should_start_new_env(env_description_abs_path,
24-Dec-2019 12:36:06                                                    previous_env)
24-Dec-2019 12:36:06    
24-Dec-2019 12:36:06         if test_type in ['gui']:
24-Dec-2019 12:36:06             # For now gui tests do not use onenv patch
24-Dec-2019 12:36:06             if start_env:
24-Dec-2019 12:36:06                 previous_env['started'] = start_environment(
24-Dec-2019 12:36:06                     env_description_abs_path, request, hosts, '', users,
24-Dec-2019 12:36:06                     env_description_abs_path
24-Dec-2019 12:36:06                 )
24-Dec-2019 12:36:06             return ''
24-Dec-2019 12:36:06    
24-Dec-2019 12:36:06         elif test_type == 'mixed':
24-Dec-2019 12:36:06             with open(env_description_abs_path, 'r') as env_desc_file:
24-Dec-2019 12:36:06                 env_desc = yaml.load(env_desc_file)
24-Dec-2019 12:36:06             scenario = env_desc.get('scenario')
24-Dec-2019 12:36:06             scenarios_dir_path = SCENARIO_DIRS.get(get_test_type(request))
24-Dec-2019 12:36:06             scenario_path = os.path.abspath(os.path.join(scenarios_dir_path,
24-Dec-2019 12:36:06                                                          scenario))
24-Dec-2019 12:36:06    
24-Dec-2019 12:36:06             if start_env:
24-Dec-2019 12:36:06                 previous_env['started'] = start_environment(
24-Dec-2019 12:36:06                     scenario_path, request, hosts, '', users,
24-Dec-2019 12:36:06                     env_description_abs_path
24-Dec-2019 12:36:06                 )
24-Dec-2019 12:36:06             return env_desc
24-Dec-2019 12:36:06    
24-Dec-2019 12:36:06         elif test_type in ['oneclient', 'onedata_fs', 'performance']:
24-Dec-2019 12:36:06             with open(env_description_abs_path, 'r') as env_desc_file:
24-Dec-2019 12:36:06                 env_desc = yaml.load(env_desc_file)
24-Dec-2019 12:36:06    
24-Dec-2019 12:36:06             scenario = env_desc.get('scenario')
24-Dec-2019 12:36:06             scenarios_dir_path = SCENARIO_DIRS.get(get_test_type(request))
24-Dec-2019 12:36:06             scenario_path = os.path.abspath(os.path.join(scenarios_dir_path,
24-Dec-2019 12:36:06                                                          scenario))
24-Dec-2019 12:36:06    
24-Dec-2019 12:36:06             patch = env_desc.get('patch')
24-Dec-2019 12:36:06             patch_dir_path = PATCHES_DIR.get(get_test_type(request))
24-Dec-2019 12:36:06             patch_path = os.path.join(patch_dir_path, patch)
24-Dec-2019 12:36:06             if start_env:
24-Dec-2019 12:36:06                 previous_env['started'] = start_environment(
24-Dec-2019 12:36:06                     scenario_path, request, hosts, patch_path, users,
24-Dec-2019 12:36:06 >                   env_description_abs_path
24-Dec-2019 12:36:06                 )
24-Dec-2019 12:36:06
24-Dec-2019 12:36:06 tests/conftest.py:356:
24-Dec-2019 12:36:06 _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
24-Dec-2019 12:36:06 tests/conftest.py:455: in start_environment
24-Dec-2019 12:36:06     pods_cfg = check_deployment()
24-Dec-2019 12:36:06 tests/conftest.py:484: in check_deployment
24-Dec-2019 12:36:06     status_output = yaml.load(status_output.decode('utf-8'))
24-Dec-2019 12:36:06 /usr/local/lib/python2.7/dist-packages/yaml/__init__.py:71: in load
24-Dec-2019 12:36:06     return loader.get_single_data()
24-Dec-2019 12:36:06 /usr/local/lib/python2.7/dist-packages/yaml/constructor.py:37: in get_single_data
24-Dec-2019 12:36:06     node = self.get_single_node()
24-Dec-2019 12:36:06 /usr/local/lib/python2.7/dist-packages/yaml/composer.py:36: in get_single_node
24-Dec-2019 12:36:06     document = self.compose_document()
24-Dec-2019 12:36:06 /usr/local/lib/python2.7/dist-packages/yaml/composer.py:55: in compose_document
24-Dec-2019 12:36:06     node = self.compose_node(None, None)
24-Dec-2019 12:36:06 /usr/local/lib/python2.7/dist-packages/yaml/composer.py:84: in compose_node
24-Dec-2019 12:36:06     node = self.compose_mapping_node(anchor)
24-Dec-2019 12:36:06 /usr/local/lib/python2.7/dist-packages/yaml/composer.py:127: in compose_mapping_node
24-Dec-2019 12:36:06     while not self.check_event(MappingEndEvent):
24-Dec-2019 12:36:06 /usr/local/lib/python2.7/dist-packages/yaml/parser.py:98: in check_event
24-Dec-2019 12:36:06     self.current_event = self.state()
24-Dec-2019 12:36:06 /usr/local/lib/python2.7/dist-packages/yaml/parser.py:428: in parse_block_mapping_key
24-Dec-2019 12:36:06     if self.check_token(KeyToken):
24-Dec-2019 12:36:06 /usr/local/lib/python2.7/dist-packages/yaml/scanner.py:116: in check_token
24-Dec-2019 12:36:06     self.fetch_more_tokens()
24-Dec-2019 12:36:06 /usr/local/lib/python2.7/dist-packages/yaml/scanner.py:220: in fetch_more_tokens
24-Dec-2019 12:36:06     return self.fetch_value()
24-Dec-2019 12:36:06 _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
24-Dec-2019 12:36:06
24-Dec-2019 12:36:06 self = <yaml.loader.Loader object at 0x7f1478fd0810>
24-Dec-2019 12:36:06
24-Dec-2019 12:36:06     def fetch_value(self):
24-Dec-2019 12:36:06    
24-Dec-2019 12:36:06         # Do we determine a simple key?
24-Dec-2019 12:36:06         if self.flow_level in self.possible_simple_keys:
24-Dec-2019 12:36:06    
24-Dec-2019 12:36:06             # Add KEY.
24-Dec-2019 12:36:06             key = self.possible_simple_keys[self.flow_level]
24-Dec-2019 12:36:06             del self.possible_simple_keys[self.flow_level]
24-Dec-2019 12:36:06             self.tokens.insert(key.token_number-self.tokens_taken,
24-Dec-2019 12:36:06                     KeyToken(key.mark, key.mark))
24-Dec-2019 12:36:06    
24-Dec-2019 12:36:06             # If this key starts a new block mapping, we need to add
24-Dec-2019 12:36:06             # BLOCK-MAPPING-START.
24-Dec-2019 12:36:06             if not self.flow_level:
24-Dec-2019 12:36:06                 if self.add_indent(key.column):
24-Dec-2019 12:36:06                     self.tokens.insert(key.token_number-self.tokens_taken,
24-Dec-2019 12:36:06                             BlockMappingStartToken(key.mark, key.mark))
24-Dec-2019 12:36:06    
24-Dec-2019 12:36:06             # There cannot be two simple keys one after another.
24-Dec-2019 12:36:06             self.allow_simple_key = False
24-Dec-2019 12:36:06    
24-Dec-2019 12:36:06         # It must be a part of a complex key.
24-Dec-2019 12:36:06         else:
24-Dec-2019 12:36:06    
24-Dec-2019 12:36:06             # Block context needs additional checks.
24-Dec-2019 12:36:06             # (Do we really need them? They will be catched by the parser
24-Dec-2019 12:36:06             # anyway.)
24-Dec-2019 12:36:06             if not self.flow_level:
24-Dec-2019 12:36:06    
24-Dec-2019 12:36:06                 # We are allowed to start a complex value if and only if
24-Dec-2019 12:36:06                 # we can start a simple key.
24-Dec-2019 12:36:06                 if not self.allow_simple_key:
24-Dec-2019 12:36:06                     raise ScannerError(None, None,
24-Dec-2019 12:36:06                             "mapping values are not allowed here",
24-Dec-2019 12:36:06 >                           self.get_mark())
24-Dec-2019 12:36:06 E                   ScannerError: mapping values are not allowed here
24-Dec-2019 12:36:06 E                     in "<unicode string>", line 1, column 90:
24-Dec-2019 12:36:06 E                        ... py:91: RequestsDependencyWarning: urllib3 (1.25.7) or chardet (3 ...
24-Dec-2019 12:36:06 E                                                            ^
24-Dec-2019 12:36:06
24-Dec-2019 12:36:06 /usr/local/lib/python2.7/dist-packages/yaml/scanner.py:576: ScannerError
24-Dec-2019 12:36:06 ____ ERROR at setup of test_timestamp[singleprovider_singleclient_directio] ____
24-Dec-2019 12:36:06
24-Dec-2019 12:36:06 env_description_abs_path = '/mnt/storage/bamboo-agent-home/xml-data/build-dir/TEST-OCAST-RFSD/onedata/tests/oneclient/environments/singleprovider_singleclient_directio.yaml'
24-Dec-2019 12:36:06 hosts = {}
24-Dec-2019 12:36:06 request = <SubRequest 'env_desc' for <Function 'test_type_empty[singleprovider_singleclient_directio]'>>
24-Dec-2019 12:36:06 users = {}
24-Dec-2019 12:36:06 previous_env = {'env_path': '/mnt/storage/bamboo-agent-home/xml-data/build-dir/TEST-OCAST-RFSD/onedata/tests/oneclient/environments/singleprovider_singleclient_directio.yaml'}
24-Dec-2019 12:36:06
24-Dec-2019 12:36:06     @pytest.fixture(scope='module', autouse=True)
24-Dec-2019 12:36:06     def env_desc(env_description_abs_path, hosts, request, users,
24-Dec-2019 12:36:06                  previous_env):
24-Dec-2019 12:36:06         """
24-Dec-2019 12:36:06         Sets up environment and returns environment description.
24-Dec-2019 12:36:06         """
24-Dec-2019 12:36:06         test_type = get_test_type(request)
24-Dec-2019 12:36:06         start_env = _check_if_should_start_new_env(env_description_abs_path,
24-Dec-2019 12:36:06                                                    previous_env)
24-Dec-2019 12:36:06    
24-Dec-2019 12:36:06         if test_type in ['gui']:
24-Dec-2019 12:36:06             # For now gui tests do not use onenv patch
24-Dec-2019 12:36:06             if start_env:
24-Dec-2019 12:36:06                 previous_env['started'] = start_environment(
24-Dec-2019 12:36:06                     env_description_abs_path, request, hosts, '', users,
24-Dec-2019 12:36:06                     env_description_abs_path
24-Dec-2019 12:36:06                 )
24-Dec-2019 12:36:06             return ''
24-Dec-2019 12:36:06    
24-Dec-2019 12:36:06         elif test_type == 'mixed':
24-Dec-2019 12:36:06             with open(env_description_abs_path, 'r') as env_desc_file:
24-Dec-2019 12:36:06                 env_desc = yaml.load(env_desc_file)
24-Dec-2019 12:36:06             scenario = env_desc.get('scenario')
24-Dec-2019 12:36:06             scenarios_dir_path = SCENARIO_DIRS.get(get_test_type(request))
24-Dec-2019 12:36:06             scenario_path = os.path.abspath(os.path.join(scenarios_dir_path,
24-Dec-2019 12:36:06                                                          scenario))
24-Dec-2019 12:36:06    
24-Dec-2019 12:36:06             if start_env:
24-Dec-2019 12:36:06                 previous_env['started'] = start_environment(
24-Dec-2019 12:36:06                     scenario_path, request, hosts, '', users,
24-Dec-2019 12:36:06                     env_description_abs_path
24-Dec-2019 12:36:06                 )
24-Dec-2019 12:36:06             return env_desc
24-Dec-2019 12:36:06    
24-Dec-2019 12:36:06         elif test_type in ['oneclient', 'onedata_fs', 'performance']:
24-Dec-2019 12:36:06             with open(env_description_abs_path, 'r') as env_desc_file:
24-Dec-2019 12:36:06                 env_desc = yaml.load(env_desc_file)
24-Dec-2019 12:36:06    
24-Dec-2019 12:36:06             scenario = env_desc.get('scenario')
24-Dec-2019 12:36:06             scenarios_dir_path = SCENARIO_DIRS.get(get_test_type(request))
24-Dec-2019 12:36:06             scenario_path = os.path.abspath(os.path.join(scenarios_dir_path,
24-Dec-2019 12:36:06                                                          scenario))
24-Dec-2019 12:36:06    
24-Dec-2019 12:36:06             patch = env_desc.get('patch')
24-Dec-2019 12:36:06             patch_dir_path = PATCHES_DIR.get(get_test_type(request))
24-Dec-2019 12:36:06             patch_path = os.path.join(patch_dir_path, patch)
24-Dec-2019 12:36:06             if start_env:
24-Dec-2019 12:36:06                 previous_env['started'] = start_environment(
24-Dec-2019 12:36:07                     scenario_path, request, hosts, patch_path, users,
24-Dec-2019 12:36:07 >                   env_description_abs_path
24-Dec-2019 12:36:07                 )
24-Dec-2019 12:36:07
24-Dec-2019 12:36:07 tests/conftest.py:356:
24-Dec-2019 12:36:07 _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
24-Dec-2019 12:36:07 tests/conftest.py:455: in start_environment
24-Dec-2019 12:36:07     pods_cfg = check_deployment()
24-Dec-2019 12:36:07 tests/conftest.py:484: in check_deployment
24-Dec-2019 12:36:07     status_output = yaml.load(status_output.decode('utf-8'))
24-Dec-2019 12:36:07 /usr/local/lib/python2.7/dist-packages/yaml/__init__.py:71: in load
24-Dec-2019 12:36:07     return loader.get_single_data()
24-Dec-2019 12:36:07 /usr/local/lib/python2.7/dist-packages/yaml/constructor.py:37: in get_single_data
24-Dec-2019 12:36:07     node = self.get_single_node()
24-Dec-2019 12:36:07 /usr/local/lib/python2.7/dist-packages/yaml/composer.py:36: in get_single_node
24-Dec-2019 12:36:07     document = self.compose_document()
24-Dec-2019 12:36:07 /usr/local/lib/python2.7/dist-packages/yaml/composer.py:55: in compose_document
24-Dec-2019 12:36:07     node = self.compose_node(None, None)
24-Dec-2019 12:36:07 /usr/local/lib/python2.7/dist-packages/yaml/composer.py:84: in compose_node
24-Dec-2019 12:36:07     node = self.compose_mapping_node(anchor)
24-Dec-2019 12:36:07 /usr/local/lib/python2.7/dist-packages/yaml/composer.py:127: in compose_mapping_node
24-Dec-2019 12:36:07     while not self.check_event(MappingEndEvent):
24-Dec-2019 12:36:07 /usr/local/lib/python2.7/dist-packages/yaml/parser.py:98: in check_event
24-Dec-2019 12:36:07     self.current_event = self.state()
24-Dec-2019 12:36:07 /usr/local/lib/python2.7/dist-packages/yaml/parser.py:428: in parse_block_mapping_key
24-Dec-2019 12:36:07     if self.check_token(KeyToken):
24-Dec-2019 12:36:07 /usr/local/lib/python2.7/dist-packages/yaml/scanner.py:116: in check_token
24-Dec-2019 12:36:07     self.fetch_more_tokens()
24-Dec-2019 12:36:07 /usr/local/lib/python2.7/dist-packages/yaml/scanner.py:220: in fetch_more_tokens
24-Dec-2019 12:36:07     return self.fetch_value()
24-Dec-2019 12:36:07 _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
24-Dec-2019 12:36:07
24-Dec-2019 12:36:07 self = <yaml.loader.Loader object at 0x7f1478fd0810>
24-Dec-2019 12:36:07
24-Dec-2019 12:36:07     def fetch_value(self):
24-Dec-2019 12:36:07    
24-Dec-2019 12:36:07         # Do we determine a simple key?
24-Dec-2019 12:36:07         if self.flow_level in self.possible_simple_keys:
24-Dec-2019 12:36:07    
24-Dec-2019 12:36:07             # Add KEY.
24-Dec-2019 12:36:07             key = self.possible_simple_keys[self.flow_level]
24-Dec-2019 12:36:07             del self.possible_simple_keys[self.flow_level]
24-Dec-2019 12:36:07             self.tokens.insert(key.token_number-self.tokens_taken,
24-Dec-2019 12:36:07                     KeyToken(key.mark, key.mark))
24-Dec-2019 12:36:07    
24-Dec-2019 12:36:07             # If this key starts a new block mapping, we need to add
24-Dec-2019 12:36:07             # BLOCK-MAPPING-START.
24-Dec-2019 12:36:07             if not self.flow_level:
24-Dec-2019 12:36:07                 if self.add_indent(key.column):
24-Dec-2019 12:36:07                     self.tokens.insert(key.token_number-self.tokens_taken,
24-Dec-2019 12:36:07                             BlockMappingStartToken(key.mark, key.mark))
24-Dec-2019 12:36:07    
24-Dec-2019 12:36:07             # There cannot be two simple keys one after another.
24-Dec-2019 12:36:07             self.allow_simple_key = False
24-Dec-2019 12:36:07    
24-Dec-2019 12:36:07         # It must be a part of a complex key.
24-Dec-2019 12:36:07         else:
24-Dec-2019 12:36:07    
24-Dec-2019 12:36:07             # Block context needs additional checks.
24-Dec-2019 12:36:07             # (Do we really need them? They will be catched by the parser
24-Dec-2019 12:36:07             # anyway.)
24-Dec-2019 12:36:07             if not self.flow_level:
24-Dec-2019 12:36:07    
24-Dec-2019 12:36:07                 # We are allowed to start a complex value if and only if
24-Dec-2019 12:36:07                 # we can start a simple key.
24-Dec-2019 12:36:07                 if not self.allow_simple_key:
24-Dec-2019 12:36:07                     raise ScannerError(None, None,
24-Dec-2019 12:36:07                             "mapping values are not allowed here",
24-Dec-2019 12:36:07 >                           self.get_mark())
24-Dec-2019 12:36:07 E                   ScannerError: mapping values are not allowed here
24-Dec-2019 12:36:07 E                     in "<unicode string>", line 1, column 90:
24-Dec-2019 12:36:07 E                        ... py:91: RequestsDependencyWarning: urllib3 (1.25.7) or chardet (3 ...
24-Dec-2019 12:36:07 E                                                            ^
24-Dec-2019 12:36:07
24-Dec-2019 12:36:07 /usr/local/lib/python2.7/dist-packages/yaml/scanner.py:576: ScannerError
24-Dec-2019 12:36:07 _ ERROR at setup of test_update_timestamp[singleprovider_singleclient_directio] _
24-Dec-2019 12:36:07
24-Dec-2019 12:36:07 env_description_abs_path = '/mnt/storage/bamboo-agent-home/xml-data/build-dir/TEST-OCAST-RFSD/onedata/tests/oneclient/environments/singleprovider_singleclient_directio.yaml'
24-Dec-2019 12:36:07 hosts = {}
24-Dec-2019 12:36:07 request = <SubRequest 'env_desc' for <Function 'test_type_empty[singleprovider_singleclient_directio]'>>
24-Dec-2019 12:36:07 users = {}
24-Dec-2019 12:36:07 previous_env = {'env_path': '/mnt/storage/bamboo-agent-home/xml-data/build-dir/TEST-OCAST-RFSD/onedata/tests/oneclient/environments/singleprovider_singleclient_directio.yaml'}
24-Dec-2019 12:36:07
24-Dec-2019 12:36:07     @pytest.fixture(scope='module', autouse=True)
24-Dec-2019 12:36:07     def env_desc(env_description_abs_path, hosts, request, users,
24-Dec-2019 12:36:07                  previous_env):
24-Dec-2019 12:36:07         """
24-Dec-2019 12:36:07         Sets up environment and returns environment description.
24-Dec-2019 12:36:07         """
24-Dec-2019 12:36:07         test_type = get_test_type(request)
24-Dec-2019 12:36:07         start_env = _check_if_should_start_new_env(env_description_abs_path,
24-Dec-2019 12:36:07                                                    previous_env)
24-Dec-2019 12:36:07    
24-Dec-2019 12:36:07         if test_type in ['gui']:
24-Dec-2019 12:36:07             # For now gui tests do not use onenv patch
24-Dec-2019 12:36:07             if start_env:
24-Dec-2019 12:36:07                 previous_env['started'] = start_environment(
24-Dec-2019 12:36:07                     env_description_abs_path, request, hosts, '', users,
24-Dec-2019 12:36:07                     env_description_abs_path
24-Dec-2019 12:36:07                 )
24-Dec-2019 12:36:07             return ''
24-Dec-2019 12:36:07    
24-Dec-2019 12:36:07         elif test_type == 'mixed':
24-Dec-2019 12:36:07             with open(env_description_abs_path, 'r') as env_desc_file:
24-Dec-2019 12:36:07                 env_desc = yaml.load(env_desc_file)
24-Dec-2019 12:36:07             scenario = env_desc.get('scenario')
24-Dec-2019 12:36:07             scenarios_dir_path = SCENARIO_DIRS.get(get_test_type(request))
24-Dec-2019 12:36:07             scenario_path = os.path.abspath(os.path.join(scenarios_dir_path,
24-Dec-2019 12:36:07                                                          scenario))
24-Dec-2019 12:36:07    
24-Dec-2019 12:36:07             if start_env:
24-Dec-2019 12:36:07                 previous_env['started'] = start_environment(
24-Dec-2019 12:36:07                     scenario_path, request, hosts, '', users,
24-Dec-2019 12:36:07                     env_description_abs_path
24-Dec-2019 12:36:07                 )
24-Dec-2019 12:36:07             return env_desc
24-Dec-2019 12:36:07    
24-Dec-2019 12:36:07         elif test_type in ['oneclient', 'onedata_fs', 'performance']:
24-Dec-2019 12:36:07             with open(env_description_abs_path, 'r') as env_desc_file:
24-Dec-2019 12:36:07                 env_desc = yaml.load(env_desc_file)
24-Dec-2019 12:36:07    
24-Dec-2019 12:36:07             scenario = env_desc.get('scenario')
24-Dec-2019 12:36:07             scenarios_dir_path = SCENARIO_DIRS.get(get_test_type(request))
24-Dec-2019 12:36:07             scenario_path = os.path.abspath(os.path.join(scenarios_dir_path,
24-Dec-2019 12:36:07                                                          scenario))
24-Dec-2019 12:36:07    
24-Dec-2019 12:36:07             patch = env_desc.get('patch')
24-Dec-2019 12:36:07             patch_dir_path = PATCHES_DIR.get(get_test_type(request))
24-Dec-2019 12:36:07             patch_path = os.path.join(patch_dir_path, patch)
24-Dec-2019 12:36:07             if start_env:
24-Dec-2019 12:36:07                 previous_env['started'] = start_environment(
24-Dec-2019 12:36:07                     scenario_path, request, hosts, patch_path, users,
24-Dec-2019 12:36:07 >                   env_description_abs_path
24-Dec-2019 12:36:07                 )
24-Dec-2019 12:36:07
24-Dec-2019 12:36:07 tests/conftest.py:356:
24-Dec-2019 12:36:07 _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
24-Dec-2019 12:36:07 tests/conftest.py:455: in start_environment
24-Dec-2019 12:36:07     pods_cfg = check_deployment()
24-Dec-2019 12:36:07 tests/conftest.py:484: in check_deployment
24-Dec-2019 12:36:07     status_output = yaml.load(status_output.decode('utf-8'))
24-Dec-2019 12:36:07 /usr/local/lib/python2.7/dist-packages/yaml/__init__.py:71: in load
24-Dec-2019 12:36:07     return loader.get_single_data()
24-Dec-2019 12:36:07 /usr/local/lib/python2.7/dist-packages/yaml/constructor.py:37: in get_single_data
24-Dec-2019 12:36:07     node = self.get_single_node()
24-Dec-2019 12:36:07 /usr/local/lib/python2.7/dist-packages/yaml/composer.py:36: in get_single_node
24-Dec-2019 12:36:07     document = self.compose_document()
24-Dec-2019 12:36:07 /usr/local/lib/python2.7/dist-packages/yaml/composer.py:55: in compose_document
24-Dec-2019 12:36:07     node = self.compose_node(None, None)
24-Dec-2019 12:36:07 /usr/local/lib/python2.7/dist-packages/yaml/composer.py:84: in compose_node
24-Dec-2019 12:36:07     node = self.compose_mapping_node(anchor)
24-Dec-2019 12:36:07 /usr/local/lib/python2.7/dist-packages/yaml/composer.py:127: in compose_mapping_node
24-Dec-2019 12:36:07     while not self.check_event(MappingEndEvent):
24-Dec-2019 12:36:07 /usr/local/lib/python2.7/dist-packages/yaml/parser.py:98: in check_event
24-Dec-2019 12:36:07     self.current_event = self.state()
24-Dec-2019 12:36:07 /usr/local/lib/python2.7/dist-packages/yaml/parser.py:428: in parse_block_mapping_key
24-Dec-2019 12:36:07     if self.check_token(KeyToken):
24-Dec-2019 12:36:07 /usr/local/lib/python2.7/dist-packages/yaml/scanner.py:116: in check_token
24-Dec-2019 12:36:07     self.fetch_more_tokens()
24-Dec-2019 12:36:07 /usr/local/lib/python2.7/dist-packages/yaml/scanner.py:220: in fetch_more_tokens
24-Dec-2019 12:36:07     return self.fetch_value()
24-Dec-2019 12:36:07 _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
24-Dec-2019 12:36:07
24-Dec-2019 12:36:07 self = <yaml.loader.Loader object at 0x7f1478fd0810>
24-Dec-2019 12:36:07
24-Dec-2019 12:36:07     def fetch_value(self):
24-Dec-2019 12:36:07    
24-Dec-2019 12:36:07         # Do we determine a simple key?
24-Dec-2019 12:36:07         if self.flow_level in self.possible_simple_keys:
24-Dec-2019 12:36:07    
24-Dec-2019 12:36:07             # Add KEY.
24-Dec-2019 12:36:07             key = self.possible_simple_keys[self.flow_level]
24-Dec-2019 12:36:07             del self.possible_simple_keys[self.flow_level]
24-Dec-2019 12:36:07             self.tokens.insert(key.token_number-self.tokens_taken,
24-Dec-2019 12:36:07                     KeyToken(key.mark, key.mark))
24-Dec-2019 12:36:07    
24-Dec-2019 12:36:07             # If this key starts a new block mapping, we need to add
24-Dec-2019 12:36:07             # BLOCK-MAPPING-START.
24-Dec-2019 12:36:07             if not self.flow_level:
24-Dec-2019 12:36:07                 if self.add_indent(key.column):
24-Dec-2019 12:36:07                     self.tokens.insert(key.token_number-self.tokens_taken,
24-Dec-2019 12:36:07                             BlockMappingStartToken(key.mark, key.mark))
24-Dec-2019 12:36:07    
24-Dec-2019 12:36:07             # There cannot be two simple keys one after another.
24-Dec-2019 12:36:07             self.allow_simple_key = False
24-Dec-2019 12:36:07    
24-Dec-2019 12:36:07         # It must be a part of a complex key.
24-Dec-2019 12:36:07         else:
24-Dec-2019 12:36:07    
24-Dec-2019 12:36:07             # Block context needs additional checks.
24-Dec-2019 12:36:07             # (Do we really need them? They will be catched by the parser
24-Dec-2019 12:36:07             # anyway.)
24-Dec-2019 12:36:07             if not self.flow_level:
24-Dec-2019 12:36:07    
24-Dec-2019 12:36:07                 # We are allowed to start a complex value if and only if
24-Dec-2019 12:36:07                 # we can start a simple key.
24-Dec-2019 12:36:07                 if not self.allow_simple_key:
24-Dec-2019 12:36:07                     raise ScannerError(None, None,
24-Dec-2019 12:36:07                             "mapping values are not allowed here",
24-Dec-2019 12:36:07 >                           self.get_mark())
24-Dec-2019 12:36:07 E                   ScannerError: mapping values are not allowed here
24-Dec-2019 12:36:07 E                     in "<unicode string>", line 1, column 90:
24-Dec-2019 12:36:07 E                        ... py:91: RequestsDependencyWarning: urllib3 (1.25.7) or chardet (3 ...
24-Dec-2019 12:36:07 E                                                            ^
24-Dec-2019 12:36:07
24-Dec-2019 12:36:07 /usr/local/lib/python2.7/dist-packages/yaml/scanner.py:576: ScannerError
24-Dec-2019 12:36:07 ___ ERROR at setup of test_access_time[singleprovider_singleclient_directio] ___
24-Dec-2019 12:36:07
24-Dec-2019 12:36:07 env_description_abs_path = '/mnt/storage/bamboo-agent-home/xml-data/build-dir/TEST-OCAST-RFSD/onedata/tests/oneclient/environments/singleprovider_singleclient_directio.yaml'
24-Dec-2019 12:36:07 hosts = {}
24-Dec-2019 12:36:07 request = <SubRequest 'env_desc' for <Function 'test_type_empty[singleprovider_singleclient_directio]'>>
24-Dec-2019 12:36:07 users = {}
24-Dec-2019 12:36:07 previous_env = {'env_path': '/mnt/storage/bamboo-agent-home/xml-data/build-dir/TEST-OCAST-RFSD/onedata/tests/oneclient/environments/singleprovider_singleclient_directio.yaml'}
24-Dec-2019 12:36:07
24-Dec-2019 12:36:07     @pytest.fixture(scope='module', autouse=True)
24-Dec-2019 12:36:07     def env_desc(env_description_abs_path, hosts, request, users,
24-Dec-2019 12:36:07                  previous_env):
24-Dec-2019 12:36:07         """
24-Dec-2019 12:36:07         Sets up environment and returns environment description.
24-Dec-2019 12:36:07         """
24-Dec-2019 12:36:07         test_type = get_test_type(request)
24-Dec-2019 12:36:07         start_env = _check_if_should_start_new_env(env_description_abs_path,
24-Dec-2019 12:36:07                                                    previous_env)
24-Dec-2019 12:36:07    
24-Dec-2019 12:36:07         if test_type in ['gui']:
24-Dec-2019 12:36:07             # For now gui tests do not use onenv patch
24-Dec-2019 12:36:07             if start_env:
24-Dec-2019 12:36:07                 previous_env['started'] = start_environment(
24-Dec-2019 12:36:07                     env_description_abs_path, request, hosts, '', users,
24-Dec-2019 12:36:07                     env_description_abs_path
24-Dec-2019 12:36:07                 )
24-Dec-2019 12:36:07             return ''
24-Dec-2019 12:36:07    
24-Dec-2019 12:36:07         elif test_type == 'mixed':
24-Dec-2019 12:36:07             with open(env_description_abs_path, 'r') as env_desc_file:
24-Dec-2019 12:36:07                 env_desc = yaml.load(env_desc_file)
24-Dec-2019 12:36:07             scenario = env_desc.get('scenario')
24-Dec-2019 12:36:07             scenarios_dir_path = SCENARIO_DIRS.get(get_test_type(request))
24-Dec-2019 12:36:07             scenario_path = os.path.abspath(os.path.join(scenarios_dir_path,
24-Dec-2019 12:36:07                                                          scenario))
24-Dec-2019 12:36:07    
24-Dec-2019 12:36:07             if start_env:
24-Dec-2019 12:36:07                 previous_env['started'] = start_environment(
24-Dec-2019 12:36:07                     scenario_path, request, hosts, '', users,
24-Dec-2019 12:36:07                     env_description_abs_path
24-Dec-2019 12:36:07                 )
24-Dec-2019 12:36:07             return env_desc
24-Dec-2019 12:36:07    
24-Dec-2019 12:36:07         elif test_type in ['oneclient', 'onedata_fs', 'performance']:
24-Dec-2019 12:36:07             with open(env_description_abs_path, 'r') as env_desc_file:
24-Dec-2019 12:36:07                 env_desc = yaml.load(env_desc_file)
24-Dec-2019 12:36:07    
24-Dec-2019 12:36:07             scenario = env_desc.get('scenario')
24-Dec-2019 12:36:07             scenarios_dir_path = SCENARIO_DIRS.get(get_test_type(request))
24-Dec-2019 12:36:07             scenario_path = os.path.abspath(os.path.join(scenarios_dir_path,
24-Dec-2019 12:36:07                                                          scenario))
24-Dec-2019 12:36:07    
24-Dec-2019 12:36:07             patch = env_desc.get('patch')
24-Dec-2019 12:36:07             patch_dir_path = PATCHES_DIR.get(get_test_type(request))
24-Dec-2019 12:36:07             patch_path = os.path.join(patch_dir_path, patch)
24-Dec-2019 12:36:07             if start_env:
24-Dec-2019 12:36:07                 previous_env['started'] = start_environment(
24-Dec-2019 12:36:07                     scenario_path, request, hosts, patch_path, users,
24-Dec-2019 12:36:07 >                   env_description_abs_path
24-Dec-2019 12:36:07                 )
24-Dec-2019 12:36:07
24-Dec-2019 12:36:07 tests/conftest.py:356:
24-Dec-2019 12:36:07 _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
24-Dec-2019 12:36:07 tests/conftest.py:455: in start_environment
24-Dec-2019 12:36:07     pods_cfg = check_deployment()
24-Dec-2019 12:36:07 tests/conftest.py:484: in check_deployment
24-Dec-2019 12:36:07     status_output = yaml.load(status_output.decode('utf-8'))
24-Dec-2019 12:36:07 /usr/local/lib/python2.7/dist-packages/yaml/__init__.py:71: in load
24-Dec-2019 12:36:07     return loader.get_single_data()
24-Dec-2019 12:36:07 /usr/local/lib/python2.7/dist-packages/yaml/constructor.py:37: in get_single_data
24-Dec-2019 12:36:07     node = self.get_single_node()
24-Dec-2019 12:36:07 /usr/local/lib/python2.7/dist-packages/yaml/composer.py:36: in get_single_node
24-Dec-2019 12:36:07     document = self.compose_document()
24-Dec-2019 12:36:07 /usr/local/lib/python2.7/dist-packages/yaml/composer.py:55: in compose_document
24-Dec-2019 12:36:07     node = self.compose_node(None, None)
24-Dec-2019 12:36:07 /usr/local/lib/python2.7/dist-packages/yaml/composer.py:84: in compose_node
24-Dec-2019 12:36:07     node = self.compose_mapping_node(anchor)
24-Dec-2019 12:36:07 /usr/local/lib/python2.7/dist-packages/yaml/composer.py:127: in compose_mapping_node
24-Dec-2019 12:36:07     while not self.check_event(MappingEndEvent):
24-Dec-2019 12:36:07 /usr/local/lib/python2.7/dist-packages/yaml/parser.py:98: in check_event
24-Dec-2019 12:36:07     self.current_event = self.state()
24-Dec-2019 12:36:07 /usr/local/lib/python2.7/dist-packages/yaml/parser.py:428: in parse_block_mapping_key
24-Dec-2019 12:36:07     if self.check_token(KeyToken):
24-Dec-2019 12:36:07 /usr/local/lib/python2.7/dist-packages/yaml/scanner.py:116: in check_token
24-Dec-2019 12:36:07     self.fetch_more_tokens()
24-Dec-2019 12:36:07 /usr/local/lib/python2.7/dist-packages/yaml/scanner.py:220: in fetch_more_tokens
24-Dec-2019 12:36:07     return self.fetch_value()
24-Dec-2019 12:36:07 _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
24-Dec-2019 12:36:07
24-Dec-2019 12:36:07 self = <yaml.loader.Loader object at 0x7f1478fd0810>
24-Dec-2019 12:36:07
24-Dec-2019 12:36:07     def fetch_value(self):
24-Dec-2019 12:36:07    
24-Dec-2019 12:36:07         # Do we determine a simple key?
24-Dec-2019 12:36:07         if self.flow_level in self.possible_simple_keys:
24-Dec-2019 12:36:07    
24-Dec-2019 12:36:07             # Add KEY.
24-Dec-2019 12:36:07             key = self.possible_simple_keys[self.flow_level]
24-Dec-2019 12:36:07             del self.possible_simple_keys[self.flow_level]
24-Dec-2019 12:36:07             self.tokens.insert(key.token_number-self.tokens_taken,
24-Dec-2019 12:36:07                     KeyToken(key.mark, key.mark))
24-Dec-2019 12:36:07    
24-Dec-2019 12:36:07             # If this key starts a new block mapping, we need to add
24-Dec-2019 12:36:07             # BLOCK-MAPPING-START.
24-Dec-2019 12:36:07             if not self.flow_level:
24-Dec-2019 12:36:07                 if self.add_indent(key.column):
24-Dec-2019 12:36:07                     self.tokens.insert(key.token_number-self.tokens_taken,
24-Dec-2019 12:36:07                             BlockMappingStartToken(key.mark, key.mark))
24-Dec-2019 12:36:07    
24-Dec-2019 12:36:07             # There cannot be two simple keys one after another.
24-Dec-2019 12:36:07             self.allow_simple_key = False
24-Dec-2019 12:36:07    
24-Dec-2019 12:36:07         # It must be a part of a complex key.
24-Dec-2019 12:36:07         else:
24-Dec-2019 12:36:07    
24-Dec-2019 12:36:07             # Block context needs additional checks.
24-Dec-2019 12:36:07             # (Do we really need them? They will be catched by the parser
24-Dec-2019 12:36:07             # anyway.)
24-Dec-2019 12:36:07             if not self.flow_level:
24-Dec-2019 12:36:07    
24-Dec-2019 12:36:07                 # We are allowed to start a complex value if and only if
24-Dec-2019 12:36:07                 # we can start a simple key.
24-Dec-2019 12:36:07                 if not self.allow_simple_key:
24-Dec-2019 12:36:07                     raise ScannerError(None, None,
24-Dec-2019 12:36:07                             "mapping values are not allowed here",
24-Dec-2019 12:36:07 >                           self.get_mark())
24-Dec-2019 12:36:07 E                   ScannerError: mapping values are not allowed here
24-Dec-2019 12:36:07 E                     in "<unicode string>", line 1, column 90:
24-Dec-2019 12:36:07 E                        ... py:91: RequestsDependencyWarning: urllib3 (1.25.7) or chardet (3 ...
24-Dec-2019 12:36:07 E                                                            ^
24-Dec-2019 12:36:07
24-Dec-2019 12:36:07 /usr/local/lib/python2.7/dist-packages/yaml/scanner.py:576: ScannerError
24-Dec-2019 12:36:07 _ ERROR at setup of test_modification_time[singleprovider_singleclient_directio] _
24-Dec-2019 12:36:07
24-Dec-2019 12:36:07 env_description_abs_path = '/mnt/storage/bamboo-agent-home/xml-data/build-dir/TEST-OCAST-RFSD/onedata/tests/oneclient/environments/singleprovider_singleclient_directio.yaml'
24-Dec-2019 12:36:07 hosts = {}
24-Dec-2019 12:36:07 request = <SubRequest 'env_desc' for <Function 'test_type_empty[singleprovider_singleclient_directio]'>>
24-Dec-2019 12:36:07 users = {}
24-Dec-2019 12:36:07 previous_env = {'env_path': '/mnt/storage/bamboo-agent-home/xml-data/build-dir/TEST-OCAST-RFSD/onedata/tests/oneclient/environments/singleprovider_singleclient_directio.yaml'}
24-Dec-2019 12:36:07
24-Dec-2019 12:36:07     @pytest.fixture(scope='module', autouse=True)
24-Dec-2019 12:36:07     def env_desc(env_description_abs_path, hosts, request, users,
24-Dec-2019 12:36:07                  previous_env):
24-Dec-2019 12:36:07         """
24-Dec-2019 12:36:07         Sets up environment and returns environment description.
24-Dec-2019 12:36:07         """
24-Dec-2019 12:36:07         test_type = get_test_type(request)
24-Dec-2019 12:36:07         start_env = _check_if_should_start_new_env(env_description_abs_path,
24-Dec-2019 12:36:07                                                    previous_env)
24-Dec-2019 12:36:07    
24-Dec-2019 12:36:07         if test_type in ['gui']:
24-Dec-2019 12:36:07             # For now gui tests do not use onenv patch
24-Dec-2019 12:36:07             if start_env:
24-Dec-2019 12:36:07                 previous_env['started'] = start_environment(
24-Dec-2019 12:36:07                     env_description_abs_path, request, hosts, '', users,
24-Dec-2019 12:36:07                     env_description_abs_path
24-Dec-2019 12:36:07                 )
24-Dec-2019 12:36:07             return ''
24-Dec-2019 12:36:07    
24-Dec-2019 12:36:07         elif test_type == 'mixed':
24-Dec-2019 12:36:07             with open(env_description_abs_path, 'r') as env_desc_file:
24-Dec-2019 12:36:07                 env_desc = yaml.load(env_desc_file)
24-Dec-2019 12:36:07             scenario = env_desc.get('scenario')
24-Dec-2019 12:36:07             scenarios_dir_path = SCENARIO_DIRS.get(get_test_type(request))
24-Dec-2019 12:36:07             scenario_path = os.path.abspath(os.path.join(scenarios_dir_path,
24-Dec-2019 12:36:07                                                          scenario))
24-Dec-2019 12:36:07    
24-Dec-2019 12:36:07             if start_env:
24-Dec-2019 12:36:07                 previous_env['started'] = start_environment(
24-Dec-2019 12:36:07                     scenario_path, request, hosts, '', users,
24-Dec-2019 12:36:07                     env_description_abs_path
24-Dec-2019 12:36:07                 )
24-Dec-2019 12:36:07             return env_desc
24-Dec-2019 12:36:07    
24-Dec-2019 12:36:07         elif test_type in ['oneclient', 'onedata_fs', 'performance']:
24-Dec-2019 12:36:07             with open(env_description_abs_path, 'r') as env_desc_file:
24-Dec-2019 12:36:07                 env_desc = yaml.load(env_desc_file)
24-Dec-2019 12:36:07    
24-Dec-2019 12:36:07             scenario = env_desc.get('scenario')
24-Dec-2019 12:36:07             scenarios_dir_path = SCENARIO_DIRS.get(get_test_type(request))
24-Dec-2019 12:36:07             scenario_path = os.path.abspath(os.path.join(scenarios_dir_path,
24-Dec-2019 12:36:07                                                          scenario))
24-Dec-2019 12:36:07    
24-Dec-2019 12:36:07             patch = env_desc.get('patch')
24-Dec-2019 12:36:07             patch_dir_path = PATCHES_DIR.get(get_test_type(request))
24-Dec-2019 12:36:07             patch_path = os.path.join(patch_dir_path, patch)
24-Dec-2019 12:36:07             if start_env:
24-Dec-2019 12:36:07                 previous_env['started'] = start_environment(
24-Dec-2019 12:36:07                     scenario_path, request, hosts, patch_path, users,
24-Dec-2019 12:36:07 >                   env_description_abs_path
24-Dec-2019 12:36:07                 )
24-Dec-2019 12:36:07
24-Dec-2019 12:36:07 tests/conftest.py:356:
24-Dec-2019 12:36:07 _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
24-Dec-2019 12:36:07 tests/conftest.py:455: in start_environment
24-Dec-2019 12:36:07     pods_cfg = check_deployment()
24-Dec-2019 12:36:07 tests/conftest.py:484: in check_deployment
24-Dec-2019 12:36:07     status_output = yaml.load(status_output.decode('utf-8'))
24-Dec-2019 12:36:07 /usr/local/lib/python2.7/dist-packages/yaml/__init__.py:71: in load
24-Dec-2019 12:36:07     return loader.get_single_data()
24-Dec-2019 12:36:07 /usr/local/lib/python2.7/dist-packages/yaml/constructor.py:37: in get_single_data
24-Dec-2019 12:36:07     node = self.get_single_node()
24-Dec-2019 12:36:07 /usr/local/lib/python2.7/dist-packages/yaml/composer.py:36: in get_single_node
24-Dec-2019 12:36:07     document = self.compose_document()
24-Dec-2019 12:36:07 /usr/local/lib/python2.7/dist-packages/yaml/composer.py:55: in compose_document
24-Dec-2019 12:36:07     node = self.compose_node(None, None)
24-Dec-2019 12:36:07 /usr/local/lib/python2.7/dist-packages/yaml/composer.py:84: in compose_node
24-Dec-2019 12:36:07     node = self.compose_mapping_node(anchor)
24-Dec-2019 12:36:07 /usr/local/lib/python2.7/dist-packages/yaml/composer.py:127: in compose_mapping_node
24-Dec-2019 12:36:07     while not self.check_event(MappingEndEvent):
24-Dec-2019 12:36:07 /usr/local/lib/python2.7/dist-packages/yaml/parser.py:98: in check_event
24-Dec-2019 12:36:07     self.current_event = self.state()
24-Dec-2019 12:36:07 /usr/local/lib/python2.7/dist-packages/yaml/parser.py:428: in parse_block_mapping_key
24-Dec-2019 12:36:07     if self.check_token(KeyToken):
24-Dec-2019 12:36:07 /usr/local/lib/python2.7/dist-packages/yaml/scanner.py:116: in check_token
24-Dec-2019 12:36:07     self.fetch_more_tokens()
24-Dec-2019 12:36:07 /usr/local/lib/python2.7/dist-packages/yaml/scanner.py:220: in fetch_more_tokens
24-Dec-2019 12:36:07     return self.fetch_value()
24-Dec-2019 12:36:07 _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
24-Dec-2019 12:36:07
24-Dec-2019 12:36:07 self = <yaml.loader.Loader object at 0x7f1478fd0810>
24-Dec-2019 12:36:07
24-Dec-2019 12:36:07     def fetch_value(self):
24-Dec-2019 12:36:07    
24-Dec-2019 12:36:07         # Do we determine a simple key?
24-Dec-2019 12:36:07         if self.flow_level in self.possible_simple_keys:
24-Dec-2019 12:36:07    
24-Dec-2019 12:36:07             # Add KEY.
24-Dec-2019 12:36:07             key = self.possible_simple_keys[self.flow_level]
24-Dec-2019 12:36:07             del self.possible_simple_keys[self.flow_level]
24-Dec-2019 12:36:07             self.tokens.insert(key.token_number-self.tokens_taken,
24-Dec-2019 12:36:07                     KeyToken(key.mark, key.mark))
24-Dec-2019 12:36:07    
24-Dec-2019 12:36:07             # If this key starts a new block mapping, we need to add
24-Dec-2019 12:36:07             # BLOCK-MAPPING-START.
24-Dec-2019 12:36:07             if not self.flow_level:
24-Dec-2019 12:36:07                 if self.add_indent(key.column):
24-Dec-2019 12:36:07                     self.tokens.insert(key.token_number-self.tokens_taken,
24-Dec-2019 12:36:07                             BlockMappingStartToken(key.mark, key.mark))
24-Dec-2019 12:36:07    
24-Dec-2019 12:36:07             # There cannot be two simple keys one after another.
24-Dec-2019 12:36:07             self.allow_simple_key = False
24-Dec-2019 12:36:07    
24-Dec-2019 12:36:07         # It must be a part of a complex key.
24-Dec-2019 12:36:07         else:
24-Dec-2019 12:36:07    
24-Dec-2019 12:36:07             # Block context needs additional checks.
24-Dec-2019 12:36:07             # (Do we really need them? They will be catched by the parser
24-Dec-2019 12:36:07             # anyway.)
24-Dec-2019 12:36:07             if not self.flow_level:
24-Dec-2019 12:36:07    
24-Dec-2019 12:36:07                 # We are allowed to start a complex value if and only if
24-Dec-2019 12:36:07                 # we can start a simple key.
24-Dec-2019 12:36:07                 if not self.allow_simple_key:
24-Dec-2019 12:36:07                     raise ScannerError(None, None,
24-Dec-2019 12:36:07                             "mapping values are not allowed here",
24-Dec-2019 12:36:07 >                           self.get_mark())
24-Dec-2019 12:36:07 E                   ScannerError: mapping values are not allowed here
24-Dec-2019 12:36:07 E                     in "<unicode string>", line 1, column 90:
24-Dec-2019 12:36:07 E                        ... py:91: RequestsDependencyWarning: urllib3 (1.25.7) or chardet (3 ...
24-Dec-2019 12:36:07 E                                                            ^
24-Dec-2019 12:36:07
24-Dec-2019 12:36:07 /usr/local/lib/python2.7/dist-packages/yaml/scanner.py:576: ScannerError
24-Dec-2019 12:36:07 _ ERROR at setup of test_stat_change_time_chmod[singleprovider_singleclient_directio] _
24-Dec-2019 12:36:07
24-Dec-2019 12:36:07 env_description_abs_path = '/mnt/storage/bamboo-agent-home/xml-data/build-dir/TEST-OCAST-RFSD/onedata/tests/oneclient/environments/singleprovider_singleclient_directio.yaml'
24-Dec-2019 12:36:07 hosts = {}
24-Dec-2019 12:36:07 request = <SubRequest 'env_desc' for <Function 'test_type_empty[singleprovider_singleclient_directio]'>>
24-Dec-2019 12:36:07 users = {}
24-Dec-2019 12:36:07 previous_env = {'env_path': '/mnt/storage/bamboo-agent-home/xml-data/build-dir/TEST-OCAST-RFSD/onedata/tests/oneclient/environments/singleprovider_singleclient_directio.yaml'}
24-Dec-2019 12:36:07
24-Dec-2019 12:36:07     @pytest.fixture(scope='module', autouse=True)
24-Dec-2019 12:36:07     def env_desc(env_description_abs_path, hosts, request, users,
24-Dec-2019 12:36:07                  previous_env):
24-Dec-2019 12:36:07         """
24-Dec-2019 12:36:07         Sets up environment and returns environment description.
24-Dec-2019 12:36:07         """
24-Dec-2019 12:36:07         test_type = get_test_type(request)
24-Dec-2019 12:36:07         start_env = _check_if_should_start_new_env(env_description_abs_path,
24-Dec-2019 12:36:07                                                    previous_env)
24-Dec-2019 12:36:07    
24-Dec-2019 12:36:07         if test_type in ['gui']:
24-Dec-2019 12:36:07             # For now gui tests do not use onenv patch
24-Dec-2019 12:36:07             if start_env:
24-Dec-2019 12:36:07                 previous_env['started'] = start_environment(
24-Dec-2019 12:36:07                     env_description_abs_path, request, hosts, '', users,
24-Dec-2019 12:36:07                     env_description_abs_path
24-Dec-2019 12:36:07                 )
24-Dec-2019 12:36:07             return ''
24-Dec-2019 12:36:07    
24-Dec-2019 12:36:07         elif test_type == 'mixed':
24-Dec-2019 12:36:07             with open(env_description_abs_path, 'r') as env_desc_file:
24-Dec-2019 12:36:07                 env_desc = yaml.load(env_desc_file)
24-Dec-2019 12:36:07             scenario = env_desc.get('scenario')
24-Dec-2019 12:36:07             scenarios_dir_path = SCENARIO_DIRS.get(get_test_type(request))
24-Dec-2019 12:36:07             scenario_path = os.path.abspath(os.path.join(scenarios_dir_path,
24-Dec-2019 12:36:07                                                          scenario))
24-Dec-2019 12:36:07    
24-Dec-2019 12:36:07             if start_env:
24-Dec-2019 12:36:07                 previous_env['started'] = start_environment(
24-Dec-2019 12:36:07                     scenario_path, request, hosts, '', users,
24-Dec-2019 12:36:07                     env_description_abs_path
24-Dec-2019 12:36:07                 )
24-Dec-2019 12:36:07             return env_desc
24-Dec-2019 12:36:07    
24-Dec-2019 12:36:07         elif test_type in ['oneclient', 'onedata_fs', 'performance']:
24-Dec-2019 12:36:07             with open(env_description_abs_path, 'r') as env_desc_file:
24-Dec-2019 12:36:07                 env_desc = yaml.load(env_desc_file)
24-Dec-2019 12:36:07    
24-Dec-2019 12:36:07             scenario = env_desc.get('scenario')
24-Dec-2019 12:36:07             scenarios_dir_path = SCENARIO_DIRS.get(get_test_type(request))
24-Dec-2019 12:36:07             scenario_path = os.path.abspath(os.path.join(scenarios_dir_path,
24-Dec-2019 12:36:07                                                          scenario))
24-Dec-2019 12:36:07    
24-Dec-2019 12:36:07             patch = env_desc.get('patch')
24-Dec-2019 12:36:07             patch_dir_path = PATCHES_DIR.get(get_test_type(request))
24-Dec-2019 12:36:07             patch_path = os.path.join(patch_dir_path, patch)
24-Dec-2019 12:36:07             if start_env:
24-Dec-2019 12:36:07                 previous_env['started'] = start_environment(
24-Dec-2019 12:36:07                     scenario_path, request, hosts, patch_path, users,
24-Dec-2019 12:36:07 >                   env_description_abs_path
24-Dec-2019 12:36:07                 )
24-Dec-2019 12:36:07
24-Dec-2019 12:36:07 tests/conftest.py:356:
24-Dec-2019 12:36:07 _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
24-Dec-2019 12:36:07 tests/conftest.py:455: in start_environment
24-Dec-2019 12:36:07     pods_cfg = check_deployment()
24-Dec-2019 12:36:07 tests/conftest.py:484: in check_deployment
24-Dec-2019 12:36:07     status_output = yaml.load(status_output.decode('utf-8'))
24-Dec-2019 12:36:07 /usr/local/lib/python2.7/dist-packages/yaml/__init__.py:71: in load
24-Dec-2019 12:36:07     return loader.get_single_data()
24-Dec-2019 12:36:07 /usr/local/lib/python2.7/dist-packages/yaml/constructor.py:37: in get_single_data
24-Dec-2019 12:36:07     node = self.get_single_node()
24-Dec-2019 12:36:07 /usr/local/lib/python2.7/dist-packages/yaml/composer.py:36: in get_single_node
24-Dec-2019 12:36:07     document = self.compose_document()
24-Dec-2019 12:36:07 /usr/local/lib/python2.7/dist-packages/yaml/composer.py:55: in compose_document
24-Dec-2019 12:36:07     node = self.compose_node(None, None)
24-Dec-2019 12:36:07 /usr/local/lib/python2.7/dist-packages/yaml/composer.py:84: in compose_node
24-Dec-2019 12:36:07     node = self.compose_mapping_node(anchor)
24-Dec-2019 12:36:07 /usr/local/lib/python2.7/dist-packages/yaml/composer.py:127: in compose_mapping_node
24-Dec-2019 12:36:07     while not self.check_event(MappingEndEvent):
24-Dec-2019 12:36:07 /usr/local/lib/python2.7/dist-packages/yaml/parser.py:98: in check_event
24-Dec-2019 12:36:07     self.current_event = self.state()
24-Dec-2019 12:36:07 /usr/local/lib/python2.7/dist-packages/yaml/parser.py:428: in parse_block_mapping_key
24-Dec-2019 12:36:07     if self.check_token(KeyToken):
24-Dec-2019 12:36:07 /usr/local/lib/python2.7/dist-packages/yaml/scanner.py:116: in check_token
24-Dec-2019 12:36:07     self.fetch_more_tokens()
24-Dec-2019 12:36:07 /usr/local/lib/python2.7/dist-packages/yaml/scanner.py:220: in fetch_more_tokens
24-Dec-2019 12:36:07     return self.fetch_value()
24-Dec-2019 12:36:07 _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
24-Dec-2019 12:36:07
24-Dec-2019 12:36:07 self = <yaml.loader.Loader object at 0x7f1478fd0810>
24-Dec-2019 12:36:07
24-Dec-2019 12:36:07     def fetch_value(self):
24-Dec-2019 12:36:07    
24-Dec-2019 12:36:07         # Do we determine a simple key?
24-Dec-2019 12:36:07         if self.flow_level in self.possible_simple_keys:
24-Dec-2019 12:36:07    
24-Dec-2019 12:36:07             # Add KEY.
24-Dec-2019 12:36:07             key = self.possible_simple_keys[self.flow_level]
24-Dec-2019 12:36:07             del self.possible_simple_keys[self.flow_level]
24-Dec-2019 12:36:07             self.tokens.insert(key.token_number-self.tokens_taken,
24-Dec-2019 12:36:07                     KeyToken(key.mark, key.mark))
24-Dec-2019 12:36:07    
24-Dec-2019 12:36:07             # If this key starts a new block mapping, we need to add
24-Dec-2019 12:36:07             # BLOCK-MAPPING-START.
24-Dec-2019 12:36:07             if not self.flow_level:
24-Dec-2019 12:36:07                 if self.add_indent(key.column):
24-Dec-2019 12:36:07                     self.tokens.insert(key.token_number-self.tokens_taken,
24-Dec-2019 12:36:07                             BlockMappingStartToken(key.mark, key.mark))
24-Dec-2019 12:36:07    
24-Dec-2019 12:36:07             # There cannot be two simple keys one after another.
24-Dec-2019 12:36:07             self.allow_simple_key = False
24-Dec-2019 12:36:07    
24-Dec-2019 12:36:07         # It must be a part of a complex key.
24-Dec-2019 12:36:07         else:
24-Dec-2019 12:36:07    
24-Dec-2019 12:36:07             # Block context needs additional checks.
24-Dec-2019 12:36:07             # (Do we really need them? They will be catched by the parser
24-Dec-2019 12:36:07             # anyway.)
24-Dec-2019 12:36:07             if not self.flow_level:
24-Dec-2019 12:36:07    
24-Dec-2019 12:36:07                 # We are allowed to start a complex value if and only if
24-Dec-2019 12:36:07                 # we can start a simple key.
24-Dec-2019 12:36:07                 if not self.allow_simple_key:
24-Dec-2019 12:36:07                     raise ScannerError(None, None,
24-Dec-2019 12:36:07                             "mapping values are not allowed here",
24-Dec-2019 12:36:07 >                           self.get_mark())
24-Dec-2019 12:36:07 E                   ScannerError: mapping values are not allowed here
24-Dec-2019 12:36:07 E                     in "<unicode string>", line 1, column 90:
24-Dec-2019 12:36:07 E                        ... py:91: RequestsDependencyWarning: urllib3 (1.25.7) or chardet (3 ...
24-Dec-2019 12:36:07 E                                                            ^
24-Dec-2019 12:36:07
24-Dec-2019 12:36:07 /usr/local/lib/python2.7/dist-packages/yaml/scanner.py:576: ScannerError
24-Dec-2019 12:36:07 _ ERROR at setup of test_stat_change_time_mv[singleprovider_singleclient_directio] _
24-Dec-2019 12:36:07
24-Dec-2019 12:36:07 env_description_abs_path = '/mnt/storage/bamboo-agent-home/xml-data/build-dir/TEST-OCAST-RFSD/onedata/tests/oneclient/environments/singleprovider_singleclient_directio.yaml'
24-Dec-2019 12:36:07 hosts = {}
24-Dec-2019 12:36:07 request = <SubRequest 'env_desc' for <Function 'test_type_empty[singleprovider_singleclient_directio]'>>
24-Dec-2019 12:36:07 users = {}
24-Dec-2019 12:36:07 previous_env = {'env_path': '/mnt/storage/bamboo-agent-home/xml-data/build-dir/TEST-OCAST-RFSD/onedata/tests/oneclient/environments/singleprovider_singleclient_directio.yaml'}
24-Dec-2019 12:36:07
24-Dec-2019 12:36:07     @pytest.fixture(scope='module', autouse=True)
24-Dec-2019 12:36:07     def env_desc(env_description_abs_path, hosts, request, users,
24-Dec-2019 12:36:07                  previous_env):
24-Dec-2019 12:36:07         """
24-Dec-2019 12:36:07         Sets up environment and returns environment description.
24-Dec-2019 12:36:07         """
24-Dec-2019 12:36:07         test_type = get_test_type(request)
24-Dec-2019 12:36:07         start_env = _check_if_should_start_new_env(env_description_abs_path,
24-Dec-2019 12:36:07                                                    previous_env)
24-Dec-2019 12:36:07    
24-Dec-2019 12:36:07         if test_type in ['gui']:
24-Dec-2019 12:36:07             # For now gui tests do not use onenv patch
24-Dec-2019 12:36:07             if start_env:
24-Dec-2019 12:36:07                 previous_env['started'] = start_environment(
24-Dec-2019 12:36:07                     env_description_abs_path, request, hosts, '', users,
24-Dec-2019 12:36:07                     env_description_abs_path
24-Dec-2019 12:36:07                 )
24-Dec-2019 12:36:07             return ''
24-Dec-2019 12:36:07    
24-Dec-2019 12:36:07         elif test_type == 'mixed':
24-Dec-2019 12:36:07             with open(env_description_abs_path, 'r') as env_desc_file:
24-Dec-2019 12:36:07                 env_desc = yaml.load(env_desc_file)
24-Dec-2019 12:36:07             scenario = env_desc.get('scenario')
24-Dec-2019 12:36:07             scenarios_dir_path = SCENARIO_DIRS.get(get_test_type(request))
24-Dec-2019 12:36:07             scenario_path = os.path.abspath(os.path.join(scenarios_dir_path,
24-Dec-2019 12:36:07                                                          scenario))
24-Dec-2019 12:36:07    
24-Dec-2019 12:36:07             if start_env:
24-Dec-2019 12:36:07                 previous_env['started'] = start_environment(
24-Dec-2019 12:36:07                     scenario_path, request, hosts, '', users,
24-Dec-2019 12:36:07                     env_description_abs_path
24-Dec-2019 12:36:07                 )
24-Dec-2019 12:36:07             return env_desc
24-Dec-2019 12:36:07    
24-Dec-2019 12:36:07         elif test_type in ['oneclient', 'onedata_fs', 'performance']:
24-Dec-2019 12:36:07             with open(env_description_abs_path, 'r') as env_desc_file:
24-Dec-2019 12:36:07                 env_desc = yaml.load(env_desc_file)
24-Dec-2019 12:36:07    
24-Dec-2019 12:36:07             scenario = env_desc.get('scenario')
24-Dec-2019 12:36:07             scenarios_dir_path = SCENARIO_DIRS.get(get_test_type(request))
24-Dec-2019 12:36:07             scenario_path = os.path.abspath(os.path.join(scenarios_dir_path,
24-Dec-2019 12:36:07                                                          scenario))
24-Dec-2019 12:36:07    
24-Dec-2019 12:36:07             patch = env_desc.get('patch')
24-Dec-2019 12:36:07             patch_dir_path = PATCHES_DIR.get(get_test_type(request))
24-Dec-2019 12:36:07             patch_path = os.path.join(patch_dir_path, patch)
24-Dec-2019 12:36:07             if start_env:
24-Dec-2019 12:36:07                 previous_env['started'] = start_environment(
24-Dec-2019 12:36:07                     scenario_path, request, hosts, patch_path, users,
24-Dec-2019 12:36:07 >                   env_description_abs_path
24-Dec-2019 12:36:07                 )
24-Dec-2019 12:36:07
24-Dec-2019 12:36:07 tests/conftest.py:356:
24-Dec-2019 12:36:07 _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
24-Dec-2019 12:36:07 tests/conftest.py:455: in start_environment
24-Dec-2019 12:36:07     pods_cfg = check_deployment()
24-Dec-2019 12:36:07 tests/conftest.py:484: in check_deployment
24-Dec-2019 12:36:07     status_output = yaml.load(status_output.decode('utf-8'))
24-Dec-2019 12:36:07 /usr/local/lib/python2.7/dist-packages/yaml/__init__.py:71: in load
24-Dec-2019 12:36:07     return loader.get_single_data()
24-Dec-2019 12:36:07 /usr/local/lib/python2.7/dist-packages/yaml/constructor.py:37: in get_single_data
24-Dec-2019 12:36:07     node = self.get_single_node()
24-Dec-2019 12:36:07 /usr/local/lib/python2.7/dist-packages/yaml/composer.py:36: in get_single_node
24-Dec-2019 12:36:07     document = self.compose_document()
24-Dec-2019 12:36:07 /usr/local/lib/python2.7/dist-packages/yaml/composer.py:55: in compose_document
24-Dec-2019 12:36:07     node = self.compose_node(None, None)
24-Dec-2019 12:36:07 /usr/local/lib/python2.7/dist-packages/yaml/composer.py:84: in compose_node
24-Dec-2019 12:36:07     node = self.compose_mapping_node(anchor)
24-Dec-2019 12:36:07 /usr/local/lib/python2.7/dist-packages/yaml/composer.py:127: in compose_mapping_node
24-Dec-2019 12:36:07     while not self.check_event(MappingEndEvent):
24-Dec-2019 12:36:07 /usr/local/lib/python2.7/dist-packages/yaml/parser.py:98: in check_event
24-Dec-2019 12:36:07     self.current_event = self.state()
24-Dec-2019 12:36:07 /usr/local/lib/python2.7/dist-packages/yaml/parser.py:428: in parse_block_mapping_key
24-Dec-2019 12:36:07     if self.check_token(KeyToken):
24-Dec-2019 12:36:07 /usr/local/lib/python2.7/dist-packages/yaml/scanner.py:116: in check_token
24-Dec-2019 12:36:07     self.fetch_more_tokens()
24-Dec-2019 12:36:07 /usr/local/lib/python2.7/dist-packages/yaml/scanner.py:220: in fetch_more_tokens
24-Dec-2019 12:36:07     return self.fetch_value()
24-Dec-2019 12:36:07 _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
24-Dec-2019 12:36:07
24-Dec-2019 12:36:07 self = <yaml.loader.Loader object at 0x7f1478fd0810>
24-Dec-2019 12:36:07
24-Dec-2019 12:36:07     def fetch_value(self):
24-Dec-2019 12:36:07    
24-Dec-2019 12:36:07         # Do we determine a simple key?
24-Dec-2019 12:36:07         if self.flow_level in self.possible_simple_keys:
24-Dec-2019 12:36:07    
24-Dec-2019 12:36:07             # Add KEY.
24-Dec-2019 12:36:07             key = self.possible_simple_keys[self.flow_level]
24-Dec-2019 12:36:07             del self.possible_simple_keys[self.flow_level]
24-Dec-2019 12:36:07             self.tokens.insert(key.token_number-self.tokens_taken,
24-Dec-2019 12:36:07                     KeyToken(key.mark, key.mark))
24-Dec-2019 12:36:07    
24-Dec-2019 12:36:07             # If this key starts a new block mapping, we need to add
24-Dec-2019 12:36:07             # BLOCK-MAPPING-START.
24-Dec-2019 12:36:07             if not self.flow_level:
24-Dec-2019 12:36:07                 if self.add_indent(key.column):
24-Dec-2019 12:36:07                     self.tokens.insert(key.token_number-self.tokens_taken,
24-Dec-2019 12:36:07                             BlockMappingStartToken(key.mark, key.mark))
24-Dec-2019 12:36:07    
24-Dec-2019 12:36:07             # There cannot be two simple keys one after another.
24-Dec-2019 12:36:07             self.allow_simple_key = False
24-Dec-2019 12:36:07    
24-Dec-2019 12:36:07         # It must be a part of a complex key.
24-Dec-2019 12:36:07         else:
24-Dec-2019 12:36:07    
24-Dec-2019 12:36:07             # Block context needs additional checks.
24-Dec-2019 12:36:07             # (Do we really need them? They will be catched by the parser
24-Dec-2019 12:36:07             # anyway.)
24-Dec-2019 12:36:07             if not self.flow_level:
24-Dec-2019 12:36:07    
24-Dec-2019 12:36:07                 # We are allowed to start a complex value if and only if
24-Dec-2019 12:36:07                 # we can start a simple key.
24-Dec-2019 12:36:07                 if not self.allow_simple_key:
24-Dec-2019 12:36:07                     raise ScannerError(None, None,
24-Dec-2019 12:36:07                             "mapping values are not allowed here",
24-Dec-2019 12:36:07 >                           self.get_mark())
24-Dec-2019 12:36:07 E                   ScannerError: mapping values are not allowed here
24-Dec-2019 12:36:07 E                     in "<unicode string>", line 1, column 90:
24-Dec-2019 12:36:07 E                        ... py:91: RequestsDependencyWarning: urllib3 (1.25.7) or chardet (3 ...
24-Dec-2019 12:36:07 E                                                            ^
24-Dec-2019 12:36:07
24-Dec-2019 12:36:07 /usr/local/lib/python2.7/dist-packages/yaml/scanner.py:576: ScannerError
24-Dec-2019 12:36:07 ========================= 12 error in 1276.91 seconds ==========================
24-Dec-2019 12:36:21 release "dev" deleted
24-Dec-2019 12:36: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 12:36:21   RequestsDependencyWarning)
24-Dec-2019 12:36:22 1a9105041bc6
24-Dec-2019 12:36:22 Using image: docker.onedata.org/onezone-dev:ID-9d85e52816 for onezone service
24-Dec-2019 12:36:22 Using image: docker.onedata.org/oneprovider-dev:ID-96429fd39a for oneprovider service
24-Dec-2019 12:36:22 Using image: docker.onedata.org/rest-cli:ID-48767260b4 for rest cli service
24-Dec-2019 12:36:22 Using image: docker.onedata.org/oneclient-dev:ID-f9ca716885 for oneclient service
24-Dec-2019 12:36:22 Using image: docker.onedata.org/luma:ID-578faeaeaf for LUMA service
24-Dec-2019 12:36:22 Finished task 'Run acceptance mixed tests in Chrome' with result: Success
24-Dec-2019 12:36:22 Starting task 'Parse test results' of type 'com.atlassian.bamboo.plugins.testresultparser:task.testresultparser.junit'
24-Dec-2019 12:36:22 Parsing test results under /home/bamboo/bamboo-agent-home/xml-data/build-dir/TEST-OCAST-RFSD...
24-Dec-2019 12:36:22 Failing task since 12 failing test cases were found.
24-Dec-2019 12:36:22 Finished task 'Parse test results' with result: Failed
24-Dec-2019 12:36:22 Starting task 'Pack logs' of type 'com.atlassian.bamboo.plugins.scripttask:task.builder.script'
24-Dec-2019 12:36:22
Beginning to execute external process for build 'Testing - oneclient-acceptance-src-test - regular file stat directio #17 (TEST-OCAST-RFSD-17)'
... running command line:
/bin/sh /home/bamboo/bamboo-agent-home/temp/TEST-OCAST-RFSD-17-ScriptBuildTask-5163770817771773865.sh
... in: /home/bamboo/bamboo-agent-home/xml-data/build-dir/TEST-OCAST-RFSD
... 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-RFSD-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-RFSD
bamboo_planRepository_1_name=onedata-acceptance
bamboo_buildKey=TEST-OCAST-RFSD
bamboo_shortPlanName=oneclient-acceptance-src-test
bamboo_capability_minikube=true
bamboo_planRepository_name=onedata-acceptance
bamboo_buildNumber=17
bamboo_shortJobName=regular file stat directio
bamboo_buildResultsUrl=https://bamboo.onedata.org/browse/TEST-OCAST-RFSD-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-RFSD-17-ScriptBuildTask-5200616697676915169.sh
bamboo_build_commandline_com_atlassian_bamboo_plugins_scripttask_task_builder_script_6=/home/bamboo/bamboo-agent-home/temp/TEST-OCAST-RFSD-17-ScriptBuildTask-3768089576084114121.sh
bamboo_shortPlanKey=OCAST
bamboo_shortJobKey=RFSD
bamboo_planRepository_revision=569cf78a555db26982dc3aafc6e34e10c259c8bf
bamboo_artifactRepoHostname=S3
bamboo_buildTimeStamp=2019-12-23T15:37:08.375Z
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-RFSD-17-ScriptBuildTask-5246492318200250446.sh
bamboo_build_commandline_com_atlassian_bamboo_plugins_scripttask_task_builder_script_3=/home/bamboo/bamboo-agent-home/temp/TEST-OCAST-RFSD-17-ScriptBuildTask-4367434639119723717.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-RFSD-17-ScriptBuildTask-4958196076421972717.sh
bamboo_build_commandline_com_atlassian_bamboo_plugins_scripttask_task_builder_script_5=/bin/sh /home/bamboo/bamboo-agent-home/temp/TEST-OCAST-RFSD-17-ScriptBuildTask-1750471752771885557.sh
bamboo_repository_git_branch=develop
bamboo_buildResultKey=TEST-OCAST-RFSD-17
bamboo_repository_branch_name=develop
bamboo_buildPlanName=Testing - oneclient-acceptance-src-test - regular file 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-RFSD
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 12:36:22 cp: cannot stat 'onedata/one_env/sources_info.yaml': No such file or directory
24-Dec-2019 12:36:22 mv: cannot stat 'onedata/tests/oneclient/logs/*/*/images.yaml': Not a directory
24-Dec-2019 12:36:22 Finished task 'Pack logs' with result: Success
24-Dec-2019 12:36:22
Substituting variable: ${bamboo.OnedataFinalTasksURL} with https://raw.githubusercontent.com/onedata/bamboos/develop/final_tasks.sh
24-Dec-2019 12:36:22 Starting task 'Clear env' of type 'com.atlassian.bamboo.plugins.scripttask:task.builder.script'
24-Dec-2019 12:36:22
Beginning to execute external process for build 'Testing - oneclient-acceptance-src-test - regular file stat directio #17 (TEST-OCAST-RFSD-17)'
... running command line:
/bin/sh /home/bamboo/bamboo-agent-home/temp/TEST-OCAST-RFSD-17-ScriptBuildTask-91606368464875337.sh
... in: /home/bamboo/bamboo-agent-home/xml-data/build-dir/TEST-OCAST-RFSD
... 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-RFSD-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-RFSD
bamboo_planRepository_1_name=onedata-acceptance
bamboo_buildKey=TEST-OCAST-RFSD
bamboo_shortPlanName=oneclient-acceptance-src-test
bamboo_capability_minikube=true
bamboo_planRepository_name=onedata-acceptance
bamboo_buildNumber=17
bamboo_shortJobName=regular file stat directio
bamboo_buildResultsUrl=https://bamboo.onedata.org/browse/TEST-OCAST-RFSD-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-RFSD-17-ScriptBuildTask-5200616697676915169.sh
bamboo_build_commandline_com_atlassian_bamboo_plugins_scripttask_task_builder_script_6=/home/bamboo/bamboo-agent-home/temp/TEST-OCAST-RFSD-17-ScriptBuildTask-3768089576084114121.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-RFSD-17-ScriptBuildTask-5163770817771773865.sh
bamboo_shortJobKey=RFSD
bamboo_planRepository_revision=569cf78a555db26982dc3aafc6e34e10c259c8bf
bamboo_artifactRepoHostname=S3
bamboo_buildTimeStamp=2019-12-23T15:37:08.375Z
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-RFSD-17-ScriptBuildTask-5246492318200250446.sh
bamboo_build_commandline_com_atlassian_bamboo_plugins_scripttask_task_builder_script_3=/home/bamboo/bamboo-agent-home/temp/TEST-OCAST-RFSD-17-ScriptBuildTask-4367434639119723717.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-RFSD-17-ScriptBuildTask-4958196076421972717.sh
bamboo_build_commandline_com_atlassian_bamboo_plugins_scripttask_task_builder_script_5=/bin/sh /home/bamboo/bamboo-agent-home/temp/TEST-OCAST-RFSD-17-ScriptBuildTask-1750471752771885557.sh
bamboo_repository_git_branch=develop
bamboo_buildResultKey=TEST-OCAST-RFSD-17
bamboo_repository_branch_name=develop
bamboo_buildPlanName=Testing - oneclient-acceptance-src-test - regular file 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-RFSD
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 12:36:22   % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
24-Dec-2019 12:36:22                                  Dload  Upload   Total   Spent    Left  Speed
24-Dec-2019 12:36:22
24-Dec-2019 12:36:23   0     0    0     0    0     0      0      0 --:--:-- --:--:-- --:--:--     0
24-Dec-2019 12:36:23 100  4419  100  4419    0     0  10384      0 --:--:-- --:--:-- --:--:-- 10397
24-Dec-2019 12:36:23 Clearing /tmp/onedata and /home/bamboo/.one-env
24-Dec-2019 12:36:23 Cleaning helm deployments
24-Dec-2019 12:36:24 Cleanining pods
24-Dec-2019 12:36:25 Cleaning kube persistant volumes
24-Dec-2019 12:36:25 pod "dev-oneprovider-krakow-ready-check-xbxc7" deleted
24-Dec-2019 12:36:45 pod "dev-onezone-ready-check-mbf8g" deleted
24-Dec-2019 12:36:50 Cleaning dockswift container
24-Dec-2019 12:36:50 Cleaning docker containers
24-Dec-2019 12:36:52 Stalled docker containers to remove:
24-Dec-2019 12:36:52 60059c0066d0 d514a26d36c9 4de67529ddc9 7e35655d4537 6b0f2eaefe4a d6a37fe5463d 0eccc6366c8f 3b2daa00ff4d 5f7e0435fa63 35d19395abfc 540d9d74e4d8 01499c494c76 a783151d5a34
24-Dec-2019 12:36:52 Removing stalled docker containers
24-Dec-2019 12:36:52 Error response from daemon: Cannot kill container: 60059c0066d0: Container 60059c0066d003efab2079515e65ddcdf0925a2460d0b4944d4f7718f2e112b3 is not running
24-Dec-2019 12:36:52 60059c0066d0
24-Dec-2019 12:36:52 Error response from daemon: Cannot kill container: d514a26d36c9: Container d514a26d36c9f34ab68a3ac909ee9a986acf6beb140f050814a87370035f059d is not running
24-Dec-2019 12:36:52 d514a26d36c9
24-Dec-2019 12:36:52 Error response from daemon: Cannot kill container: 4de67529ddc9: Container 4de67529ddc94707ed7e9327fbaebb8a00d2ea1d38e9f64f22c9db866fb75285 is not running
24-Dec-2019 12:36:52 4de67529ddc9
24-Dec-2019 12:36:52 Error response from daemon: Cannot kill container: 7e35655d4537: Container 7e35655d453756bccb60b52e28dbd1f049fec1a1a9d9bd86d63721fb129118e5 is not running
24-Dec-2019 12:36:52 7e35655d4537
24-Dec-2019 12:36:52 Error response from daemon: Cannot kill container: 6b0f2eaefe4a: Container 6b0f2eaefe4acc5235122cbc6eb5cb31a1443624d92f245773025b517df67bd8 is not running
24-Dec-2019 12:36:52 6b0f2eaefe4a
24-Dec-2019 12:36:52 Error response from daemon: Cannot kill container: d6a37fe5463d: Container d6a37fe5463d948bef6f1e4123904f3a27a128cdbacb23bb6d2ef59a40945a25 is not running
24-Dec-2019 12:36:52 d6a37fe5463d
24-Dec-2019 12:36:52 Error response from daemon: Cannot kill container: 0eccc6366c8f: Container 0eccc6366c8f66ac293438983619c6818b263d1845c6e3b850058277ecbf77c7 is not running
24-Dec-2019 12:36:52 0eccc6366c8f
24-Dec-2019 12:36:52 Error response from daemon: Cannot kill container: 3b2daa00ff4d: Container 3b2daa00ff4d1f85175859780ecff7a6a434b735b07e4cb5c510c8d51c6febae is not running
24-Dec-2019 12:36:53 3b2daa00ff4d
24-Dec-2019 12:36:53 Error response from daemon: Cannot kill container: 5f7e0435fa63: Container 5f7e0435fa63a20f8d3025095f90311204ac6f58b126d75f1c22d5f1338de802 is not running
24-Dec-2019 12:36:53 5f7e0435fa63
24-Dec-2019 12:36:53 Error response from daemon: Cannot kill container: 35d19395abfc: Container 35d19395abfc9a6489320c4dac8624632d74b8dd691429c1e7ba9d91d53da409 is not running
24-Dec-2019 12:36:53 35d19395abfc
24-Dec-2019 12:36:53 Error response from daemon: Cannot kill container: 540d9d74e4d8: Container 540d9d74e4d849344247ac5f2046a8c255de197ff9e6285a2fccd988d26de1a3 is not running
24-Dec-2019 12:36:53 540d9d74e4d8
24-Dec-2019 12:36:53 Error response from daemon: Cannot kill container: 01499c494c76: Container 01499c494c766eac69f28fafa05715d409e66d8c226be6a93a83875090dd1a63 is not running
24-Dec-2019 12:36:53 01499c494c76
24-Dec-2019 12:36:53 Error response from daemon: Cannot kill container: a783151d5a34: Container a783151d5a343a0d05d7271144d7abadf295d8575bba5a12ec65444dc2cafa6b is not running
24-Dec-2019 12:36:53 a783151d5a34
24-Dec-2019 12:36:53 Stalled docker volumes to remove:
24-Dec-2019 12:36:53
24-Dec-2019 12:36:53 Removing stalled docker volumes
24-Dec-2019 12:36:53 Removing stalled loopdevices
24-Dec-2019 12:36:54 Done
24-Dec-2019 12:36:54 Finished task 'Clear env' with result: Success
24-Dec-2019 12:36:54 Running post build plugin 'Docker Container Cleanup'
24-Dec-2019 12:36:54 Running post build plugin 'NCover Results Collector'
24-Dec-2019 12:36:54 Running post build plugin 'Clover Results Collector'
24-Dec-2019 12:36:54 Running post build plugin 'npm Cache Cleanup'
24-Dec-2019 12:36:54 Running post build plugin 'Artifact Copier'
24-Dec-2019 12:36:54 Publishing an artifact: test_logs.tar.gz
24-Dec-2019 12:36:54 Finished publishing of artifact Non required job artifact: [test_logs.tar.gz], pattern: [test_logs.tar.gz] in 8.967 ms
24-Dec-2019 12:36:57 Successfully removed working directory at '/home/bamboo/bamboo-agent-home/xml-data/build-dir/TEST-OCAST-RFSD'
24-Dec-2019 12:36:57 Finalising the build...
24-Dec-2019 12:36:57 Stopping timer.
24-Dec-2019 12:36:57 Build TEST-OCAST-RFSD-17 completed.
24-Dec-2019 12:36:57 Running on server: post build plugin 'NCover Results Collector'
24-Dec-2019 12:36:57 Running on server: post build plugin 'Build Hanging Detection Configuration'
24-Dec-2019 12:36:57 Running on server: post build plugin 'Clover Delta Calculator'
24-Dec-2019 12:36:57 Running on server: post build plugin 'Maven Dependencies Postprocessor'
24-Dec-2019 12:36:57 All post build plugins have finished
24-Dec-2019 12:36:57 Generating build results summary...
24-Dec-2019 12:36:57 Saving build results to disk...
24-Dec-2019 12:36:57 Logging substituted variables...
24-Dec-2019 12:36:57 Indexing build results...
24-Dec-2019 12:36:57 Finished building TEST-OCAST-RFSD-17.