ElementsServices.DataSync package¶
Submodules¶
ElementsServices.DataSync.ConnectionConfiguration module¶
The ConnectionConfiguration Module
-
class
ElementsServices.DataSync.ConnectionConfiguration.
ConnectionConfiguration
(filename=None)[source]¶ Bases:
object
The connection configuration mainly holds: * the host type and URL, * the user name and password, * the overwriting policy.
ElementsServices.DataSync.DataSyncUtils module¶
-
ElementsServices.DataSync.DataSyncUtils.
concatenatePaths
(chunks)[source]¶ Concatenate path chunks into a single path.
-
ElementsServices.DataSync.DataSyncUtils.
createLocalDirOf
(local_file)[source]¶ Create the parent directory for a local file.
-
ElementsServices.DataSync.DataSyncUtils.
dataSyncConfFilePath
(filename)[source]¶ Get the path of a configuration file for the data synchronization tool.
-
ElementsServices.DataSync.DataSyncUtils.
environmentVariable
(name)[source]¶ Get the value of an environment variable or ‘’ if it does not exist.
-
ElementsServices.DataSync.DataSyncUtils.
localDirExists
(local_dir)[source]¶ Check whether a local directory exists.
ElementsServices.DataSync.DataSynchronizer module¶
-
class
ElementsServices.DataSync.DataSynchronizer.
DataSynchronizer
(connection, dependencies)[source]¶ Bases:
object
A data synchronizer class is able to download test data from a host.
This is the abstract class to be extended for each data host.
ElementsServices.DataSync.DataSynchronizerMaker module¶
ElementsServices.DataSync.DependencyConfiguration module¶
DependencyConfiguration Module
-
class
ElementsServices.DataSync.DependencyConfiguration.
DependencyConfiguration
(distant_root, local_root, config_file=None)[source]¶ Bases:
object
The dependency configurations holds, for each test file to be retrieved: * the distant source path, * the local destination path.
-
getDistantPathOf
(local_file)[source]¶ Get the distant source path associated to a local destination path.
-
lineHasAlias
(line)[source]¶ Check whether a line of the dependency configuration file contains an alias.
-
ElementsServices.DataSync.IrodsSynchronizer module¶
-
class
ElementsServices.DataSync.IrodsSynchronizer.
IrodsSynchronizer
(connection, dependencies)[source]¶ Bases:
ElementsServices.DataSync.DataSynchronizer.DataSynchronizer
A data synchronizer for iRods hosts.
ElementsServices.DataSync.WebdavSynchronizer module¶
-
class
ElementsServices.DataSync.WebdavSynchronizer.
WebdavSynchronizer
(connection, dependencies)[source]¶ Bases:
ElementsServices.DataSync.DataSynchronizer.DataSynchronizer
A data synchronizer for WebDAV hosts.
Module contents¶
Main DataSync Package
-
class
ElementsServices.DataSync.
DataSync
(connectionFile, dependencyFile)[source]¶ Bases:
object
A class to download test data from a data repository prior to the unit test run.
Refer to the corresponding Redmine project for more details.
Parameters: - connectionFile – Path to the connection configuration file relative to the configuration directory.
- dependencyFile – Path to the dependency configuration file relative to the configuration directory.
-
absolutePath
(relativePath)[source]¶ Get the absolute path to a local test file which has been downloaded.
The absolute path is the concatenation of:
- a system-defined prefix,
- the local workspace,
- the path of the file relative to the local workspace.
On LODEEN, the prefix is empty. On CODEEN, it is the job workspace which the user do not know. It can be set by the user through the $WORKSPACE environment variable.
Warning
This function must be used to access any data downloaded by the DataSync tool.