65 lines
2.3 KiB
Python
Executable File
65 lines
2.3 KiB
Python
Executable File
"""
|
|
The plugin for saving basic test info to the logs for Selenium tests.
|
|
The created file will be saved in the default logs folder (in .../logs)
|
|
Data to be saved includes:
|
|
* Last page url
|
|
* Browser
|
|
* Server
|
|
* Error
|
|
* Traceback
|
|
"""
|
|
|
|
import os
|
|
import codecs
|
|
import traceback
|
|
from nose.plugins import Plugin
|
|
from seleniumbase.config import settings
|
|
|
|
|
|
class BasicTestInfo(Plugin):
|
|
"""
|
|
This plugin will capture basic info when a test fails or
|
|
raises an error. It will store that basic test info in
|
|
the default logs or in the file specified by the user.
|
|
"""
|
|
name = "basic_test_info" # Usage: --with-basic_test_info
|
|
|
|
logfile_name = settings.BASIC_INFO_NAME
|
|
|
|
def options(self, parser, env):
|
|
super(BasicTestInfo, self).options(parser, env=env)
|
|
|
|
def configure(self, options, conf):
|
|
super(BasicTestInfo, self).configure(options, conf)
|
|
if not self.enabled:
|
|
return
|
|
self.options = options
|
|
|
|
def addError(self, test, err, capt=None):
|
|
test_logpath = self.options.log_path + "/" + test.id()
|
|
if not os.path.exists(test_logpath):
|
|
os.makedirs(test_logpath)
|
|
file_name = "%s/%s" % (test_logpath, self.logfile_name)
|
|
basic_info_file = codecs.open(file_name, "w+", "utf-8")
|
|
self.__log_test_error_data(basic_info_file, test, err, "Error")
|
|
basic_info_file.close()
|
|
|
|
def addFailure(self, test, err, capt=None, tbinfo=None):
|
|
test_logpath = self.options.log_path + "/" + test.id()
|
|
if not os.path.exists(test_logpath):
|
|
os.makedirs(test_logpath)
|
|
file_name = "%s/%s" % (test_logpath, self.logfile_name)
|
|
basic_info_file = codecs.open(file_name, "w+", "utf-8")
|
|
self.__log_test_error_data(basic_info_file, test, err, "Error")
|
|
basic_info_file.close()
|
|
|
|
def __log_test_error_data(self, log_file, test, err, type):
|
|
data_to_save = []
|
|
data_to_save.append("Last_Page: %s" % test.driver.current_url)
|
|
data_to_save.append("Browser: %s " % self.options.browser)
|
|
data_to_save.append("Server: %s " % self.options.servername)
|
|
data_to_save.append("%s: %s" % (type, err[0]))
|
|
data_to_save.append("Traceback: " + ''.join(
|
|
traceback.format_exception(*err)))
|
|
log_file.writelines("\r\n".join(data_to_save))
|