Build: #4 failed

Job: directory stat failed

Build log

The build generated 1,873 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 00:06:42             return env_desc
24-Dec-2019 00:06:42    
24-Dec-2019 00:06:42         elif test_type in ['oneclient', 'onedata_fs', 'performance']:
24-Dec-2019 00:06:42             with open(env_description_abs_path, 'r') as env_desc_file:
24-Dec-2019 00:06:42                 env_desc = yaml.load(env_desc_file)
24-Dec-2019 00:06:42    
24-Dec-2019 00:06:42             scenario = env_desc.get('scenario')
24-Dec-2019 00:06:42             scenarios_dir_path = SCENARIO_DIRS.get(get_test_type(request))
24-Dec-2019 00:06:42             scenario_path = os.path.abspath(os.path.join(scenarios_dir_path,
24-Dec-2019 00:06:42                                                          scenario))
24-Dec-2019 00:06:42    
24-Dec-2019 00:06:42             patch = env_desc.get('patch')
24-Dec-2019 00:06:42             patch_dir_path = PATCHES_DIR.get(get_test_type(request))
24-Dec-2019 00:06:42             patch_path = os.path.join(patch_dir_path, patch)
24-Dec-2019 00:06:42             if start_env:
24-Dec-2019 00:06:42                 previous_env['started'] = start_environment(
24-Dec-2019 00:06:42                     scenario_path, request, hosts, patch_path, users,
24-Dec-2019 00:06:42 >                   env_description_abs_path
24-Dec-2019 00:06:42                 )
24-Dec-2019 00:06:42
24-Dec-2019 00:06:42 tests/conftest.py:356:
24-Dec-2019 00:06:42 _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
24-Dec-2019 00:06:42 tests/conftest.py:455: in start_environment
24-Dec-2019 00:06:42     pods_cfg = check_deployment()
24-Dec-2019 00:06:42 tests/conftest.py:484: in check_deployment
24-Dec-2019 00:06:42     status_output = yaml.load(status_output.decode('utf-8'))
24-Dec-2019 00:06:42 /usr/local/lib/python2.7/dist-packages/yaml/__init__.py:71: in load
24-Dec-2019 00:06:42     return loader.get_single_data()
24-Dec-2019 00:06:42 /usr/local/lib/python2.7/dist-packages/yaml/constructor.py:37: in get_single_data
24-Dec-2019 00:06:42     node = self.get_single_node()
24-Dec-2019 00:06:42 /usr/local/lib/python2.7/dist-packages/yaml/composer.py:36: in get_single_node
24-Dec-2019 00:06:42     document = self.compose_document()
24-Dec-2019 00:06:42 /usr/local/lib/python2.7/dist-packages/yaml/composer.py:55: in compose_document
24-Dec-2019 00:06:42     node = self.compose_node(None, None)
24-Dec-2019 00:06:42 /usr/local/lib/python2.7/dist-packages/yaml/composer.py:84: in compose_node
24-Dec-2019 00:06:42     node = self.compose_mapping_node(anchor)
24-Dec-2019 00:06:42 /usr/local/lib/python2.7/dist-packages/yaml/composer.py:127: in compose_mapping_node
24-Dec-2019 00:06:42     while not self.check_event(MappingEndEvent):
24-Dec-2019 00:06:42 /usr/local/lib/python2.7/dist-packages/yaml/parser.py:98: in check_event
24-Dec-2019 00:06:42     self.current_event = self.state()
24-Dec-2019 00:06:42 /usr/local/lib/python2.7/dist-packages/yaml/parser.py:428: in parse_block_mapping_key
24-Dec-2019 00:06:42     if self.check_token(KeyToken):
24-Dec-2019 00:06:42 /usr/local/lib/python2.7/dist-packages/yaml/scanner.py:116: in check_token
24-Dec-2019 00:06:42     self.fetch_more_tokens()
24-Dec-2019 00:06:42 /usr/local/lib/python2.7/dist-packages/yaml/scanner.py:220: in fetch_more_tokens
24-Dec-2019 00:06:42     return self.fetch_value()
24-Dec-2019 00:06:42 _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
24-Dec-2019 00:06:42
24-Dec-2019 00:06:42 self = <yaml.loader.Loader object at 0x7f30dc65f250>
24-Dec-2019 00:06:42
24-Dec-2019 00:06:42     def fetch_value(self):
24-Dec-2019 00:06:42    
24-Dec-2019 00:06:42         # Do we determine a simple key?
24-Dec-2019 00:06:42         if self.flow_level in self.possible_simple_keys:
24-Dec-2019 00:06:42    
24-Dec-2019 00:06:42             # Add KEY.
24-Dec-2019 00:06:42             key = self.possible_simple_keys[self.flow_level]
24-Dec-2019 00:06:42             del self.possible_simple_keys[self.flow_level]
24-Dec-2019 00:06:42             self.tokens.insert(key.token_number-self.tokens_taken,
24-Dec-2019 00:06:42                     KeyToken(key.mark, key.mark))
24-Dec-2019 00:06:42    
24-Dec-2019 00:06:42             # If this key starts a new block mapping, we need to add
24-Dec-2019 00:06:42             # BLOCK-MAPPING-START.
24-Dec-2019 00:06:42             if not self.flow_level:
24-Dec-2019 00:06:42                 if self.add_indent(key.column):
24-Dec-2019 00:06:42                     self.tokens.insert(key.token_number-self.tokens_taken,
24-Dec-2019 00:06:42                             BlockMappingStartToken(key.mark, key.mark))
24-Dec-2019 00:06:42    
24-Dec-2019 00:06:42             # There cannot be two simple keys one after another.
24-Dec-2019 00:06:42             self.allow_simple_key = False
24-Dec-2019 00:06:42    
24-Dec-2019 00:06:42         # It must be a part of a complex key.
24-Dec-2019 00:06:42         else:
24-Dec-2019 00:06:42    
24-Dec-2019 00:06:42             # Block context needs additional checks.
24-Dec-2019 00:06:42             # (Do we really need them? They will be catched by the parser
24-Dec-2019 00:06:42             # anyway.)
24-Dec-2019 00:06:42             if not self.flow_level:
24-Dec-2019 00:06:42    
24-Dec-2019 00:06:42                 # We are allowed to start a complex value if and only if
24-Dec-2019 00:06:42                 # we can start a simple key.
24-Dec-2019 00:06:42                 if not self.allow_simple_key:
24-Dec-2019 00:06:42                     raise ScannerError(None, None,
24-Dec-2019 00:06:42                             "mapping values are not allowed here",
24-Dec-2019 00:06:42 >                           self.get_mark())
24-Dec-2019 00:06:42 E                   ScannerError: mapping values are not allowed here
24-Dec-2019 00:06:42 E                     in "<unicode string>", line 1, column 90:
24-Dec-2019 00:06:42 E                        ... py:91: RequestsDependencyWarning: urllib3 (1.25.7) or chardet (3 ...
24-Dec-2019 00:06:42 E                                                            ^
24-Dec-2019 00:06:42
24-Dec-2019 00:06:42 /usr/local/lib/python2.7/dist-packages/yaml/scanner.py:576: ScannerError
24-Dec-2019 00:06:42 ____ ERROR at setup of test_timestamp[singleprovider_singleclient_directio] ____
24-Dec-2019 00:06:42
24-Dec-2019 00:06:42 env_description_abs_path = '/mnt/storage/bamboo-agent-home/xml-data/build-dir/TEST-ON2-DS/onedata/tests/oneclient/environments/singleprovider_singleclient_directio.yaml'
24-Dec-2019 00:06:42 hosts = {}
24-Dec-2019 00:06:42 request = <SubRequest 'env_desc' for <Function 'test_type[singleprovider_singleclient_directio]'>>
24-Dec-2019 00:06:42 users = {}
24-Dec-2019 00:06:42 previous_env = {'env_path': '/mnt/storage/bamboo-agent-home/xml-data/build-dir/TEST-ON2-DS/onedata/tests/oneclient/environments/singleprovider_singleclient_directio.yaml'}
24-Dec-2019 00:06:42
24-Dec-2019 00:06:42     @pytest.fixture(scope='module', autouse=True)
24-Dec-2019 00:06:42     def env_desc(env_description_abs_path, hosts, request, users,
24-Dec-2019 00:06:42                  previous_env):
24-Dec-2019 00:06:42         """
24-Dec-2019 00:06:42         Sets up environment and returns environment description.
24-Dec-2019 00:06:42         """
24-Dec-2019 00:06:42         test_type = get_test_type(request)
24-Dec-2019 00:06:42         start_env = _check_if_should_start_new_env(env_description_abs_path,
24-Dec-2019 00:06:42                                                    previous_env)
24-Dec-2019 00:06:42    
24-Dec-2019 00:06:42         if test_type in ['gui']:
24-Dec-2019 00:06:42             # For now gui tests do not use onenv patch
24-Dec-2019 00:06:42             if start_env:
24-Dec-2019 00:06:42                 previous_env['started'] = start_environment(
24-Dec-2019 00:06:42                     env_description_abs_path, request, hosts, '', users,
24-Dec-2019 00:06:42                     env_description_abs_path
24-Dec-2019 00:06:42                 )
24-Dec-2019 00:06:42             return ''
24-Dec-2019 00:06:42    
24-Dec-2019 00:06:42         elif test_type == 'mixed':
24-Dec-2019 00:06:42             with open(env_description_abs_path, 'r') as env_desc_file:
24-Dec-2019 00:06:42                 env_desc = yaml.load(env_desc_file)
24-Dec-2019 00:06:42             scenario = env_desc.get('scenario')
24-Dec-2019 00:06:42             scenarios_dir_path = SCENARIO_DIRS.get(get_test_type(request))
24-Dec-2019 00:06:42             scenario_path = os.path.abspath(os.path.join(scenarios_dir_path,
24-Dec-2019 00:06:42                                                          scenario))
24-Dec-2019 00:06:42    
24-Dec-2019 00:06:42             if start_env:
24-Dec-2019 00:06:42                 previous_env['started'] = start_environment(
24-Dec-2019 00:06:42                     scenario_path, request, hosts, '', users,
24-Dec-2019 00:06:42                     env_description_abs_path
24-Dec-2019 00:06:42                 )
24-Dec-2019 00:06:42             return env_desc
24-Dec-2019 00:06:42    
24-Dec-2019 00:06:42         elif test_type in ['oneclient', 'onedata_fs', 'performance']:
24-Dec-2019 00:06:42             with open(env_description_abs_path, 'r') as env_desc_file:
24-Dec-2019 00:06:42                 env_desc = yaml.load(env_desc_file)
24-Dec-2019 00:06:42    
24-Dec-2019 00:06:42             scenario = env_desc.get('scenario')
24-Dec-2019 00:06:42             scenarios_dir_path = SCENARIO_DIRS.get(get_test_type(request))
24-Dec-2019 00:06:42             scenario_path = os.path.abspath(os.path.join(scenarios_dir_path,
24-Dec-2019 00:06:42                                                          scenario))
24-Dec-2019 00:06:42    
24-Dec-2019 00:06:42             patch = env_desc.get('patch')
24-Dec-2019 00:06:42             patch_dir_path = PATCHES_DIR.get(get_test_type(request))
24-Dec-2019 00:06:42             patch_path = os.path.join(patch_dir_path, patch)
24-Dec-2019 00:06:42             if start_env:
24-Dec-2019 00:06:42                 previous_env['started'] = start_environment(
24-Dec-2019 00:06:42                     scenario_path, request, hosts, patch_path, users,
24-Dec-2019 00:06:42 >                   env_description_abs_path
24-Dec-2019 00:06:42                 )
24-Dec-2019 00:06:42
24-Dec-2019 00:06:42 tests/conftest.py:356:
24-Dec-2019 00:06:42 _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
24-Dec-2019 00:06:42 tests/conftest.py:455: in start_environment
24-Dec-2019 00:06:42     pods_cfg = check_deployment()
24-Dec-2019 00:06:42 tests/conftest.py:484: in check_deployment
24-Dec-2019 00:06:42     status_output = yaml.load(status_output.decode('utf-8'))
24-Dec-2019 00:06:42 /usr/local/lib/python2.7/dist-packages/yaml/__init__.py:71: in load
24-Dec-2019 00:06:42     return loader.get_single_data()
24-Dec-2019 00:06:42 /usr/local/lib/python2.7/dist-packages/yaml/constructor.py:37: in get_single_data
24-Dec-2019 00:06:42     node = self.get_single_node()
24-Dec-2019 00:06:42 /usr/local/lib/python2.7/dist-packages/yaml/composer.py:36: in get_single_node
24-Dec-2019 00:06:42     document = self.compose_document()
24-Dec-2019 00:06:42 /usr/local/lib/python2.7/dist-packages/yaml/composer.py:55: in compose_document
24-Dec-2019 00:06:42     node = self.compose_node(None, None)
24-Dec-2019 00:06:42 /usr/local/lib/python2.7/dist-packages/yaml/composer.py:84: in compose_node
24-Dec-2019 00:06:42     node = self.compose_mapping_node(anchor)
24-Dec-2019 00:06:42 /usr/local/lib/python2.7/dist-packages/yaml/composer.py:127: in compose_mapping_node
24-Dec-2019 00:06:42     while not self.check_event(MappingEndEvent):
24-Dec-2019 00:06:42 /usr/local/lib/python2.7/dist-packages/yaml/parser.py:98: in check_event
24-Dec-2019 00:06:42     self.current_event = self.state()
24-Dec-2019 00:06:42 /usr/local/lib/python2.7/dist-packages/yaml/parser.py:428: in parse_block_mapping_key
24-Dec-2019 00:06:42     if self.check_token(KeyToken):
24-Dec-2019 00:06:42 /usr/local/lib/python2.7/dist-packages/yaml/scanner.py:116: in check_token
24-Dec-2019 00:06:42     self.fetch_more_tokens()
24-Dec-2019 00:06:42 /usr/local/lib/python2.7/dist-packages/yaml/scanner.py:220: in fetch_more_tokens
24-Dec-2019 00:06:42     return self.fetch_value()
24-Dec-2019 00:06:42 _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
24-Dec-2019 00:06:42
24-Dec-2019 00:06:42 self = <yaml.loader.Loader object at 0x7f30dc65f250>
24-Dec-2019 00:06:42
24-Dec-2019 00:06:42     def fetch_value(self):
24-Dec-2019 00:06:42    
24-Dec-2019 00:06:42         # Do we determine a simple key?
24-Dec-2019 00:06:42         if self.flow_level in self.possible_simple_keys:
24-Dec-2019 00:06:42    
24-Dec-2019 00:06:42             # Add KEY.
24-Dec-2019 00:06:42             key = self.possible_simple_keys[self.flow_level]
24-Dec-2019 00:06:42             del self.possible_simple_keys[self.flow_level]
24-Dec-2019 00:06:42             self.tokens.insert(key.token_number-self.tokens_taken,
24-Dec-2019 00:06:42                     KeyToken(key.mark, key.mark))
24-Dec-2019 00:06:42    
24-Dec-2019 00:06:42             # If this key starts a new block mapping, we need to add
24-Dec-2019 00:06:42             # BLOCK-MAPPING-START.
24-Dec-2019 00:06:42             if not self.flow_level:
24-Dec-2019 00:06:42                 if self.add_indent(key.column):
24-Dec-2019 00:06:42                     self.tokens.insert(key.token_number-self.tokens_taken,
24-Dec-2019 00:06:42                             BlockMappingStartToken(key.mark, key.mark))
24-Dec-2019 00:06:42    
24-Dec-2019 00:06:42             # There cannot be two simple keys one after another.
24-Dec-2019 00:06:42             self.allow_simple_key = False
24-Dec-2019 00:06:42    
24-Dec-2019 00:06:42         # It must be a part of a complex key.
24-Dec-2019 00:06:42         else:
24-Dec-2019 00:06:42    
24-Dec-2019 00:06:42             # Block context needs additional checks.
24-Dec-2019 00:06:42             # (Do we really need them? They will be catched by the parser
24-Dec-2019 00:06:42             # anyway.)
24-Dec-2019 00:06:42             if not self.flow_level:
24-Dec-2019 00:06:42    
24-Dec-2019 00:06:42                 # We are allowed to start a complex value if and only if
24-Dec-2019 00:06:42                 # we can start a simple key.
24-Dec-2019 00:06:42                 if not self.allow_simple_key:
24-Dec-2019 00:06:42                     raise ScannerError(None, None,
24-Dec-2019 00:06:42                             "mapping values are not allowed here",
24-Dec-2019 00:06:42 >                           self.get_mark())
24-Dec-2019 00:06:42 E                   ScannerError: mapping values are not allowed here
24-Dec-2019 00:06:42 E                     in "<unicode string>", line 1, column 90:
24-Dec-2019 00:06:42 E                        ... py:91: RequestsDependencyWarning: urllib3 (1.25.7) or chardet (3 ...
24-Dec-2019 00:06:42 E                                                            ^
24-Dec-2019 00:06:42
24-Dec-2019 00:06:42 /usr/local/lib/python2.7/dist-packages/yaml/scanner.py:576: ScannerError
24-Dec-2019 00:06:42 _ ERROR at setup of test_update_timestamp[singleprovider_singleclient_directio] _
24-Dec-2019 00:06:42
24-Dec-2019 00:06:42 env_description_abs_path = '/mnt/storage/bamboo-agent-home/xml-data/build-dir/TEST-ON2-DS/onedata/tests/oneclient/environments/singleprovider_singleclient_directio.yaml'
24-Dec-2019 00:06:42 hosts = {}
24-Dec-2019 00:06:42 request = <SubRequest 'env_desc' for <Function 'test_type[singleprovider_singleclient_directio]'>>
24-Dec-2019 00:06:42 users = {}
24-Dec-2019 00:06:42 previous_env = {'env_path': '/mnt/storage/bamboo-agent-home/xml-data/build-dir/TEST-ON2-DS/onedata/tests/oneclient/environments/singleprovider_singleclient_directio.yaml'}
24-Dec-2019 00:06:42
24-Dec-2019 00:06:42     @pytest.fixture(scope='module', autouse=True)
24-Dec-2019 00:06:42     def env_desc(env_description_abs_path, hosts, request, users,
24-Dec-2019 00:06:42                  previous_env):
24-Dec-2019 00:06:42         """
24-Dec-2019 00:06:42         Sets up environment and returns environment description.
24-Dec-2019 00:06:42         """
24-Dec-2019 00:06:42         test_type = get_test_type(request)
24-Dec-2019 00:06:42         start_env = _check_if_should_start_new_env(env_description_abs_path,
24-Dec-2019 00:06:42                                                    previous_env)
24-Dec-2019 00:06:42    
24-Dec-2019 00:06:42         if test_type in ['gui']:
24-Dec-2019 00:06:42             # For now gui tests do not use onenv patch
24-Dec-2019 00:06:42             if start_env:
24-Dec-2019 00:06:42                 previous_env['started'] = start_environment(
24-Dec-2019 00:06:42                     env_description_abs_path, request, hosts, '', users,
24-Dec-2019 00:06:42                     env_description_abs_path
24-Dec-2019 00:06:42                 )
24-Dec-2019 00:06:42             return ''
24-Dec-2019 00:06:42    
24-Dec-2019 00:06:42         elif test_type == 'mixed':
24-Dec-2019 00:06:42             with open(env_description_abs_path, 'r') as env_desc_file:
24-Dec-2019 00:06:42                 env_desc = yaml.load(env_desc_file)
24-Dec-2019 00:06:42             scenario = env_desc.get('scenario')
24-Dec-2019 00:06:42             scenarios_dir_path = SCENARIO_DIRS.get(get_test_type(request))
24-Dec-2019 00:06:42             scenario_path = os.path.abspath(os.path.join(scenarios_dir_path,
24-Dec-2019 00:06:42                                                          scenario))
24-Dec-2019 00:06:42    
24-Dec-2019 00:06:42             if start_env:
24-Dec-2019 00:06:42                 previous_env['started'] = start_environment(
24-Dec-2019 00:06:42                     scenario_path, request, hosts, '', users,
24-Dec-2019 00:06:42                     env_description_abs_path
24-Dec-2019 00:06:42                 )
24-Dec-2019 00:06:42             return env_desc
24-Dec-2019 00:06:42    
24-Dec-2019 00:06:42         elif test_type in ['oneclient', 'onedata_fs', 'performance']:
24-Dec-2019 00:06:42             with open(env_description_abs_path, 'r') as env_desc_file:
24-Dec-2019 00:06:42                 env_desc = yaml.load(env_desc_file)
24-Dec-2019 00:06:42    
24-Dec-2019 00:06:42             scenario = env_desc.get('scenario')
24-Dec-2019 00:06:42             scenarios_dir_path = SCENARIO_DIRS.get(get_test_type(request))
24-Dec-2019 00:06:42             scenario_path = os.path.abspath(os.path.join(scenarios_dir_path,
24-Dec-2019 00:06:42                                                          scenario))
24-Dec-2019 00:06:42    
24-Dec-2019 00:06:42             patch = env_desc.get('patch')
24-Dec-2019 00:06:42             patch_dir_path = PATCHES_DIR.get(get_test_type(request))
24-Dec-2019 00:06:42             patch_path = os.path.join(patch_dir_path, patch)
24-Dec-2019 00:06:42             if start_env:
24-Dec-2019 00:06:42                 previous_env['started'] = start_environment(
24-Dec-2019 00:06:42                     scenario_path, request, hosts, patch_path, users,
24-Dec-2019 00:06:42 >                   env_description_abs_path
24-Dec-2019 00:06:42                 )
24-Dec-2019 00:06:42
24-Dec-2019 00:06:42 tests/conftest.py:356:
24-Dec-2019 00:06:42 _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
24-Dec-2019 00:06:42 tests/conftest.py:455: in start_environment
24-Dec-2019 00:06:42     pods_cfg = check_deployment()
24-Dec-2019 00:06:42 tests/conftest.py:484: in check_deployment
24-Dec-2019 00:06:42     status_output = yaml.load(status_output.decode('utf-8'))
24-Dec-2019 00:06:43 /usr/local/lib/python2.7/dist-packages/yaml/__init__.py:71: in load
24-Dec-2019 00:06:43     return loader.get_single_data()
24-Dec-2019 00:06:43 /usr/local/lib/python2.7/dist-packages/yaml/constructor.py:37: in get_single_data
24-Dec-2019 00:06:43     node = self.get_single_node()
24-Dec-2019 00:06:43 /usr/local/lib/python2.7/dist-packages/yaml/composer.py:36: in get_single_node
24-Dec-2019 00:06:43     document = self.compose_document()
24-Dec-2019 00:06:43 /usr/local/lib/python2.7/dist-packages/yaml/composer.py:55: in compose_document
24-Dec-2019 00:06:43     node = self.compose_node(None, None)
24-Dec-2019 00:06:43 /usr/local/lib/python2.7/dist-packages/yaml/composer.py:84: in compose_node
24-Dec-2019 00:06:43     node = self.compose_mapping_node(anchor)
24-Dec-2019 00:06:43 /usr/local/lib/python2.7/dist-packages/yaml/composer.py:127: in compose_mapping_node
24-Dec-2019 00:06:43     while not self.check_event(MappingEndEvent):
24-Dec-2019 00:06:43 /usr/local/lib/python2.7/dist-packages/yaml/parser.py:98: in check_event
24-Dec-2019 00:06:43     self.current_event = self.state()
24-Dec-2019 00:06:43 /usr/local/lib/python2.7/dist-packages/yaml/parser.py:428: in parse_block_mapping_key
24-Dec-2019 00:06:43     if self.check_token(KeyToken):
24-Dec-2019 00:06:43 /usr/local/lib/python2.7/dist-packages/yaml/scanner.py:116: in check_token
24-Dec-2019 00:06:43     self.fetch_more_tokens()
24-Dec-2019 00:06:43 /usr/local/lib/python2.7/dist-packages/yaml/scanner.py:220: in fetch_more_tokens
24-Dec-2019 00:06:43     return self.fetch_value()
24-Dec-2019 00:06:43 _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
24-Dec-2019 00:06:43
24-Dec-2019 00:06:43 self = <yaml.loader.Loader object at 0x7f30dc65f250>
24-Dec-2019 00:06:43
24-Dec-2019 00:06:43     def fetch_value(self):
24-Dec-2019 00:06:43    
24-Dec-2019 00:06:43         # Do we determine a simple key?
24-Dec-2019 00:06:43         if self.flow_level in self.possible_simple_keys:
24-Dec-2019 00:06:43    
24-Dec-2019 00:06:43             # Add KEY.
24-Dec-2019 00:06:43             key = self.possible_simple_keys[self.flow_level]
24-Dec-2019 00:06:43             del self.possible_simple_keys[self.flow_level]
24-Dec-2019 00:06:43             self.tokens.insert(key.token_number-self.tokens_taken,
24-Dec-2019 00:06:43                     KeyToken(key.mark, key.mark))
24-Dec-2019 00:06:43    
24-Dec-2019 00:06:43             # If this key starts a new block mapping, we need to add
24-Dec-2019 00:06:43             # BLOCK-MAPPING-START.
24-Dec-2019 00:06:43             if not self.flow_level:
24-Dec-2019 00:06:43                 if self.add_indent(key.column):
24-Dec-2019 00:06:43                     self.tokens.insert(key.token_number-self.tokens_taken,
24-Dec-2019 00:06:43                             BlockMappingStartToken(key.mark, key.mark))
24-Dec-2019 00:06:43    
24-Dec-2019 00:06:43             # There cannot be two simple keys one after another.
24-Dec-2019 00:06:43             self.allow_simple_key = False
24-Dec-2019 00:06:43    
24-Dec-2019 00:06:43         # It must be a part of a complex key.
24-Dec-2019 00:06:43         else:
24-Dec-2019 00:06:43    
24-Dec-2019 00:06:43             # Block context needs additional checks.
24-Dec-2019 00:06:43             # (Do we really need them? They will be catched by the parser
24-Dec-2019 00:06:43             # anyway.)
24-Dec-2019 00:06:43             if not self.flow_level:
24-Dec-2019 00:06:43    
24-Dec-2019 00:06:43                 # We are allowed to start a complex value if and only if
24-Dec-2019 00:06:43                 # we can start a simple key.
24-Dec-2019 00:06:43                 if not self.allow_simple_key:
24-Dec-2019 00:06:43                     raise ScannerError(None, None,
24-Dec-2019 00:06:43                             "mapping values are not allowed here",
24-Dec-2019 00:06:43 >                           self.get_mark())
24-Dec-2019 00:06:43 E                   ScannerError: mapping values are not allowed here
24-Dec-2019 00:06:43 E                     in "<unicode string>", line 1, column 90:
24-Dec-2019 00:06:43 E                        ... py:91: RequestsDependencyWarning: urllib3 (1.25.7) or chardet (3 ...
24-Dec-2019 00:06:43 E                                                            ^
24-Dec-2019 00:06:43
24-Dec-2019 00:06:43 /usr/local/lib/python2.7/dist-packages/yaml/scanner.py:576: ScannerError
24-Dec-2019 00:06:43 ___ ERROR at setup of test_access_time[singleprovider_singleclient_directio] ___
24-Dec-2019 00:06:43
24-Dec-2019 00:06:43 env_description_abs_path = '/mnt/storage/bamboo-agent-home/xml-data/build-dir/TEST-ON2-DS/onedata/tests/oneclient/environments/singleprovider_singleclient_directio.yaml'
24-Dec-2019 00:06:43 hosts = {}
24-Dec-2019 00:06:43 request = <SubRequest 'env_desc' for <Function 'test_type[singleprovider_singleclient_directio]'>>
24-Dec-2019 00:06:43 users = {}
24-Dec-2019 00:06:43 previous_env = {'env_path': '/mnt/storage/bamboo-agent-home/xml-data/build-dir/TEST-ON2-DS/onedata/tests/oneclient/environments/singleprovider_singleclient_directio.yaml'}
24-Dec-2019 00:06:43
24-Dec-2019 00:06:43     @pytest.fixture(scope='module', autouse=True)
24-Dec-2019 00:06:43     def env_desc(env_description_abs_path, hosts, request, users,
24-Dec-2019 00:06:43                  previous_env):
24-Dec-2019 00:06:43         """
24-Dec-2019 00:06:43         Sets up environment and returns environment description.
24-Dec-2019 00:06:43         """
24-Dec-2019 00:06:43         test_type = get_test_type(request)
24-Dec-2019 00:06:43         start_env = _check_if_should_start_new_env(env_description_abs_path,
24-Dec-2019 00:06:43                                                    previous_env)
24-Dec-2019 00:06:43    
24-Dec-2019 00:06:43         if test_type in ['gui']:
24-Dec-2019 00:06:43             # For now gui tests do not use onenv patch
24-Dec-2019 00:06:43             if start_env:
24-Dec-2019 00:06:43                 previous_env['started'] = start_environment(
24-Dec-2019 00:06:43                     env_description_abs_path, request, hosts, '', users,
24-Dec-2019 00:06:43                     env_description_abs_path
24-Dec-2019 00:06:43                 )
24-Dec-2019 00:06:43             return ''
24-Dec-2019 00:06:43    
24-Dec-2019 00:06:43         elif test_type == 'mixed':
24-Dec-2019 00:06:43             with open(env_description_abs_path, 'r') as env_desc_file:
24-Dec-2019 00:06:43                 env_desc = yaml.load(env_desc_file)
24-Dec-2019 00:06:43             scenario = env_desc.get('scenario')
24-Dec-2019 00:06:43             scenarios_dir_path = SCENARIO_DIRS.get(get_test_type(request))
24-Dec-2019 00:06:43             scenario_path = os.path.abspath(os.path.join(scenarios_dir_path,
24-Dec-2019 00:06:43                                                          scenario))
24-Dec-2019 00:06:43    
24-Dec-2019 00:06:43             if start_env:
24-Dec-2019 00:06:43                 previous_env['started'] = start_environment(
24-Dec-2019 00:06:43                     scenario_path, request, hosts, '', users,
24-Dec-2019 00:06:43                     env_description_abs_path
24-Dec-2019 00:06:43                 )
24-Dec-2019 00:06:43             return env_desc
24-Dec-2019 00:06:43    
24-Dec-2019 00:06:43         elif test_type in ['oneclient', 'onedata_fs', 'performance']:
24-Dec-2019 00:06:43             with open(env_description_abs_path, 'r') as env_desc_file:
24-Dec-2019 00:06:43                 env_desc = yaml.load(env_desc_file)
24-Dec-2019 00:06:43    
24-Dec-2019 00:06:43             scenario = env_desc.get('scenario')
24-Dec-2019 00:06:43             scenarios_dir_path = SCENARIO_DIRS.get(get_test_type(request))
24-Dec-2019 00:06:43             scenario_path = os.path.abspath(os.path.join(scenarios_dir_path,
24-Dec-2019 00:06:43                                                          scenario))
24-Dec-2019 00:06:43    
24-Dec-2019 00:06:43             patch = env_desc.get('patch')
24-Dec-2019 00:06:43             patch_dir_path = PATCHES_DIR.get(get_test_type(request))
24-Dec-2019 00:06:43             patch_path = os.path.join(patch_dir_path, patch)
24-Dec-2019 00:06:43             if start_env:
24-Dec-2019 00:06:43                 previous_env['started'] = start_environment(
24-Dec-2019 00:06:43                     scenario_path, request, hosts, patch_path, users,
24-Dec-2019 00:06:43 >                   env_description_abs_path
24-Dec-2019 00:06:43                 )
24-Dec-2019 00:06:43
24-Dec-2019 00:06:43 tests/conftest.py:356:
24-Dec-2019 00:06:43 _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
24-Dec-2019 00:06:43 tests/conftest.py:455: in start_environment
24-Dec-2019 00:06:43     pods_cfg = check_deployment()
24-Dec-2019 00:06:43 tests/conftest.py:484: in check_deployment
24-Dec-2019 00:06:43     status_output = yaml.load(status_output.decode('utf-8'))
24-Dec-2019 00:06:43 /usr/local/lib/python2.7/dist-packages/yaml/__init__.py:71: in load
24-Dec-2019 00:06:43     return loader.get_single_data()
24-Dec-2019 00:06:43 /usr/local/lib/python2.7/dist-packages/yaml/constructor.py:37: in get_single_data
24-Dec-2019 00:06:43     node = self.get_single_node()
24-Dec-2019 00:06:43 /usr/local/lib/python2.7/dist-packages/yaml/composer.py:36: in get_single_node
24-Dec-2019 00:06:43     document = self.compose_document()
24-Dec-2019 00:06:43 /usr/local/lib/python2.7/dist-packages/yaml/composer.py:55: in compose_document
24-Dec-2019 00:06:43     node = self.compose_node(None, None)
24-Dec-2019 00:06:43 /usr/local/lib/python2.7/dist-packages/yaml/composer.py:84: in compose_node
24-Dec-2019 00:06:43     node = self.compose_mapping_node(anchor)
24-Dec-2019 00:06:43 /usr/local/lib/python2.7/dist-packages/yaml/composer.py:127: in compose_mapping_node
24-Dec-2019 00:06:43     while not self.check_event(MappingEndEvent):
24-Dec-2019 00:06:43 /usr/local/lib/python2.7/dist-packages/yaml/parser.py:98: in check_event
24-Dec-2019 00:06:43     self.current_event = self.state()
24-Dec-2019 00:06:43 /usr/local/lib/python2.7/dist-packages/yaml/parser.py:428: in parse_block_mapping_key
24-Dec-2019 00:06:43     if self.check_token(KeyToken):
24-Dec-2019 00:06:43 /usr/local/lib/python2.7/dist-packages/yaml/scanner.py:116: in check_token
24-Dec-2019 00:06:43     self.fetch_more_tokens()
24-Dec-2019 00:06:43 /usr/local/lib/python2.7/dist-packages/yaml/scanner.py:220: in fetch_more_tokens
24-Dec-2019 00:06:43     return self.fetch_value()
24-Dec-2019 00:06:43 _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
24-Dec-2019 00:06:43
24-Dec-2019 00:06:43 self = <yaml.loader.Loader object at 0x7f30dc65f250>
24-Dec-2019 00:06:43
24-Dec-2019 00:06:43     def fetch_value(self):
24-Dec-2019 00:06:43    
24-Dec-2019 00:06:43         # Do we determine a simple key?
24-Dec-2019 00:06:43         if self.flow_level in self.possible_simple_keys:
24-Dec-2019 00:06:43    
24-Dec-2019 00:06:43             # Add KEY.
24-Dec-2019 00:06:43             key = self.possible_simple_keys[self.flow_level]
24-Dec-2019 00:06:43             del self.possible_simple_keys[self.flow_level]
24-Dec-2019 00:06:43             self.tokens.insert(key.token_number-self.tokens_taken,
24-Dec-2019 00:06:43                     KeyToken(key.mark, key.mark))
24-Dec-2019 00:06:43    
24-Dec-2019 00:06:43             # If this key starts a new block mapping, we need to add
24-Dec-2019 00:06:43             # BLOCK-MAPPING-START.
24-Dec-2019 00:06:43             if not self.flow_level:
24-Dec-2019 00:06:43                 if self.add_indent(key.column):
24-Dec-2019 00:06:43                     self.tokens.insert(key.token_number-self.tokens_taken,
24-Dec-2019 00:06:43                             BlockMappingStartToken(key.mark, key.mark))
24-Dec-2019 00:06:43    
24-Dec-2019 00:06:43             # There cannot be two simple keys one after another.
24-Dec-2019 00:06:43             self.allow_simple_key = False
24-Dec-2019 00:06:43    
24-Dec-2019 00:06:43         # It must be a part of a complex key.
24-Dec-2019 00:06:43         else:
24-Dec-2019 00:06:43    
24-Dec-2019 00:06:43             # Block context needs additional checks.
24-Dec-2019 00:06:43             # (Do we really need them? They will be catched by the parser
24-Dec-2019 00:06:43             # anyway.)
24-Dec-2019 00:06:43             if not self.flow_level:
24-Dec-2019 00:06:43    
24-Dec-2019 00:06:43                 # We are allowed to start a complex value if and only if
24-Dec-2019 00:06:43                 # we can start a simple key.
24-Dec-2019 00:06:43                 if not self.allow_simple_key:
24-Dec-2019 00:06:43                     raise ScannerError(None, None,
24-Dec-2019 00:06:43                             "mapping values are not allowed here",
24-Dec-2019 00:06:43 >                           self.get_mark())
24-Dec-2019 00:06:43 E                   ScannerError: mapping values are not allowed here
24-Dec-2019 00:06:43 E                     in "<unicode string>", line 1, column 90:
24-Dec-2019 00:06:43 E                        ... py:91: RequestsDependencyWarning: urllib3 (1.25.7) or chardet (3 ...
24-Dec-2019 00:06:43 E                                                            ^
24-Dec-2019 00:06:43
24-Dec-2019 00:06:43 /usr/local/lib/python2.7/dist-packages/yaml/scanner.py:576: ScannerError
24-Dec-2019 00:06:43 _ ERROR at setup of test_modification_time[singleprovider_singleclient_directio] _
24-Dec-2019 00:06:43
24-Dec-2019 00:06:43 env_description_abs_path = '/mnt/storage/bamboo-agent-home/xml-data/build-dir/TEST-ON2-DS/onedata/tests/oneclient/environments/singleprovider_singleclient_directio.yaml'
24-Dec-2019 00:06:43 hosts = {}
24-Dec-2019 00:06:43 request = <SubRequest 'env_desc' for <Function 'test_type[singleprovider_singleclient_directio]'>>
24-Dec-2019 00:06:43 users = {}
24-Dec-2019 00:06:43 previous_env = {'env_path': '/mnt/storage/bamboo-agent-home/xml-data/build-dir/TEST-ON2-DS/onedata/tests/oneclient/environments/singleprovider_singleclient_directio.yaml'}
24-Dec-2019 00:06:43
24-Dec-2019 00:06:43     @pytest.fixture(scope='module', autouse=True)
24-Dec-2019 00:06:43     def env_desc(env_description_abs_path, hosts, request, users,
24-Dec-2019 00:06:43                  previous_env):
24-Dec-2019 00:06:43         """
24-Dec-2019 00:06:43         Sets up environment and returns environment description.
24-Dec-2019 00:06:43         """
24-Dec-2019 00:06:43         test_type = get_test_type(request)
24-Dec-2019 00:06:43         start_env = _check_if_should_start_new_env(env_description_abs_path,
24-Dec-2019 00:06:43                                                    previous_env)
24-Dec-2019 00:06:43    
24-Dec-2019 00:06:43         if test_type in ['gui']:
24-Dec-2019 00:06:43             # For now gui tests do not use onenv patch
24-Dec-2019 00:06:43             if start_env:
24-Dec-2019 00:06:43                 previous_env['started'] = start_environment(
24-Dec-2019 00:06:43                     env_description_abs_path, request, hosts, '', users,
24-Dec-2019 00:06:43                     env_description_abs_path
24-Dec-2019 00:06:43                 )
24-Dec-2019 00:06:43             return ''
24-Dec-2019 00:06:43    
24-Dec-2019 00:06:43         elif test_type == 'mixed':
24-Dec-2019 00:06:43             with open(env_description_abs_path, 'r') as env_desc_file:
24-Dec-2019 00:06:43                 env_desc = yaml.load(env_desc_file)
24-Dec-2019 00:06:43             scenario = env_desc.get('scenario')
24-Dec-2019 00:06:43             scenarios_dir_path = SCENARIO_DIRS.get(get_test_type(request))
24-Dec-2019 00:06:43             scenario_path = os.path.abspath(os.path.join(scenarios_dir_path,
24-Dec-2019 00:06:43                                                          scenario))
24-Dec-2019 00:06:43    
24-Dec-2019 00:06:43             if start_env:
24-Dec-2019 00:06:43                 previous_env['started'] = start_environment(
24-Dec-2019 00:06:43                     scenario_path, request, hosts, '', users,
24-Dec-2019 00:06:43                     env_description_abs_path
24-Dec-2019 00:06:43                 )
24-Dec-2019 00:06:43             return env_desc
24-Dec-2019 00:06:43    
24-Dec-2019 00:06:43         elif test_type in ['oneclient', 'onedata_fs', 'performance']:
24-Dec-2019 00:06:43             with open(env_description_abs_path, 'r') as env_desc_file:
24-Dec-2019 00:06:43                 env_desc = yaml.load(env_desc_file)
24-Dec-2019 00:06:43    
24-Dec-2019 00:06:43             scenario = env_desc.get('scenario')
24-Dec-2019 00:06:43             scenarios_dir_path = SCENARIO_DIRS.get(get_test_type(request))
24-Dec-2019 00:06:43             scenario_path = os.path.abspath(os.path.join(scenarios_dir_path,
24-Dec-2019 00:06:43                                                          scenario))
24-Dec-2019 00:06:43    
24-Dec-2019 00:06:43             patch = env_desc.get('patch')
24-Dec-2019 00:06:43             patch_dir_path = PATCHES_DIR.get(get_test_type(request))
24-Dec-2019 00:06:43             patch_path = os.path.join(patch_dir_path, patch)
24-Dec-2019 00:06:43             if start_env:
24-Dec-2019 00:06:43                 previous_env['started'] = start_environment(
24-Dec-2019 00:06:43                     scenario_path, request, hosts, patch_path, users,
24-Dec-2019 00:06:43 >                   env_description_abs_path
24-Dec-2019 00:06:43                 )
24-Dec-2019 00:06:43
24-Dec-2019 00:06:43 tests/conftest.py:356:
24-Dec-2019 00:06:43 _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
24-Dec-2019 00:06:43 tests/conftest.py:455: in start_environment
24-Dec-2019 00:06:43     pods_cfg = check_deployment()
24-Dec-2019 00:06:43 tests/conftest.py:484: in check_deployment
24-Dec-2019 00:06:43     status_output = yaml.load(status_output.decode('utf-8'))
24-Dec-2019 00:06:43 /usr/local/lib/python2.7/dist-packages/yaml/__init__.py:71: in load
24-Dec-2019 00:06:43     return loader.get_single_data()
24-Dec-2019 00:06:43 /usr/local/lib/python2.7/dist-packages/yaml/constructor.py:37: in get_single_data
24-Dec-2019 00:06:43     node = self.get_single_node()
24-Dec-2019 00:06:43 /usr/local/lib/python2.7/dist-packages/yaml/composer.py:36: in get_single_node
24-Dec-2019 00:06:43     document = self.compose_document()
24-Dec-2019 00:06:43 /usr/local/lib/python2.7/dist-packages/yaml/composer.py:55: in compose_document
24-Dec-2019 00:06:43     node = self.compose_node(None, None)
24-Dec-2019 00:06:43 /usr/local/lib/python2.7/dist-packages/yaml/composer.py:84: in compose_node
24-Dec-2019 00:06:43     node = self.compose_mapping_node(anchor)
24-Dec-2019 00:06:43 /usr/local/lib/python2.7/dist-packages/yaml/composer.py:127: in compose_mapping_node
24-Dec-2019 00:06:43     while not self.check_event(MappingEndEvent):
24-Dec-2019 00:06:43 /usr/local/lib/python2.7/dist-packages/yaml/parser.py:98: in check_event
24-Dec-2019 00:06:43     self.current_event = self.state()
24-Dec-2019 00:06:43 /usr/local/lib/python2.7/dist-packages/yaml/parser.py:428: in parse_block_mapping_key
24-Dec-2019 00:06:43     if self.check_token(KeyToken):
24-Dec-2019 00:06:43 /usr/local/lib/python2.7/dist-packages/yaml/scanner.py:116: in check_token
24-Dec-2019 00:06:43     self.fetch_more_tokens()
24-Dec-2019 00:06:43 /usr/local/lib/python2.7/dist-packages/yaml/scanner.py:220: in fetch_more_tokens
24-Dec-2019 00:06:43     return self.fetch_value()
24-Dec-2019 00:06:43 _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
24-Dec-2019 00:06:43
24-Dec-2019 00:06:43 self = <yaml.loader.Loader object at 0x7f30dc65f250>
24-Dec-2019 00:06:43
24-Dec-2019 00:06:43     def fetch_value(self):
24-Dec-2019 00:06:43    
24-Dec-2019 00:06:43         # Do we determine a simple key?
24-Dec-2019 00:06:43         if self.flow_level in self.possible_simple_keys:
24-Dec-2019 00:06:43    
24-Dec-2019 00:06:43             # Add KEY.
24-Dec-2019 00:06:43             key = self.possible_simple_keys[self.flow_level]
24-Dec-2019 00:06:43             del self.possible_simple_keys[self.flow_level]
24-Dec-2019 00:06:43             self.tokens.insert(key.token_number-self.tokens_taken,
24-Dec-2019 00:06:43                     KeyToken(key.mark, key.mark))
24-Dec-2019 00:06:43    
24-Dec-2019 00:06:43             # If this key starts a new block mapping, we need to add
24-Dec-2019 00:06:43             # BLOCK-MAPPING-START.
24-Dec-2019 00:06:43             if not self.flow_level:
24-Dec-2019 00:06:43                 if self.add_indent(key.column):
24-Dec-2019 00:06:43                     self.tokens.insert(key.token_number-self.tokens_taken,
24-Dec-2019 00:06:43                             BlockMappingStartToken(key.mark, key.mark))
24-Dec-2019 00:06:43    
24-Dec-2019 00:06:43             # There cannot be two simple keys one after another.
24-Dec-2019 00:06:43             self.allow_simple_key = False
24-Dec-2019 00:06:43    
24-Dec-2019 00:06:43         # It must be a part of a complex key.
24-Dec-2019 00:06:43         else:
24-Dec-2019 00:06:43    
24-Dec-2019 00:06:43             # Block context needs additional checks.
24-Dec-2019 00:06:43             # (Do we really need them? They will be catched by the parser
24-Dec-2019 00:06:43             # anyway.)
24-Dec-2019 00:06:43             if not self.flow_level:
24-Dec-2019 00:06:43    
24-Dec-2019 00:06:43                 # We are allowed to start a complex value if and only if
24-Dec-2019 00:06:43                 # we can start a simple key.
24-Dec-2019 00:06:43                 if not self.allow_simple_key:
24-Dec-2019 00:06:43                     raise ScannerError(None, None,
24-Dec-2019 00:06:43                             "mapping values are not allowed here",
24-Dec-2019 00:06:43 >                           self.get_mark())
24-Dec-2019 00:06:43 E                   ScannerError: mapping values are not allowed here
24-Dec-2019 00:06:43 E                     in "<unicode string>", line 1, column 90:
24-Dec-2019 00:06:43 E                        ... py:91: RequestsDependencyWarning: urllib3 (1.25.7) or chardet (3 ...
24-Dec-2019 00:06:43 E                                                            ^
24-Dec-2019 00:06:43
24-Dec-2019 00:06:43 /usr/local/lib/python2.7/dist-packages/yaml/scanner.py:576: ScannerError
24-Dec-2019 00:06:43 _ ERROR at setup of test_stat_change_time_mv[singleprovider_singleclient_directio] _
24-Dec-2019 00:06:43
24-Dec-2019 00:06:43 env_description_abs_path = '/mnt/storage/bamboo-agent-home/xml-data/build-dir/TEST-ON2-DS/onedata/tests/oneclient/environments/singleprovider_singleclient_directio.yaml'
24-Dec-2019 00:06:43 hosts = {}
24-Dec-2019 00:06:43 request = <SubRequest 'env_desc' for <Function 'test_type[singleprovider_singleclient_directio]'>>
24-Dec-2019 00:06:43 users = {}
24-Dec-2019 00:06:43 previous_env = {'env_path': '/mnt/storage/bamboo-agent-home/xml-data/build-dir/TEST-ON2-DS/onedata/tests/oneclient/environments/singleprovider_singleclient_directio.yaml'}
24-Dec-2019 00:06:43
24-Dec-2019 00:06:43     @pytest.fixture(scope='module', autouse=True)
24-Dec-2019 00:06:43     def env_desc(env_description_abs_path, hosts, request, users,
24-Dec-2019 00:06:43                  previous_env):
24-Dec-2019 00:06:43         """
24-Dec-2019 00:06:43         Sets up environment and returns environment description.
24-Dec-2019 00:06:43         """
24-Dec-2019 00:06:43         test_type = get_test_type(request)
24-Dec-2019 00:06:43         start_env = _check_if_should_start_new_env(env_description_abs_path,
24-Dec-2019 00:06:43                                                    previous_env)
24-Dec-2019 00:06:43    
24-Dec-2019 00:06:43         if test_type in ['gui']:
24-Dec-2019 00:06:43             # For now gui tests do not use onenv patch
24-Dec-2019 00:06:43             if start_env:
24-Dec-2019 00:06:43                 previous_env['started'] = start_environment(
24-Dec-2019 00:06:43                     env_description_abs_path, request, hosts, '', users,
24-Dec-2019 00:06:43                     env_description_abs_path
24-Dec-2019 00:06:43                 )
24-Dec-2019 00:06:43             return ''
24-Dec-2019 00:06:43    
24-Dec-2019 00:06:43         elif test_type == 'mixed':
24-Dec-2019 00:06:43             with open(env_description_abs_path, 'r') as env_desc_file:
24-Dec-2019 00:06:43                 env_desc = yaml.load(env_desc_file)
24-Dec-2019 00:06:43             scenario = env_desc.get('scenario')
24-Dec-2019 00:06:43             scenarios_dir_path = SCENARIO_DIRS.get(get_test_type(request))
24-Dec-2019 00:06:43             scenario_path = os.path.abspath(os.path.join(scenarios_dir_path,
24-Dec-2019 00:06:43                                                          scenario))
24-Dec-2019 00:06:43    
24-Dec-2019 00:06:43             if start_env:
24-Dec-2019 00:06:43                 previous_env['started'] = start_environment(
24-Dec-2019 00:06:43                     scenario_path, request, hosts, '', users,
24-Dec-2019 00:06:43                     env_description_abs_path
24-Dec-2019 00:06:43                 )
24-Dec-2019 00:06:43             return env_desc
24-Dec-2019 00:06:43    
24-Dec-2019 00:06:43         elif test_type in ['oneclient', 'onedata_fs', 'performance']:
24-Dec-2019 00:06:43             with open(env_description_abs_path, 'r') as env_desc_file:
24-Dec-2019 00:06:43                 env_desc = yaml.load(env_desc_file)
24-Dec-2019 00:06:43    
24-Dec-2019 00:06:43             scenario = env_desc.get('scenario')
24-Dec-2019 00:06:43             scenarios_dir_path = SCENARIO_DIRS.get(get_test_type(request))
24-Dec-2019 00:06:43             scenario_path = os.path.abspath(os.path.join(scenarios_dir_path,
24-Dec-2019 00:06:43                                                          scenario))
24-Dec-2019 00:06:43    
24-Dec-2019 00:06:43             patch = env_desc.get('patch')
24-Dec-2019 00:06:43             patch_dir_path = PATCHES_DIR.get(get_test_type(request))
24-Dec-2019 00:06:43             patch_path = os.path.join(patch_dir_path, patch)
24-Dec-2019 00:06:43             if start_env:
24-Dec-2019 00:06:43                 previous_env['started'] = start_environment(
24-Dec-2019 00:06:43                     scenario_path, request, hosts, patch_path, users,
24-Dec-2019 00:06:43 >                   env_description_abs_path
24-Dec-2019 00:06:43                 )
24-Dec-2019 00:06:43
24-Dec-2019 00:06:43 tests/conftest.py:356:
24-Dec-2019 00:06:43 _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
24-Dec-2019 00:06:43 tests/conftest.py:455: in start_environment
24-Dec-2019 00:06:43     pods_cfg = check_deployment()
24-Dec-2019 00:06:43 tests/conftest.py:484: in check_deployment
24-Dec-2019 00:06:43     status_output = yaml.load(status_output.decode('utf-8'))
24-Dec-2019 00:06:43 /usr/local/lib/python2.7/dist-packages/yaml/__init__.py:71: in load
24-Dec-2019 00:06:43     return loader.get_single_data()
24-Dec-2019 00:06:43 /usr/local/lib/python2.7/dist-packages/yaml/constructor.py:37: in get_single_data
24-Dec-2019 00:06:43     node = self.get_single_node()
24-Dec-2019 00:06:43 /usr/local/lib/python2.7/dist-packages/yaml/composer.py:36: in get_single_node
24-Dec-2019 00:06:43     document = self.compose_document()
24-Dec-2019 00:06:43 /usr/local/lib/python2.7/dist-packages/yaml/composer.py:55: in compose_document
24-Dec-2019 00:06:43     node = self.compose_node(None, None)
24-Dec-2019 00:06:43 /usr/local/lib/python2.7/dist-packages/yaml/composer.py:84: in compose_node
24-Dec-2019 00:06:43     node = self.compose_mapping_node(anchor)
24-Dec-2019 00:06:43 /usr/local/lib/python2.7/dist-packages/yaml/composer.py:127: in compose_mapping_node
24-Dec-2019 00:06:43     while not self.check_event(MappingEndEvent):
24-Dec-2019 00:06:43 /usr/local/lib/python2.7/dist-packages/yaml/parser.py:98: in check_event
24-Dec-2019 00:06:43     self.current_event = self.state()
24-Dec-2019 00:06:43 /usr/local/lib/python2.7/dist-packages/yaml/parser.py:428: in parse_block_mapping_key
24-Dec-2019 00:06:43     if self.check_token(KeyToken):
24-Dec-2019 00:06:43 /usr/local/lib/python2.7/dist-packages/yaml/scanner.py:116: in check_token
24-Dec-2019 00:06:43     self.fetch_more_tokens()
24-Dec-2019 00:06:43 /usr/local/lib/python2.7/dist-packages/yaml/scanner.py:220: in fetch_more_tokens
24-Dec-2019 00:06:43     return self.fetch_value()
24-Dec-2019 00:06:43 _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
24-Dec-2019 00:06:43
24-Dec-2019 00:06:43 self = <yaml.loader.Loader object at 0x7f30dc65f250>
24-Dec-2019 00:06:43
24-Dec-2019 00:06:43     def fetch_value(self):
24-Dec-2019 00:06:43    
24-Dec-2019 00:06:43         # Do we determine a simple key?
24-Dec-2019 00:06:43         if self.flow_level in self.possible_simple_keys:
24-Dec-2019 00:06:43    
24-Dec-2019 00:06:43             # Add KEY.
24-Dec-2019 00:06:43             key = self.possible_simple_keys[self.flow_level]
24-Dec-2019 00:06:43             del self.possible_simple_keys[self.flow_level]
24-Dec-2019 00:06:43             self.tokens.insert(key.token_number-self.tokens_taken,
24-Dec-2019 00:06:43                     KeyToken(key.mark, key.mark))
24-Dec-2019 00:06:43    
24-Dec-2019 00:06:43             # If this key starts a new block mapping, we need to add
24-Dec-2019 00:06:43             # BLOCK-MAPPING-START.
24-Dec-2019 00:06:43             if not self.flow_level:
24-Dec-2019 00:06:43                 if self.add_indent(key.column):
24-Dec-2019 00:06:43                     self.tokens.insert(key.token_number-self.tokens_taken,
24-Dec-2019 00:06:43                             BlockMappingStartToken(key.mark, key.mark))
24-Dec-2019 00:06:43    
24-Dec-2019 00:06:43             # There cannot be two simple keys one after another.
24-Dec-2019 00:06:43             self.allow_simple_key = False
24-Dec-2019 00:06:43    
24-Dec-2019 00:06:43         # It must be a part of a complex key.
24-Dec-2019 00:06:43         else:
24-Dec-2019 00:06:43    
24-Dec-2019 00:06:43             # Block context needs additional checks.
24-Dec-2019 00:06:43             # (Do we really need them? They will be catched by the parser
24-Dec-2019 00:06:43             # anyway.)
24-Dec-2019 00:06:43             if not self.flow_level:
24-Dec-2019 00:06:43    
24-Dec-2019 00:06:43                 # We are allowed to start a complex value if and only if
24-Dec-2019 00:06:43                 # we can start a simple key.
24-Dec-2019 00:06:43                 if not self.allow_simple_key:
24-Dec-2019 00:06:43                     raise ScannerError(None, None,
24-Dec-2019 00:06:43                             "mapping values are not allowed here",
24-Dec-2019 00:06:43 >                           self.get_mark())
24-Dec-2019 00:06:43 E                   ScannerError: mapping values are not allowed here
24-Dec-2019 00:06:43 E                     in "<unicode string>", line 1, column 90:
24-Dec-2019 00:06:43 E                        ... py:91: RequestsDependencyWarning: urllib3 (1.25.7) or chardet (3 ...
24-Dec-2019 00:06:43 E                                                            ^
24-Dec-2019 00:06:43
24-Dec-2019 00:06:43 /usr/local/lib/python2.7/dist-packages/yaml/scanner.py:576: ScannerError
24-Dec-2019 00:06:43 _ ERROR at setup of test_stat_change_time_chmod[singleprovider_singleclient_directio] _
24-Dec-2019 00:06:43
24-Dec-2019 00:06:43 env_description_abs_path = '/mnt/storage/bamboo-agent-home/xml-data/build-dir/TEST-ON2-DS/onedata/tests/oneclient/environments/singleprovider_singleclient_directio.yaml'
24-Dec-2019 00:06:43 hosts = {}
24-Dec-2019 00:06:43 request = <SubRequest 'env_desc' for <Function 'test_type[singleprovider_singleclient_directio]'>>
24-Dec-2019 00:06:43 users = {}
24-Dec-2019 00:06:43 previous_env = {'env_path': '/mnt/storage/bamboo-agent-home/xml-data/build-dir/TEST-ON2-DS/onedata/tests/oneclient/environments/singleprovider_singleclient_directio.yaml'}
24-Dec-2019 00:06:43
24-Dec-2019 00:06:43     @pytest.fixture(scope='module', autouse=True)
24-Dec-2019 00:06:43     def env_desc(env_description_abs_path, hosts, request, users,
24-Dec-2019 00:06:43                  previous_env):
24-Dec-2019 00:06:43         """
24-Dec-2019 00:06:43         Sets up environment and returns environment description.
24-Dec-2019 00:06:43         """
24-Dec-2019 00:06:43         test_type = get_test_type(request)
24-Dec-2019 00:06:43         start_env = _check_if_should_start_new_env(env_description_abs_path,
24-Dec-2019 00:06:43                                                    previous_env)
24-Dec-2019 00:06:43    
24-Dec-2019 00:06:43         if test_type in ['gui']:
24-Dec-2019 00:06:43             # For now gui tests do not use onenv patch
24-Dec-2019 00:06:43             if start_env:
24-Dec-2019 00:06:43                 previous_env['started'] = start_environment(
24-Dec-2019 00:06:43                     env_description_abs_path, request, hosts, '', users,
24-Dec-2019 00:06:43                     env_description_abs_path
24-Dec-2019 00:06:43                 )
24-Dec-2019 00:06:43             return ''
24-Dec-2019 00:06:43    
24-Dec-2019 00:06:43         elif test_type == 'mixed':
24-Dec-2019 00:06:43             with open(env_description_abs_path, 'r') as env_desc_file:
24-Dec-2019 00:06:43                 env_desc = yaml.load(env_desc_file)
24-Dec-2019 00:06:43             scenario = env_desc.get('scenario')
24-Dec-2019 00:06:43             scenarios_dir_path = SCENARIO_DIRS.get(get_test_type(request))
24-Dec-2019 00:06:43             scenario_path = os.path.abspath(os.path.join(scenarios_dir_path,
24-Dec-2019 00:06:43                                                          scenario))
24-Dec-2019 00:06:43    
24-Dec-2019 00:06:43             if start_env:
24-Dec-2019 00:06:43                 previous_env['started'] = start_environment(
24-Dec-2019 00:06:43                     scenario_path, request, hosts, '', users,
24-Dec-2019 00:06:43                     env_description_abs_path
24-Dec-2019 00:06:43                 )
24-Dec-2019 00:06:43             return env_desc
24-Dec-2019 00:06:43    
24-Dec-2019 00:06:43         elif test_type in ['oneclient', 'onedata_fs', 'performance']:
24-Dec-2019 00:06:43             with open(env_description_abs_path, 'r') as env_desc_file:
24-Dec-2019 00:06:43                 env_desc = yaml.load(env_desc_file)
24-Dec-2019 00:06:43    
24-Dec-2019 00:06:43             scenario = env_desc.get('scenario')
24-Dec-2019 00:06:43             scenarios_dir_path = SCENARIO_DIRS.get(get_test_type(request))
24-Dec-2019 00:06:43             scenario_path = os.path.abspath(os.path.join(scenarios_dir_path,
24-Dec-2019 00:06:43                                                          scenario))
24-Dec-2019 00:06:43    
24-Dec-2019 00:06:43             patch = env_desc.get('patch')
24-Dec-2019 00:06:43             patch_dir_path = PATCHES_DIR.get(get_test_type(request))
24-Dec-2019 00:06:43             patch_path = os.path.join(patch_dir_path, patch)
24-Dec-2019 00:06:43             if start_env:
24-Dec-2019 00:06:43                 previous_env['started'] = start_environment(
24-Dec-2019 00:06:43                     scenario_path, request, hosts, patch_path, users,
24-Dec-2019 00:06:43 >                   env_description_abs_path
24-Dec-2019 00:06:43                 )
24-Dec-2019 00:06:43
24-Dec-2019 00:06:43 tests/conftest.py:356:
24-Dec-2019 00:06:43 _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
24-Dec-2019 00:06:43 tests/conftest.py:455: in start_environment
24-Dec-2019 00:06:43     pods_cfg = check_deployment()
24-Dec-2019 00:06:43 tests/conftest.py:484: in check_deployment
24-Dec-2019 00:06:43     status_output = yaml.load(status_output.decode('utf-8'))
24-Dec-2019 00:06:43 /usr/local/lib/python2.7/dist-packages/yaml/__init__.py:71: in load
24-Dec-2019 00:06:43     return loader.get_single_data()
24-Dec-2019 00:06:43 /usr/local/lib/python2.7/dist-packages/yaml/constructor.py:37: in get_single_data
24-Dec-2019 00:06:43     node = self.get_single_node()
24-Dec-2019 00:06:43 /usr/local/lib/python2.7/dist-packages/yaml/composer.py:36: in get_single_node
24-Dec-2019 00:06:43     document = self.compose_document()
24-Dec-2019 00:06:43 /usr/local/lib/python2.7/dist-packages/yaml/composer.py:55: in compose_document
24-Dec-2019 00:06:43     node = self.compose_node(None, None)
24-Dec-2019 00:06:43 /usr/local/lib/python2.7/dist-packages/yaml/composer.py:84: in compose_node
24-Dec-2019 00:06:43     node = self.compose_mapping_node(anchor)
24-Dec-2019 00:06:43 /usr/local/lib/python2.7/dist-packages/yaml/composer.py:127: in compose_mapping_node
24-Dec-2019 00:06:43     while not self.check_event(MappingEndEvent):
24-Dec-2019 00:06:43 /usr/local/lib/python2.7/dist-packages/yaml/parser.py:98: in check_event
24-Dec-2019 00:06:43     self.current_event = self.state()
24-Dec-2019 00:06:43 /usr/local/lib/python2.7/dist-packages/yaml/parser.py:428: in parse_block_mapping_key
24-Dec-2019 00:06:43     if self.check_token(KeyToken):
24-Dec-2019 00:06:43 /usr/local/lib/python2.7/dist-packages/yaml/scanner.py:116: in check_token
24-Dec-2019 00:06:43     self.fetch_more_tokens()
24-Dec-2019 00:06:43 /usr/local/lib/python2.7/dist-packages/yaml/scanner.py:220: in fetch_more_tokens
24-Dec-2019 00:06:43     return self.fetch_value()
24-Dec-2019 00:06:43 _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
24-Dec-2019 00:06:43
24-Dec-2019 00:06:43 self = <yaml.loader.Loader object at 0x7f30dc65f250>
24-Dec-2019 00:06:43
24-Dec-2019 00:06:43     def fetch_value(self):
24-Dec-2019 00:06:43    
24-Dec-2019 00:06:43         # Do we determine a simple key?
24-Dec-2019 00:06:43         if self.flow_level in self.possible_simple_keys:
24-Dec-2019 00:06:43    
24-Dec-2019 00:06:43             # Add KEY.
24-Dec-2019 00:06:43             key = self.possible_simple_keys[self.flow_level]
24-Dec-2019 00:06:43             del self.possible_simple_keys[self.flow_level]
24-Dec-2019 00:06:43             self.tokens.insert(key.token_number-self.tokens_taken,
24-Dec-2019 00:06:43                     KeyToken(key.mark, key.mark))
24-Dec-2019 00:06:43    
24-Dec-2019 00:06:43             # If this key starts a new block mapping, we need to add
24-Dec-2019 00:06:43             # BLOCK-MAPPING-START.
24-Dec-2019 00:06:43             if not self.flow_level:
24-Dec-2019 00:06:43                 if self.add_indent(key.column):
24-Dec-2019 00:06:43                     self.tokens.insert(key.token_number-self.tokens_taken,
24-Dec-2019 00:06:43                             BlockMappingStartToken(key.mark, key.mark))
24-Dec-2019 00:06:43    
24-Dec-2019 00:06:43             # There cannot be two simple keys one after another.
24-Dec-2019 00:06:43             self.allow_simple_key = False
24-Dec-2019 00:06:43    
24-Dec-2019 00:06:43         # It must be a part of a complex key.
24-Dec-2019 00:06:43         else:
24-Dec-2019 00:06:43    
24-Dec-2019 00:06:43             # Block context needs additional checks.
24-Dec-2019 00:06:43             # (Do we really need them? They will be catched by the parser
24-Dec-2019 00:06:43             # anyway.)
24-Dec-2019 00:06:43             if not self.flow_level:
24-Dec-2019 00:06:43    
24-Dec-2019 00:06:43                 # We are allowed to start a complex value if and only if
24-Dec-2019 00:06:43                 # we can start a simple key.
24-Dec-2019 00:06:43                 if not self.allow_simple_key:
24-Dec-2019 00:06:43                     raise ScannerError(None, None,
24-Dec-2019 00:06:43                             "mapping values are not allowed here",
24-Dec-2019 00:06:43 >                           self.get_mark())
24-Dec-2019 00:06:43 E                   ScannerError: mapping values are not allowed here
24-Dec-2019 00:06:43 E                     in "<unicode string>", line 1, column 90:
24-Dec-2019 00:06:43 E                        ... py:91: RequestsDependencyWarning: urllib3 (1.25.7) or chardet (3 ...
24-Dec-2019 00:06:43 E                                                            ^
24-Dec-2019 00:06:43
24-Dec-2019 00:06:43 /usr/local/lib/python2.7/dist-packages/yaml/scanner.py:576: ScannerError
24-Dec-2019 00:06:43 ========================== 9 error in 1276.54 seconds ==========================
24-Dec-2019 00:07:02 release "dev" deleted
24-Dec-2019 00:07:02 /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 00:07:02   RequestsDependencyWarning)
24-Dec-2019 00:07:03 c7403e6884e5
24-Dec-2019 00:07:03 Using image: docker.onedata.org/onezone-dev:ID-9d85e52816 for onezone service
24-Dec-2019 00:07:03 Using image: docker.onedata.org/oneprovider-dev:ID-96429fd39a for oneprovider service
24-Dec-2019 00:07:03 Using image: docker.onedata.org/rest-cli:ID-48767260b4 for rest cli service
24-Dec-2019 00:07:03 Using image: docker.onedata.org/oneclient-dev:ID-f9ca716885 for oneclient service
24-Dec-2019 00:07:03 Using image: docker.onedata.org/luma:ID-578faeaeaf for LUMA service
24-Dec-2019 00:07:03 Finished task 'Run acceptance mixed tests in Chrome' with result: Success
24-Dec-2019 00:07:03 Starting task 'Parse test results' of type 'com.atlassian.bamboo.plugins.testresultparser:task.testresultparser.junit'
24-Dec-2019 00:07:03 Parsing test results under /home/bamboo/bamboo-agent-home/xml-data/build-dir/TEST-ON2-DS...
24-Dec-2019 00:07:03 Failing task since 9 failing test cases were found.
24-Dec-2019 00:07:03 Finished task 'Parse test results' with result: Failed
24-Dec-2019 00:07:03 Starting task 'Pack logs' of type 'com.atlassian.bamboo.plugins.scripttask:task.builder.script'
24-Dec-2019 00:07:03
Beginning to execute external process for build 'Testing - oneclient-acceptance-src-test2 - directory stat #4 (TEST-ON2-DS-4)'
... running command line:
/bin/sh /home/bamboo/bamboo-agent-home/temp/TEST-ON2-DS-4-ScriptBuildTask-8039606574188866067.sh
... in: /home/bamboo/bamboo-agent-home/xml-data/build-dir/TEST-ON2-DS
... 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-ON2-DS-4
bamboo_capability_system_builder_command_Git=/usr/bin/git
bamboo_build_working_directory=/home/bamboo/bamboo-agent-home/xml-data/build-dir/TEST-ON2-DS
bamboo_planRepository_1_name=onedata-acceptance
bamboo_buildKey=TEST-ON2-DS
bamboo_shortPlanName=oneclient-acceptance-src-test2
bamboo_capability_minikube=true
bamboo_planRepository_name=onedata-acceptance
bamboo_buildNumber=4
bamboo_shortJobName=directory stat
bamboo_buildResultsUrl=https://bamboo.onedata.org/browse/TEST-ON2-DS-4
bamboo_repository_242352175_name=onedata-acceptance
bamboo_repository_242352175_branch_name=develop
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-test2
bamboo_repository_242352175_previous_revision_number=edb49f6afff0f6efec6231b857452404d7f7b7e6
bamboo_build_commandline_com_atlassian_bamboo_plugins_scripttask_task_builder_script_7=/bin/sh /home/bamboo/bamboo-agent-home/temp/TEST-ON2-DS-4-ScriptBuildTask-8069297776586040847.sh
bamboo_build_commandline_com_atlassian_bamboo_plugins_scripttask_task_builder_script_6=/home/bamboo/bamboo-agent-home/temp/TEST-ON2-DS-4-ScriptBuildTask-5758901849383447273.sh
bamboo_shortPlanKey=ON2
bamboo_repository_242352175_git_username=
bamboo_shortJobKey=DS
bamboo_planRepository_revision=569cf78a555db26982dc3aafc6e34e10c259c8bf
bamboo_artifactRepoHostname=S3
bamboo_buildTimeStamp=2019-12-23T15:35:54.182Z
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-ON2-DS-4-ScriptBuildTask-7298018017739088848.sh
bamboo_build_commandline_com_atlassian_bamboo_plugins_scripttask_task_builder_script_3=/home/bamboo/bamboo-agent-home/temp/TEST-ON2-DS-4-ScriptBuildTask-3604036902379577192.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-ON2-DS-4-ScriptBuildTask-7142013843649475972.sh
bamboo_build_commandline_com_atlassian_bamboo_plugins_scripttask_task_builder_script_5=/bin/sh /home/bamboo/bamboo-agent-home/temp/TEST-ON2-DS-4-ScriptBuildTask-1009304510103591076.sh
bamboo_repository_git_branch=develop
bamboo_buildResultKey=TEST-ON2-DS-4
bamboo_repository_branch_name=develop
bamboo_buildPlanName=Testing - oneclient-acceptance-src-test2 - directory stat
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_capability_system_docker_executable=/usr/bin/docker
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_planRepository_branchDisplayName=develop
bamboo_artifactRepoUsername=ubuntu
bamboo_planRepository_1_type=bbserver
bamboo_planRepository_branchName=develop
bamboo_capability_system_jdk_JDK=/usr/lib/jvm/java-8-oracle
bamboo_plan_storageTag=plan-242221103
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_242352175_git_repositoryUrl=ssh://git@git.onedata.org:7999/vfs/onedata-acceptance.git
bamboo_tmp_directory=/home/bamboo/bamboo-agent-home/temp
bamboo_working_directory=/home/bamboo/bamboo-agent-home/xml-data/build-dir/TEST-ON2-DS
bamboo_repository_242352175_revision_number=569cf78a555db26982dc3aafc6e34e10c259c8bf
bamboo_capability_onedata_pkg_builder=true
bamboo_planKey=TEST-ON2
bamboo_planRepository_1_repositoryUrl=ssh://git@git.onedata.org:7999/vfs/onedata-acceptance.git
bamboo_planRepository_username=
bamboo_repository_242352175_git_branch=develop
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 00:07:03 cp: cannot stat 'onedata/one_env/sources_info.yaml': No such file or directory
24-Dec-2019 00:07:03 mv: cannot stat 'onedata/tests/oneclient/logs/*/*/images.yaml': Not a directory
24-Dec-2019 00:07:03 Finished task 'Pack logs' with result: Success
24-Dec-2019 00:07:03
Substituting variable: ${bamboo.OnedataFinalTasksURL} with https://raw.githubusercontent.com/onedata/bamboos/develop/final_tasks.sh
24-Dec-2019 00:07:03 Starting task 'Clear env' of type 'com.atlassian.bamboo.plugins.scripttask:task.builder.script'
24-Dec-2019 00:07:03
Beginning to execute external process for build 'Testing - oneclient-acceptance-src-test2 - directory stat #4 (TEST-ON2-DS-4)'
... running command line:
/bin/sh /home/bamboo/bamboo-agent-home/temp/TEST-ON2-DS-4-ScriptBuildTask-8905016199443723624.sh
... in: /home/bamboo/bamboo-agent-home/xml-data/build-dir/TEST-ON2-DS/onedata
... 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-ON2-DS-4
bamboo_capability_system_builder_command_Git=/usr/bin/git
bamboo_build_working_directory=/home/bamboo/bamboo-agent-home/xml-data/build-dir/TEST-ON2-DS
bamboo_planRepository_1_name=onedata-acceptance
bamboo_buildKey=TEST-ON2-DS
bamboo_shortPlanName=oneclient-acceptance-src-test2
bamboo_capability_minikube=true
bamboo_planRepository_name=onedata-acceptance
bamboo_buildNumber=4
bamboo_shortJobName=directory stat
bamboo_buildResultsUrl=https://bamboo.onedata.org/browse/TEST-ON2-DS-4
bamboo_repository_242352175_name=onedata-acceptance
bamboo_repository_242352175_branch_name=develop
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-test2
bamboo_repository_242352175_previous_revision_number=edb49f6afff0f6efec6231b857452404d7f7b7e6
bamboo_build_commandline_com_atlassian_bamboo_plugins_scripttask_task_builder_script_7=/bin/sh /home/bamboo/bamboo-agent-home/temp/TEST-ON2-DS-4-ScriptBuildTask-8069297776586040847.sh
bamboo_build_commandline_com_atlassian_bamboo_plugins_scripttask_task_builder_script_6=/home/bamboo/bamboo-agent-home/temp/TEST-ON2-DS-4-ScriptBuildTask-5758901849383447273.sh
bamboo_shortPlanKey=ON2
bamboo_build_commandline_com_atlassian_bamboo_plugins_scripttask_task_builder_script_9=/bin/sh /home/bamboo/bamboo-agent-home/temp/TEST-ON2-DS-4-ScriptBuildTask-8039606574188866067.sh
bamboo_repository_242352175_git_username=
bamboo_shortJobKey=DS
bamboo_planRepository_revision=569cf78a555db26982dc3aafc6e34e10c259c8bf
bamboo_artifactRepoHostname=S3
bamboo_buildTimeStamp=2019-12-23T15:35:54.182Z
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-ON2-DS-4-ScriptBuildTask-7298018017739088848.sh
bamboo_build_commandline_com_atlassian_bamboo_plugins_scripttask_task_builder_script_3=/home/bamboo/bamboo-agent-home/temp/TEST-ON2-DS-4-ScriptBuildTask-3604036902379577192.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-ON2-DS-4-ScriptBuildTask-7142013843649475972.sh
bamboo_build_commandline_com_atlassian_bamboo_plugins_scripttask_task_builder_script_5=/bin/sh /home/bamboo/bamboo-agent-home/temp/TEST-ON2-DS-4-ScriptBuildTask-1009304510103591076.sh
bamboo_repository_git_branch=develop
bamboo_buildResultKey=TEST-ON2-DS-4
bamboo_repository_branch_name=develop
bamboo_buildPlanName=Testing - oneclient-acceptance-src-test2 - directory stat
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_capability_system_docker_executable=/usr/bin/docker
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_planRepository_branchDisplayName=develop
bamboo_artifactRepoUsername=ubuntu
bamboo_planRepository_1_type=bbserver
bamboo_planRepository_branchName=develop
bamboo_capability_system_jdk_JDK=/usr/lib/jvm/java-8-oracle
bamboo_plan_storageTag=plan-242221103
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_242352175_git_repositoryUrl=ssh://git@git.onedata.org:7999/vfs/onedata-acceptance.git
bamboo_tmp_directory=/home/bamboo/bamboo-agent-home/temp
bamboo_working_directory=/home/bamboo/bamboo-agent-home/xml-data/build-dir/TEST-ON2-DS
bamboo_repository_242352175_revision_number=569cf78a555db26982dc3aafc6e34e10c259c8bf
bamboo_capability_onedata_pkg_builder=true
bamboo_planKey=TEST-ON2
bamboo_planRepository_1_repositoryUrl=ssh://git@git.onedata.org:7999/vfs/onedata-acceptance.git
bamboo_planRepository_username=
bamboo_repository_242352175_git_branch=develop
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 00:07:03   % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
24-Dec-2019 00:07:03                                  Dload  Upload   Total   Spent    Left  Speed
24-Dec-2019 00:07:03
24-Dec-2019 00:07:03   0     0    0     0    0     0      0      0 --:--:-- --:--:-- --:--:--     0
24-Dec-2019 00:07:03 100  4419  100  4419    0     0  11890      0 --:--:-- --:--:-- --:--:-- 11911
24-Dec-2019 00:07:03 Clearing /tmp/onedata and /home/bamboo/.one-env
24-Dec-2019 00:07:03 Unable to find image 'alpine:latest' locally
24-Dec-2019 00:07:05 latest: Pulling from library/alpine
24-Dec-2019 00:07:05 63bc94deeb28: Pulling fs layer
24-Dec-2019 00:07:06 63bc94deeb28: Verifying Checksum
24-Dec-2019 00:07:06 63bc94deeb28: Download complete
24-Dec-2019 00:07:07 63bc94deeb28: Pull complete
24-Dec-2019 00:07:07 Digest: sha256:7c92a2c6bbcb6b6beff92d0a940779769c2477b807c202954c537e2e0deb9bed
24-Dec-2019 00:07:07 Status: Downloaded newer image for alpine:latest
24-Dec-2019 00:07:08 Cleaning helm deployments
24-Dec-2019 00:07:08 Cleanining pods
24-Dec-2019 00:07:09 Cleaning kube persistant volumes
24-Dec-2019 00:07:09 pod "dev-oneprovider-krakow-ready-check-s9gwr" deleted
24-Dec-2019 00:07:20 Error from server (NotFound): pods "dev-onezone-ready-check-gplcv" not found
24-Dec-2019 00:07:20 Cleaning dockswift container
24-Dec-2019 00:07:20 Cleaning docker containers
24-Dec-2019 00:07:22 Stalled docker containers to remove:
24-Dec-2019 00:07:22 a282b20f3a31 8205d7f017e0 e7dba994bc53 896cb6e5cd15 60e7aae33f1e 359e3588f8f2 20a71072b7a3 f1aadedf8160 68b96fd85d5d 92d96aa23860 cd827f4e98b9 9a011e8aa531 7588b06c766f 510504fa0ae2
24-Dec-2019 00:07:22 Removing stalled docker containers
24-Dec-2019 00:07:22 Error response from daemon: Cannot kill container: a282b20f3a31: Container a282b20f3a3168c3b5cf12b1b1745ae5eb4a67f06c0c20d72e377fc619153781 is not running
24-Dec-2019 00:07:22 a282b20f3a31
24-Dec-2019 00:07:22 Error response from daemon: Cannot kill container: 8205d7f017e0: Container 8205d7f017e0fdaae12f12b363140cc324e12c562a64432a30a21c199a7c1b8e is not running
24-Dec-2019 00:07:22 8205d7f017e0
24-Dec-2019 00:07:22 Error response from daemon: Cannot kill container: e7dba994bc53: Container e7dba994bc53547ac91d9b4062c5f46f469ee1128b2ddbefab92e4c903792fd1 is not running
24-Dec-2019 00:07:22 e7dba994bc53
24-Dec-2019 00:07:22 Error response from daemon: Cannot kill container: 896cb6e5cd15: Container 896cb6e5cd15c60e202dfe14e86bf79b5af3bcd8491eff47bd0bc4aa7cd2a92c is not running
24-Dec-2019 00:07:22 896cb6e5cd15
24-Dec-2019 00:07:22 Error response from daemon: Cannot kill container: 60e7aae33f1e: Container 60e7aae33f1e06ed9756a799ff15c47c96323213e23ea065b2bf51766c503471 is not running
24-Dec-2019 00:07:22 60e7aae33f1e
24-Dec-2019 00:07:22 Error response from daemon: Cannot kill container: 359e3588f8f2: Container 359e3588f8f2180e20804aa87f7cee09a6ffd53f81a4eb5b2882333b919d6909 is not running
24-Dec-2019 00:07:22 359e3588f8f2
24-Dec-2019 00:07:23 Error response from daemon: Cannot kill container: 20a71072b7a3: Container 20a71072b7a3eb4947dcd353a1ea2462d605917f30c0d14653b7aa96e55d8e22 is not running
24-Dec-2019 00:07:23 20a71072b7a3
24-Dec-2019 00:07:23 Error response from daemon: Cannot kill container: f1aadedf8160: Container f1aadedf81603e5afdf4c1f5ff3c650262194aa2849ad6c7ffba946a715e965a is not running
24-Dec-2019 00:07:23 f1aadedf8160
24-Dec-2019 00:07:23 Error response from daemon: Cannot kill container: 68b96fd85d5d: Container 68b96fd85d5d5a8f5393e845244f41ade662f92fae95c9bce07005b728f62342 is not running
24-Dec-2019 00:07:23 68b96fd85d5d
24-Dec-2019 00:07:23 Error response from daemon: Cannot kill container: 92d96aa23860: Container 92d96aa23860a0e85a4a6979d26c379ece003673f8174515f65ecb6967878dc2 is not running
24-Dec-2019 00:07:23 92d96aa23860
24-Dec-2019 00:07:23 Error response from daemon: Cannot kill container: cd827f4e98b9: Container cd827f4e98b93aa76ff75226c4ae81f8520fb9f9c1352ca9e0a0656171d7560f is not running
24-Dec-2019 00:07:23 cd827f4e98b9
24-Dec-2019 00:07:23 Error response from daemon: Cannot kill container: 9a011e8aa531: Container 9a011e8aa5311b7d19a2879f18bc068bfa6c53a4b4b07b8bd4f9fceb3cc7c911 is not running
24-Dec-2019 00:07:23 9a011e8aa531
24-Dec-2019 00:07:23 Error response from daemon: Cannot kill container: 7588b06c766f: Container 7588b06c766fab6ab2b00f9bb46d295fd39765243fa48e6f122f49f66448909c is not running
24-Dec-2019 00:07:23 7588b06c766f
24-Dec-2019 00:07:23 Error response from daemon: Cannot kill container: 510504fa0ae2: Container 510504fa0ae29f0a18c28ad266454a5967e57df6c91057040617bd0b7cdb0ded is not running
24-Dec-2019 00:07:23 510504fa0ae2
24-Dec-2019 00:07:23 Stalled docker volumes to remove:
24-Dec-2019 00:07:23
24-Dec-2019 00:07:23 Removing stalled docker volumes
24-Dec-2019 00:07:23 Removing stalled loopdevices
24-Dec-2019 00:07:23 Unable to find image 'ubuntu:14.10' locally
24-Dec-2019 00:07:25 14.10: Pulling from library/ubuntu
24-Dec-2019 00:07:25 b0efe5c05b4c: Pulling fs layer
24-Dec-2019 00:07:25 0a1f1b169319: Pulling fs layer
24-Dec-2019 00:07:25 1ceb0a3c7c48: Pulling fs layer
24-Dec-2019 00:07:25 a3ed95caeb02: Pulling fs layer
24-Dec-2019 00:07:25 a3ed95caeb02: Waiting
24-Dec-2019 00:07:26 1ceb0a3c7c48: Verifying Checksum
24-Dec-2019 00:07:26 1ceb0a3c7c48: Download complete
24-Dec-2019 00:07:26 0a1f1b169319: Verifying Checksum
24-Dec-2019 00:07:26 0a1f1b169319: Download complete
24-Dec-2019 00:07:26 a3ed95caeb02: Verifying Checksum
24-Dec-2019 00:07:26 a3ed95caeb02: Download complete
24-Dec-2019 00:07:27 b0efe5c05b4c: Verifying Checksum
24-Dec-2019 00:07:27 b0efe5c05b4c: Download complete
24-Dec-2019 00:07:30 b0efe5c05b4c: Pull complete
24-Dec-2019 00:07:30 0a1f1b169319: Pull complete
24-Dec-2019 00:07:31 1ceb0a3c7c48: Pull complete
24-Dec-2019 00:07:31 a3ed95caeb02: Pull complete
24-Dec-2019 00:07:31 Digest: sha256:6341c688b4b0b82ec735389b3c97df8cf2831b8cb8bd1856779130a86574ac5c
24-Dec-2019 00:07:31 Status: Downloaded newer image for ubuntu:14.10
24-Dec-2019 00:07:32 Done
24-Dec-2019 00:07:32 Finished task 'Clear env' with result: Success
24-Dec-2019 00:07:32 Running post build plugin 'Docker Container Cleanup'
24-Dec-2019 00:07:32 Running post build plugin 'NCover Results Collector'
24-Dec-2019 00:07:32 Running post build plugin 'Clover Results Collector'
24-Dec-2019 00:07:32 Running post build plugin 'npm Cache Cleanup'
24-Dec-2019 00:07:32 Running post build plugin 'Artifact Copier'
24-Dec-2019 00:07:32 Publishing an artifact: test_logs.tar.gz
24-Dec-2019 00:07:32 Finished publishing of artifact Non required job artifact: [test_logs.tar.gz], pattern: [test_logs.tar.gz] in 8.684 ms
24-Dec-2019 00:07:34 Successfully removed working directory at '/home/bamboo/bamboo-agent-home/xml-data/build-dir/TEST-ON2-DS'
24-Dec-2019 00:07:34 Finalising the build...
24-Dec-2019 00:07:34 Stopping timer.
24-Dec-2019 00:07:34 Build TEST-ON2-DS-4 completed.
24-Dec-2019 00:07:35 Running on server: post build plugin 'NCover Results Collector'
24-Dec-2019 00:07:35 Running on server: post build plugin 'Build Hanging Detection Configuration'
24-Dec-2019 00:07:35 Running on server: post build plugin 'Clover Delta Calculator'
24-Dec-2019 00:07:35 Running on server: post build plugin 'Maven Dependencies Postprocessor'
24-Dec-2019 00:07:35 All post build plugins have finished
24-Dec-2019 00:07:35 Generating build results summary...
24-Dec-2019 00:07:35 Saving build results to disk...
24-Dec-2019 00:07:35 Logging substituted variables...
24-Dec-2019 00:07:35 Indexing build results...
24-Dec-2019 00:07:35 Finished building TEST-ON2-DS-4.