Build: #4 failed

Job: regular file CRUD directio failed

Build log

The build generated 2,242 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 19:09:50         Sets up environment and returns environment description.
23-Dec-2019 19:09:50         """
23-Dec-2019 19:09:50         test_type = get_test_type(request)
23-Dec-2019 19:09:50         start_env = _check_if_should_start_new_env(env_description_abs_path,
23-Dec-2019 19:09:50                                                    previous_env)
23-Dec-2019 19:09:50    
23-Dec-2019 19:09:50         if test_type in ['gui']:
23-Dec-2019 19:09:50             # For now gui tests do not use onenv patch
23-Dec-2019 19:09:50             if start_env:
23-Dec-2019 19:09:50                 previous_env['started'] = start_environment(
23-Dec-2019 19:09:50                     env_description_abs_path, request, hosts, '', users,
23-Dec-2019 19:09:50                     env_description_abs_path
23-Dec-2019 19:09:50                 )
23-Dec-2019 19:09:50             return ''
23-Dec-2019 19:09:50    
23-Dec-2019 19:09:50         elif test_type == 'mixed':
23-Dec-2019 19:09:50             with open(env_description_abs_path, 'r') as env_desc_file:
23-Dec-2019 19:09:50                 env_desc = yaml.load(env_desc_file)
23-Dec-2019 19:09:50             scenario = env_desc.get('scenario')
23-Dec-2019 19:09:50             scenarios_dir_path = SCENARIO_DIRS.get(get_test_type(request))
23-Dec-2019 19:09:50             scenario_path = os.path.abspath(os.path.join(scenarios_dir_path,
23-Dec-2019 19:09:50                                                          scenario))
23-Dec-2019 19:09:50    
23-Dec-2019 19:09:50             if start_env:
23-Dec-2019 19:09:50                 previous_env['started'] = start_environment(
23-Dec-2019 19:09:50                     scenario_path, request, hosts, '', users,
23-Dec-2019 19:09:50                     env_description_abs_path
23-Dec-2019 19:09:50                 )
23-Dec-2019 19:09:50             return env_desc
23-Dec-2019 19:09:50    
23-Dec-2019 19:09:50         elif test_type in ['oneclient', 'onedata_fs', 'performance']:
23-Dec-2019 19:09:50             with open(env_description_abs_path, 'r') as env_desc_file:
23-Dec-2019 19:09:50                 env_desc = yaml.load(env_desc_file)
23-Dec-2019 19:09:50    
23-Dec-2019 19:09:50             scenario = env_desc.get('scenario')
23-Dec-2019 19:09:50             scenarios_dir_path = SCENARIO_DIRS.get(get_test_type(request))
23-Dec-2019 19:09:50             scenario_path = os.path.abspath(os.path.join(scenarios_dir_path,
23-Dec-2019 19:09:50                                                          scenario))
23-Dec-2019 19:09:50    
23-Dec-2019 19:09:50             patch = env_desc.get('patch')
23-Dec-2019 19:09:50             patch_dir_path = PATCHES_DIR.get(get_test_type(request))
23-Dec-2019 19:09:50             patch_path = os.path.join(patch_dir_path, patch)
23-Dec-2019 19:09:50             if start_env:
23-Dec-2019 19:09:50                 previous_env['started'] = start_environment(
23-Dec-2019 19:09:50                     scenario_path, request, hosts, patch_path, users,
23-Dec-2019 19:09:50 >                   env_description_abs_path
23-Dec-2019 19:09:50                 )
23-Dec-2019 19:09:50
23-Dec-2019 19:09:50 tests/conftest.py:356:
23-Dec-2019 19:09:50 _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
23-Dec-2019 19:09:50 tests/conftest.py:455: in start_environment
23-Dec-2019 19:09:50     pods_cfg = check_deployment()
23-Dec-2019 19:09:50 tests/conftest.py:484: in check_deployment
23-Dec-2019 19:09:50     status_output = yaml.load(status_output.decode('utf-8'))
23-Dec-2019 19:09:50 /usr/local/lib/python2.7/dist-packages/yaml/__init__.py:71: in load
23-Dec-2019 19:09:50     return loader.get_single_data()
23-Dec-2019 19:09:50 /usr/local/lib/python2.7/dist-packages/yaml/constructor.py:37: in get_single_data
23-Dec-2019 19:09:50     node = self.get_single_node()
23-Dec-2019 19:09:50 /usr/local/lib/python2.7/dist-packages/yaml/composer.py:36: in get_single_node
23-Dec-2019 19:09:50     document = self.compose_document()
23-Dec-2019 19:09:50 /usr/local/lib/python2.7/dist-packages/yaml/composer.py:55: in compose_document
23-Dec-2019 19:09:50     node = self.compose_node(None, None)
23-Dec-2019 19:09:50 /usr/local/lib/python2.7/dist-packages/yaml/composer.py:84: in compose_node
23-Dec-2019 19:09:50     node = self.compose_mapping_node(anchor)
23-Dec-2019 19:09:50 /usr/local/lib/python2.7/dist-packages/yaml/composer.py:127: in compose_mapping_node
23-Dec-2019 19:09:50     while not self.check_event(MappingEndEvent):
23-Dec-2019 19:09:50 /usr/local/lib/python2.7/dist-packages/yaml/parser.py:98: in check_event
23-Dec-2019 19:09:50     self.current_event = self.state()
23-Dec-2019 19:09:50 /usr/local/lib/python2.7/dist-packages/yaml/parser.py:428: in parse_block_mapping_key
23-Dec-2019 19:09:50     if self.check_token(KeyToken):
23-Dec-2019 19:09:50 /usr/local/lib/python2.7/dist-packages/yaml/scanner.py:116: in check_token
23-Dec-2019 19:09:50     self.fetch_more_tokens()
23-Dec-2019 19:09:50 /usr/local/lib/python2.7/dist-packages/yaml/scanner.py:220: in fetch_more_tokens
23-Dec-2019 19:09:50     return self.fetch_value()
23-Dec-2019 19:09:50 _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
23-Dec-2019 19:09:50
23-Dec-2019 19:09:50 self = <yaml.loader.Loader object at 0x7f7042e95390>
23-Dec-2019 19:09:50
23-Dec-2019 19:09:50     def fetch_value(self):
23-Dec-2019 19:09:50    
23-Dec-2019 19:09:50         # Do we determine a simple key?
23-Dec-2019 19:09:50         if self.flow_level in self.possible_simple_keys:
23-Dec-2019 19:09:50    
23-Dec-2019 19:09:50             # Add KEY.
23-Dec-2019 19:09:50             key = self.possible_simple_keys[self.flow_level]
23-Dec-2019 19:09:50             del self.possible_simple_keys[self.flow_level]
23-Dec-2019 19:09:50             self.tokens.insert(key.token_number-self.tokens_taken,
23-Dec-2019 19:09:50                     KeyToken(key.mark, key.mark))
23-Dec-2019 19:09:50    
23-Dec-2019 19:09:50             # If this key starts a new block mapping, we need to add
23-Dec-2019 19:09:50             # BLOCK-MAPPING-START.
23-Dec-2019 19:09:50             if not self.flow_level:
23-Dec-2019 19:09:50                 if self.add_indent(key.column):
23-Dec-2019 19:09:50                     self.tokens.insert(key.token_number-self.tokens_taken,
23-Dec-2019 19:09:50                             BlockMappingStartToken(key.mark, key.mark))
23-Dec-2019 19:09:50    
23-Dec-2019 19:09:50             # There cannot be two simple keys one after another.
23-Dec-2019 19:09:50             self.allow_simple_key = False
23-Dec-2019 19:09:50    
23-Dec-2019 19:09:50         # It must be a part of a complex key.
23-Dec-2019 19:09:50         else:
23-Dec-2019 19:09:50    
23-Dec-2019 19:09:50             # Block context needs additional checks.
23-Dec-2019 19:09:50             # (Do we really need them? They will be catched by the parser
23-Dec-2019 19:09:50             # anyway.)
23-Dec-2019 19:09:50             if not self.flow_level:
23-Dec-2019 19:09:50    
23-Dec-2019 19:09:50                 # We are allowed to start a complex value if and only if
23-Dec-2019 19:09:50                 # we can start a simple key.
23-Dec-2019 19:09:50                 if not self.allow_simple_key:
23-Dec-2019 19:09:50                     raise ScannerError(None, None,
23-Dec-2019 19:09:50                             "mapping values are not allowed here",
23-Dec-2019 19:09:50 >                           self.get_mark())
23-Dec-2019 19:09:50 E                   ScannerError: mapping values are not allowed here
23-Dec-2019 19:09:50 E                     in "<unicode string>", line 1, column 90:
23-Dec-2019 19:09:50 E                        ... py:91: RequestsDependencyWarning: urllib3 (1.25.7) or chardet (3 ...
23-Dec-2019 19:09:50 E                                                            ^
23-Dec-2019 19:09:50
23-Dec-2019 19:09:50 /usr/local/lib/python2.7/dist-packages/yaml/scanner.py:576: ScannerError
23-Dec-2019 19:09:50 _____ ERROR at setup of test_replace[singleprovider_singleclient_directio] _____
23-Dec-2019 19:09:50
23-Dec-2019 19:09:50 env_description_abs_path = '/mnt/storage/bamboo-agent-home/xml-data/build-dir/TEST-ON2-RFCD/onedata/tests/oneclient/environments/singleprovider_singleclient_directio.yaml'
23-Dec-2019 19:09:50 hosts = {}
23-Dec-2019 19:09:50 request = <SubRequest 'env_desc' for <Function 'test_create[singleprovider_singleclient_directio]'>>
23-Dec-2019 19:09:50 users = {}
23-Dec-2019 19:09:50 previous_env = {'env_path': '/mnt/storage/bamboo-agent-home/xml-data/build-dir/TEST-ON2-RFCD/onedata/tests/oneclient/environments/singleprovider_singleclient_directio.yaml'}
23-Dec-2019 19:09:50
23-Dec-2019 19:09:50     @pytest.fixture(scope='module', autouse=True)
23-Dec-2019 19:09:50     def env_desc(env_description_abs_path, hosts, request, users,
23-Dec-2019 19:09:50                  previous_env):
23-Dec-2019 19:09:50         """
23-Dec-2019 19:09:50         Sets up environment and returns environment description.
23-Dec-2019 19:09:50         """
23-Dec-2019 19:09:50         test_type = get_test_type(request)
23-Dec-2019 19:09:50         start_env = _check_if_should_start_new_env(env_description_abs_path,
23-Dec-2019 19:09:50                                                    previous_env)
23-Dec-2019 19:09:50    
23-Dec-2019 19:09:50         if test_type in ['gui']:
23-Dec-2019 19:09:50             # For now gui tests do not use onenv patch
23-Dec-2019 19:09:50             if start_env:
23-Dec-2019 19:09:50                 previous_env['started'] = start_environment(
23-Dec-2019 19:09:50                     env_description_abs_path, request, hosts, '', users,
23-Dec-2019 19:09:50                     env_description_abs_path
23-Dec-2019 19:09:50                 )
23-Dec-2019 19:09:50             return ''
23-Dec-2019 19:09:50    
23-Dec-2019 19:09:50         elif test_type == 'mixed':
23-Dec-2019 19:09:50             with open(env_description_abs_path, 'r') as env_desc_file:
23-Dec-2019 19:09:50                 env_desc = yaml.load(env_desc_file)
23-Dec-2019 19:09:50             scenario = env_desc.get('scenario')
23-Dec-2019 19:09:50             scenarios_dir_path = SCENARIO_DIRS.get(get_test_type(request))
23-Dec-2019 19:09:50             scenario_path = os.path.abspath(os.path.join(scenarios_dir_path,
23-Dec-2019 19:09:50                                                          scenario))
23-Dec-2019 19:09:50    
23-Dec-2019 19:09:50             if start_env:
23-Dec-2019 19:09:50                 previous_env['started'] = start_environment(
23-Dec-2019 19:09:50                     scenario_path, request, hosts, '', users,
23-Dec-2019 19:09:50                     env_description_abs_path
23-Dec-2019 19:09:50                 )
23-Dec-2019 19:09:50             return env_desc
23-Dec-2019 19:09:50    
23-Dec-2019 19:09:50         elif test_type in ['oneclient', 'onedata_fs', 'performance']:
23-Dec-2019 19:09:50             with open(env_description_abs_path, 'r') as env_desc_file:
23-Dec-2019 19:09:50                 env_desc = yaml.load(env_desc_file)
23-Dec-2019 19:09:50    
23-Dec-2019 19:09:50             scenario = env_desc.get('scenario')
23-Dec-2019 19:09:50             scenarios_dir_path = SCENARIO_DIRS.get(get_test_type(request))
23-Dec-2019 19:09:50             scenario_path = os.path.abspath(os.path.join(scenarios_dir_path,
23-Dec-2019 19:09:50                                                          scenario))
23-Dec-2019 19:09:50    
23-Dec-2019 19:09:50             patch = env_desc.get('patch')
23-Dec-2019 19:09:50             patch_dir_path = PATCHES_DIR.get(get_test_type(request))
23-Dec-2019 19:09:50             patch_path = os.path.join(patch_dir_path, patch)
23-Dec-2019 19:09:50             if start_env:
23-Dec-2019 19:09:50                 previous_env['started'] = start_environment(
23-Dec-2019 19:09:50                     scenario_path, request, hosts, patch_path, users,
23-Dec-2019 19:09:50 >                   env_description_abs_path
23-Dec-2019 19:09:50                 )
23-Dec-2019 19:09:50
23-Dec-2019 19:09:50 tests/conftest.py:356:
23-Dec-2019 19:09:50 _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
23-Dec-2019 19:09:50 tests/conftest.py:455: in start_environment
23-Dec-2019 19:09:50     pods_cfg = check_deployment()
23-Dec-2019 19:09:50 tests/conftest.py:484: in check_deployment
23-Dec-2019 19:09:50     status_output = yaml.load(status_output.decode('utf-8'))
23-Dec-2019 19:09:50 /usr/local/lib/python2.7/dist-packages/yaml/__init__.py:71: in load
23-Dec-2019 19:09:50     return loader.get_single_data()
23-Dec-2019 19:09:50 /usr/local/lib/python2.7/dist-packages/yaml/constructor.py:37: in get_single_data
23-Dec-2019 19:09:50     node = self.get_single_node()
23-Dec-2019 19:09:50 /usr/local/lib/python2.7/dist-packages/yaml/composer.py:36: in get_single_node
23-Dec-2019 19:09:50     document = self.compose_document()
23-Dec-2019 19:09:50 /usr/local/lib/python2.7/dist-packages/yaml/composer.py:55: in compose_document
23-Dec-2019 19:09:50     node = self.compose_node(None, None)
23-Dec-2019 19:09:50 /usr/local/lib/python2.7/dist-packages/yaml/composer.py:84: in compose_node
23-Dec-2019 19:09:50     node = self.compose_mapping_node(anchor)
23-Dec-2019 19:09:50 /usr/local/lib/python2.7/dist-packages/yaml/composer.py:127: in compose_mapping_node
23-Dec-2019 19:09:50     while not self.check_event(MappingEndEvent):
23-Dec-2019 19:09:50 /usr/local/lib/python2.7/dist-packages/yaml/parser.py:98: in check_event
23-Dec-2019 19:09:50     self.current_event = self.state()
23-Dec-2019 19:09:50 /usr/local/lib/python2.7/dist-packages/yaml/parser.py:428: in parse_block_mapping_key
23-Dec-2019 19:09:50     if self.check_token(KeyToken):
23-Dec-2019 19:09:50 /usr/local/lib/python2.7/dist-packages/yaml/scanner.py:116: in check_token
23-Dec-2019 19:09:50     self.fetch_more_tokens()
23-Dec-2019 19:09:50 /usr/local/lib/python2.7/dist-packages/yaml/scanner.py:220: in fetch_more_tokens
23-Dec-2019 19:09:50     return self.fetch_value()
23-Dec-2019 19:09:50 _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
23-Dec-2019 19:09:50
23-Dec-2019 19:09:50 self = <yaml.loader.Loader object at 0x7f7042e95390>
23-Dec-2019 19:09:50
23-Dec-2019 19:09:50     def fetch_value(self):
23-Dec-2019 19:09:50    
23-Dec-2019 19:09:50         # Do we determine a simple key?
23-Dec-2019 19:09:50         if self.flow_level in self.possible_simple_keys:
23-Dec-2019 19:09:50    
23-Dec-2019 19:09:50             # Add KEY.
23-Dec-2019 19:09:50             key = self.possible_simple_keys[self.flow_level]
23-Dec-2019 19:09:50             del self.possible_simple_keys[self.flow_level]
23-Dec-2019 19:09:50             self.tokens.insert(key.token_number-self.tokens_taken,
23-Dec-2019 19:09:50                     KeyToken(key.mark, key.mark))
23-Dec-2019 19:09:50    
23-Dec-2019 19:09:50             # If this key starts a new block mapping, we need to add
23-Dec-2019 19:09:50             # BLOCK-MAPPING-START.
23-Dec-2019 19:09:50             if not self.flow_level:
23-Dec-2019 19:09:50                 if self.add_indent(key.column):
23-Dec-2019 19:09:50                     self.tokens.insert(key.token_number-self.tokens_taken,
23-Dec-2019 19:09:50                             BlockMappingStartToken(key.mark, key.mark))
23-Dec-2019 19:09:50    
23-Dec-2019 19:09:50             # There cannot be two simple keys one after another.
23-Dec-2019 19:09:50             self.allow_simple_key = False
23-Dec-2019 19:09:50    
23-Dec-2019 19:09:50         # It must be a part of a complex key.
23-Dec-2019 19:09:50         else:
23-Dec-2019 19:09:50    
23-Dec-2019 19:09:50             # Block context needs additional checks.
23-Dec-2019 19:09:50             # (Do we really need them? They will be catched by the parser
23-Dec-2019 19:09:50             # anyway.)
23-Dec-2019 19:09:50             if not self.flow_level:
23-Dec-2019 19:09:50    
23-Dec-2019 19:09:50                 # We are allowed to start a complex value if and only if
23-Dec-2019 19:09:50                 # we can start a simple key.
23-Dec-2019 19:09:50                 if not self.allow_simple_key:
23-Dec-2019 19:09:50                     raise ScannerError(None, None,
23-Dec-2019 19:09:50                             "mapping values are not allowed here",
23-Dec-2019 19:09:50 >                           self.get_mark())
23-Dec-2019 19:09:50 E                   ScannerError: mapping values are not allowed here
23-Dec-2019 19:09:50 E                     in "<unicode string>", line 1, column 90:
23-Dec-2019 19:09:50 E                        ... py:91: RequestsDependencyWarning: urllib3 (1.25.7) or chardet (3 ...
23-Dec-2019 19:09:50 E                                                            ^
23-Dec-2019 19:09:50
23-Dec-2019 19:09:50 /usr/local/lib/python2.7/dist-packages/yaml/scanner.py:576: ScannerError
23-Dec-2019 19:09:50 ______ ERROR at setup of test_move[singleprovider_singleclient_directio] _______
23-Dec-2019 19:09:50
23-Dec-2019 19:09:50 env_description_abs_path = '/mnt/storage/bamboo-agent-home/xml-data/build-dir/TEST-ON2-RFCD/onedata/tests/oneclient/environments/singleprovider_singleclient_directio.yaml'
23-Dec-2019 19:09:50 hosts = {}
23-Dec-2019 19:09:50 request = <SubRequest 'env_desc' for <Function 'test_create[singleprovider_singleclient_directio]'>>
23-Dec-2019 19:09:50 users = {}
23-Dec-2019 19:09:50 previous_env = {'env_path': '/mnt/storage/bamboo-agent-home/xml-data/build-dir/TEST-ON2-RFCD/onedata/tests/oneclient/environments/singleprovider_singleclient_directio.yaml'}
23-Dec-2019 19:09:50
23-Dec-2019 19:09:50     @pytest.fixture(scope='module', autouse=True)
23-Dec-2019 19:09:50     def env_desc(env_description_abs_path, hosts, request, users,
23-Dec-2019 19:09:50                  previous_env):
23-Dec-2019 19:09:50         """
23-Dec-2019 19:09:50         Sets up environment and returns environment description.
23-Dec-2019 19:09:50         """
23-Dec-2019 19:09:50         test_type = get_test_type(request)
23-Dec-2019 19:09:50         start_env = _check_if_should_start_new_env(env_description_abs_path,
23-Dec-2019 19:09:50                                                    previous_env)
23-Dec-2019 19:09:50    
23-Dec-2019 19:09:50         if test_type in ['gui']:
23-Dec-2019 19:09:50             # For now gui tests do not use onenv patch
23-Dec-2019 19:09:50             if start_env:
23-Dec-2019 19:09:50                 previous_env['started'] = start_environment(
23-Dec-2019 19:09:50                     env_description_abs_path, request, hosts, '', users,
23-Dec-2019 19:09:50                     env_description_abs_path
23-Dec-2019 19:09:50                 )
23-Dec-2019 19:09:50             return ''
23-Dec-2019 19:09:50    
23-Dec-2019 19:09:50         elif test_type == 'mixed':
23-Dec-2019 19:09:50             with open(env_description_abs_path, 'r') as env_desc_file:
23-Dec-2019 19:09:50                 env_desc = yaml.load(env_desc_file)
23-Dec-2019 19:09:50             scenario = env_desc.get('scenario')
23-Dec-2019 19:09:50             scenarios_dir_path = SCENARIO_DIRS.get(get_test_type(request))
23-Dec-2019 19:09:50             scenario_path = os.path.abspath(os.path.join(scenarios_dir_path,
23-Dec-2019 19:09:50                                                          scenario))
23-Dec-2019 19:09:50    
23-Dec-2019 19:09:50             if start_env:
23-Dec-2019 19:09:50                 previous_env['started'] = start_environment(
23-Dec-2019 19:09:50                     scenario_path, request, hosts, '', users,
23-Dec-2019 19:09:50                     env_description_abs_path
23-Dec-2019 19:09:50                 )
23-Dec-2019 19:09:50             return env_desc
23-Dec-2019 19:09:50    
23-Dec-2019 19:09:50         elif test_type in ['oneclient', 'onedata_fs', 'performance']:
23-Dec-2019 19:09:50             with open(env_description_abs_path, 'r') as env_desc_file:
23-Dec-2019 19:09:50                 env_desc = yaml.load(env_desc_file)
23-Dec-2019 19:09:50    
23-Dec-2019 19:09:50             scenario = env_desc.get('scenario')
23-Dec-2019 19:09:50             scenarios_dir_path = SCENARIO_DIRS.get(get_test_type(request))
23-Dec-2019 19:09:50             scenario_path = os.path.abspath(os.path.join(scenarios_dir_path,
23-Dec-2019 19:09:50                                                          scenario))
23-Dec-2019 19:09:50    
23-Dec-2019 19:09:50             patch = env_desc.get('patch')
23-Dec-2019 19:09:50             patch_dir_path = PATCHES_DIR.get(get_test_type(request))
23-Dec-2019 19:09:50             patch_path = os.path.join(patch_dir_path, patch)
23-Dec-2019 19:09:50             if start_env:
23-Dec-2019 19:09:50                 previous_env['started'] = start_environment(
23-Dec-2019 19:09:50                     scenario_path, request, hosts, patch_path, users,
23-Dec-2019 19:09:50 >                   env_description_abs_path
23-Dec-2019 19:09:50                 )
23-Dec-2019 19:09:50
23-Dec-2019 19:09:50 tests/conftest.py:356:
23-Dec-2019 19:09:50 _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
23-Dec-2019 19:09:50 tests/conftest.py:455: in start_environment
23-Dec-2019 19:09:50     pods_cfg = check_deployment()
23-Dec-2019 19:09:50 tests/conftest.py:484: in check_deployment
23-Dec-2019 19:09:50     status_output = yaml.load(status_output.decode('utf-8'))
23-Dec-2019 19:09:50 /usr/local/lib/python2.7/dist-packages/yaml/__init__.py:71: in load
23-Dec-2019 19:09:50     return loader.get_single_data()
23-Dec-2019 19:09:50 /usr/local/lib/python2.7/dist-packages/yaml/constructor.py:37: in get_single_data
23-Dec-2019 19:09:50     node = self.get_single_node()
23-Dec-2019 19:09:50 /usr/local/lib/python2.7/dist-packages/yaml/composer.py:36: in get_single_node
23-Dec-2019 19:09:50     document = self.compose_document()
23-Dec-2019 19:09:50 /usr/local/lib/python2.7/dist-packages/yaml/composer.py:55: in compose_document
23-Dec-2019 19:09:50     node = self.compose_node(None, None)
23-Dec-2019 19:09:50 /usr/local/lib/python2.7/dist-packages/yaml/composer.py:84: in compose_node
23-Dec-2019 19:09:50     node = self.compose_mapping_node(anchor)
23-Dec-2019 19:09:50 /usr/local/lib/python2.7/dist-packages/yaml/composer.py:127: in compose_mapping_node
23-Dec-2019 19:09:50     while not self.check_event(MappingEndEvent):
23-Dec-2019 19:09:50 /usr/local/lib/python2.7/dist-packages/yaml/parser.py:98: in check_event
23-Dec-2019 19:09:50     self.current_event = self.state()
23-Dec-2019 19:09:50 /usr/local/lib/python2.7/dist-packages/yaml/parser.py:428: in parse_block_mapping_key
23-Dec-2019 19:09:50     if self.check_token(KeyToken):
23-Dec-2019 19:09:50 /usr/local/lib/python2.7/dist-packages/yaml/scanner.py:116: in check_token
23-Dec-2019 19:09:50     self.fetch_more_tokens()
23-Dec-2019 19:09:50 /usr/local/lib/python2.7/dist-packages/yaml/scanner.py:220: in fetch_more_tokens
23-Dec-2019 19:09:50     return self.fetch_value()
23-Dec-2019 19:09:50 _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
23-Dec-2019 19:09:50
23-Dec-2019 19:09:50 self = <yaml.loader.Loader object at 0x7f7042e95390>
23-Dec-2019 19:09:50
23-Dec-2019 19:09:50     def fetch_value(self):
23-Dec-2019 19:09:50    
23-Dec-2019 19:09:50         # Do we determine a simple key?
23-Dec-2019 19:09:50         if self.flow_level in self.possible_simple_keys:
23-Dec-2019 19:09:50    
23-Dec-2019 19:09:50             # Add KEY.
23-Dec-2019 19:09:50             key = self.possible_simple_keys[self.flow_level]
23-Dec-2019 19:09:50             del self.possible_simple_keys[self.flow_level]
23-Dec-2019 19:09:50             self.tokens.insert(key.token_number-self.tokens_taken,
23-Dec-2019 19:09:50                     KeyToken(key.mark, key.mark))
23-Dec-2019 19:09:50    
23-Dec-2019 19:09:50             # If this key starts a new block mapping, we need to add
23-Dec-2019 19:09:50             # BLOCK-MAPPING-START.
23-Dec-2019 19:09:50             if not self.flow_level:
23-Dec-2019 19:09:50                 if self.add_indent(key.column):
23-Dec-2019 19:09:50                     self.tokens.insert(key.token_number-self.tokens_taken,
23-Dec-2019 19:09:50                             BlockMappingStartToken(key.mark, key.mark))
23-Dec-2019 19:09:50    
23-Dec-2019 19:09:50             # There cannot be two simple keys one after another.
23-Dec-2019 19:09:50             self.allow_simple_key = False
23-Dec-2019 19:09:50    
23-Dec-2019 19:09:50         # It must be a part of a complex key.
23-Dec-2019 19:09:50         else:
23-Dec-2019 19:09:50    
23-Dec-2019 19:09:50             # Block context needs additional checks.
23-Dec-2019 19:09:50             # (Do we really need them? They will be catched by the parser
23-Dec-2019 19:09:50             # anyway.)
23-Dec-2019 19:09:50             if not self.flow_level:
23-Dec-2019 19:09:50    
23-Dec-2019 19:09:50                 # We are allowed to start a complex value if and only if
23-Dec-2019 19:09:50                 # we can start a simple key.
23-Dec-2019 19:09:50                 if not self.allow_simple_key:
23-Dec-2019 19:09:50                     raise ScannerError(None, None,
23-Dec-2019 19:09:50                             "mapping values are not allowed here",
23-Dec-2019 19:09:50 >                           self.get_mark())
23-Dec-2019 19:09:50 E                   ScannerError: mapping values are not allowed here
23-Dec-2019 19:09:50 E                     in "<unicode string>", line 1, column 90:
23-Dec-2019 19:09:50 E                        ... py:91: RequestsDependencyWarning: urllib3 (1.25.7) or chardet (3 ...
23-Dec-2019 19:09:50 E                                                            ^
23-Dec-2019 19:09:50
23-Dec-2019 19:09:50 /usr/local/lib/python2.7/dist-packages/yaml/scanner.py:576: ScannerError
23-Dec-2019 19:09:50 ____ ERROR at setup of test_move_big[singleprovider_singleclient_directio] _____
23-Dec-2019 19:09:50
23-Dec-2019 19:09:50 env_description_abs_path = '/mnt/storage/bamboo-agent-home/xml-data/build-dir/TEST-ON2-RFCD/onedata/tests/oneclient/environments/singleprovider_singleclient_directio.yaml'
23-Dec-2019 19:09:50 hosts = {}
23-Dec-2019 19:09:50 request = <SubRequest 'env_desc' for <Function 'test_create[singleprovider_singleclient_directio]'>>
23-Dec-2019 19:09:50 users = {}
23-Dec-2019 19:09:50 previous_env = {'env_path': '/mnt/storage/bamboo-agent-home/xml-data/build-dir/TEST-ON2-RFCD/onedata/tests/oneclient/environments/singleprovider_singleclient_directio.yaml'}
23-Dec-2019 19:09:50
23-Dec-2019 19:09:50     @pytest.fixture(scope='module', autouse=True)
23-Dec-2019 19:09:50     def env_desc(env_description_abs_path, hosts, request, users,
23-Dec-2019 19:09:50                  previous_env):
23-Dec-2019 19:09:50         """
23-Dec-2019 19:09:50         Sets up environment and returns environment description.
23-Dec-2019 19:09:50         """
23-Dec-2019 19:09:50         test_type = get_test_type(request)
23-Dec-2019 19:09:50         start_env = _check_if_should_start_new_env(env_description_abs_path,
23-Dec-2019 19:09:50                                                    previous_env)
23-Dec-2019 19:09:50    
23-Dec-2019 19:09:50         if test_type in ['gui']:
23-Dec-2019 19:09:50             # For now gui tests do not use onenv patch
23-Dec-2019 19:09:50             if start_env:
23-Dec-2019 19:09:50                 previous_env['started'] = start_environment(
23-Dec-2019 19:09:50                     env_description_abs_path, request, hosts, '', users,
23-Dec-2019 19:09:50                     env_description_abs_path
23-Dec-2019 19:09:50                 )
23-Dec-2019 19:09:50             return ''
23-Dec-2019 19:09:50    
23-Dec-2019 19:09:50         elif test_type == 'mixed':
23-Dec-2019 19:09:50             with open(env_description_abs_path, 'r') as env_desc_file:
23-Dec-2019 19:09:50                 env_desc = yaml.load(env_desc_file)
23-Dec-2019 19:09:50             scenario = env_desc.get('scenario')
23-Dec-2019 19:09:50             scenarios_dir_path = SCENARIO_DIRS.get(get_test_type(request))
23-Dec-2019 19:09:50             scenario_path = os.path.abspath(os.path.join(scenarios_dir_path,
23-Dec-2019 19:09:50                                                          scenario))
23-Dec-2019 19:09:50    
23-Dec-2019 19:09:50             if start_env:
23-Dec-2019 19:09:50                 previous_env['started'] = start_environment(
23-Dec-2019 19:09:50                     scenario_path, request, hosts, '', users,
23-Dec-2019 19:09:50                     env_description_abs_path
23-Dec-2019 19:09:50                 )
23-Dec-2019 19:09:50             return env_desc
23-Dec-2019 19:09:50    
23-Dec-2019 19:09:50         elif test_type in ['oneclient', 'onedata_fs', 'performance']:
23-Dec-2019 19:09:50             with open(env_description_abs_path, 'r') as env_desc_file:
23-Dec-2019 19:09:50                 env_desc = yaml.load(env_desc_file)
23-Dec-2019 19:09:50    
23-Dec-2019 19:09:50             scenario = env_desc.get('scenario')
23-Dec-2019 19:09:50             scenarios_dir_path = SCENARIO_DIRS.get(get_test_type(request))
23-Dec-2019 19:09:50             scenario_path = os.path.abspath(os.path.join(scenarios_dir_path,
23-Dec-2019 19:09:50                                                          scenario))
23-Dec-2019 19:09:50    
23-Dec-2019 19:09:50             patch = env_desc.get('patch')
23-Dec-2019 19:09:50             patch_dir_path = PATCHES_DIR.get(get_test_type(request))
23-Dec-2019 19:09:50             patch_path = os.path.join(patch_dir_path, patch)
23-Dec-2019 19:09:50             if start_env:
23-Dec-2019 19:09:50                 previous_env['started'] = start_environment(
23-Dec-2019 19:09:50                     scenario_path, request, hosts, patch_path, users,
23-Dec-2019 19:09:50 >                   env_description_abs_path
23-Dec-2019 19:09:50                 )
23-Dec-2019 19:09:50
23-Dec-2019 19:09:50 tests/conftest.py:356:
23-Dec-2019 19:09:50 _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
23-Dec-2019 19:09:50 tests/conftest.py:455: in start_environment
23-Dec-2019 19:09:50     pods_cfg = check_deployment()
23-Dec-2019 19:09:50 tests/conftest.py:484: in check_deployment
23-Dec-2019 19:09:50     status_output = yaml.load(status_output.decode('utf-8'))
23-Dec-2019 19:09:50 /usr/local/lib/python2.7/dist-packages/yaml/__init__.py:71: in load
23-Dec-2019 19:09:50     return loader.get_single_data()
23-Dec-2019 19:09:50 /usr/local/lib/python2.7/dist-packages/yaml/constructor.py:37: in get_single_data
23-Dec-2019 19:09:50     node = self.get_single_node()
23-Dec-2019 19:09:50 /usr/local/lib/python2.7/dist-packages/yaml/composer.py:36: in get_single_node
23-Dec-2019 19:09:50     document = self.compose_document()
23-Dec-2019 19:09:50 /usr/local/lib/python2.7/dist-packages/yaml/composer.py:55: in compose_document
23-Dec-2019 19:09:50     node = self.compose_node(None, None)
23-Dec-2019 19:09:50 /usr/local/lib/python2.7/dist-packages/yaml/composer.py:84: in compose_node
23-Dec-2019 19:09:50     node = self.compose_mapping_node(anchor)
23-Dec-2019 19:09:50 /usr/local/lib/python2.7/dist-packages/yaml/composer.py:127: in compose_mapping_node
23-Dec-2019 19:09:50     while not self.check_event(MappingEndEvent):
23-Dec-2019 19:09:50 /usr/local/lib/python2.7/dist-packages/yaml/parser.py:98: in check_event
23-Dec-2019 19:09:50     self.current_event = self.state()
23-Dec-2019 19:09:50 /usr/local/lib/python2.7/dist-packages/yaml/parser.py:428: in parse_block_mapping_key
23-Dec-2019 19:09:50     if self.check_token(KeyToken):
23-Dec-2019 19:09:50 /usr/local/lib/python2.7/dist-packages/yaml/scanner.py:116: in check_token
23-Dec-2019 19:09:50     self.fetch_more_tokens()
23-Dec-2019 19:09:50 /usr/local/lib/python2.7/dist-packages/yaml/scanner.py:220: in fetch_more_tokens
23-Dec-2019 19:09:50     return self.fetch_value()
23-Dec-2019 19:09:50 _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
23-Dec-2019 19:09:50
23-Dec-2019 19:09:50 self = <yaml.loader.Loader object at 0x7f7042e95390>
23-Dec-2019 19:09:50
23-Dec-2019 19:09:50     def fetch_value(self):
23-Dec-2019 19:09:50    
23-Dec-2019 19:09:50         # Do we determine a simple key?
23-Dec-2019 19:09:50         if self.flow_level in self.possible_simple_keys:
23-Dec-2019 19:09:50    
23-Dec-2019 19:09:50             # Add KEY.
23-Dec-2019 19:09:50             key = self.possible_simple_keys[self.flow_level]
23-Dec-2019 19:09:50             del self.possible_simple_keys[self.flow_level]
23-Dec-2019 19:09:50             self.tokens.insert(key.token_number-self.tokens_taken,
23-Dec-2019 19:09:50                     KeyToken(key.mark, key.mark))
23-Dec-2019 19:09:50    
23-Dec-2019 19:09:50             # If this key starts a new block mapping, we need to add
23-Dec-2019 19:09:50             # BLOCK-MAPPING-START.
23-Dec-2019 19:09:50             if not self.flow_level:
23-Dec-2019 19:09:50                 if self.add_indent(key.column):
23-Dec-2019 19:09:50                     self.tokens.insert(key.token_number-self.tokens_taken,
23-Dec-2019 19:09:50                             BlockMappingStartToken(key.mark, key.mark))
23-Dec-2019 19:09:50    
23-Dec-2019 19:09:50             # There cannot be two simple keys one after another.
23-Dec-2019 19:09:50             self.allow_simple_key = False
23-Dec-2019 19:09:50    
23-Dec-2019 19:09:50         # It must be a part of a complex key.
23-Dec-2019 19:09:50         else:
23-Dec-2019 19:09:50    
23-Dec-2019 19:09:50             # Block context needs additional checks.
23-Dec-2019 19:09:50             # (Do we really need them? They will be catched by the parser
23-Dec-2019 19:09:50             # anyway.)
23-Dec-2019 19:09:50             if not self.flow_level:
23-Dec-2019 19:09:50    
23-Dec-2019 19:09:50                 # We are allowed to start a complex value if and only if
23-Dec-2019 19:09:50                 # we can start a simple key.
23-Dec-2019 19:09:50                 if not self.allow_simple_key:
23-Dec-2019 19:09:50                     raise ScannerError(None, None,
23-Dec-2019 19:09:50                             "mapping values are not allowed here",
23-Dec-2019 19:09:50 >                           self.get_mark())
23-Dec-2019 19:09:50 E                   ScannerError: mapping values are not allowed here
23-Dec-2019 19:09:50 E                     in "<unicode string>", line 1, column 90:
23-Dec-2019 19:09:50 E                        ... py:91: RequestsDependencyWarning: urllib3 (1.25.7) or chardet (3 ...
23-Dec-2019 19:09:50 E                                                            ^
23-Dec-2019 19:09:50
23-Dec-2019 19:09:50 /usr/local/lib/python2.7/dist-packages/yaml/scanner.py:576: ScannerError
23-Dec-2019 19:09:50 ______ ERROR at setup of test_copy[singleprovider_singleclient_directio] _______
23-Dec-2019 19:09:50
23-Dec-2019 19:09:50 env_description_abs_path = '/mnt/storage/bamboo-agent-home/xml-data/build-dir/TEST-ON2-RFCD/onedata/tests/oneclient/environments/singleprovider_singleclient_directio.yaml'
23-Dec-2019 19:09:50 hosts = {}
23-Dec-2019 19:09:50 request = <SubRequest 'env_desc' for <Function 'test_create[singleprovider_singleclient_directio]'>>
23-Dec-2019 19:09:50 users = {}
23-Dec-2019 19:09:50 previous_env = {'env_path': '/mnt/storage/bamboo-agent-home/xml-data/build-dir/TEST-ON2-RFCD/onedata/tests/oneclient/environments/singleprovider_singleclient_directio.yaml'}
23-Dec-2019 19:09:50
23-Dec-2019 19:09:50     @pytest.fixture(scope='module', autouse=True)
23-Dec-2019 19:09:50     def env_desc(env_description_abs_path, hosts, request, users,
23-Dec-2019 19:09:50                  previous_env):
23-Dec-2019 19:09:50         """
23-Dec-2019 19:09:50         Sets up environment and returns environment description.
23-Dec-2019 19:09:50         """
23-Dec-2019 19:09:50         test_type = get_test_type(request)
23-Dec-2019 19:09:50         start_env = _check_if_should_start_new_env(env_description_abs_path,
23-Dec-2019 19:09:50                                                    previous_env)
23-Dec-2019 19:09:50    
23-Dec-2019 19:09:50         if test_type in ['gui']:
23-Dec-2019 19:09:50             # For now gui tests do not use onenv patch
23-Dec-2019 19:09:50             if start_env:
23-Dec-2019 19:09:50                 previous_env['started'] = start_environment(
23-Dec-2019 19:09:50                     env_description_abs_path, request, hosts, '', users,
23-Dec-2019 19:09:50                     env_description_abs_path
23-Dec-2019 19:09:50                 )
23-Dec-2019 19:09:50             return ''
23-Dec-2019 19:09:50    
23-Dec-2019 19:09:50         elif test_type == 'mixed':
23-Dec-2019 19:09:50             with open(env_description_abs_path, 'r') as env_desc_file:
23-Dec-2019 19:09:50                 env_desc = yaml.load(env_desc_file)
23-Dec-2019 19:09:50             scenario = env_desc.get('scenario')
23-Dec-2019 19:09:50             scenarios_dir_path = SCENARIO_DIRS.get(get_test_type(request))
23-Dec-2019 19:09:50             scenario_path = os.path.abspath(os.path.join(scenarios_dir_path,
23-Dec-2019 19:09:50                                                          scenario))
23-Dec-2019 19:09:50    
23-Dec-2019 19:09:50             if start_env:
23-Dec-2019 19:09:50                 previous_env['started'] = start_environment(
23-Dec-2019 19:09:50                     scenario_path, request, hosts, '', users,
23-Dec-2019 19:09:50                     env_description_abs_path
23-Dec-2019 19:09:50                 )
23-Dec-2019 19:09:50             return env_desc
23-Dec-2019 19:09:50    
23-Dec-2019 19:09:50         elif test_type in ['oneclient', 'onedata_fs', 'performance']:
23-Dec-2019 19:09:50             with open(env_description_abs_path, 'r') as env_desc_file:
23-Dec-2019 19:09:50                 env_desc = yaml.load(env_desc_file)
23-Dec-2019 19:09:50    
23-Dec-2019 19:09:50             scenario = env_desc.get('scenario')
23-Dec-2019 19:09:50             scenarios_dir_path = SCENARIO_DIRS.get(get_test_type(request))
23-Dec-2019 19:09:50             scenario_path = os.path.abspath(os.path.join(scenarios_dir_path,
23-Dec-2019 19:09:50                                                          scenario))
23-Dec-2019 19:09:50    
23-Dec-2019 19:09:50             patch = env_desc.get('patch')
23-Dec-2019 19:09:50             patch_dir_path = PATCHES_DIR.get(get_test_type(request))
23-Dec-2019 19:09:50             patch_path = os.path.join(patch_dir_path, patch)
23-Dec-2019 19:09:50             if start_env:
23-Dec-2019 19:09:50                 previous_env['started'] = start_environment(
23-Dec-2019 19:09:50                     scenario_path, request, hosts, patch_path, users,
23-Dec-2019 19:09:50 >                   env_description_abs_path
23-Dec-2019 19:09:50                 )
23-Dec-2019 19:09:50
23-Dec-2019 19:09:50 tests/conftest.py:356:
23-Dec-2019 19:09:50 _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
23-Dec-2019 19:09:50 tests/conftest.py:455: in start_environment
23-Dec-2019 19:09:50     pods_cfg = check_deployment()
23-Dec-2019 19:09:50 tests/conftest.py:484: in check_deployment
23-Dec-2019 19:09:50     status_output = yaml.load(status_output.decode('utf-8'))
23-Dec-2019 19:09:50 /usr/local/lib/python2.7/dist-packages/yaml/__init__.py:71: in load
23-Dec-2019 19:09:50     return loader.get_single_data()
23-Dec-2019 19:09:50 /usr/local/lib/python2.7/dist-packages/yaml/constructor.py:37: in get_single_data
23-Dec-2019 19:09:50     node = self.get_single_node()
23-Dec-2019 19:09:50 /usr/local/lib/python2.7/dist-packages/yaml/composer.py:36: in get_single_node
23-Dec-2019 19:09:50     document = self.compose_document()
23-Dec-2019 19:09:50 /usr/local/lib/python2.7/dist-packages/yaml/composer.py:55: in compose_document
23-Dec-2019 19:09:50     node = self.compose_node(None, None)
23-Dec-2019 19:09:50 /usr/local/lib/python2.7/dist-packages/yaml/composer.py:84: in compose_node
23-Dec-2019 19:09:50     node = self.compose_mapping_node(anchor)
23-Dec-2019 19:09:50 /usr/local/lib/python2.7/dist-packages/yaml/composer.py:127: in compose_mapping_node
23-Dec-2019 19:09:50     while not self.check_event(MappingEndEvent):
23-Dec-2019 19:09:50 /usr/local/lib/python2.7/dist-packages/yaml/parser.py:98: in check_event
23-Dec-2019 19:09:50     self.current_event = self.state()
23-Dec-2019 19:09:50 /usr/local/lib/python2.7/dist-packages/yaml/parser.py:428: in parse_block_mapping_key
23-Dec-2019 19:09:50     if self.check_token(KeyToken):
23-Dec-2019 19:09:50 /usr/local/lib/python2.7/dist-packages/yaml/scanner.py:116: in check_token
23-Dec-2019 19:09:50     self.fetch_more_tokens()
23-Dec-2019 19:09:50 /usr/local/lib/python2.7/dist-packages/yaml/scanner.py:220: in fetch_more_tokens
23-Dec-2019 19:09:50     return self.fetch_value()
23-Dec-2019 19:09:50 _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
23-Dec-2019 19:09:50
23-Dec-2019 19:09:50 self = <yaml.loader.Loader object at 0x7f7042e95390>
23-Dec-2019 19:09:50
23-Dec-2019 19:09:50     def fetch_value(self):
23-Dec-2019 19:09:50    
23-Dec-2019 19:09:50         # Do we determine a simple key?
23-Dec-2019 19:09:50         if self.flow_level in self.possible_simple_keys:
23-Dec-2019 19:09:50    
23-Dec-2019 19:09:50             # Add KEY.
23-Dec-2019 19:09:50             key = self.possible_simple_keys[self.flow_level]
23-Dec-2019 19:09:50             del self.possible_simple_keys[self.flow_level]
23-Dec-2019 19:09:50             self.tokens.insert(key.token_number-self.tokens_taken,
23-Dec-2019 19:09:50                     KeyToken(key.mark, key.mark))
23-Dec-2019 19:09:50    
23-Dec-2019 19:09:50             # If this key starts a new block mapping, we need to add
23-Dec-2019 19:09:50             # BLOCK-MAPPING-START.
23-Dec-2019 19:09:50             if not self.flow_level:
23-Dec-2019 19:09:50                 if self.add_indent(key.column):
23-Dec-2019 19:09:50                     self.tokens.insert(key.token_number-self.tokens_taken,
23-Dec-2019 19:09:50                             BlockMappingStartToken(key.mark, key.mark))
23-Dec-2019 19:09:50    
23-Dec-2019 19:09:50             # There cannot be two simple keys one after another.
23-Dec-2019 19:09:50             self.allow_simple_key = False
23-Dec-2019 19:09:50    
23-Dec-2019 19:09:50         # It must be a part of a complex key.
23-Dec-2019 19:09:50         else:
23-Dec-2019 19:09:50    
23-Dec-2019 19:09:50             # Block context needs additional checks.
23-Dec-2019 19:09:50             # (Do we really need them? They will be catched by the parser
23-Dec-2019 19:09:50             # anyway.)
23-Dec-2019 19:09:50             if not self.flow_level:
23-Dec-2019 19:09:50    
23-Dec-2019 19:09:50                 # We are allowed to start a complex value if and only if
23-Dec-2019 19:09:50                 # we can start a simple key.
23-Dec-2019 19:09:50                 if not self.allow_simple_key:
23-Dec-2019 19:09:50                     raise ScannerError(None, None,
23-Dec-2019 19:09:50                             "mapping values are not allowed here",
23-Dec-2019 19:09:50 >                           self.get_mark())
23-Dec-2019 19:09:50 E                   ScannerError: mapping values are not allowed here
23-Dec-2019 19:09:50 E                     in "<unicode string>", line 1, column 90:
23-Dec-2019 19:09:50 E                        ... py:91: RequestsDependencyWarning: urllib3 (1.25.7) or chardet (3 ...
23-Dec-2019 19:09:50 E                                                            ^
23-Dec-2019 19:09:50
23-Dec-2019 19:09:50 /usr/local/lib/python2.7/dist-packages/yaml/scanner.py:576: ScannerError
23-Dec-2019 19:09:50 ____ ERROR at setup of test_copy_big[singleprovider_singleclient_directio] _____
23-Dec-2019 19:09:50
23-Dec-2019 19:09:50 env_description_abs_path = '/mnt/storage/bamboo-agent-home/xml-data/build-dir/TEST-ON2-RFCD/onedata/tests/oneclient/environments/singleprovider_singleclient_directio.yaml'
23-Dec-2019 19:09:50 hosts = {}
23-Dec-2019 19:09:50 request = <SubRequest 'env_desc' for <Function 'test_create[singleprovider_singleclient_directio]'>>
23-Dec-2019 19:09:50 users = {}
23-Dec-2019 19:09:50 previous_env = {'env_path': '/mnt/storage/bamboo-agent-home/xml-data/build-dir/TEST-ON2-RFCD/onedata/tests/oneclient/environments/singleprovider_singleclient_directio.yaml'}
23-Dec-2019 19:09:50
23-Dec-2019 19:09:50     @pytest.fixture(scope='module', autouse=True)
23-Dec-2019 19:09:50     def env_desc(env_description_abs_path, hosts, request, users,
23-Dec-2019 19:09:50                  previous_env):
23-Dec-2019 19:09:50         """
23-Dec-2019 19:09:50         Sets up environment and returns environment description.
23-Dec-2019 19:09:50         """
23-Dec-2019 19:09:50         test_type = get_test_type(request)
23-Dec-2019 19:09:50         start_env = _check_if_should_start_new_env(env_description_abs_path,
23-Dec-2019 19:09:50                                                    previous_env)
23-Dec-2019 19:09:50    
23-Dec-2019 19:09:50         if test_type in ['gui']:
23-Dec-2019 19:09:50             # For now gui tests do not use onenv patch
23-Dec-2019 19:09:50             if start_env:
23-Dec-2019 19:09:50                 previous_env['started'] = start_environment(
23-Dec-2019 19:09:50                     env_description_abs_path, request, hosts, '', users,
23-Dec-2019 19:09:50                     env_description_abs_path
23-Dec-2019 19:09:50                 )
23-Dec-2019 19:09:50             return ''
23-Dec-2019 19:09:50    
23-Dec-2019 19:09:50         elif test_type == 'mixed':
23-Dec-2019 19:09:50             with open(env_description_abs_path, 'r') as env_desc_file:
23-Dec-2019 19:09:50                 env_desc = yaml.load(env_desc_file)
23-Dec-2019 19:09:50             scenario = env_desc.get('scenario')
23-Dec-2019 19:09:50             scenarios_dir_path = SCENARIO_DIRS.get(get_test_type(request))
23-Dec-2019 19:09:50             scenario_path = os.path.abspath(os.path.join(scenarios_dir_path,
23-Dec-2019 19:09:50                                                          scenario))
23-Dec-2019 19:09:50    
23-Dec-2019 19:09:50             if start_env:
23-Dec-2019 19:09:50                 previous_env['started'] = start_environment(
23-Dec-2019 19:09:50                     scenario_path, request, hosts, '', users,
23-Dec-2019 19:09:50                     env_description_abs_path
23-Dec-2019 19:09:50                 )
23-Dec-2019 19:09:50             return env_desc
23-Dec-2019 19:09:50    
23-Dec-2019 19:09:50         elif test_type in ['oneclient', 'onedata_fs', 'performance']:
23-Dec-2019 19:09:50             with open(env_description_abs_path, 'r') as env_desc_file:
23-Dec-2019 19:09:50                 env_desc = yaml.load(env_desc_file)
23-Dec-2019 19:09:50    
23-Dec-2019 19:09:50             scenario = env_desc.get('scenario')
23-Dec-2019 19:09:50             scenarios_dir_path = SCENARIO_DIRS.get(get_test_type(request))
23-Dec-2019 19:09:50             scenario_path = os.path.abspath(os.path.join(scenarios_dir_path,
23-Dec-2019 19:09:50                                                          scenario))
23-Dec-2019 19:09:50    
23-Dec-2019 19:09:50             patch = env_desc.get('patch')
23-Dec-2019 19:09:50             patch_dir_path = PATCHES_DIR.get(get_test_type(request))
23-Dec-2019 19:09:50             patch_path = os.path.join(patch_dir_path, patch)
23-Dec-2019 19:09:50             if start_env:
23-Dec-2019 19:09:50                 previous_env['started'] = start_environment(
23-Dec-2019 19:09:50                     scenario_path, request, hosts, patch_path, users,
23-Dec-2019 19:09:50 >                   env_description_abs_path
23-Dec-2019 19:09:50                 )
23-Dec-2019 19:09:50
23-Dec-2019 19:09:50 tests/conftest.py:356:
23-Dec-2019 19:09:50 _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
23-Dec-2019 19:09:50 tests/conftest.py:455: in start_environment
23-Dec-2019 19:09:50     pods_cfg = check_deployment()
23-Dec-2019 19:09:50 tests/conftest.py:484: in check_deployment
23-Dec-2019 19:09:50     status_output = yaml.load(status_output.decode('utf-8'))
23-Dec-2019 19:09:50 /usr/local/lib/python2.7/dist-packages/yaml/__init__.py:71: in load
23-Dec-2019 19:09:50     return loader.get_single_data()
23-Dec-2019 19:09:50 /usr/local/lib/python2.7/dist-packages/yaml/constructor.py:37: in get_single_data
23-Dec-2019 19:09:50     node = self.get_single_node()
23-Dec-2019 19:09:50 /usr/local/lib/python2.7/dist-packages/yaml/composer.py:36: in get_single_node
23-Dec-2019 19:09:50     document = self.compose_document()
23-Dec-2019 19:09:50 /usr/local/lib/python2.7/dist-packages/yaml/composer.py:55: in compose_document
23-Dec-2019 19:09:50     node = self.compose_node(None, None)
23-Dec-2019 19:09:50 /usr/local/lib/python2.7/dist-packages/yaml/composer.py:84: in compose_node
23-Dec-2019 19:09:50     node = self.compose_mapping_node(anchor)
23-Dec-2019 19:09:50 /usr/local/lib/python2.7/dist-packages/yaml/composer.py:127: in compose_mapping_node
23-Dec-2019 19:09:50     while not self.check_event(MappingEndEvent):
23-Dec-2019 19:09:50 /usr/local/lib/python2.7/dist-packages/yaml/parser.py:98: in check_event
23-Dec-2019 19:09:50     self.current_event = self.state()
23-Dec-2019 19:09:50 /usr/local/lib/python2.7/dist-packages/yaml/parser.py:428: in parse_block_mapping_key
23-Dec-2019 19:09:50     if self.check_token(KeyToken):
23-Dec-2019 19:09:50 /usr/local/lib/python2.7/dist-packages/yaml/scanner.py:116: in check_token
23-Dec-2019 19:09:50     self.fetch_more_tokens()
23-Dec-2019 19:09:50 /usr/local/lib/python2.7/dist-packages/yaml/scanner.py:220: in fetch_more_tokens
23-Dec-2019 19:09:50     return self.fetch_value()
23-Dec-2019 19:09:50 _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
23-Dec-2019 19:09:50
23-Dec-2019 19:09:50 self = <yaml.loader.Loader object at 0x7f7042e95390>
23-Dec-2019 19:09:50
23-Dec-2019 19:09:50     def fetch_value(self):
23-Dec-2019 19:09:50    
23-Dec-2019 19:09:50         # Do we determine a simple key?
23-Dec-2019 19:09:50         if self.flow_level in self.possible_simple_keys:
23-Dec-2019 19:09:50    
23-Dec-2019 19:09:50             # Add KEY.
23-Dec-2019 19:09:50             key = self.possible_simple_keys[self.flow_level]
23-Dec-2019 19:09:50             del self.possible_simple_keys[self.flow_level]
23-Dec-2019 19:09:50             self.tokens.insert(key.token_number-self.tokens_taken,
23-Dec-2019 19:09:50                     KeyToken(key.mark, key.mark))
23-Dec-2019 19:09:50    
23-Dec-2019 19:09:50             # If this key starts a new block mapping, we need to add
23-Dec-2019 19:09:50             # BLOCK-MAPPING-START.
23-Dec-2019 19:09:50             if not self.flow_level:
23-Dec-2019 19:09:50                 if self.add_indent(key.column):
23-Dec-2019 19:09:50                     self.tokens.insert(key.token_number-self.tokens_taken,
23-Dec-2019 19:09:50                             BlockMappingStartToken(key.mark, key.mark))
23-Dec-2019 19:09:50    
23-Dec-2019 19:09:50             # There cannot be two simple keys one after another.
23-Dec-2019 19:09:50             self.allow_simple_key = False
23-Dec-2019 19:09:50    
23-Dec-2019 19:09:50         # It must be a part of a complex key.
23-Dec-2019 19:09:50         else:
23-Dec-2019 19:09:50    
23-Dec-2019 19:09:50             # Block context needs additional checks.
23-Dec-2019 19:09:50             # (Do we really need them? They will be catched by the parser
23-Dec-2019 19:09:50             # anyway.)
23-Dec-2019 19:09:50             if not self.flow_level:
23-Dec-2019 19:09:50    
23-Dec-2019 19:09:50                 # We are allowed to start a complex value if and only if
23-Dec-2019 19:09:50                 # we can start a simple key.
23-Dec-2019 19:09:50                 if not self.allow_simple_key:
23-Dec-2019 19:09:50                     raise ScannerError(None, None,
23-Dec-2019 19:09:50                             "mapping values are not allowed here",
23-Dec-2019 19:09:50 >                           self.get_mark())
23-Dec-2019 19:09:50 E                   ScannerError: mapping values are not allowed here
23-Dec-2019 19:09:50 E                     in "<unicode string>", line 1, column 90:
23-Dec-2019 19:09:50 E                        ... py:91: RequestsDependencyWarning: urllib3 (1.25.7) or chardet (3 ...
23-Dec-2019 19:09:50 E                                                            ^
23-Dec-2019 19:09:50
23-Dec-2019 19:09:50 /usr/local/lib/python2.7/dist-packages/yaml/scanner.py:576: ScannerError
23-Dec-2019 19:09:50 _ ERROR at setup of test_delete_copied_after_read[singleprovider_singleclient_directio] _
23-Dec-2019 19:09:50
23-Dec-2019 19:09:50 env_description_abs_path = '/mnt/storage/bamboo-agent-home/xml-data/build-dir/TEST-ON2-RFCD/onedata/tests/oneclient/environments/singleprovider_singleclient_directio.yaml'
23-Dec-2019 19:09:50 hosts = {}
23-Dec-2019 19:09:50 request = <SubRequest 'env_desc' for <Function 'test_create[singleprovider_singleclient_directio]'>>
23-Dec-2019 19:09:50 users = {}
23-Dec-2019 19:09:50 previous_env = {'env_path': '/mnt/storage/bamboo-agent-home/xml-data/build-dir/TEST-ON2-RFCD/onedata/tests/oneclient/environments/singleprovider_singleclient_directio.yaml'}
23-Dec-2019 19:09:50
23-Dec-2019 19:09:50     @pytest.fixture(scope='module', autouse=True)
23-Dec-2019 19:09:50     def env_desc(env_description_abs_path, hosts, request, users,
23-Dec-2019 19:09:50                  previous_env):
23-Dec-2019 19:09:50         """
23-Dec-2019 19:09:50         Sets up environment and returns environment description.
23-Dec-2019 19:09:50         """
23-Dec-2019 19:09:50         test_type = get_test_type(request)
23-Dec-2019 19:09:50         start_env = _check_if_should_start_new_env(env_description_abs_path,
23-Dec-2019 19:09:50                                                    previous_env)
23-Dec-2019 19:09:50    
23-Dec-2019 19:09:50         if test_type in ['gui']:
23-Dec-2019 19:09:50             # For now gui tests do not use onenv patch
23-Dec-2019 19:09:50             if start_env:
23-Dec-2019 19:09:50                 previous_env['started'] = start_environment(
23-Dec-2019 19:09:50                     env_description_abs_path, request, hosts, '', users,
23-Dec-2019 19:09:50                     env_description_abs_path
23-Dec-2019 19:09:50                 )
23-Dec-2019 19:09:50             return ''
23-Dec-2019 19:09:50    
23-Dec-2019 19:09:50         elif test_type == 'mixed':
23-Dec-2019 19:09:50             with open(env_description_abs_path, 'r') as env_desc_file:
23-Dec-2019 19:09:50                 env_desc = yaml.load(env_desc_file)
23-Dec-2019 19:09:50             scenario = env_desc.get('scenario')
23-Dec-2019 19:09:50             scenarios_dir_path = SCENARIO_DIRS.get(get_test_type(request))
23-Dec-2019 19:09:50             scenario_path = os.path.abspath(os.path.join(scenarios_dir_path,
23-Dec-2019 19:09:50                                                          scenario))
23-Dec-2019 19:09:50    
23-Dec-2019 19:09:50             if start_env:
23-Dec-2019 19:09:50                 previous_env['started'] = start_environment(
23-Dec-2019 19:09:50                     scenario_path, request, hosts, '', users,
23-Dec-2019 19:09:50                     env_description_abs_path
23-Dec-2019 19:09:50                 )
23-Dec-2019 19:09:50             return env_desc
23-Dec-2019 19:09:50    
23-Dec-2019 19:09:50         elif test_type in ['oneclient', 'onedata_fs', 'performance']:
23-Dec-2019 19:09:50             with open(env_description_abs_path, 'r') as env_desc_file:
23-Dec-2019 19:09:50                 env_desc = yaml.load(env_desc_file)
23-Dec-2019 19:09:50    
23-Dec-2019 19:09:50             scenario = env_desc.get('scenario')
23-Dec-2019 19:09:50             scenarios_dir_path = SCENARIO_DIRS.get(get_test_type(request))
23-Dec-2019 19:09:50             scenario_path = os.path.abspath(os.path.join(scenarios_dir_path,
23-Dec-2019 19:09:50                                                          scenario))
23-Dec-2019 19:09:50    
23-Dec-2019 19:09:50             patch = env_desc.get('patch')
23-Dec-2019 19:09:50             patch_dir_path = PATCHES_DIR.get(get_test_type(request))
23-Dec-2019 19:09:50             patch_path = os.path.join(patch_dir_path, patch)
23-Dec-2019 19:09:50             if start_env:
23-Dec-2019 19:09:50                 previous_env['started'] = start_environment(
23-Dec-2019 19:09:50                     scenario_path, request, hosts, patch_path, users,
23-Dec-2019 19:09:50 >                   env_description_abs_path
23-Dec-2019 19:09:50                 )
23-Dec-2019 19:09:50
23-Dec-2019 19:09:50 tests/conftest.py:356:
23-Dec-2019 19:09:50 _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
23-Dec-2019 19:09:50 tests/conftest.py:455: in start_environment
23-Dec-2019 19:09:50     pods_cfg = check_deployment()
23-Dec-2019 19:09:50 tests/conftest.py:484: in check_deployment
23-Dec-2019 19:09:50     status_output = yaml.load(status_output.decode('utf-8'))
23-Dec-2019 19:09:50 /usr/local/lib/python2.7/dist-packages/yaml/__init__.py:71: in load
23-Dec-2019 19:09:50     return loader.get_single_data()
23-Dec-2019 19:09:50 /usr/local/lib/python2.7/dist-packages/yaml/constructor.py:37: in get_single_data
23-Dec-2019 19:09:50     node = self.get_single_node()
23-Dec-2019 19:09:50 /usr/local/lib/python2.7/dist-packages/yaml/composer.py:36: in get_single_node
23-Dec-2019 19:09:50     document = self.compose_document()
23-Dec-2019 19:09:50 /usr/local/lib/python2.7/dist-packages/yaml/composer.py:55: in compose_document
23-Dec-2019 19:09:50     node = self.compose_node(None, None)
23-Dec-2019 19:09:50 /usr/local/lib/python2.7/dist-packages/yaml/composer.py:84: in compose_node
23-Dec-2019 19:09:50     node = self.compose_mapping_node(anchor)
23-Dec-2019 19:09:50 /usr/local/lib/python2.7/dist-packages/yaml/composer.py:127: in compose_mapping_node
23-Dec-2019 19:09:50     while not self.check_event(MappingEndEvent):
23-Dec-2019 19:09:50 /usr/local/lib/python2.7/dist-packages/yaml/parser.py:98: in check_event
23-Dec-2019 19:09:50     self.current_event = self.state()
23-Dec-2019 19:09:50 /usr/local/lib/python2.7/dist-packages/yaml/parser.py:428: in parse_block_mapping_key
23-Dec-2019 19:09:50     if self.check_token(KeyToken):
23-Dec-2019 19:09:50 /usr/local/lib/python2.7/dist-packages/yaml/scanner.py:116: in check_token
23-Dec-2019 19:09:50     self.fetch_more_tokens()
23-Dec-2019 19:09:50 /usr/local/lib/python2.7/dist-packages/yaml/scanner.py:220: in fetch_more_tokens
23-Dec-2019 19:09:50     return self.fetch_value()
23-Dec-2019 19:09:50 _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
23-Dec-2019 19:09:50
23-Dec-2019 19:09:50 self = <yaml.loader.Loader object at 0x7f7042e95390>
23-Dec-2019 19:09:50
23-Dec-2019 19:09:50     def fetch_value(self):
23-Dec-2019 19:09:50    
23-Dec-2019 19:09:50         # Do we determine a simple key?
23-Dec-2019 19:09:50         if self.flow_level in self.possible_simple_keys:
23-Dec-2019 19:09:50    
23-Dec-2019 19:09:50             # Add KEY.
23-Dec-2019 19:09:50             key = self.possible_simple_keys[self.flow_level]
23-Dec-2019 19:09:50             del self.possible_simple_keys[self.flow_level]
23-Dec-2019 19:09:50             self.tokens.insert(key.token_number-self.tokens_taken,
23-Dec-2019 19:09:50                     KeyToken(key.mark, key.mark))
23-Dec-2019 19:09:50    
23-Dec-2019 19:09:50             # If this key starts a new block mapping, we need to add
23-Dec-2019 19:09:50             # BLOCK-MAPPING-START.
23-Dec-2019 19:09:50             if not self.flow_level:
23-Dec-2019 19:09:50                 if self.add_indent(key.column):
23-Dec-2019 19:09:50                     self.tokens.insert(key.token_number-self.tokens_taken,
23-Dec-2019 19:09:50                             BlockMappingStartToken(key.mark, key.mark))
23-Dec-2019 19:09:50    
23-Dec-2019 19:09:50             # There cannot be two simple keys one after another.
23-Dec-2019 19:09:50             self.allow_simple_key = False
23-Dec-2019 19:09:50    
23-Dec-2019 19:09:50         # It must be a part of a complex key.
23-Dec-2019 19:09:50         else:
23-Dec-2019 19:09:50    
23-Dec-2019 19:09:50             # Block context needs additional checks.
23-Dec-2019 19:09:50             # (Do we really need them? They will be catched by the parser
23-Dec-2019 19:09:50             # anyway.)
23-Dec-2019 19:09:50             if not self.flow_level:
23-Dec-2019 19:09:50    
23-Dec-2019 19:09:50                 # We are allowed to start a complex value if and only if
23-Dec-2019 19:09:50                 # we can start a simple key.
23-Dec-2019 19:09:50                 if not self.allow_simple_key:
23-Dec-2019 19:09:50                     raise ScannerError(None, None,
23-Dec-2019 19:09:50                             "mapping values are not allowed here",
23-Dec-2019 19:09:50 >                           self.get_mark())
23-Dec-2019 19:09:50 E                   ScannerError: mapping values are not allowed here
23-Dec-2019 19:09:50 E                     in "<unicode string>", line 1, column 90:
23-Dec-2019 19:09:50 E                        ... py:91: RequestsDependencyWarning: urllib3 (1.25.7) or chardet (3 ...
23-Dec-2019 19:09:50 E                                                            ^
23-Dec-2019 19:09:50
23-Dec-2019 19:09:50 /usr/local/lib/python2.7/dist-packages/yaml/scanner.py:576: ScannerError
23-Dec-2019 19:09:50 ========================= 12 error in 1278.31 seconds ==========================
23-Dec-2019 19:10:10 release "dev" deleted
23-Dec-2019 19:10:10 /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 19:10:10   RequestsDependencyWarning)
23-Dec-2019 19:10:11 9bff231c0628
23-Dec-2019 19:10:11 Using image: docker.onedata.org/onezone-dev:ID-9d85e52816 for onezone service
23-Dec-2019 19:10:11 Using image: docker.onedata.org/oneprovider-dev:ID-96429fd39a for oneprovider service
23-Dec-2019 19:10:11 Using image: docker.onedata.org/rest-cli:ID-48767260b4 for rest cli service
23-Dec-2019 19:10:11 Using image: docker.onedata.org/oneclient-dev:ID-f9ca716885 for oneclient service
23-Dec-2019 19:10:11 Using image: docker.onedata.org/luma:ID-578faeaeaf for LUMA service
23-Dec-2019 19:10:11 Finished task 'Run acceptance mixed tests in Chrome' with result: Success
23-Dec-2019 19:10:11 Starting task 'Parse test results' of type 'com.atlassian.bamboo.plugins.testresultparser:task.testresultparser.junit'
23-Dec-2019 19:10:11 Parsing test results under /home/bamboo/bamboo-agent-home/xml-data/build-dir/TEST-ON2-RFCD...
23-Dec-2019 19:10:11 Failing task since 12 failing test cases were found.
23-Dec-2019 19:10:11 Finished task 'Parse test results' with result: Failed
23-Dec-2019 19:10:11 Starting task 'Pack logs' of type 'com.atlassian.bamboo.plugins.scripttask:task.builder.script'
23-Dec-2019 19:10:11
Beginning to execute external process for build 'Testing - oneclient-acceptance-src-test2 - regular file CRUD directio #4 (TEST-ON2-RFCD-4)'
... running command line:
/bin/sh /home/bamboo/bamboo-agent-home/temp/TEST-ON2-RFCD-4-ScriptBuildTask-1962419043699063197.sh
... in: /home/bamboo/bamboo-agent-home/xml-data/build-dir/TEST-ON2-RFCD
... 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-RFCD-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-RFCD
bamboo_planRepository_1_name=onedata-acceptance
bamboo_buildKey=TEST-ON2-RFCD
bamboo_shortPlanName=oneclient-acceptance-src-test2
bamboo_capability_minikube=true
bamboo_planRepository_name=onedata-acceptance
bamboo_buildNumber=4
bamboo_shortJobName=regular file CRUD directio
bamboo_buildResultsUrl=https://bamboo.onedata.org/browse/TEST-ON2-RFCD-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-RFCD-4-ScriptBuildTask-4959471781693165867.sh
bamboo_build_commandline_com_atlassian_bamboo_plugins_scripttask_task_builder_script_6=/home/bamboo/bamboo-agent-home/temp/TEST-ON2-RFCD-4-ScriptBuildTask-2230092348507700933.sh
bamboo_shortPlanKey=ON2
bamboo_repository_242352175_git_username=
bamboo_shortJobKey=RFCD
bamboo_planRepository_revision=569cf78a555db26982dc3aafc6e34e10c259c8bf
bamboo_artifactRepoHostname=S3
bamboo_buildTimeStamp=2019-12-23T15:35:54.121Z
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-RFCD-4-ScriptBuildTask-4499704810423480786.sh
bamboo_build_commandline_com_atlassian_bamboo_plugins_scripttask_task_builder_script_3=/home/bamboo/bamboo-agent-home/temp/TEST-ON2-RFCD-4-ScriptBuildTask-8318406563999238684.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-RFCD-4-ScriptBuildTask-6016264304951468511.sh
bamboo_build_commandline_com_atlassian_bamboo_plugins_scripttask_task_builder_script_5=/bin/sh /home/bamboo/bamboo-agent-home/temp/TEST-ON2-RFCD-4-ScriptBuildTask-1921645971423950482.sh
bamboo_repository_git_branch=develop
bamboo_buildResultKey=TEST-ON2-RFCD-4
bamboo_repository_branch_name=develop
bamboo_buildPlanName=Testing - oneclient-acceptance-src-test2 - regular file CRUD directio
bamboo_planRepository_1_revision=569cf78a555db26982dc3aafc6e34e10c259c8bf
bamboo_artifactRepoPort=10161
bamboo_OnedataFinalTasksURL=https://raw.githubusercontent.com/onedata/bamboos/develop/final_tasks.sh
bamboo_repository_name=onedata-acceptance
bamboo_buildFailed=false
bamboo_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-RFCD
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 19:10:11 cp: cannot stat 'onedata/one_env/sources_info.yaml': No such file or directory
23-Dec-2019 19:10:11 mv: cannot stat 'onedata/tests/oneclient/logs/*/*/images.yaml': Not a directory
23-Dec-2019 19:10:11 Finished task 'Pack logs' with result: Success
23-Dec-2019 19:10:11
Substituting variable: ${bamboo.OnedataFinalTasksURL} with https://raw.githubusercontent.com/onedata/bamboos/develop/final_tasks.sh
23-Dec-2019 19:10:11 Starting task 'Clear env' of type 'com.atlassian.bamboo.plugins.scripttask:task.builder.script'
23-Dec-2019 19:10:11
Beginning to execute external process for build 'Testing - oneclient-acceptance-src-test2 - regular file CRUD directio #4 (TEST-ON2-RFCD-4)'
... running command line:
/bin/sh /home/bamboo/bamboo-agent-home/temp/TEST-ON2-RFCD-4-ScriptBuildTask-7664608264678220603.sh
... in: /home/bamboo/bamboo-agent-home/xml-data/build-dir/TEST-ON2-RFCD/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-RFCD-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-RFCD
bamboo_planRepository_1_name=onedata-acceptance
bamboo_buildKey=TEST-ON2-RFCD
bamboo_shortPlanName=oneclient-acceptance-src-test2
bamboo_capability_minikube=true
bamboo_planRepository_name=onedata-acceptance
bamboo_buildNumber=4
bamboo_shortJobName=regular file CRUD directio
bamboo_buildResultsUrl=https://bamboo.onedata.org/browse/TEST-ON2-RFCD-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-RFCD-4-ScriptBuildTask-4959471781693165867.sh
bamboo_build_commandline_com_atlassian_bamboo_plugins_scripttask_task_builder_script_6=/home/bamboo/bamboo-agent-home/temp/TEST-ON2-RFCD-4-ScriptBuildTask-2230092348507700933.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-RFCD-4-ScriptBuildTask-1962419043699063197.sh
bamboo_repository_242352175_git_username=
bamboo_shortJobKey=RFCD
bamboo_planRepository_revision=569cf78a555db26982dc3aafc6e34e10c259c8bf
bamboo_artifactRepoHostname=S3
bamboo_buildTimeStamp=2019-12-23T15:35:54.121Z
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-RFCD-4-ScriptBuildTask-4499704810423480786.sh
bamboo_build_commandline_com_atlassian_bamboo_plugins_scripttask_task_builder_script_3=/home/bamboo/bamboo-agent-home/temp/TEST-ON2-RFCD-4-ScriptBuildTask-8318406563999238684.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-RFCD-4-ScriptBuildTask-6016264304951468511.sh
bamboo_build_commandline_com_atlassian_bamboo_plugins_scripttask_task_builder_script_5=/bin/sh /home/bamboo/bamboo-agent-home/temp/TEST-ON2-RFCD-4-ScriptBuildTask-1921645971423950482.sh
bamboo_repository_git_branch=develop
bamboo_buildResultKey=TEST-ON2-RFCD-4
bamboo_repository_branch_name=develop
bamboo_buildPlanName=Testing - oneclient-acceptance-src-test2 - regular file CRUD directio
bamboo_planRepository_1_revision=569cf78a555db26982dc3aafc6e34e10c259c8bf
bamboo_artifactRepoPort=10161
bamboo_OnedataFinalTasksURL=https://raw.githubusercontent.com/onedata/bamboos/develop/final_tasks.sh
bamboo_repository_name=onedata-acceptance
bamboo_buildFailed=false
bamboo_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-RFCD
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 19:10:11   % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
23-Dec-2019 19:10:11                                  Dload  Upload   Total   Spent    Left  Speed
23-Dec-2019 19:10:11
23-Dec-2019 19:10:12   0     0    0     0    0     0      0      0 --:--:-- --:--:-- --:--:--     0
23-Dec-2019 19:10:12 42  4419   42  1895    0     0   4322      0  0:00:01 --:--:--  0:00:01  4316
23-Dec-2019 19:10:12 100  4419  100  4419    0     0  10077      0 --:--:-- --:--:-- --:--:-- 10066
23-Dec-2019 19:10:12 Clearing /tmp/onedata and /home/bamboo/.one-env
23-Dec-2019 19:10:13 Cleaning helm deployments
23-Dec-2019 19:10:13 Cleanining pods
23-Dec-2019 19:10:14 Cleaning kube persistant volumes
23-Dec-2019 19:10:14 pod "dev-oneprovider-krakow-ready-check-j7tzr" deleted
23-Dec-2019 19:10:30 Error from server (NotFound): pods "dev-onezone-ready-check-jbljw" not found
23-Dec-2019 19:10:30 Cleaning dockswift container
23-Dec-2019 19:10:30 Cleaning docker containers
23-Dec-2019 19:10:32 Stalled docker containers to remove:
23-Dec-2019 19:10:32 4701adba0e41 c62aa55de467 725df9f7c88f 7637536b7002 0d2ed6c85b42 ab01c98aab69 36e6bda127c5 0da5e955e84b d5dbb492736b bd92e812a362 becb3e65bbc4 c7e531989793 b9225772e9c3 db058733f44d
23-Dec-2019 19:10:32 Removing stalled docker containers
23-Dec-2019 19:10:32 Error response from daemon: Cannot kill container: 4701adba0e41: Container 4701adba0e41b4992bb7f69a3fb67b1a3208ddbef9c27520ce471d3348be4a4f is not running
23-Dec-2019 19:10:32 4701adba0e41
23-Dec-2019 19:10:32 Error response from daemon: Cannot kill container: c62aa55de467: Container c62aa55de467a097af634397f53f09b4d75e13cfda1b45fca41aed512fa49beb is not running
23-Dec-2019 19:10:32 c62aa55de467
23-Dec-2019 19:10:32 Error response from daemon: Cannot kill container: 725df9f7c88f: Container 725df9f7c88f1590f063216a7155b26a21c344004d95c0e35d1ddc1dde0cad09 is not running
23-Dec-2019 19:10:32 725df9f7c88f
23-Dec-2019 19:10:32 Error response from daemon: Cannot kill container: 7637536b7002: Container 7637536b7002ff0b092a96d7794b214f484f229843b58ae13ce6f04595174bae is not running
23-Dec-2019 19:10:32 7637536b7002
23-Dec-2019 19:10:32 Error response from daemon: Cannot kill container: 0d2ed6c85b42: Container 0d2ed6c85b423820dca3351efd0ebddb7e7d0510c0a4c6ff7fd5a43e09cdeb91 is not running
23-Dec-2019 19:10:32 0d2ed6c85b42
23-Dec-2019 19:10:33 Error response from daemon: Cannot kill container: ab01c98aab69: Container ab01c98aab699ae2840971555aeb9f0cae3b65a28f35a1215848249d79f85401 is not running
23-Dec-2019 19:10:33 ab01c98aab69
23-Dec-2019 19:10:33 Error response from daemon: Cannot kill container: 36e6bda127c5: Container 36e6bda127c528a178a923f46169f7a69fcaad57a55f05da9c4ba734d4112877 is not running
23-Dec-2019 19:10:33 36e6bda127c5
23-Dec-2019 19:10:33 Error response from daemon: Cannot kill container: 0da5e955e84b: Container 0da5e955e84b1fd885d1ca2eeb7d3c416d801a579731c15300da268ea989174d is not running
23-Dec-2019 19:10:33 0da5e955e84b
23-Dec-2019 19:10:33 Error response from daemon: Cannot kill container: d5dbb492736b: Container d5dbb492736b4b9210fa0338d5473e98e67abc8dff0141fb7edb517a2f5e42dd is not running
23-Dec-2019 19:10:33 d5dbb492736b
23-Dec-2019 19:10:33 Error response from daemon: Cannot kill container: bd92e812a362: Container bd92e812a36238e5b3b976da01a3635cbefe633ea20d3ba88fb8646b1cd9e18d is not running
23-Dec-2019 19:10:33 bd92e812a362
23-Dec-2019 19:10:33 Error response from daemon: Cannot kill container: becb3e65bbc4: Container becb3e65bbc4827f474141c5bf602970d1903662a4c137278d6404cbdc8dffd4 is not running
23-Dec-2019 19:10:33 becb3e65bbc4
23-Dec-2019 19:10:33 Error response from daemon: Cannot kill container: c7e531989793: Container c7e5319897939fb9262644d00cc08b05da6dcb4d81e28f4ad4540e788a6299ce is not running
23-Dec-2019 19:10:33 c7e531989793
23-Dec-2019 19:10:33 Error response from daemon: Cannot kill container: b9225772e9c3: Container b9225772e9c36a7cebfdb5faad9138c69e8581e8cc9f6177503e0e436bfd5da3 is not running
23-Dec-2019 19:10:33 b9225772e9c3
23-Dec-2019 19:10:33 Error response from daemon: Cannot kill container: db058733f44d: Container db058733f44d93d172a6327e8ee39911bc49e01614a147cd5328ce8160efdcf5 is not running
23-Dec-2019 19:10:33 db058733f44d
23-Dec-2019 19:10:33 Stalled docker volumes to remove:
23-Dec-2019 19:10:33
23-Dec-2019 19:10:33 Removing stalled docker volumes
23-Dec-2019 19:10:33 Removing stalled loopdevices
23-Dec-2019 19:10:34 Done
23-Dec-2019 19:10:34 Finished task 'Clear env' with result: Success
23-Dec-2019 19:10:34 Running post build plugin 'Docker Container Cleanup'
23-Dec-2019 19:10:34 Running post build plugin 'NCover Results Collector'
23-Dec-2019 19:10:34 Running post build plugin 'Clover Results Collector'
23-Dec-2019 19:10:34 Running post build plugin 'npm Cache Cleanup'
23-Dec-2019 19:10:34 Running post build plugin 'Artifact Copier'
23-Dec-2019 19:10:34 Publishing an artifact: test_logs.tar.gz
23-Dec-2019 19:10:34 Finished publishing of artifact Non required job artifact: [test_logs.tar.gz], pattern: [test_logs.tar.gz] in 8.220 ms
23-Dec-2019 19:10:37 Successfully removed working directory at '/home/bamboo/bamboo-agent-home/xml-data/build-dir/TEST-ON2-RFCD'
23-Dec-2019 19:10:37 Finalising the build...
23-Dec-2019 19:10:37 Stopping timer.
23-Dec-2019 19:10:37 Build TEST-ON2-RFCD-4 completed.
23-Dec-2019 19:10:37 Running on server: post build plugin 'NCover Results Collector'
23-Dec-2019 19:10:37 Running on server: post build plugin 'Build Hanging Detection Configuration'
23-Dec-2019 19:10:37 Running on server: post build plugin 'Clover Delta Calculator'
23-Dec-2019 19:10:37 Running on server: post build plugin 'Maven Dependencies Postprocessor'
23-Dec-2019 19:10:37 All post build plugins have finished
23-Dec-2019 19:10:37 Generating build results summary...
23-Dec-2019 19:10:37 Saving build results to disk...
23-Dec-2019 19:10:37 Logging substituted variables...
23-Dec-2019 19:10:37 Indexing build results...
23-Dec-2019 19:10:37 Finished building TEST-ON2-RFCD-4.