Build: #4 failed

Job: directory CRUD failed

Build log

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

23-Dec-2019 21:18:53         Sets up environment and returns environment description.
23-Dec-2019 21:18:53         """
23-Dec-2019 21:18:53         test_type = get_test_type(request)
23-Dec-2019 21:18:53         start_env = _check_if_should_start_new_env(env_description_abs_path,
23-Dec-2019 21:18:53                                                    previous_env)
23-Dec-2019 21:18:53    
23-Dec-2019 21:18:53         if test_type in ['gui']:
23-Dec-2019 21:18:53             # For now gui tests do not use onenv patch
23-Dec-2019 21:18:53             if start_env:
23-Dec-2019 21:18:53                 previous_env['started'] = start_environment(
23-Dec-2019 21:18:53                     env_description_abs_path, request, hosts, '', users,
23-Dec-2019 21:18:53                     env_description_abs_path
23-Dec-2019 21:18:53                 )
23-Dec-2019 21:18:53             return ''
23-Dec-2019 21:18:53    
23-Dec-2019 21:18:53         elif test_type == 'mixed':
23-Dec-2019 21:18:53             with open(env_description_abs_path, 'r') as env_desc_file:
23-Dec-2019 21:18:53                 env_desc = yaml.load(env_desc_file)
23-Dec-2019 21:18:53             scenario = env_desc.get('scenario')
23-Dec-2019 21:18:53             scenarios_dir_path = SCENARIO_DIRS.get(get_test_type(request))
23-Dec-2019 21:18:53             scenario_path = os.path.abspath(os.path.join(scenarios_dir_path,
23-Dec-2019 21:18:53                                                          scenario))
23-Dec-2019 21:18:53    
23-Dec-2019 21:18:53             if start_env:
23-Dec-2019 21:18:53                 previous_env['started'] = start_environment(
23-Dec-2019 21:18:53                     scenario_path, request, hosts, '', users,
23-Dec-2019 21:18:53                     env_description_abs_path
23-Dec-2019 21:18:53                 )
23-Dec-2019 21:18:53             return env_desc
23-Dec-2019 21:18:53    
23-Dec-2019 21:18:53         elif test_type in ['oneclient', 'onedata_fs', 'performance']:
23-Dec-2019 21:18:53             with open(env_description_abs_path, 'r') as env_desc_file:
23-Dec-2019 21:18:53                 env_desc = yaml.load(env_desc_file)
23-Dec-2019 21:18:53    
23-Dec-2019 21:18:53             scenario = env_desc.get('scenario')
23-Dec-2019 21:18:53             scenarios_dir_path = SCENARIO_DIRS.get(get_test_type(request))
23-Dec-2019 21:18:53             scenario_path = os.path.abspath(os.path.join(scenarios_dir_path,
23-Dec-2019 21:18:53                                                          scenario))
23-Dec-2019 21:18:53    
23-Dec-2019 21:18:53             patch = env_desc.get('patch')
23-Dec-2019 21:18:53             patch_dir_path = PATCHES_DIR.get(get_test_type(request))
23-Dec-2019 21:18:53             patch_path = os.path.join(patch_dir_path, patch)
23-Dec-2019 21:18:53             if start_env:
23-Dec-2019 21:18:53                 previous_env['started'] = start_environment(
23-Dec-2019 21:18:53                     scenario_path, request, hosts, patch_path, users,
23-Dec-2019 21:18:53 >                   env_description_abs_path
23-Dec-2019 21:18:53                 )
23-Dec-2019 21:18:53
23-Dec-2019 21:18:53 tests/conftest.py:356:
23-Dec-2019 21:18:53 _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
23-Dec-2019 21:18:53 tests/conftest.py:455: in start_environment
23-Dec-2019 21:18:53     pods_cfg = check_deployment()
23-Dec-2019 21:18:53 tests/conftest.py:484: in check_deployment
23-Dec-2019 21:18:53     status_output = yaml.load(status_output.decode('utf-8'))
23-Dec-2019 21:18:53 /usr/local/lib/python2.7/dist-packages/yaml/__init__.py:71: in load
23-Dec-2019 21:18:53     return loader.get_single_data()
23-Dec-2019 21:18:53 /usr/local/lib/python2.7/dist-packages/yaml/constructor.py:37: in get_single_data
23-Dec-2019 21:18:53     node = self.get_single_node()
23-Dec-2019 21:18:53 /usr/local/lib/python2.7/dist-packages/yaml/composer.py:36: in get_single_node
23-Dec-2019 21:18:53     document = self.compose_document()
23-Dec-2019 21:18:53 /usr/local/lib/python2.7/dist-packages/yaml/composer.py:55: in compose_document
23-Dec-2019 21:18:53     node = self.compose_node(None, None)
23-Dec-2019 21:18:53 /usr/local/lib/python2.7/dist-packages/yaml/composer.py:84: in compose_node
23-Dec-2019 21:18:53     node = self.compose_mapping_node(anchor)
23-Dec-2019 21:18:53 /usr/local/lib/python2.7/dist-packages/yaml/composer.py:127: in compose_mapping_node
23-Dec-2019 21:18:53     while not self.check_event(MappingEndEvent):
23-Dec-2019 21:18:53 /usr/local/lib/python2.7/dist-packages/yaml/parser.py:98: in check_event
23-Dec-2019 21:18:53     self.current_event = self.state()
23-Dec-2019 21:18:53 /usr/local/lib/python2.7/dist-packages/yaml/parser.py:428: in parse_block_mapping_key
23-Dec-2019 21:18:53     if self.check_token(KeyToken):
23-Dec-2019 21:18:53 /usr/local/lib/python2.7/dist-packages/yaml/scanner.py:116: in check_token
23-Dec-2019 21:18:53     self.fetch_more_tokens()
23-Dec-2019 21:18:53 /usr/local/lib/python2.7/dist-packages/yaml/scanner.py:220: in fetch_more_tokens
23-Dec-2019 21:18:53     return self.fetch_value()
23-Dec-2019 21:18:53 _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
23-Dec-2019 21:18:53
23-Dec-2019 21:18:53 self = <yaml.loader.Loader object at 0x7f90467daf10>
23-Dec-2019 21:18:53
23-Dec-2019 21:18:53     def fetch_value(self):
23-Dec-2019 21:18:53    
23-Dec-2019 21:18:53         # Do we determine a simple key?
23-Dec-2019 21:18:53         if self.flow_level in self.possible_simple_keys:
23-Dec-2019 21:18:53    
23-Dec-2019 21:18:53             # Add KEY.
23-Dec-2019 21:18:53             key = self.possible_simple_keys[self.flow_level]
23-Dec-2019 21:18:53             del self.possible_simple_keys[self.flow_level]
23-Dec-2019 21:18:53             self.tokens.insert(key.token_number-self.tokens_taken,
23-Dec-2019 21:18:53                     KeyToken(key.mark, key.mark))
23-Dec-2019 21:18:53    
23-Dec-2019 21:18:53             # If this key starts a new block mapping, we need to add
23-Dec-2019 21:18:53             # BLOCK-MAPPING-START.
23-Dec-2019 21:18:53             if not self.flow_level:
23-Dec-2019 21:18:53                 if self.add_indent(key.column):
23-Dec-2019 21:18:53                     self.tokens.insert(key.token_number-self.tokens_taken,
23-Dec-2019 21:18:53                             BlockMappingStartToken(key.mark, key.mark))
23-Dec-2019 21:18:53    
23-Dec-2019 21:18:53             # There cannot be two simple keys one after another.
23-Dec-2019 21:18:53             self.allow_simple_key = False
23-Dec-2019 21:18:53    
23-Dec-2019 21:18:53         # It must be a part of a complex key.
23-Dec-2019 21:18:53         else:
23-Dec-2019 21:18:53    
23-Dec-2019 21:18:53             # Block context needs additional checks.
23-Dec-2019 21:18:53             # (Do we really need them? They will be catched by the parser
23-Dec-2019 21:18:53             # anyway.)
23-Dec-2019 21:18:53             if not self.flow_level:
23-Dec-2019 21:18:53    
23-Dec-2019 21:18:53                 # We are allowed to start a complex value if and only if
23-Dec-2019 21:18:53                 # we can start a simple key.
23-Dec-2019 21:18:53                 if not self.allow_simple_key:
23-Dec-2019 21:18:53                     raise ScannerError(None, None,
23-Dec-2019 21:18:53                             "mapping values are not allowed here",
23-Dec-2019 21:18:53 >                           self.get_mark())
23-Dec-2019 21:18:53 E                   ScannerError: mapping values are not allowed here
23-Dec-2019 21:18:53 E                     in "<unicode string>", line 1, column 90:
23-Dec-2019 21:18:53 E                        ... py:91: RequestsDependencyWarning: urllib3 (1.25.7) or chardet (3 ...
23-Dec-2019 21:18:53 E                                                            ^
23-Dec-2019 21:18:53
23-Dec-2019 21:18:53 /usr/local/lib/python2.7/dist-packages/yaml/scanner.py:576: ScannerError
23-Dec-2019 21:18:53 _ ERROR at setup of test_delete_non_empty_wrong[singleprovider_singleclient_directio] _
23-Dec-2019 21:18:53
23-Dec-2019 21:18:53 env_description_abs_path = '/mnt/storage/bamboo-agent-home/xml-data/build-dir/TEST-ON2-DC/onedata/tests/oneclient/environments/singleprovider_singleclient_directio.yaml'
23-Dec-2019 21:18:53 hosts = {}
23-Dec-2019 21:18:53 request = <SubRequest 'env_desc' for <Function 'test_create[singleprovider_singleclient_directio]'>>
23-Dec-2019 21:18:53 users = {}
23-Dec-2019 21:18:53 previous_env = {'env_path': '/mnt/storage/bamboo-agent-home/xml-data/build-dir/TEST-ON2-DC/onedata/tests/oneclient/environments/singleprovider_singleclient_directio.yaml'}
23-Dec-2019 21:18:53
23-Dec-2019 21:18:53     @pytest.fixture(scope='module', autouse=True)
23-Dec-2019 21:18:53     def env_desc(env_description_abs_path, hosts, request, users,
23-Dec-2019 21:18:53                  previous_env):
23-Dec-2019 21:18:53         """
23-Dec-2019 21:18:53         Sets up environment and returns environment description.
23-Dec-2019 21:18:53         """
23-Dec-2019 21:18:53         test_type = get_test_type(request)
23-Dec-2019 21:18:53         start_env = _check_if_should_start_new_env(env_description_abs_path,
23-Dec-2019 21:18:53                                                    previous_env)
23-Dec-2019 21:18:53    
23-Dec-2019 21:18:53         if test_type in ['gui']:
23-Dec-2019 21:18:53             # For now gui tests do not use onenv patch
23-Dec-2019 21:18:53             if start_env:
23-Dec-2019 21:18:53                 previous_env['started'] = start_environment(
23-Dec-2019 21:18:53                     env_description_abs_path, request, hosts, '', users,
23-Dec-2019 21:18:53                     env_description_abs_path
23-Dec-2019 21:18:53                 )
23-Dec-2019 21:18:53             return ''
23-Dec-2019 21:18:53    
23-Dec-2019 21:18:53         elif test_type == 'mixed':
23-Dec-2019 21:18:53             with open(env_description_abs_path, 'r') as env_desc_file:
23-Dec-2019 21:18:53                 env_desc = yaml.load(env_desc_file)
23-Dec-2019 21:18:53             scenario = env_desc.get('scenario')
23-Dec-2019 21:18:53             scenarios_dir_path = SCENARIO_DIRS.get(get_test_type(request))
23-Dec-2019 21:18:53             scenario_path = os.path.abspath(os.path.join(scenarios_dir_path,
23-Dec-2019 21:18:53                                                          scenario))
23-Dec-2019 21:18:53    
23-Dec-2019 21:18:53             if start_env:
23-Dec-2019 21:18:53                 previous_env['started'] = start_environment(
23-Dec-2019 21:18:53                     scenario_path, request, hosts, '', users,
23-Dec-2019 21:18:53                     env_description_abs_path
23-Dec-2019 21:18:53                 )
23-Dec-2019 21:18:53             return env_desc
23-Dec-2019 21:18:53    
23-Dec-2019 21:18:53         elif test_type in ['oneclient', 'onedata_fs', 'performance']:
23-Dec-2019 21:18:53             with open(env_description_abs_path, 'r') as env_desc_file:
23-Dec-2019 21:18:53                 env_desc = yaml.load(env_desc_file)
23-Dec-2019 21:18:53    
23-Dec-2019 21:18:53             scenario = env_desc.get('scenario')
23-Dec-2019 21:18:53             scenarios_dir_path = SCENARIO_DIRS.get(get_test_type(request))
23-Dec-2019 21:18:53             scenario_path = os.path.abspath(os.path.join(scenarios_dir_path,
23-Dec-2019 21:18:53                                                          scenario))
23-Dec-2019 21:18:53    
23-Dec-2019 21:18:53             patch = env_desc.get('patch')
23-Dec-2019 21:18:53             patch_dir_path = PATCHES_DIR.get(get_test_type(request))
23-Dec-2019 21:18:53             patch_path = os.path.join(patch_dir_path, patch)
23-Dec-2019 21:18:53             if start_env:
23-Dec-2019 21:18:53                 previous_env['started'] = start_environment(
23-Dec-2019 21:18:53                     scenario_path, request, hosts, patch_path, users,
23-Dec-2019 21:18:53 >                   env_description_abs_path
23-Dec-2019 21:18:53                 )
23-Dec-2019 21:18:53
23-Dec-2019 21:18:53 tests/conftest.py:356:
23-Dec-2019 21:18:53 _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
23-Dec-2019 21:18:53 tests/conftest.py:455: in start_environment
23-Dec-2019 21:18:53     pods_cfg = check_deployment()
23-Dec-2019 21:18:53 tests/conftest.py:484: in check_deployment
23-Dec-2019 21:18:53     status_output = yaml.load(status_output.decode('utf-8'))
23-Dec-2019 21:18:53 /usr/local/lib/python2.7/dist-packages/yaml/__init__.py:71: in load
23-Dec-2019 21:18:53     return loader.get_single_data()
23-Dec-2019 21:18:53 /usr/local/lib/python2.7/dist-packages/yaml/constructor.py:37: in get_single_data
23-Dec-2019 21:18:53     node = self.get_single_node()
23-Dec-2019 21:18:53 /usr/local/lib/python2.7/dist-packages/yaml/composer.py:36: in get_single_node
23-Dec-2019 21:18:53     document = self.compose_document()
23-Dec-2019 21:18:53 /usr/local/lib/python2.7/dist-packages/yaml/composer.py:55: in compose_document
23-Dec-2019 21:18:53     node = self.compose_node(None, None)
23-Dec-2019 21:18:53 /usr/local/lib/python2.7/dist-packages/yaml/composer.py:84: in compose_node
23-Dec-2019 21:18:53     node = self.compose_mapping_node(anchor)
23-Dec-2019 21:18:53 /usr/local/lib/python2.7/dist-packages/yaml/composer.py:127: in compose_mapping_node
23-Dec-2019 21:18:53     while not self.check_event(MappingEndEvent):
23-Dec-2019 21:18:53 /usr/local/lib/python2.7/dist-packages/yaml/parser.py:98: in check_event
23-Dec-2019 21:18:53     self.current_event = self.state()
23-Dec-2019 21:18:53 /usr/local/lib/python2.7/dist-packages/yaml/parser.py:428: in parse_block_mapping_key
23-Dec-2019 21:18:53     if self.check_token(KeyToken):
23-Dec-2019 21:18:53 /usr/local/lib/python2.7/dist-packages/yaml/scanner.py:116: in check_token
23-Dec-2019 21:18:53     self.fetch_more_tokens()
23-Dec-2019 21:18:53 /usr/local/lib/python2.7/dist-packages/yaml/scanner.py:220: in fetch_more_tokens
23-Dec-2019 21:18:53     return self.fetch_value()
23-Dec-2019 21:18:53 _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
23-Dec-2019 21:18:53
23-Dec-2019 21:18:53 self = <yaml.loader.Loader object at 0x7f90467daf10>
23-Dec-2019 21:18:53
23-Dec-2019 21:18:53     def fetch_value(self):
23-Dec-2019 21:18:53    
23-Dec-2019 21:18:53         # Do we determine a simple key?
23-Dec-2019 21:18:53         if self.flow_level in self.possible_simple_keys:
23-Dec-2019 21:18:53    
23-Dec-2019 21:18:53             # Add KEY.
23-Dec-2019 21:18:53             key = self.possible_simple_keys[self.flow_level]
23-Dec-2019 21:18:53             del self.possible_simple_keys[self.flow_level]
23-Dec-2019 21:18:53             self.tokens.insert(key.token_number-self.tokens_taken,
23-Dec-2019 21:18:53                     KeyToken(key.mark, key.mark))
23-Dec-2019 21:18:53    
23-Dec-2019 21:18:53             # If this key starts a new block mapping, we need to add
23-Dec-2019 21:18:53             # BLOCK-MAPPING-START.
23-Dec-2019 21:18:53             if not self.flow_level:
23-Dec-2019 21:18:53                 if self.add_indent(key.column):
23-Dec-2019 21:18:53                     self.tokens.insert(key.token_number-self.tokens_taken,
23-Dec-2019 21:18:53                             BlockMappingStartToken(key.mark, key.mark))
23-Dec-2019 21:18:53    
23-Dec-2019 21:18:53             # There cannot be two simple keys one after another.
23-Dec-2019 21:18:53             self.allow_simple_key = False
23-Dec-2019 21:18:53    
23-Dec-2019 21:18:53         # It must be a part of a complex key.
23-Dec-2019 21:18:53         else:
23-Dec-2019 21:18:53    
23-Dec-2019 21:18:53             # Block context needs additional checks.
23-Dec-2019 21:18:53             # (Do we really need them? They will be catched by the parser
23-Dec-2019 21:18:53             # anyway.)
23-Dec-2019 21:18:53             if not self.flow_level:
23-Dec-2019 21:18:53    
23-Dec-2019 21:18:53                 # We are allowed to start a complex value if and only if
23-Dec-2019 21:18:53                 # we can start a simple key.
23-Dec-2019 21:18:53                 if not self.allow_simple_key:
23-Dec-2019 21:18:53                     raise ScannerError(None, None,
23-Dec-2019 21:18:53                             "mapping values are not allowed here",
23-Dec-2019 21:18:53 >                           self.get_mark())
23-Dec-2019 21:18:53 E                   ScannerError: mapping values are not allowed here
23-Dec-2019 21:18:53 E                     in "<unicode string>", line 1, column 90:
23-Dec-2019 21:18:53 E                        ... py:91: RequestsDependencyWarning: urllib3 (1.25.7) or chardet (3 ...
23-Dec-2019 21:18:53 E                                                            ^
23-Dec-2019 21:18:53
23-Dec-2019 21:18:53 /usr/local/lib/python2.7/dist-packages/yaml/scanner.py:576: ScannerError
23-Dec-2019 21:18:53 _ ERROR at setup of test_delete_non_empty[singleprovider_singleclient_directio] _
23-Dec-2019 21:18:53
23-Dec-2019 21:18:53 env_description_abs_path = '/mnt/storage/bamboo-agent-home/xml-data/build-dir/TEST-ON2-DC/onedata/tests/oneclient/environments/singleprovider_singleclient_directio.yaml'
23-Dec-2019 21:18:53 hosts = {}
23-Dec-2019 21:18:53 request = <SubRequest 'env_desc' for <Function 'test_create[singleprovider_singleclient_directio]'>>
23-Dec-2019 21:18:53 users = {}
23-Dec-2019 21:18:53 previous_env = {'env_path': '/mnt/storage/bamboo-agent-home/xml-data/build-dir/TEST-ON2-DC/onedata/tests/oneclient/environments/singleprovider_singleclient_directio.yaml'}
23-Dec-2019 21:18:53
23-Dec-2019 21:18:53     @pytest.fixture(scope='module', autouse=True)
23-Dec-2019 21:18:53     def env_desc(env_description_abs_path, hosts, request, users,
23-Dec-2019 21:18:53                  previous_env):
23-Dec-2019 21:18:53         """
23-Dec-2019 21:18:53         Sets up environment and returns environment description.
23-Dec-2019 21:18:53         """
23-Dec-2019 21:18:53         test_type = get_test_type(request)
23-Dec-2019 21:18:53         start_env = _check_if_should_start_new_env(env_description_abs_path,
23-Dec-2019 21:18:53                                                    previous_env)
23-Dec-2019 21:18:53    
23-Dec-2019 21:18:53         if test_type in ['gui']:
23-Dec-2019 21:18:53             # For now gui tests do not use onenv patch
23-Dec-2019 21:18:53             if start_env:
23-Dec-2019 21:18:53                 previous_env['started'] = start_environment(
23-Dec-2019 21:18:53                     env_description_abs_path, request, hosts, '', users,
23-Dec-2019 21:18:53                     env_description_abs_path
23-Dec-2019 21:18:53                 )
23-Dec-2019 21:18:53             return ''
23-Dec-2019 21:18:53    
23-Dec-2019 21:18:53         elif test_type == 'mixed':
23-Dec-2019 21:18:53             with open(env_description_abs_path, 'r') as env_desc_file:
23-Dec-2019 21:18:53                 env_desc = yaml.load(env_desc_file)
23-Dec-2019 21:18:53             scenario = env_desc.get('scenario')
23-Dec-2019 21:18:53             scenarios_dir_path = SCENARIO_DIRS.get(get_test_type(request))
23-Dec-2019 21:18:53             scenario_path = os.path.abspath(os.path.join(scenarios_dir_path,
23-Dec-2019 21:18:53                                                          scenario))
23-Dec-2019 21:18:53    
23-Dec-2019 21:18:53             if start_env:
23-Dec-2019 21:18:53                 previous_env['started'] = start_environment(
23-Dec-2019 21:18:53                     scenario_path, request, hosts, '', users,
23-Dec-2019 21:18:53                     env_description_abs_path
23-Dec-2019 21:18:53                 )
23-Dec-2019 21:18:53             return env_desc
23-Dec-2019 21:18:53    
23-Dec-2019 21:18:53         elif test_type in ['oneclient', 'onedata_fs', 'performance']:
23-Dec-2019 21:18:53             with open(env_description_abs_path, 'r') as env_desc_file:
23-Dec-2019 21:18:53                 env_desc = yaml.load(env_desc_file)
23-Dec-2019 21:18:53    
23-Dec-2019 21:18:53             scenario = env_desc.get('scenario')
23-Dec-2019 21:18:53             scenarios_dir_path = SCENARIO_DIRS.get(get_test_type(request))
23-Dec-2019 21:18:53             scenario_path = os.path.abspath(os.path.join(scenarios_dir_path,
23-Dec-2019 21:18:53                                                          scenario))
23-Dec-2019 21:18:53    
23-Dec-2019 21:18:53             patch = env_desc.get('patch')
23-Dec-2019 21:18:53             patch_dir_path = PATCHES_DIR.get(get_test_type(request))
23-Dec-2019 21:18:53             patch_path = os.path.join(patch_dir_path, patch)
23-Dec-2019 21:18:53             if start_env:
23-Dec-2019 21:18:53                 previous_env['started'] = start_environment(
23-Dec-2019 21:18:53                     scenario_path, request, hosts, patch_path, users,
23-Dec-2019 21:18:53 >                   env_description_abs_path
23-Dec-2019 21:18:53                 )
23-Dec-2019 21:18:53
23-Dec-2019 21:18:53 tests/conftest.py:356:
23-Dec-2019 21:18:53 _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
23-Dec-2019 21:18:53 tests/conftest.py:455: in start_environment
23-Dec-2019 21:18:53     pods_cfg = check_deployment()
23-Dec-2019 21:18:53 tests/conftest.py:484: in check_deployment
23-Dec-2019 21:18:53     status_output = yaml.load(status_output.decode('utf-8'))
23-Dec-2019 21:18:53 /usr/local/lib/python2.7/dist-packages/yaml/__init__.py:71: in load
23-Dec-2019 21:18:53     return loader.get_single_data()
23-Dec-2019 21:18:53 /usr/local/lib/python2.7/dist-packages/yaml/constructor.py:37: in get_single_data
23-Dec-2019 21:18:53     node = self.get_single_node()
23-Dec-2019 21:18:53 /usr/local/lib/python2.7/dist-packages/yaml/composer.py:36: in get_single_node
23-Dec-2019 21:18:53     document = self.compose_document()
23-Dec-2019 21:18:53 /usr/local/lib/python2.7/dist-packages/yaml/composer.py:55: in compose_document
23-Dec-2019 21:18:53     node = self.compose_node(None, None)
23-Dec-2019 21:18:53 /usr/local/lib/python2.7/dist-packages/yaml/composer.py:84: in compose_node
23-Dec-2019 21:18:53     node = self.compose_mapping_node(anchor)
23-Dec-2019 21:18:53 /usr/local/lib/python2.7/dist-packages/yaml/composer.py:127: in compose_mapping_node
23-Dec-2019 21:18:53     while not self.check_event(MappingEndEvent):
23-Dec-2019 21:18:53 /usr/local/lib/python2.7/dist-packages/yaml/parser.py:98: in check_event
23-Dec-2019 21:18:53     self.current_event = self.state()
23-Dec-2019 21:18:53 /usr/local/lib/python2.7/dist-packages/yaml/parser.py:428: in parse_block_mapping_key
23-Dec-2019 21:18:53     if self.check_token(KeyToken):
23-Dec-2019 21:18:53 /usr/local/lib/python2.7/dist-packages/yaml/scanner.py:116: in check_token
23-Dec-2019 21:18:53     self.fetch_more_tokens()
23-Dec-2019 21:18:53 /usr/local/lib/python2.7/dist-packages/yaml/scanner.py:220: in fetch_more_tokens
23-Dec-2019 21:18:53     return self.fetch_value()
23-Dec-2019 21:18:53 _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
23-Dec-2019 21:18:53
23-Dec-2019 21:18:53 self = <yaml.loader.Loader object at 0x7f90467daf10>
23-Dec-2019 21:18:53
23-Dec-2019 21:18:53     def fetch_value(self):
23-Dec-2019 21:18:53    
23-Dec-2019 21:18:53         # Do we determine a simple key?
23-Dec-2019 21:18:53         if self.flow_level in self.possible_simple_keys:
23-Dec-2019 21:18:53    
23-Dec-2019 21:18:53             # Add KEY.
23-Dec-2019 21:18:53             key = self.possible_simple_keys[self.flow_level]
23-Dec-2019 21:18:53             del self.possible_simple_keys[self.flow_level]
23-Dec-2019 21:18:53             self.tokens.insert(key.token_number-self.tokens_taken,
23-Dec-2019 21:18:53                     KeyToken(key.mark, key.mark))
23-Dec-2019 21:18:53    
23-Dec-2019 21:18:53             # If this key starts a new block mapping, we need to add
23-Dec-2019 21:18:53             # BLOCK-MAPPING-START.
23-Dec-2019 21:18:53             if not self.flow_level:
23-Dec-2019 21:18:53                 if self.add_indent(key.column):
23-Dec-2019 21:18:53                     self.tokens.insert(key.token_number-self.tokens_taken,
23-Dec-2019 21:18:53                             BlockMappingStartToken(key.mark, key.mark))
23-Dec-2019 21:18:53    
23-Dec-2019 21:18:53             # There cannot be two simple keys one after another.
23-Dec-2019 21:18:53             self.allow_simple_key = False
23-Dec-2019 21:18:53    
23-Dec-2019 21:18:53         # It must be a part of a complex key.
23-Dec-2019 21:18:53         else:
23-Dec-2019 21:18:53    
23-Dec-2019 21:18:53             # Block context needs additional checks.
23-Dec-2019 21:18:53             # (Do we really need them? They will be catched by the parser
23-Dec-2019 21:18:53             # anyway.)
23-Dec-2019 21:18:53             if not self.flow_level:
23-Dec-2019 21:18:53    
23-Dec-2019 21:18:53                 # We are allowed to start a complex value if and only if
23-Dec-2019 21:18:53                 # we can start a simple key.
23-Dec-2019 21:18:53                 if not self.allow_simple_key:
23-Dec-2019 21:18:53                     raise ScannerError(None, None,
23-Dec-2019 21:18:53                             "mapping values are not allowed here",
23-Dec-2019 21:18:53 >                           self.get_mark())
23-Dec-2019 21:18:53 E                   ScannerError: mapping values are not allowed here
23-Dec-2019 21:18:53 E                     in "<unicode string>", line 1, column 90:
23-Dec-2019 21:18:53 E                        ... py:91: RequestsDependencyWarning: urllib3 (1.25.7) or chardet (3 ...
23-Dec-2019 21:18:53 E                                                            ^
23-Dec-2019 21:18:53
23-Dec-2019 21:18:53 /usr/local/lib/python2.7/dist-packages/yaml/scanner.py:576: ScannerError
23-Dec-2019 21:18:53 ______ ERROR at setup of test_move[singleprovider_singleclient_directio] _______
23-Dec-2019 21:18:53
23-Dec-2019 21:18:53 env_description_abs_path = '/mnt/storage/bamboo-agent-home/xml-data/build-dir/TEST-ON2-DC/onedata/tests/oneclient/environments/singleprovider_singleclient_directio.yaml'
23-Dec-2019 21:18:53 hosts = {}
23-Dec-2019 21:18:53 request = <SubRequest 'env_desc' for <Function 'test_create[singleprovider_singleclient_directio]'>>
23-Dec-2019 21:18:53 users = {}
23-Dec-2019 21:18:53 previous_env = {'env_path': '/mnt/storage/bamboo-agent-home/xml-data/build-dir/TEST-ON2-DC/onedata/tests/oneclient/environments/singleprovider_singleclient_directio.yaml'}
23-Dec-2019 21:18:53
23-Dec-2019 21:18:53     @pytest.fixture(scope='module', autouse=True)
23-Dec-2019 21:18:53     def env_desc(env_description_abs_path, hosts, request, users,
23-Dec-2019 21:18:53                  previous_env):
23-Dec-2019 21:18:53         """
23-Dec-2019 21:18:53         Sets up environment and returns environment description.
23-Dec-2019 21:18:53         """
23-Dec-2019 21:18:53         test_type = get_test_type(request)
23-Dec-2019 21:18:53         start_env = _check_if_should_start_new_env(env_description_abs_path,
23-Dec-2019 21:18:53                                                    previous_env)
23-Dec-2019 21:18:53    
23-Dec-2019 21:18:53         if test_type in ['gui']:
23-Dec-2019 21:18:53             # For now gui tests do not use onenv patch
23-Dec-2019 21:18:53             if start_env:
23-Dec-2019 21:18:53                 previous_env['started'] = start_environment(
23-Dec-2019 21:18:53                     env_description_abs_path, request, hosts, '', users,
23-Dec-2019 21:18:53                     env_description_abs_path
23-Dec-2019 21:18:53                 )
23-Dec-2019 21:18:53             return ''
23-Dec-2019 21:18:53    
23-Dec-2019 21:18:53         elif test_type == 'mixed':
23-Dec-2019 21:18:53             with open(env_description_abs_path, 'r') as env_desc_file:
23-Dec-2019 21:18:53                 env_desc = yaml.load(env_desc_file)
23-Dec-2019 21:18:53             scenario = env_desc.get('scenario')
23-Dec-2019 21:18:53             scenarios_dir_path = SCENARIO_DIRS.get(get_test_type(request))
23-Dec-2019 21:18:53             scenario_path = os.path.abspath(os.path.join(scenarios_dir_path,
23-Dec-2019 21:18:53                                                          scenario))
23-Dec-2019 21:18:53    
23-Dec-2019 21:18:53             if start_env:
23-Dec-2019 21:18:53                 previous_env['started'] = start_environment(
23-Dec-2019 21:18:53                     scenario_path, request, hosts, '', users,
23-Dec-2019 21:18:53                     env_description_abs_path
23-Dec-2019 21:18:53                 )
23-Dec-2019 21:18:53             return env_desc
23-Dec-2019 21:18:53    
23-Dec-2019 21:18:53         elif test_type in ['oneclient', 'onedata_fs', 'performance']:
23-Dec-2019 21:18:53             with open(env_description_abs_path, 'r') as env_desc_file:
23-Dec-2019 21:18:53                 env_desc = yaml.load(env_desc_file)
23-Dec-2019 21:18:53    
23-Dec-2019 21:18:53             scenario = env_desc.get('scenario')
23-Dec-2019 21:18:53             scenarios_dir_path = SCENARIO_DIRS.get(get_test_type(request))
23-Dec-2019 21:18:53             scenario_path = os.path.abspath(os.path.join(scenarios_dir_path,
23-Dec-2019 21:18:53                                                          scenario))
23-Dec-2019 21:18:53    
23-Dec-2019 21:18:53             patch = env_desc.get('patch')
23-Dec-2019 21:18:53             patch_dir_path = PATCHES_DIR.get(get_test_type(request))
23-Dec-2019 21:18:53             patch_path = os.path.join(patch_dir_path, patch)
23-Dec-2019 21:18:53             if start_env:
23-Dec-2019 21:18:53                 previous_env['started'] = start_environment(
23-Dec-2019 21:18:53                     scenario_path, request, hosts, patch_path, users,
23-Dec-2019 21:18:53 >                   env_description_abs_path
23-Dec-2019 21:18:53                 )
23-Dec-2019 21:18:53
23-Dec-2019 21:18:53 tests/conftest.py:356:
23-Dec-2019 21:18:53 _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
23-Dec-2019 21:18:53 tests/conftest.py:455: in start_environment
23-Dec-2019 21:18:53     pods_cfg = check_deployment()
23-Dec-2019 21:18:53 tests/conftest.py:484: in check_deployment
23-Dec-2019 21:18:53     status_output = yaml.load(status_output.decode('utf-8'))
23-Dec-2019 21:18:53 /usr/local/lib/python2.7/dist-packages/yaml/__init__.py:71: in load
23-Dec-2019 21:18:53     return loader.get_single_data()
23-Dec-2019 21:18:53 /usr/local/lib/python2.7/dist-packages/yaml/constructor.py:37: in get_single_data
23-Dec-2019 21:18:53     node = self.get_single_node()
23-Dec-2019 21:18:53 /usr/local/lib/python2.7/dist-packages/yaml/composer.py:36: in get_single_node
23-Dec-2019 21:18:53     document = self.compose_document()
23-Dec-2019 21:18:53 /usr/local/lib/python2.7/dist-packages/yaml/composer.py:55: in compose_document
23-Dec-2019 21:18:53     node = self.compose_node(None, None)
23-Dec-2019 21:18:53 /usr/local/lib/python2.7/dist-packages/yaml/composer.py:84: in compose_node
23-Dec-2019 21:18:53     node = self.compose_mapping_node(anchor)
23-Dec-2019 21:18:53 /usr/local/lib/python2.7/dist-packages/yaml/composer.py:127: in compose_mapping_node
23-Dec-2019 21:18:53     while not self.check_event(MappingEndEvent):
23-Dec-2019 21:18:53 /usr/local/lib/python2.7/dist-packages/yaml/parser.py:98: in check_event
23-Dec-2019 21:18:53     self.current_event = self.state()
23-Dec-2019 21:18:53 /usr/local/lib/python2.7/dist-packages/yaml/parser.py:428: in parse_block_mapping_key
23-Dec-2019 21:18:53     if self.check_token(KeyToken):
23-Dec-2019 21:18:53 /usr/local/lib/python2.7/dist-packages/yaml/scanner.py:116: in check_token
23-Dec-2019 21:18:53     self.fetch_more_tokens()
23-Dec-2019 21:18:53 /usr/local/lib/python2.7/dist-packages/yaml/scanner.py:220: in fetch_more_tokens
23-Dec-2019 21:18:53     return self.fetch_value()
23-Dec-2019 21:18:53 _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
23-Dec-2019 21:18:53
23-Dec-2019 21:18:53 self = <yaml.loader.Loader object at 0x7f90467daf10>
23-Dec-2019 21:18:53
23-Dec-2019 21:18:53     def fetch_value(self):
23-Dec-2019 21:18:53    
23-Dec-2019 21:18:53         # Do we determine a simple key?
23-Dec-2019 21:18:53         if self.flow_level in self.possible_simple_keys:
23-Dec-2019 21:18:53    
23-Dec-2019 21:18:53             # Add KEY.
23-Dec-2019 21:18:53             key = self.possible_simple_keys[self.flow_level]
23-Dec-2019 21:18:53             del self.possible_simple_keys[self.flow_level]
23-Dec-2019 21:18:53             self.tokens.insert(key.token_number-self.tokens_taken,
23-Dec-2019 21:18:53                     KeyToken(key.mark, key.mark))
23-Dec-2019 21:18:53    
23-Dec-2019 21:18:53             # If this key starts a new block mapping, we need to add
23-Dec-2019 21:18:53             # BLOCK-MAPPING-START.
23-Dec-2019 21:18:53             if not self.flow_level:
23-Dec-2019 21:18:53                 if self.add_indent(key.column):
23-Dec-2019 21:18:53                     self.tokens.insert(key.token_number-self.tokens_taken,
23-Dec-2019 21:18:53                             BlockMappingStartToken(key.mark, key.mark))
23-Dec-2019 21:18:53    
23-Dec-2019 21:18:53             # There cannot be two simple keys one after another.
23-Dec-2019 21:18:53             self.allow_simple_key = False
23-Dec-2019 21:18:53    
23-Dec-2019 21:18:53         # It must be a part of a complex key.
23-Dec-2019 21:18:53         else:
23-Dec-2019 21:18:53    
23-Dec-2019 21:18:53             # Block context needs additional checks.
23-Dec-2019 21:18:53             # (Do we really need them? They will be catched by the parser
23-Dec-2019 21:18:53             # anyway.)
23-Dec-2019 21:18:53             if not self.flow_level:
23-Dec-2019 21:18:53    
23-Dec-2019 21:18:53                 # We are allowed to start a complex value if and only if
23-Dec-2019 21:18:53                 # we can start a simple key.
23-Dec-2019 21:18:53                 if not self.allow_simple_key:
23-Dec-2019 21:18:53                     raise ScannerError(None, None,
23-Dec-2019 21:18:53                             "mapping values are not allowed here",
23-Dec-2019 21:18:53 >                           self.get_mark())
23-Dec-2019 21:18:53 E                   ScannerError: mapping values are not allowed here
23-Dec-2019 21:18:53 E                     in "<unicode string>", line 1, column 90:
23-Dec-2019 21:18:53 E                        ... py:91: RequestsDependencyWarning: urllib3 (1.25.7) or chardet (3 ...
23-Dec-2019 21:18:53 E                                                            ^
23-Dec-2019 21:18:53
23-Dec-2019 21:18:53 /usr/local/lib/python2.7/dist-packages/yaml/scanner.py:576: ScannerError
23-Dec-2019 21:18:53 ______ ERROR at setup of test_copy[singleprovider_singleclient_directio] _______
23-Dec-2019 21:18:53
23-Dec-2019 21:18:53 env_description_abs_path = '/mnt/storage/bamboo-agent-home/xml-data/build-dir/TEST-ON2-DC/onedata/tests/oneclient/environments/singleprovider_singleclient_directio.yaml'
23-Dec-2019 21:18:53 hosts = {}
23-Dec-2019 21:18:53 request = <SubRequest 'env_desc' for <Function 'test_create[singleprovider_singleclient_directio]'>>
23-Dec-2019 21:18:53 users = {}
23-Dec-2019 21:18:53 previous_env = {'env_path': '/mnt/storage/bamboo-agent-home/xml-data/build-dir/TEST-ON2-DC/onedata/tests/oneclient/environments/singleprovider_singleclient_directio.yaml'}
23-Dec-2019 21:18:53
23-Dec-2019 21:18:53     @pytest.fixture(scope='module', autouse=True)
23-Dec-2019 21:18:53     def env_desc(env_description_abs_path, hosts, request, users,
23-Dec-2019 21:18:53                  previous_env):
23-Dec-2019 21:18:53         """
23-Dec-2019 21:18:53         Sets up environment and returns environment description.
23-Dec-2019 21:18:53         """
23-Dec-2019 21:18:53         test_type = get_test_type(request)
23-Dec-2019 21:18:53         start_env = _check_if_should_start_new_env(env_description_abs_path,
23-Dec-2019 21:18:53                                                    previous_env)
23-Dec-2019 21:18:53    
23-Dec-2019 21:18:53         if test_type in ['gui']:
23-Dec-2019 21:18:53             # For now gui tests do not use onenv patch
23-Dec-2019 21:18:53             if start_env:
23-Dec-2019 21:18:53                 previous_env['started'] = start_environment(
23-Dec-2019 21:18:53                     env_description_abs_path, request, hosts, '', users,
23-Dec-2019 21:18:53                     env_description_abs_path
23-Dec-2019 21:18:53                 )
23-Dec-2019 21:18:53             return ''
23-Dec-2019 21:18:53    
23-Dec-2019 21:18:53         elif test_type == 'mixed':
23-Dec-2019 21:18:53             with open(env_description_abs_path, 'r') as env_desc_file:
23-Dec-2019 21:18:53                 env_desc = yaml.load(env_desc_file)
23-Dec-2019 21:18:53             scenario = env_desc.get('scenario')
23-Dec-2019 21:18:53             scenarios_dir_path = SCENARIO_DIRS.get(get_test_type(request))
23-Dec-2019 21:18:53             scenario_path = os.path.abspath(os.path.join(scenarios_dir_path,
23-Dec-2019 21:18:53                                                          scenario))
23-Dec-2019 21:18:53    
23-Dec-2019 21:18:53             if start_env:
23-Dec-2019 21:18:53                 previous_env['started'] = start_environment(
23-Dec-2019 21:18:53                     scenario_path, request, hosts, '', users,
23-Dec-2019 21:18:53                     env_description_abs_path
23-Dec-2019 21:18:53                 )
23-Dec-2019 21:18:53             return env_desc
23-Dec-2019 21:18:53    
23-Dec-2019 21:18:53         elif test_type in ['oneclient', 'onedata_fs', 'performance']:
23-Dec-2019 21:18:53             with open(env_description_abs_path, 'r') as env_desc_file:
23-Dec-2019 21:18:53                 env_desc = yaml.load(env_desc_file)
23-Dec-2019 21:18:53    
23-Dec-2019 21:18:53             scenario = env_desc.get('scenario')
23-Dec-2019 21:18:53             scenarios_dir_path = SCENARIO_DIRS.get(get_test_type(request))
23-Dec-2019 21:18:53             scenario_path = os.path.abspath(os.path.join(scenarios_dir_path,
23-Dec-2019 21:18:53                                                          scenario))
23-Dec-2019 21:18:53    
23-Dec-2019 21:18:53             patch = env_desc.get('patch')
23-Dec-2019 21:18:53             patch_dir_path = PATCHES_DIR.get(get_test_type(request))
23-Dec-2019 21:18:53             patch_path = os.path.join(patch_dir_path, patch)
23-Dec-2019 21:18:53             if start_env:
23-Dec-2019 21:18:53                 previous_env['started'] = start_environment(
23-Dec-2019 21:18:53                     scenario_path, request, hosts, patch_path, users,
23-Dec-2019 21:18:53 >                   env_description_abs_path
23-Dec-2019 21:18:53                 )
23-Dec-2019 21:18:53
23-Dec-2019 21:18:53 tests/conftest.py:356:
23-Dec-2019 21:18:53 _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
23-Dec-2019 21:18:53 tests/conftest.py:455: in start_environment
23-Dec-2019 21:18:53     pods_cfg = check_deployment()
23-Dec-2019 21:18:53 tests/conftest.py:484: in check_deployment
23-Dec-2019 21:18:53     status_output = yaml.load(status_output.decode('utf-8'))
23-Dec-2019 21:18:53 /usr/local/lib/python2.7/dist-packages/yaml/__init__.py:71: in load
23-Dec-2019 21:18:53     return loader.get_single_data()
23-Dec-2019 21:18:53 /usr/local/lib/python2.7/dist-packages/yaml/constructor.py:37: in get_single_data
23-Dec-2019 21:18:53     node = self.get_single_node()
23-Dec-2019 21:18:53 /usr/local/lib/python2.7/dist-packages/yaml/composer.py:36: in get_single_node
23-Dec-2019 21:18:53     document = self.compose_document()
23-Dec-2019 21:18:53 /usr/local/lib/python2.7/dist-packages/yaml/composer.py:55: in compose_document
23-Dec-2019 21:18:53     node = self.compose_node(None, None)
23-Dec-2019 21:18:53 /usr/local/lib/python2.7/dist-packages/yaml/composer.py:84: in compose_node
23-Dec-2019 21:18:53     node = self.compose_mapping_node(anchor)
23-Dec-2019 21:18:53 /usr/local/lib/python2.7/dist-packages/yaml/composer.py:127: in compose_mapping_node
23-Dec-2019 21:18:53     while not self.check_event(MappingEndEvent):
23-Dec-2019 21:18:53 /usr/local/lib/python2.7/dist-packages/yaml/parser.py:98: in check_event
23-Dec-2019 21:18:53     self.current_event = self.state()
23-Dec-2019 21:18:53 /usr/local/lib/python2.7/dist-packages/yaml/parser.py:428: in parse_block_mapping_key
23-Dec-2019 21:18:53     if self.check_token(KeyToken):
23-Dec-2019 21:18:53 /usr/local/lib/python2.7/dist-packages/yaml/scanner.py:116: in check_token
23-Dec-2019 21:18:53     self.fetch_more_tokens()
23-Dec-2019 21:18:53 /usr/local/lib/python2.7/dist-packages/yaml/scanner.py:220: in fetch_more_tokens
23-Dec-2019 21:18:53     return self.fetch_value()
23-Dec-2019 21:18:53 _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
23-Dec-2019 21:18:53
23-Dec-2019 21:18:53 self = <yaml.loader.Loader object at 0x7f90467daf10>
23-Dec-2019 21:18:53
23-Dec-2019 21:18:53     def fetch_value(self):
23-Dec-2019 21:18:53    
23-Dec-2019 21:18:53         # Do we determine a simple key?
23-Dec-2019 21:18:53         if self.flow_level in self.possible_simple_keys:
23-Dec-2019 21:18:53    
23-Dec-2019 21:18:53             # Add KEY.
23-Dec-2019 21:18:53             key = self.possible_simple_keys[self.flow_level]
23-Dec-2019 21:18:53             del self.possible_simple_keys[self.flow_level]
23-Dec-2019 21:18:53             self.tokens.insert(key.token_number-self.tokens_taken,
23-Dec-2019 21:18:53                     KeyToken(key.mark, key.mark))
23-Dec-2019 21:18:53    
23-Dec-2019 21:18:53             # If this key starts a new block mapping, we need to add
23-Dec-2019 21:18:53             # BLOCK-MAPPING-START.
23-Dec-2019 21:18:53             if not self.flow_level:
23-Dec-2019 21:18:53                 if self.add_indent(key.column):
23-Dec-2019 21:18:53                     self.tokens.insert(key.token_number-self.tokens_taken,
23-Dec-2019 21:18:53                             BlockMappingStartToken(key.mark, key.mark))
23-Dec-2019 21:18:53    
23-Dec-2019 21:18:53             # There cannot be two simple keys one after another.
23-Dec-2019 21:18:53             self.allow_simple_key = False
23-Dec-2019 21:18:53    
23-Dec-2019 21:18:53         # It must be a part of a complex key.
23-Dec-2019 21:18:53         else:
23-Dec-2019 21:18:53    
23-Dec-2019 21:18:53             # Block context needs additional checks.
23-Dec-2019 21:18:53             # (Do we really need them? They will be catched by the parser
23-Dec-2019 21:18:53             # anyway.)
23-Dec-2019 21:18:53             if not self.flow_level:
23-Dec-2019 21:18:53    
23-Dec-2019 21:18:53                 # We are allowed to start a complex value if and only if
23-Dec-2019 21:18:53                 # we can start a simple key.
23-Dec-2019 21:18:53                 if not self.allow_simple_key:
23-Dec-2019 21:18:53                     raise ScannerError(None, None,
23-Dec-2019 21:18:53                             "mapping values are not allowed here",
23-Dec-2019 21:18:53 >                           self.get_mark())
23-Dec-2019 21:18:53 E                   ScannerError: mapping values are not allowed here
23-Dec-2019 21:18:53 E                     in "<unicode string>", line 1, column 90:
23-Dec-2019 21:18:53 E                        ... py:91: RequestsDependencyWarning: urllib3 (1.25.7) or chardet (3 ...
23-Dec-2019 21:18:53 E                                                            ^
23-Dec-2019 21:18:53
23-Dec-2019 21:18:53 /usr/local/lib/python2.7/dist-packages/yaml/scanner.py:576: ScannerError
23-Dec-2019 21:18:53 _ ERROR at setup of test_move_to_itself[singleprovider_singleclient_directio] __
23-Dec-2019 21:18:53
23-Dec-2019 21:18:53 env_description_abs_path = '/mnt/storage/bamboo-agent-home/xml-data/build-dir/TEST-ON2-DC/onedata/tests/oneclient/environments/singleprovider_singleclient_directio.yaml'
23-Dec-2019 21:18:53 hosts = {}
23-Dec-2019 21:18:53 request = <SubRequest 'env_desc' for <Function 'test_create[singleprovider_singleclient_directio]'>>
23-Dec-2019 21:18:53 users = {}
23-Dec-2019 21:18:53 previous_env = {'env_path': '/mnt/storage/bamboo-agent-home/xml-data/build-dir/TEST-ON2-DC/onedata/tests/oneclient/environments/singleprovider_singleclient_directio.yaml'}
23-Dec-2019 21:18:53
23-Dec-2019 21:18:53     @pytest.fixture(scope='module', autouse=True)
23-Dec-2019 21:18:53     def env_desc(env_description_abs_path, hosts, request, users,
23-Dec-2019 21:18:53                  previous_env):
23-Dec-2019 21:18:53         """
23-Dec-2019 21:18:53         Sets up environment and returns environment description.
23-Dec-2019 21:18:53         """
23-Dec-2019 21:18:53         test_type = get_test_type(request)
23-Dec-2019 21:18:53         start_env = _check_if_should_start_new_env(env_description_abs_path,
23-Dec-2019 21:18:53                                                    previous_env)
23-Dec-2019 21:18:53    
23-Dec-2019 21:18:53         if test_type in ['gui']:
23-Dec-2019 21:18:53             # For now gui tests do not use onenv patch
23-Dec-2019 21:18:53             if start_env:
23-Dec-2019 21:18:53                 previous_env['started'] = start_environment(
23-Dec-2019 21:18:53                     env_description_abs_path, request, hosts, '', users,
23-Dec-2019 21:18:53                     env_description_abs_path
23-Dec-2019 21:18:53                 )
23-Dec-2019 21:18:53             return ''
23-Dec-2019 21:18:53    
23-Dec-2019 21:18:53         elif test_type == 'mixed':
23-Dec-2019 21:18:53             with open(env_description_abs_path, 'r') as env_desc_file:
23-Dec-2019 21:18:53                 env_desc = yaml.load(env_desc_file)
23-Dec-2019 21:18:53             scenario = env_desc.get('scenario')
23-Dec-2019 21:18:53             scenarios_dir_path = SCENARIO_DIRS.get(get_test_type(request))
23-Dec-2019 21:18:53             scenario_path = os.path.abspath(os.path.join(scenarios_dir_path,
23-Dec-2019 21:18:53                                                          scenario))
23-Dec-2019 21:18:53    
23-Dec-2019 21:18:53             if start_env:
23-Dec-2019 21:18:53                 previous_env['started'] = start_environment(
23-Dec-2019 21:18:53                     scenario_path, request, hosts, '', users,
23-Dec-2019 21:18:53                     env_description_abs_path
23-Dec-2019 21:18:53                 )
23-Dec-2019 21:18:53             return env_desc
23-Dec-2019 21:18:53    
23-Dec-2019 21:18:53         elif test_type in ['oneclient', 'onedata_fs', 'performance']:
23-Dec-2019 21:18:53             with open(env_description_abs_path, 'r') as env_desc_file:
23-Dec-2019 21:18:53                 env_desc = yaml.load(env_desc_file)
23-Dec-2019 21:18:53    
23-Dec-2019 21:18:53             scenario = env_desc.get('scenario')
23-Dec-2019 21:18:53             scenarios_dir_path = SCENARIO_DIRS.get(get_test_type(request))
23-Dec-2019 21:18:53             scenario_path = os.path.abspath(os.path.join(scenarios_dir_path,
23-Dec-2019 21:18:53                                                          scenario))
23-Dec-2019 21:18:53    
23-Dec-2019 21:18:53             patch = env_desc.get('patch')
23-Dec-2019 21:18:53             patch_dir_path = PATCHES_DIR.get(get_test_type(request))
23-Dec-2019 21:18:53             patch_path = os.path.join(patch_dir_path, patch)
23-Dec-2019 21:18:53             if start_env:
23-Dec-2019 21:18:53                 previous_env['started'] = start_environment(
23-Dec-2019 21:18:53                     scenario_path, request, hosts, patch_path, users,
23-Dec-2019 21:18:53 >                   env_description_abs_path
23-Dec-2019 21:18:53                 )
23-Dec-2019 21:18:53
23-Dec-2019 21:18:53 tests/conftest.py:356:
23-Dec-2019 21:18:53 _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
23-Dec-2019 21:18:53 tests/conftest.py:455: in start_environment
23-Dec-2019 21:18:53     pods_cfg = check_deployment()
23-Dec-2019 21:18:53 tests/conftest.py:484: in check_deployment
23-Dec-2019 21:18:53     status_output = yaml.load(status_output.decode('utf-8'))
23-Dec-2019 21:18:53 /usr/local/lib/python2.7/dist-packages/yaml/__init__.py:71: in load
23-Dec-2019 21:18:53     return loader.get_single_data()
23-Dec-2019 21:18:53 /usr/local/lib/python2.7/dist-packages/yaml/constructor.py:37: in get_single_data
23-Dec-2019 21:18:53     node = self.get_single_node()
23-Dec-2019 21:18:53 /usr/local/lib/python2.7/dist-packages/yaml/composer.py:36: in get_single_node
23-Dec-2019 21:18:53     document = self.compose_document()
23-Dec-2019 21:18:53 /usr/local/lib/python2.7/dist-packages/yaml/composer.py:55: in compose_document
23-Dec-2019 21:18:53     node = self.compose_node(None, None)
23-Dec-2019 21:18:53 /usr/local/lib/python2.7/dist-packages/yaml/composer.py:84: in compose_node
23-Dec-2019 21:18:53     node = self.compose_mapping_node(anchor)
23-Dec-2019 21:18:53 /usr/local/lib/python2.7/dist-packages/yaml/composer.py:127: in compose_mapping_node
23-Dec-2019 21:18:53     while not self.check_event(MappingEndEvent):
23-Dec-2019 21:18:53 /usr/local/lib/python2.7/dist-packages/yaml/parser.py:98: in check_event
23-Dec-2019 21:18:53     self.current_event = self.state()
23-Dec-2019 21:18:53 /usr/local/lib/python2.7/dist-packages/yaml/parser.py:428: in parse_block_mapping_key
23-Dec-2019 21:18:53     if self.check_token(KeyToken):
23-Dec-2019 21:18:53 /usr/local/lib/python2.7/dist-packages/yaml/scanner.py:116: in check_token
23-Dec-2019 21:18:53     self.fetch_more_tokens()
23-Dec-2019 21:18:53 /usr/local/lib/python2.7/dist-packages/yaml/scanner.py:220: in fetch_more_tokens
23-Dec-2019 21:18:53     return self.fetch_value()
23-Dec-2019 21:18:53 _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
23-Dec-2019 21:18:53
23-Dec-2019 21:18:53 self = <yaml.loader.Loader object at 0x7f90467daf10>
23-Dec-2019 21:18:53
23-Dec-2019 21:18:53     def fetch_value(self):
23-Dec-2019 21:18:53    
23-Dec-2019 21:18:53         # Do we determine a simple key?
23-Dec-2019 21:18:53         if self.flow_level in self.possible_simple_keys:
23-Dec-2019 21:18:53    
23-Dec-2019 21:18:53             # Add KEY.
23-Dec-2019 21:18:53             key = self.possible_simple_keys[self.flow_level]
23-Dec-2019 21:18:53             del self.possible_simple_keys[self.flow_level]
23-Dec-2019 21:18:53             self.tokens.insert(key.token_number-self.tokens_taken,
23-Dec-2019 21:18:53                     KeyToken(key.mark, key.mark))
23-Dec-2019 21:18:53    
23-Dec-2019 21:18:53             # If this key starts a new block mapping, we need to add
23-Dec-2019 21:18:53             # BLOCK-MAPPING-START.
23-Dec-2019 21:18:53             if not self.flow_level:
23-Dec-2019 21:18:53                 if self.add_indent(key.column):
23-Dec-2019 21:18:53                     self.tokens.insert(key.token_number-self.tokens_taken,
23-Dec-2019 21:18:53                             BlockMappingStartToken(key.mark, key.mark))
23-Dec-2019 21:18:53    
23-Dec-2019 21:18:53             # There cannot be two simple keys one after another.
23-Dec-2019 21:18:53             self.allow_simple_key = False
23-Dec-2019 21:18:53    
23-Dec-2019 21:18:53         # It must be a part of a complex key.
23-Dec-2019 21:18:53         else:
23-Dec-2019 21:18:53    
23-Dec-2019 21:18:53             # Block context needs additional checks.
23-Dec-2019 21:18:53             # (Do we really need them? They will be catched by the parser
23-Dec-2019 21:18:53             # anyway.)
23-Dec-2019 21:18:53             if not self.flow_level:
23-Dec-2019 21:18:53    
23-Dec-2019 21:18:53                 # We are allowed to start a complex value if and only if
23-Dec-2019 21:18:53                 # we can start a simple key.
23-Dec-2019 21:18:53                 if not self.allow_simple_key:
23-Dec-2019 21:18:53                     raise ScannerError(None, None,
23-Dec-2019 21:18:53                             "mapping values are not allowed here",
23-Dec-2019 21:18:53 >                           self.get_mark())
23-Dec-2019 21:18:53 E                   ScannerError: mapping values are not allowed here
23-Dec-2019 21:18:53 E                     in "<unicode string>", line 1, column 90:
23-Dec-2019 21:18:53 E                        ... py:91: RequestsDependencyWarning: urllib3 (1.25.7) or chardet (3 ...
23-Dec-2019 21:18:53 E                                                            ^
23-Dec-2019 21:18:53
23-Dec-2019 21:18:53 /usr/local/lib/python2.7/dist-packages/yaml/scanner.py:576: ScannerError
23-Dec-2019 21:18:53 _ ERROR at setup of test_move_to_subtree[singleprovider_singleclient_directio] _
23-Dec-2019 21:18:53
23-Dec-2019 21:18:53 env_description_abs_path = '/mnt/storage/bamboo-agent-home/xml-data/build-dir/TEST-ON2-DC/onedata/tests/oneclient/environments/singleprovider_singleclient_directio.yaml'
23-Dec-2019 21:18:53 hosts = {}
23-Dec-2019 21:18:53 request = <SubRequest 'env_desc' for <Function 'test_create[singleprovider_singleclient_directio]'>>
23-Dec-2019 21:18:53 users = {}
23-Dec-2019 21:18:53 previous_env = {'env_path': '/mnt/storage/bamboo-agent-home/xml-data/build-dir/TEST-ON2-DC/onedata/tests/oneclient/environments/singleprovider_singleclient_directio.yaml'}
23-Dec-2019 21:18:53
23-Dec-2019 21:18:53     @pytest.fixture(scope='module', autouse=True)
23-Dec-2019 21:18:53     def env_desc(env_description_abs_path, hosts, request, users,
23-Dec-2019 21:18:53                  previous_env):
23-Dec-2019 21:18:53         """
23-Dec-2019 21:18:53         Sets up environment and returns environment description.
23-Dec-2019 21:18:53         """
23-Dec-2019 21:18:53         test_type = get_test_type(request)
23-Dec-2019 21:18:53         start_env = _check_if_should_start_new_env(env_description_abs_path,
23-Dec-2019 21:18:53                                                    previous_env)
23-Dec-2019 21:18:53    
23-Dec-2019 21:18:53         if test_type in ['gui']:
23-Dec-2019 21:18:53             # For now gui tests do not use onenv patch
23-Dec-2019 21:18:53             if start_env:
23-Dec-2019 21:18:53                 previous_env['started'] = start_environment(
23-Dec-2019 21:18:53                     env_description_abs_path, request, hosts, '', users,
23-Dec-2019 21:18:53                     env_description_abs_path
23-Dec-2019 21:18:53                 )
23-Dec-2019 21:18:53             return ''
23-Dec-2019 21:18:53    
23-Dec-2019 21:18:53         elif test_type == 'mixed':
23-Dec-2019 21:18:53             with open(env_description_abs_path, 'r') as env_desc_file:
23-Dec-2019 21:18:53                 env_desc = yaml.load(env_desc_file)
23-Dec-2019 21:18:53             scenario = env_desc.get('scenario')
23-Dec-2019 21:18:53             scenarios_dir_path = SCENARIO_DIRS.get(get_test_type(request))
23-Dec-2019 21:18:53             scenario_path = os.path.abspath(os.path.join(scenarios_dir_path,
23-Dec-2019 21:18:53                                                          scenario))
23-Dec-2019 21:18:53    
23-Dec-2019 21:18:53             if start_env:
23-Dec-2019 21:18:53                 previous_env['started'] = start_environment(
23-Dec-2019 21:18:53                     scenario_path, request, hosts, '', users,
23-Dec-2019 21:18:53                     env_description_abs_path
23-Dec-2019 21:18:53                 )
23-Dec-2019 21:18:53             return env_desc
23-Dec-2019 21:18:53    
23-Dec-2019 21:18:53         elif test_type in ['oneclient', 'onedata_fs', 'performance']:
23-Dec-2019 21:18:53             with open(env_description_abs_path, 'r') as env_desc_file:
23-Dec-2019 21:18:53                 env_desc = yaml.load(env_desc_file)
23-Dec-2019 21:18:53    
23-Dec-2019 21:18:53             scenario = env_desc.get('scenario')
23-Dec-2019 21:18:53             scenarios_dir_path = SCENARIO_DIRS.get(get_test_type(request))
23-Dec-2019 21:18:53             scenario_path = os.path.abspath(os.path.join(scenarios_dir_path,
23-Dec-2019 21:18:53                                                          scenario))
23-Dec-2019 21:18:53    
23-Dec-2019 21:18:53             patch = env_desc.get('patch')
23-Dec-2019 21:18:53             patch_dir_path = PATCHES_DIR.get(get_test_type(request))
23-Dec-2019 21:18:53             patch_path = os.path.join(patch_dir_path, patch)
23-Dec-2019 21:18:53             if start_env:
23-Dec-2019 21:18:53                 previous_env['started'] = start_environment(
23-Dec-2019 21:18:53                     scenario_path, request, hosts, patch_path, users,
23-Dec-2019 21:18:53 >                   env_description_abs_path
23-Dec-2019 21:18:53                 )
23-Dec-2019 21:18:53
23-Dec-2019 21:18:53 tests/conftest.py:356:
23-Dec-2019 21:18:53 _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
23-Dec-2019 21:18:53 tests/conftest.py:455: in start_environment
23-Dec-2019 21:18:53     pods_cfg = check_deployment()
23-Dec-2019 21:18:53 tests/conftest.py:484: in check_deployment
23-Dec-2019 21:18:53     status_output = yaml.load(status_output.decode('utf-8'))
23-Dec-2019 21:18:53 /usr/local/lib/python2.7/dist-packages/yaml/__init__.py:71: in load
23-Dec-2019 21:18:53     return loader.get_single_data()
23-Dec-2019 21:18:53 /usr/local/lib/python2.7/dist-packages/yaml/constructor.py:37: in get_single_data
23-Dec-2019 21:18:53     node = self.get_single_node()
23-Dec-2019 21:18:53 /usr/local/lib/python2.7/dist-packages/yaml/composer.py:36: in get_single_node
23-Dec-2019 21:18:53     document = self.compose_document()
23-Dec-2019 21:18:53 /usr/local/lib/python2.7/dist-packages/yaml/composer.py:55: in compose_document
23-Dec-2019 21:18:53     node = self.compose_node(None, None)
23-Dec-2019 21:18:53 /usr/local/lib/python2.7/dist-packages/yaml/composer.py:84: in compose_node
23-Dec-2019 21:18:53     node = self.compose_mapping_node(anchor)
23-Dec-2019 21:18:53 /usr/local/lib/python2.7/dist-packages/yaml/composer.py:127: in compose_mapping_node
23-Dec-2019 21:18:53     while not self.check_event(MappingEndEvent):
23-Dec-2019 21:18:53 /usr/local/lib/python2.7/dist-packages/yaml/parser.py:98: in check_event
23-Dec-2019 21:18:53     self.current_event = self.state()
23-Dec-2019 21:18:53 /usr/local/lib/python2.7/dist-packages/yaml/parser.py:428: in parse_block_mapping_key
23-Dec-2019 21:18:53     if self.check_token(KeyToken):
23-Dec-2019 21:18:53 /usr/local/lib/python2.7/dist-packages/yaml/scanner.py:116: in check_token
23-Dec-2019 21:18:53     self.fetch_more_tokens()
23-Dec-2019 21:18:53 /usr/local/lib/python2.7/dist-packages/yaml/scanner.py:220: in fetch_more_tokens
23-Dec-2019 21:18:53     return self.fetch_value()
23-Dec-2019 21:18:53 _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
23-Dec-2019 21:18:53
23-Dec-2019 21:18:53 self = <yaml.loader.Loader object at 0x7f90467daf10>
23-Dec-2019 21:18:53
23-Dec-2019 21:18:53     def fetch_value(self):
23-Dec-2019 21:18:53    
23-Dec-2019 21:18:53         # Do we determine a simple key?
23-Dec-2019 21:18:53         if self.flow_level in self.possible_simple_keys:
23-Dec-2019 21:18:53    
23-Dec-2019 21:18:53             # Add KEY.
23-Dec-2019 21:18:53             key = self.possible_simple_keys[self.flow_level]
23-Dec-2019 21:18:53             del self.possible_simple_keys[self.flow_level]
23-Dec-2019 21:18:53             self.tokens.insert(key.token_number-self.tokens_taken,
23-Dec-2019 21:18:53                     KeyToken(key.mark, key.mark))
23-Dec-2019 21:18:53    
23-Dec-2019 21:18:53             # If this key starts a new block mapping, we need to add
23-Dec-2019 21:18:53             # BLOCK-MAPPING-START.
23-Dec-2019 21:18:53             if not self.flow_level:
23-Dec-2019 21:18:53                 if self.add_indent(key.column):
23-Dec-2019 21:18:53                     self.tokens.insert(key.token_number-self.tokens_taken,
23-Dec-2019 21:18:53                             BlockMappingStartToken(key.mark, key.mark))
23-Dec-2019 21:18:53    
23-Dec-2019 21:18:53             # There cannot be two simple keys one after another.
23-Dec-2019 21:18:53             self.allow_simple_key = False
23-Dec-2019 21:18:53    
23-Dec-2019 21:18:53         # It must be a part of a complex key.
23-Dec-2019 21:18:53         else:
23-Dec-2019 21:18:53    
23-Dec-2019 21:18:53             # Block context needs additional checks.
23-Dec-2019 21:18:53             # (Do we really need them? They will be catched by the parser
23-Dec-2019 21:18:53             # anyway.)
23-Dec-2019 21:18:53             if not self.flow_level:
23-Dec-2019 21:18:53    
23-Dec-2019 21:18:53                 # We are allowed to start a complex value if and only if
23-Dec-2019 21:18:53                 # we can start a simple key.
23-Dec-2019 21:18:53                 if not self.allow_simple_key:
23-Dec-2019 21:18:53                     raise ScannerError(None, None,
23-Dec-2019 21:18:53                             "mapping values are not allowed here",
23-Dec-2019 21:18:53 >                           self.get_mark())
23-Dec-2019 21:18:53 E                   ScannerError: mapping values are not allowed here
23-Dec-2019 21:18:53 E                     in "<unicode string>", line 1, column 90:
23-Dec-2019 21:18:53 E                        ... py:91: RequestsDependencyWarning: urllib3 (1.25.7) or chardet (3 ...
23-Dec-2019 21:18:53 E                                                            ^
23-Dec-2019 21:18:53
23-Dec-2019 21:18:53 /usr/local/lib/python2.7/dist-packages/yaml/scanner.py:576: ScannerError
23-Dec-2019 21:18:53 ========================= 16 error in 1277.32 seconds ==========================
23-Dec-2019 21:19:11 release "dev" deleted
23-Dec-2019 21:19:11 /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!
23-Dec-2019 21:19:11   RequestsDependencyWarning)
23-Dec-2019 21:19:12 2870eca66496
23-Dec-2019 21:19:12 Using image: docker.onedata.org/onezone-dev:ID-9d85e52816 for onezone service
23-Dec-2019 21:19:12 Using image: docker.onedata.org/oneprovider-dev:ID-96429fd39a for oneprovider service
23-Dec-2019 21:19:12 Using image: docker.onedata.org/rest-cli:ID-48767260b4 for rest cli service
23-Dec-2019 21:19:12 Using image: docker.onedata.org/oneclient-dev:ID-f9ca716885 for oneclient service
23-Dec-2019 21:19:12 Using image: docker.onedata.org/luma:ID-578faeaeaf for LUMA service
23-Dec-2019 21:19:12 Finished task 'Run acceptance mixed tests in Chrome' with result: Success
23-Dec-2019 21:19:12 Starting task 'Parse test results' of type 'com.atlassian.bamboo.plugins.testresultparser:task.testresultparser.junit'
23-Dec-2019 21:19:12 Parsing test results under /home/bamboo/bamboo-agent-home/xml-data/build-dir/TEST-ON2-DC...
23-Dec-2019 21:19:12 Failing task since 16 failing test cases were found.
23-Dec-2019 21:19:12 Finished task 'Parse test results' with result: Failed
23-Dec-2019 21:19:12 Starting task 'Pack logs' of type 'com.atlassian.bamboo.plugins.scripttask:task.builder.script'
23-Dec-2019 21:19:12
Beginning to execute external process for build 'Testing - oneclient-acceptance-src-test2 - directory CRUD #4 (TEST-ON2-DC-4)'
... running command line:
/bin/sh /home/bamboo/bamboo-agent-home/temp/TEST-ON2-DC-4-ScriptBuildTask-1054123460334130458.sh
... in: /home/bamboo/bamboo-agent-home/xml-data/build-dir/TEST-ON2-DC
... 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-DC-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-DC
bamboo_planRepository_1_name=onedata-acceptance
bamboo_buildKey=TEST-ON2-DC
bamboo_shortPlanName=oneclient-acceptance-src-test2
bamboo_capability_minikube=true
bamboo_planRepository_name=onedata-acceptance
bamboo_buildNumber=4
bamboo_shortJobName=directory CRUD
bamboo_buildResultsUrl=https://bamboo.onedata.org/browse/TEST-ON2-DC-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-DC-4-ScriptBuildTask-7542353330606820727.sh
bamboo_build_commandline_com_atlassian_bamboo_plugins_scripttask_task_builder_script_6=/home/bamboo/bamboo-agent-home/temp/TEST-ON2-DC-4-ScriptBuildTask-7905708248607283397.sh
bamboo_shortPlanKey=ON2
bamboo_repository_242352175_git_username=
bamboo_shortJobKey=DC
bamboo_planRepository_revision=569cf78a555db26982dc3aafc6e34e10c259c8bf
bamboo_artifactRepoHostname=S3
bamboo_buildTimeStamp=2019-12-23T15:35:54.147Z
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-DC-4-ScriptBuildTask-6910748237977648196.sh
bamboo_build_commandline_com_atlassian_bamboo_plugins_scripttask_task_builder_script_3=/home/bamboo/bamboo-agent-home/temp/TEST-ON2-DC-4-ScriptBuildTask-6751756003342504775.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-DC-4-ScriptBuildTask-7476738019023457927.sh
bamboo_build_commandline_com_atlassian_bamboo_plugins_scripttask_task_builder_script_5=/bin/sh /home/bamboo/bamboo-agent-home/temp/TEST-ON2-DC-4-ScriptBuildTask-1121408289478036974.sh
bamboo_repository_git_branch=develop
bamboo_buildResultKey=TEST-ON2-DC-4
bamboo_repository_branch_name=develop
bamboo_buildPlanName=Testing - oneclient-acceptance-src-test2 - directory CRUD
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-DC
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
23-Dec-2019 21:19:12 cp: cannot stat 'onedata/one_env/sources_info.yaml': No such file or directory
23-Dec-2019 21:19:12 mv: cannot stat 'onedata/tests/oneclient/logs/*/*/images.yaml': Not a directory
23-Dec-2019 21:19:12 Finished task 'Pack logs' with result: Success
23-Dec-2019 21:19:12
Substituting variable: ${bamboo.OnedataFinalTasksURL} with https://raw.githubusercontent.com/onedata/bamboos/develop/final_tasks.sh
23-Dec-2019 21:19:12 Starting task 'Clear env' of type 'com.atlassian.bamboo.plugins.scripttask:task.builder.script'
23-Dec-2019 21:19:12
Beginning to execute external process for build 'Testing - oneclient-acceptance-src-test2 - directory CRUD #4 (TEST-ON2-DC-4)'
... running command line:
/bin/sh /home/bamboo/bamboo-agent-home/temp/TEST-ON2-DC-4-ScriptBuildTask-2415971718054612921.sh
... in: /home/bamboo/bamboo-agent-home/xml-data/build-dir/TEST-ON2-DC/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-DC-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-DC
bamboo_planRepository_1_name=onedata-acceptance
bamboo_buildKey=TEST-ON2-DC
bamboo_shortPlanName=oneclient-acceptance-src-test2
bamboo_capability_minikube=true
bamboo_planRepository_name=onedata-acceptance
bamboo_buildNumber=4
bamboo_shortJobName=directory CRUD
bamboo_buildResultsUrl=https://bamboo.onedata.org/browse/TEST-ON2-DC-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-DC-4-ScriptBuildTask-7542353330606820727.sh
bamboo_build_commandline_com_atlassian_bamboo_plugins_scripttask_task_builder_script_6=/home/bamboo/bamboo-agent-home/temp/TEST-ON2-DC-4-ScriptBuildTask-7905708248607283397.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-DC-4-ScriptBuildTask-1054123460334130458.sh
bamboo_repository_242352175_git_username=
bamboo_shortJobKey=DC
bamboo_planRepository_revision=569cf78a555db26982dc3aafc6e34e10c259c8bf
bamboo_artifactRepoHostname=S3
bamboo_buildTimeStamp=2019-12-23T15:35:54.147Z
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-DC-4-ScriptBuildTask-6910748237977648196.sh
bamboo_build_commandline_com_atlassian_bamboo_plugins_scripttask_task_builder_script_3=/home/bamboo/bamboo-agent-home/temp/TEST-ON2-DC-4-ScriptBuildTask-6751756003342504775.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-DC-4-ScriptBuildTask-7476738019023457927.sh
bamboo_build_commandline_com_atlassian_bamboo_plugins_scripttask_task_builder_script_5=/bin/sh /home/bamboo/bamboo-agent-home/temp/TEST-ON2-DC-4-ScriptBuildTask-1121408289478036974.sh
bamboo_repository_git_branch=develop
bamboo_buildResultKey=TEST-ON2-DC-4
bamboo_repository_branch_name=develop
bamboo_buildPlanName=Testing - oneclient-acceptance-src-test2 - directory CRUD
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-DC
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
23-Dec-2019 21:19:12   % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
23-Dec-2019 21:19:12                                  Dload  Upload   Total   Spent    Left  Speed
23-Dec-2019 21:19:12
23-Dec-2019 21:19:13   0     0    0     0    0     0      0      0 --:--:-- --:--:-- --:--:--     0
23-Dec-2019 21:19:13 42  4419   42  1895    0     0   3444      0  0:00:01 --:--:--  0:00:01  3445
23-Dec-2019 21:19:13 100  4419  100  4419    0     0   8032      0 --:--:-- --:--:-- --:--:--  8019
23-Dec-2019 21:19:13 Clearing /tmp/onedata and /home/bamboo/.one-env
23-Dec-2019 21:19:14 Cleaning helm deployments
23-Dec-2019 21:19:14 Cleanining pods
23-Dec-2019 21:19:15 Cleaning kube persistant volumes
23-Dec-2019 21:19:15 pod "dev-oneprovider-krakow-ready-check-6vkvr" deleted
23-Dec-2019 21:19:35 pod "dev-onezone-ready-check-x8p5j" deleted
23-Dec-2019 21:19:40 Cleaning dockswift container
23-Dec-2019 21:19:40 Cleaning docker containers
23-Dec-2019 21:19:42 Stalled docker containers to remove:
23-Dec-2019 21:19:42 c89849f51b0e 7e6ce0336ab9 d90cfe11430b cd519ed772e7 c27c166bf7f1 00f3046fc6cb 7f0bd712dfd6 658ce3bc596d a22ea0719e5f f1b1f8544fe9 e9c81533a694 7b3c3ae7f49d e611d139087a af85b0975c96
23-Dec-2019 21:19:42 Removing stalled docker containers
23-Dec-2019 21:19:42 Error response from daemon: Cannot kill container: c89849f51b0e: Container c89849f51b0e449ead3b8b41a95c7bbd77469a30cf26ef0f7131f72dd11e0f94 is not running
23-Dec-2019 21:19:42 c89849f51b0e
23-Dec-2019 21:19:42 Error response from daemon: Cannot kill container: 7e6ce0336ab9: Container 7e6ce0336ab91656c43d1728265a101b94693383de9469bc1a4a2b29f6240bbe is not running
23-Dec-2019 21:19:42 7e6ce0336ab9
23-Dec-2019 21:19:42 Error response from daemon: Cannot kill container: d90cfe11430b: Container d90cfe11430b81e50fc0f9ca9ebbb7b58e8b0e8cc31b37c289111d0b9ea18cc1 is not running
23-Dec-2019 21:19:42 d90cfe11430b
23-Dec-2019 21:19:42 Error response from daemon: Cannot kill container: cd519ed772e7: Container cd519ed772e7321ad6ef089df71687600e85ce84990f5a5e2913b185d31b22b4 is not running
23-Dec-2019 21:19:42 cd519ed772e7
23-Dec-2019 21:19:42 Error response from daemon: Cannot kill container: c27c166bf7f1: Container c27c166bf7f1d3aa0e79747a9ac6257faf3c57b1dec35059a60d643115d9873b is not running
23-Dec-2019 21:19:42 c27c166bf7f1
23-Dec-2019 21:19:42 Error response from daemon: Cannot kill container: 00f3046fc6cb: Container 00f3046fc6cb1421e25a4c93aec47fcba9c31f6fc6e5217ca370b39d235a841b is not running
23-Dec-2019 21:19:42 00f3046fc6cb
23-Dec-2019 21:19:42 Error response from daemon: Cannot kill container: 7f0bd712dfd6: Container 7f0bd712dfd676d9b861f5ab86bdc3b08054509b892d389d969616039ad5df1a is not running
23-Dec-2019 21:19:42 7f0bd712dfd6
23-Dec-2019 21:19:43 Error response from daemon: Cannot kill container: 658ce3bc596d: Container 658ce3bc596de07a38b526186f75dfc12c864d36f590f2d9f4b487fffe1fe25a is not running
23-Dec-2019 21:19:43 658ce3bc596d
23-Dec-2019 21:19:43 Error response from daemon: Cannot kill container: a22ea0719e5f: Container a22ea0719e5fd8881be7fbb99e81a8652f560ed9c9e880cf5470f0877b46b37a is not running
23-Dec-2019 21:19:43 a22ea0719e5f
23-Dec-2019 21:19:43 Error response from daemon: Cannot kill container: f1b1f8544fe9: Container f1b1f8544fe987d34756eced4b24d7bc295bfad7c38ecbab68d6cca6824f3f2c is not running
23-Dec-2019 21:19:43 f1b1f8544fe9
23-Dec-2019 21:19:43 Error response from daemon: Cannot kill container: e9c81533a694: Container e9c81533a6944127dd6424b824c6de1a965872c924a720ac81ec5914614593d5 is not running
23-Dec-2019 21:19:43 e9c81533a694
23-Dec-2019 21:19:43 Error response from daemon: Cannot kill container: 7b3c3ae7f49d: Container 7b3c3ae7f49d232a46bb8a771e6d563fe71d8b430284c073f0fe54b0a3eef188 is not running
23-Dec-2019 21:19:43 7b3c3ae7f49d
23-Dec-2019 21:19:43 Error response from daemon: Cannot kill container: e611d139087a: Container e611d139087aa8ed05f8e36d40fa0f4ec469fc75b82427bcec1fd9f80db06cc4 is not running
23-Dec-2019 21:19:43 e611d139087a
23-Dec-2019 21:19:43 Error response from daemon: Cannot kill container: af85b0975c96: Container af85b0975c963e9e0618ecb9b8848129f1cd17a29818467cc12946a25fd2100d is not running
23-Dec-2019 21:19:43 af85b0975c96
23-Dec-2019 21:19:43 Stalled docker volumes to remove:
23-Dec-2019 21:19:43
23-Dec-2019 21:19:43 Removing stalled docker volumes
23-Dec-2019 21:19:43 Removing stalled loopdevices
23-Dec-2019 21:19:44 Done
23-Dec-2019 21:19:44 Finished task 'Clear env' with result: Success
23-Dec-2019 21:19:44 Running post build plugin 'Docker Container Cleanup'
23-Dec-2019 21:19:44 Running post build plugin 'NCover Results Collector'
23-Dec-2019 21:19:44 Running post build plugin 'Clover Results Collector'
23-Dec-2019 21:19:44 Running post build plugin 'npm Cache Cleanup'
23-Dec-2019 21:19:44 Running post build plugin 'Artifact Copier'
23-Dec-2019 21:19:44 Publishing an artifact: test_logs.tar.gz
23-Dec-2019 21:19:44 Finished publishing of artifact Non required job artifact: [test_logs.tar.gz], pattern: [test_logs.tar.gz] in 7.827 ms
23-Dec-2019 21:19:47 Successfully removed working directory at '/home/bamboo/bamboo-agent-home/xml-data/build-dir/TEST-ON2-DC'
23-Dec-2019 21:19:47 Finalising the build...
23-Dec-2019 21:19:47 Stopping timer.
23-Dec-2019 21:19:47 Build TEST-ON2-DC-4 completed.
23-Dec-2019 21:19:47 Running on server: post build plugin 'NCover Results Collector'
23-Dec-2019 21:19:47 Running on server: post build plugin 'Build Hanging Detection Configuration'
23-Dec-2019 21:19:47 Running on server: post build plugin 'Clover Delta Calculator'
23-Dec-2019 21:19:47 Running on server: post build plugin 'Maven Dependencies Postprocessor'
23-Dec-2019 21:19:47 All post build plugins have finished
23-Dec-2019 21:19:47 Generating build results summary...
23-Dec-2019 21:19:47 Saving build results to disk...
23-Dec-2019 21:19:47 Logging substituted variables...
23-Dec-2019 21:19:47 Indexing build results...
23-Dec-2019 21:19:47 Finished building TEST-ON2-DC-4.