Source code for toil.test.src.regularLogTest

# Copyright (C) 2015-2021 Regents of the University of California
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
#     http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
import logging
import mimetypes
import os
import subprocess
import sys

from toil.test import ToilTest, slow
from toil.test.mesos import helloWorld

logging.basicConfig(level=logging.DEBUG)
logger = logging.getLogger(__name__)


[docs] class RegularLogTest(ToilTest):
[docs] def setUp(self) -> None: super().setUp() self.tempDir = self._createTempDir(purpose='tempDir')
def _getFiles(self, dir): return [os.path.join(dir, f) for f in os.listdir(dir) if os.path.isfile(os.path.join(dir, f))] def _assertFileTypeExists(self, dir, extension, encoding=None): # an encoding of None implies no compression logger.info("Checking for %s file in %s", extension, dir) onlyFiles = self._getFiles(dir) logger.info("Found: %s", str(os.listdir(dir))) onlyLogs = [f for f in onlyFiles if f.endswith(extension)] logger.info("Found matching: %s", str(onlyLogs)) assert onlyLogs if encoding is not None: for log in onlyLogs: with open(log, "rb") as f: logger.info("Checking for encoding %s on file %s", str(encoding), log) if encoding == "gzip": # Check for gzip magic header '\x1f\x8b' assert f.read().startswith(b'\x1f\x8b') else: mime = mimetypes.guess_type(log) self.assertEqual(mime[1], encoding)
[docs] @slow def testLogToMaster(self): toilOutput = subprocess.check_output([sys.executable, '-m', helloWorld.__name__, './toilTest', '--clean=always', '--logLevel=info'], stderr=subprocess.STDOUT) assert helloWorld.childMessage in toilOutput.decode('utf-8')
[docs] def testWriteLogs(self): subprocess.check_call([sys.executable, '-m', helloWorld.__name__, './toilTest', '--clean=always', '--logLevel=debug', '--writeLogs=%s' % self.tempDir]) self._assertFileTypeExists(self.tempDir, '.log')
[docs] @slow def testWriteGzipLogs(self): subprocess.check_call([sys.executable, '-m', helloWorld.__name__, './toilTest', '--clean=always', '--logLevel=debug', '--writeLogsGzip=%s' % self.tempDir]) self._assertFileTypeExists(self.tempDir, '.log.gz', 'gzip')
[docs] @slow def testMultipleLogToMaster(self): toilOutput = subprocess.check_output([sys.executable, '-m', helloWorld.__name__, './toilTest', '--clean=always', '--logLevel=info'], stderr=subprocess.STDOUT) assert helloWorld.parentMessage in toilOutput.decode('utf-8')
[docs] def testRegularLog(self): toilOutput = subprocess.check_output([sys.executable, '-m', helloWorld.__name__, './toilTest', '--clean=always', '--batchSystem=single_machine', '--logLevel=debug'], stderr=subprocess.STDOUT) assert "single machine batch system" in toilOutput.decode('utf-8')