Exemplo n.º 1
0
 def testInitDuplicity(self, mock_runCmd):
     backupService = Backup()
     backupService.initDuplicity(
         '/backup', 'ftp://*****:*****@my-server.com/backup/dump')
     mock_runCmd.assert_any_call(
         mock.ANY,
         'duplicity --no-encryption ftp://user:[email protected]/backup/dump /backup'
     )
Exemplo n.º 2
0
 def testRunDuplicity(self, mock_runCmd):
     backupService = Backup()
     backupService.runDuplicity(
         '/backup', 'ftp://*****:*****@my-server.com/backup/dump', '1D', 7, 1,
         1000)
     mock_runCmd.assert_any_call(
         mock.ANY,
         'duplicity  --volsize 1000 --no-encryption --allow-source-mismatch --full-if-older-than 1D /backup ftp://user:[email protected]/backup/dump'
     )
     mock_runCmd.assert_any_call(
         mock.ANY,
         'duplicity remove-all-but-n-full 7 --force --allow-source-mismatch --no-encryption ftp://user:[email protected]/backup/dump'
     )
     mock_runCmd.assert_any_call(
         mock.ANY,
         'duplicity remove-all-inc-of-but-n-full 1 --force --allow-source-mismatch --no-encryption ftp://user:[email protected]/backup/dump'
     )
     mock_runCmd.assert_any_call(
         mock.ANY,
         'duplicity  cleanup --force --no-encryption ftp://user:[email protected]/backup/dump'
     )
Exemplo n.º 3
0
    def testDumpRancherDatabase(self, mock_runCmd):
        backupService = Backup()

        listDatabaseSettings = {
            "type": "mysql",
            "host": "db-host",
            "port": "3306",
            "name": "rancher",
            "user": "******",
            "password": "******"
        }

        backupService.dumpRancherDatabase('/tmp/backup', listDatabaseSettings)

        #print("Call run: %s", mock_runCmd.call_args_list)

        mock_runCmd.assert_any_call(mock.ANY, 'docker pull mysql:latest')
        mock_runCmd.assert_any_call(
            mock.ANY,
            "docker run --rm -v /tmp/backup/database:/tmp/backup/database -e 'MYSQL_PWD=password' mysql:latest sh -c 'mysqldump -h db-host -P 3306 -u user rancher > /tmp/backup/database/rancher.dump'"
        )
Exemplo n.º 4
0
        try:
            getAndcheckAllParameters()
        except Exception as e:
            logger.error("Error - %s", e.message)
            sys.exit(1)

    # Run backup
    else:

        try:
            (settings, rancherDatabaseSettings) = getAndcheckAllParameters()
        except Exception as e:
            logger.error("Error - %s", e.message)
            sys.exit(1)

        backupService = Backup()
        rancherService = Rancher()
        backend = "%s%s" % (settings['duplicity']['url'],
                            settings['duplicity']['target-path'])

        try:
            # We init duplicity
            if os.getenv("BACKUP_DUPLICITY_enable") == "true":
                try:
                    logger.info("Start to initialize Duplicity...")
                    backupService.initDuplicity(
                        settings['duplicity']['source-path'], backend)
                    logger.info("Duplicity initialization is finished.")
                except Exception as e:
                    logger.info(
                        "No backup found (probably the first) or already initialized"
Exemplo n.º 5
0
        rancherService = Rancher(os.getenv("CATTLE_URL"),
                                 os.getenv("CATTLE_ACCESS_KEY"),
                                 os.getenv("CATTLE_SECRET_KEY"))
    except Exception as e:
        logger.error("Can't connect to rancher API : %s", e.message)
        logger.error(traceback.format_exc())
        sys.exit(1)

    try:
        configService = Config("config/*.yml")
    except Exception as e:
        logger.error("Can't load settings or syntax errors : %s", e.message)
        logger.error(traceback.format_exc())
        sys.exit(1)

    backupService = Backup()
    backend = os.getenv('BACKEND') + TARGET_PATH

    try:

        # Load settings
        listSettings = configService.getConfig()

        # We init duplicity
        try:
            backupService.initDuplicity(BACKUP_PATH, backend)
        except Exception as e:
            logger.info(
                "No backup found (probably the first) or already initialized")
            pass
Exemplo n.º 6
0
    def testRunDump(self, mock_runCmd):

        backupService = Backup()

        listServices = [{
            'type':
            'service',
            'name':
            'test',
            'state':
            'active',
            'launchConfig': {
                'imageUuid': 'test/postgres:latest',
                'environment': {
                    'POSTGRES_USER': '******',
                    'POSTGRES_DB': 'test',
                    'POSTGRES_PASSWORD': '******'
                }
            },
            'links': {
                'environment': 'https://fake/environment',
                'instances': 'https://fake/instances',
            },
            'stack': {
                'name': 'stack-test'
            },
            'instances': [{
                'state': 'disabled',
                'primaryIpAddress': '10.0.0.1',
                'host': {
                    'name': 'host-1'
                },
                'links': {
                    'hosts': 'https://fake/hosts'
                }
            }, {
                'state': 'running',
                'primaryIpAddress': '10.0.0.2',
                'host': {
                    'name': 'host-1'
                },
                'links': {
                    'hosts': 'https://fake/hosts'
                }
            }, {
                'state': 'running',
                'primaryIpAddress': '10.0.0.3',
                'host': {
                    'name': 'host-1'
                },
                'links': {
                    'hosts': 'https://fake/hosts'
                }
            }],
        }, {
            'type':
            'service',
            'name':
            'test2',
            'state':
            'active',
            'launchConfig': {
                'imageUuid': 'test/mysql:latest',
                'environment': {
                    'MYSQL_USER': '******',
                    'MYSQL_DB': 'test',
                    'MYSQL_PASSWORD': '******'
                }
            },
            'links': {
                'environment': 'https://fake/environment',
                'instances': 'https://fake/instances',
            },
            'stack': {
                'name': 'stack-test'
            },
            'instances': [{
                'state': 'disabled',
                'primaryIpAddress': '10.1.0.1',
                'host': {
                    'name': 'host-1'
                },
                'links': {
                    'hosts': 'https://fake/hosts'
                }
            }, {
                'state': 'running',
                'primaryIpAddress': '10.1.0.2',
                'host': {
                    'name': 'host-1'
                },
                'links': {
                    'hosts': 'https://fake/hosts'
                }
            }, {
                'state': 'running',
                'primaryIpAddress': '10.1.0.3',
                'host': {
                    'name': 'host-1'
                },
                'links': {
                    'hosts': 'https://fake/hosts'
                }
            }],
        }]

        listDump = [{
            'service':
            listServices[0],
            'target_dir':
            '/tmp/backup/stack-test/test',
            'commands': [
                'pg_dump -h 10.0.0.2 -U user -d test -f /tmp/backup/stack-test/test/test.dump'
            ],
            'entrypoint':
            "sh -c",
            'environments': ['PGPASSWORD:pass'],
            'image':
            'postgres:latest'
        }, {
            'service':
            listServices[1],
            'target_dir':
            '/tmp/backup/stack-test/test2',
            'commands': [
                'mysqldump -h 10.1.0.2 -U user -d test -f /tmp/backup/stack-test/test2/test.dump',
                'fake_cmd2 -h 10.1.0.2 -U user'
            ],
            'environments': ['MYSQLPASSWORD:pass'],
            'image':
            'mysql:latest'
        }]

        backupService.runDump(listDump)
        #print("Nb call %s" % mock_runCmd.call_args_list)
        mock_runCmd.assert_any_call(mock.ANY, 'docker pull postgres:latest')
        mock_runCmd.assert_any_call(
            mock.ANY,
            "docker run --rm --entrypoint='sh -c' -v /tmp/backup/stack-test/test:/tmp/backup/stack-test/test  -e 'PGPASSWORD=pass' postgres:latest pg_dump -h 10.0.0.2 -U user -d test -f /tmp/backup/stack-test/test/test.dump"
        )
        mock_runCmd.assert_any_call(mock.ANY, 'docker pull mysql:latest')
        mock_runCmd.assert_any_call(
            mock.ANY,
            "docker run --rm  -v /tmp/backup/stack-test/test2:/tmp/backup/stack-test/test2  -e 'MYSQLPASSWORD=pass' mysql:latest mysqldump -h 10.1.0.2 -U user -d test -f /tmp/backup/stack-test/test2/test.dump"
        )
Exemplo n.º 7
0
    def testdumpStacksSettings(self, mock_makedirs, mock_file):
        backupService = Backup()

        listStack = [
            {
                "id": "1e44",
                "type": "environment",
                "links": {
                    "self":
                    "/v1/projects/1a203/environments/1e44",
                    "account":
                    "/v1/projects/1a203/environments/1e44/account",
                    "services":
                    "/v1/projects/1a203/environments/1e44/services",
                    "composeConfig":
                    "/v1/projects/1a203/environments/1e44/composeconfig",
                },
                "actions": {
                    "upgrade":
                    "/v1/projects/1a203/environments/1e44/?action=upgrade",
                    "update":
                    "/v1/projects/1a203/environments/1e44/?action=update",
                    "remove":
                    "/v1/projects/1a203/environments/1e44/?action=remove",
                    "addoutputs":
                    "/v1/projects/1a203/environments/1e44/?action=addoutputs",
                    "activateservices":
                    "/v1/projects/1a203/environments/1e44/?action=activateservices",
                    "deactivateservices":
                    "/v1/projects/1a203/environments/1e44/?action=deactivateservices",
                    "exportconfig":
                    "/v1/projects/1a203/environments/1e44/?action=exportconfig",
                },
                "name": "Default",
                "state": "active",
                "accountId": "1a203",
                "created": "2016-09-14T07:41:09Z",
                "createdTS": 1473838869000,
                "description": None,
                "dockerCompose": None,
                "environment": None,
                "externalId": None,
                "healthState": "healthy",
                "kind": "environment",
                "outputs": None,
                "previousEnvironment": None,
                "previousExternalId": None,
                "rancherCompose": None,
                "removed": None,
                "startOnCreate": None,
                "transitioning": "no",
                "transitioningMessage": None,
                "transitioningProgress": None,
                "uuid": "e2c02a5f-5585-4ee7-8bdb-3672e874de10",
                'settings': {
                    "id":
                    None,
                    "type":
                    "composeConfig",
                    "links": {},
                    "actions": {},
                    "dockerComposeConfig":
                    "test:\r\n  environment:\r\n    BACKEND: ftp://test\r\n    FTP_PASSWORD: test\r\n    CRON_SCHEDULE: 0 0 * * *\r\n    BK_FULL_FREQ: 1D\r\n    BK_KEEP_FULL: '7'\r\n    BK_KEEP_FULL_CHAIN: '1'\r\n    VOLUME_SIZE: '1000'\r\n    RANCHER_API_URL: https://test/v1/projects/1a203\r\n    RANCHER_API_KEY: test\r\n    RANCHER_API_SECRET: test\r\n    DEBUG: 'false'\r\n  labels:\r\n    io.rancher.container.pull_image: always\r\n    backup.disable: 'true'\r\n  tty: true\r\n  image: webcenter/rancher-backup:develop\r\n  privileged: true\r\n  stdin_open: true\r\nmariadb:\r\n  environment:\r\n    MYSQL_ROOT_PASSWORD: root-pass\r\n    MYSQL_DATABASE: teampass\r\n    MYSQL_PASSWORD: user-pass\r\n    MYSQL_USER: teampass\r\n  labels:\r\n    io.rancher.container.pull_image: always\r\n  tty: true\r\n  image: mariadb\r\n  stdin_open: true\r\npostgres:\r\n  environment:\r\n    PGDATA: /var/lib/postgresql/data/pgdata\r\n    POSTGRES_DB: alfresco\r\n    POSTGRES_USER: user\r\n    POSTGRES_PASSWORD: pass\r\n  labels:\r\n    io.rancher.container.pull_image: always\r\n  tty: true\r\n  image: postgres:9.4\r\n  volumes:\r\n  - /data/postgres:/var/lib/postgresql/data/pgdata\r\n  stdin_open: true\r\nmysql:\r\n  environment:\r\n    MYSQL_ROOT_PASSWORD: root-pass\r\n    MYSQL_DATABASE: teampass\r\n    MYSQL_PASSWORD: user-pass\r\n    MYSQL_USER: teampass\r\n  labels:\r\n    io.rancher.container.pull_image: always\r\n  tty: true\r\n  image: mysql/mysql-server:5.5\r\n  stdin_open: true\r\n",
                    "rancherComposeConfig":
                    "test:\r\n  scale: 1\r\nmariadb:\r\n  scale: 1\r\npostgres:\r\n  scale: 1\r\nmysql:\r\n  scale: 1\r\n",
                }
            },
            {
                "id": "1e45",
                "type": "environment",
                "links": {
                    "self":
                    "/v1/projects/1a203/environments/1e45",
                    "account":
                    "/v1/projects/1a203/environments/1e45/account",
                    "services":
                    "/v1/projects/1a203/environments/1e45/services",
                    "composeConfig":
                    "/v1/projects/1a203/environments/1e45/composeconfig",
                },
                "actions": {
                    "upgrade":
                    "/v1/projects/1a203/environments/1e45/?action=upgrade",
                    "update":
                    "/v1/projects/1a203/environments/1e45/?action=update",
                    "remove":
                    "/v1/projects/1a203/environments/1e45/?action=remove",
                    "addoutputs":
                    "/v1/projects/1a203/environments/1e45/?action=addoutputs",
                    "activateservices":
                    "/v1/projects/1a203/environments/1e45/?action=activateservices",
                    "deactivateservices":
                    "/v1/projects/1a203/environments/1e45/?action=deactivateservices",
                    "exportconfig":
                    "/v1/projects/1a203/environments/1e45/?action=exportconfig",
                },
                "name": "seedbox",
                "state": "active",
                "accountId": "1a203",
                "created": "2016-09-14T07:43:01Z",
                "createdTS": 1473838981000,
                "description": None,
                "dockerCompose":
                "plex:\n  ports:\n  - 32400:32400/tcp\n  environment:\n    PLEX_USERNAME: user\n    PLEX_PASSWORD: pass\n    PLEX_DISABLE_SECURITY: '0'\n    SKIP_CHOWN_CONFIG: 'false'\n    PLEX_ALLOWED_NETWORKS: 10.0.0.0/8\n  labels:\n    io.rancher.container.pull_image: always\n  tty: true\n  hostname: home\n  image: timhaak/plex\n  volumes:\n  - /mnt/nas:/data\n  - /data/seedbox/plex:/config\n  stdin_open: true",
                "environment": None,
                "externalId": "",
                "healthState": "healthy",
                "kind": "environment",
                "outputs": None,
                "previousEnvironment": None,
                "previousExternalId": None,
                "rancherCompose": "plex:\n  scale: 1",
                "removed": None,
                "startOnCreate": True,
                "transitioning": "no",
                "transitioningMessage": None,
                "transitioningProgress": None,
                "uuid": "1a5c08a4-c851-4651-b516-e950982d617b",
                'settings': {
                    "id": None,
                    "type": "composeConfig",
                    "links": {},
                    "actions": {},
                    "dockerComposeConfig":
                    "plex:\r\n  ports:\r\n  - 32400:32400/tcp\r\n  environment:\r\n    PLEX_ALLOWED_NETWORKS: 10.0.0.0/8\r\n    PLEX_DISABLE_SECURITY: '0'\r\n    PLEX_PASSWORD: test\r\n    PLEX_USERNAME: test\r\n    SKIP_CHOWN_CONFIG: 'false'\r\n  labels:\r\n    io.rancher.container.pull_image: always\r\n  tty: true\r\n  hostname: home\r\n  image: timhaak/plex\r\n  volumes:\r\n  - /mnt/nas:/data\r\n  - /data/seedbox/plex:/config\r\n  stdin_open: true\r\n",
                    "rancherComposeConfig": "plex:\r\n  scale: 1\r\n",
                }
            },
            {
                "id": "1e48",
                "type": "environment",
                "links": {
                    "self":
                    "/v1/projects/1a203/environments/1e48",
                    "account":
                    "/v1/projects/1a203/environments/1e48/account",
                    "services":
                    "/v1/projects/1a203/environments/1e48/services",
                    "composeConfig":
                    "/v1/projects/1a203/environments/1e48/composeconfig",
                },
                "actions": {
                    "upgrade":
                    "/v1/projects/1a203/environments/1e48/?action=upgrade",
                    "update":
                    "/v1/projects/1a203/environments/1e48/?action=update",
                    "remove":
                    "/v1/projects/1a203/environments/1e48/?action=remove",
                    "addoutputs":
                    "/v1/projects/1a203/environments/1e48/?action=addoutputs",
                    "activateservices":
                    "/v1/projects/1a203/environments/1e48/?action=activateservices",
                    "deactivateservices":
                    "/v1/projects/1a203/environments/1e48/?action=deactivateservices",
                    "exportconfig":
                    "/v1/projects/1a203/environments/1e48/?action=exportconfig",
                },
                "name": "test",
                "state": "active",
                "accountId": "1a203",
                "created": "2016-10-21T09:21:46Z",
                "createdTS": 1477041706000,
                "description": None,
                "dockerCompose": None,
                "environment": None,
                "externalId": "",
                "healthState": "healthy",
                "kind": "environment",
                "outputs": None,
                "previousEnvironment": None,
                "previousExternalId": None,
                "rancherCompose": None,
                "removed": None,
                "startOnCreate": True,
                "transitioning": "no",
                "transitioningMessage": None,
                "transitioningProgress": None,
                "uuid": "0fec46ea-99d5-494d-b430-eac97beb419f",
                "settings": {
                    "id":
                    None,
                    "type":
                    "composeConfig",
                    "links": {},
                    "actions": {},
                    "dockerComposeConfig":
                    "elasticsearch:\r\n  labels:\r\n    io.rancher.container.pull_image: always\r\n  tty: true\r\n  image: elasticsearch\r\n  stdin_open: true\r\nmongo:\r\n  labels:\r\n    io.rancher.container.pull_image: always\r\n  tty: true\r\n  command:\r\n  - mongod\r\n  - --smallfiles\r\n  - --oplogSize\r\n  - '128'\r\n  image: mongo\r\n  stdin_open: true\r\n",
                    "rancherComposeConfig":
                    "elasticsearch:\r\n  scale: 1\r\nmongo:\r\n  scale: 1\r\n",
                }
            },
            {
                "id": "1e49",
                "type": "environment",
                "links": {
                    "self":
                    "/v1/projects/1a203/environments/1e49",
                    "account":
                    "/v1/projects/1a203/environments/1e49/account",
                    "services":
                    "/v1/projects/1a203/environments/1e49/services",
                    "composeConfig":
                    "/v1/projects/1a203/environments/1e49/composeconfig",
                },
                "actions": {
                    "upgrade":
                    "/v1/projects/1a203/environments/1e49/?action=upgrade",
                    "update":
                    "/v1/projects/1a203/environments/1e49/?action=update",
                    "remove":
                    "/v1/projects/1a203/environments/1e49/?action=remove",
                    "addoutputs":
                    "/v1/projects/1a203/environments/1e49/?action=addoutputs",
                    "activateservices":
                    "/v1/projects/1a203/environments/1e49/?action=activateservices",
                    "deactivateservices":
                    "/v1/projects/1a203/environments/1e49/?action=deactivateservices",
                    "exportconfig":
                    "/v1/projects/1a203/environments/1e49/?action=exportconfig",
                },
                "name": "lb",
                "state": "active",
                "accountId": "1a203",
                "created": "2016-10-24T09:55:44Z",
                "createdTS": 1477302944000,
                "description": None,
                "dockerCompose": None,
                "environment": None,
                "externalId": "",
                "healthState": "healthy",
                "kind": "environment",
                "outputs": None,
                "previousEnvironment": None,
                "previousExternalId": None,
                "rancherCompose": None,
                "removed": None,
                "startOnCreate": True,
                "transitioning": "no",
                "transitioningMessage": None,
                "transitioningProgress": None,
                "uuid": "7ac2a47f-b084-4002-a2fb-919a1e738bda",
                "settings": {
                    "id": None,
                    "type": "composeConfig",
                    "links": {},
                    "actions": {},
                    "dockerComposeConfig": "{}\r\n",
                    "rancherComposeConfig": "{}\r\n",
                }
            },
        ]

        backupService.dumpStacksSettings('/backup', listStack)

        #print("Call makedirs: %s", mock_makedirs.call_args_list)
        #print("Call open: %s", mock_file.call_args_list)

        mock_makedirs.assert_any_call('/backup/Default')
        mock_makedirs.assert_any_call('/backup/seedbox')
        mock_makedirs.assert_any_call('/backup/test')
        mock_makedirs.assert_any_call('/backup/lb')

        mock_file.assert_any_call('/backup/Default/docker-compose.yml', 'w')
        mock_file.assert_any_call('/backup/Default/rancher-compose.yml', 'w')
        mock_file.assert_any_call('/backup/seedbox/docker-compose.yml', 'w')
        mock_file.assert_any_call('/backup/seedbox/rancher-compose.yml', 'w')
        mock_file.assert_any_call('/backup/test/docker-compose.yml', 'w')
        mock_file.assert_any_call('/backup/test/rancher-compose.yml', 'w')
        mock_file.assert_any_call('/backup/lb/docker-compose.yml', 'w')
        mock_file.assert_any_call('/backup/lb/rancher-compose.yml', 'w')
Exemplo n.º 8
0
    def testSearchDump(self, mock_config):
        backupService = Backup()
        Config('/fake/path')

        # Search template backup with image name
        listServices = [{
            'type':
            'service',
            'name':
            'test',
            'state':
            'active',
            'launchConfig': {
                'imageUuid': 'test/postgres:latest',
                'environment': {
                    'POSTGRES_USER': '******',
                    'POSTGRES_DB': 'test',
                    'POSTGRES_PASSWORD': '******'
                }
            },
            'links': {
                'environment': 'https://fake/environment',
                'instances': 'https://fake/instances',
            },
            'stack': {
                'name': 'stack-test'
            },
            'instances': [{
                'state': 'disabled',
                'primaryIpAddress': '10.0.0.1',
                'host': {
                    'name': 'host-1'
                },
                'links': {
                    'hosts': 'https://fake/hosts'
                }
            }, {
                'state': 'running',
                'primaryIpAddress': '10.0.0.2',
                'host': {
                    'name': 'host-1'
                },
                'links': {
                    'hosts': 'https://fake/hosts'
                }
            }, {
                'state': 'running',
                'primaryIpAddress': '10.0.0.3',
                'host': {
                    'name': 'host-1'
                },
                'links': {
                    'hosts': 'https://fake/hosts'
                }
            }],
        }, {
            'type':
            'service',
            'name':
            'test2',
            'state':
            'active',
            'launchConfig': {
                'imageUuid': 'test/mysql:latest',
                'environment': {
                    'MYSQL_USER': '******',
                    'MYSQL_DATABASE': 'test',
                    'MYSQL_PASSWORD': '******'
                }
            },
            'links': {
                'environment': 'https://fake/environment',
                'instances': 'https://fake/instances',
            },
            'stack': {
                'name': 'stack-test'
            },
            'instances': [{
                'state': 'disabled',
                'primaryIpAddress': '10.1.0.1',
                'host': {
                    'name': 'host-1'
                },
                'links': {
                    'hosts': 'https://fake/hosts'
                }
            }, {
                'state': 'running',
                'primaryIpAddress': '10.1.0.2',
                'host': {
                    'name': 'host-1'
                },
                'links': {
                    'hosts': 'https://fake/hosts'
                }
            }, {
                'state': 'running',
                'primaryIpAddress': '10.1.0.3',
                'host': {
                    'name': 'host-1'
                },
                'links': {
                    'hosts': 'https://fake/hosts'
                }
            }],
        }]

        result = backupService.searchDump('/tmp/backup', listServices)

        targetResult = [{
            'service':
            listServices[0],
            'target_dir':
            '/tmp/backup/stack-test/test',
            'commands': [
                'pg_dump -h 10.0.0.2 -U user -d test -f /tmp/backup/stack-test/test/test.dump'
            ],
            'environments': ['PGPASSWORD:pass'],
            'image':
            'postgres:latest'
        }]

        self.assertEqual(targetResult, result)

        # Search backup with labels
        # Search template backup with image name
        listServices = [{
            'type':
            'service',
            'name':
            'test',
            'state':
            'active',
            'launchConfig': {
                'imageUuid': 'test/my-db:latest',
                'environment': {
                    'POSTGRES_USER': '******',
                    'POSTGRES_DB': 'test',
                    'POSTGRES_PASSWORD': '******'
                },
                'labels': {
                    'backup.type': 'postgres'
                }
            },
            'links': {
                'environment': 'https://fake/environment',
                'instances': 'https://fake/instances',
            },
            'stack': {
                'name': 'stack-test'
            },
            'instances': [{
                'state': 'disabled',
                'primaryIpAddress': '10.0.0.1',
                'host': {
                    'name': 'host-1'
                },
                'links': {
                    'hosts': 'https://fake/hosts'
                }
            }, {
                'state': 'running',
                'primaryIpAddress': '10.0.0.2',
                'host': {
                    'name': 'host-1'
                },
                'links': {
                    'hosts': 'https://fake/hosts'
                }
            }, {
                'state': 'running',
                'primaryIpAddress': '10.0.0.3',
                'host': {
                    'name': 'host-1'
                },
                'links': {
                    'hosts': 'https://fake/hosts'
                }
            }],
        }, {
            'type':
            'service',
            'name':
            'test2',
            'state':
            'active',
            'launchConfig': {
                'imageUuid': 'test/my-db:latest',
                'environment': {
                    'MYSQL_USER': '******',
                    'MYSQL_DATABASE': 'test',
                    'MYSQL_PASSWORD': '******'
                },
                'labels': {
                    'backup.type': 'mysql'
                }
            },
            'links': {
                'environment': 'https://fake/environment',
                'instances': 'https://fake/instances',
            },
            'stack': {
                'name': 'stack-test'
            },
            'instances': [{
                'state': 'disabled',
                'primaryIpAddress': '10.1.0.1',
                'host': {
                    'name': 'host-1'
                },
                'links': {
                    'hosts': 'https://fake/hosts'
                }
            }, {
                'state': 'running',
                'primaryIpAddress': '10.1.0.2',
                'host': {
                    'name': 'host-1'
                },
                'links': {
                    'hosts': 'https://fake/hosts'
                }
            }, {
                'state': 'running',
                'primaryIpAddress': '10.1.0.3',
                'host': {
                    'name': 'host-1'
                },
                'links': {
                    'hosts': 'https://fake/hosts'
                }
            }],
        }]

        result = backupService.searchDump('/tmp/backup', listServices)

        targetResult = [{
            'service':
            listServices[0],
            'target_dir':
            '/tmp/backup/stack-test/test',
            'commands': [
                'pg_dump -h 10.0.0.2 -U user -d test -f /tmp/backup/stack-test/test/test.dump'
            ],
            'environments': ['PGPASSWORD:pass'],
            'image':
            'postgres:latest'
        }]

        self.assertEqual(targetResult, result)
Exemplo n.º 9
0
    def testTemplateMongodb(self):
        backupService = Backup()

        # When no user and password
        listServices = [{
            'type':
            'service',
            'name':
            'test',
            'state':
            'active',
            'launchConfig': {
                'imageUuid': 'mongo:latest',
                'environment': {}
            },
            'links': {
                'stack': 'https://fake/stack',
                'instances': 'https://fake/instances',
            },
            'stack': {
                'name': 'stack-test'
            },
            'instances': [{
                'state': 'disabled',
                'primaryIpAddress': '10.0.0.1',
                'host': {
                    'name': 'host-1'
                },
                'links': {
                    'hosts': 'https://fake/hosts'
                }
            }, {
                'state': 'running',
                'primaryIpAddress': '10.0.0.2',
                'host': {
                    'name': 'host-1'
                },
                'links': {
                    'hosts': 'https://fake/hosts'
                }
            }, {
                'state': 'running',
                'primaryIpAddress': '10.0.0.3',
                'host': {
                    'name': 'host-1'
                },
                'links': {
                    'hosts': 'https://fake/hosts'
                }
            }],
        }]

        targetResult = [{
            'service':
            listServices[0],
            'target_dir':
            '/tmp/backup/stack-test/test',
            'commands':
            ['mongodump --host 10.0.0.2 --out /tmp/backup/stack-test/test'],
            'environments': [],
            'image':
            'mongo:latest'
        }]

        result = backupService.searchDump('/tmp/backup', listServices)
        self.assertEqual(targetResult, result)

        # When user and password
        listServices = [{
            'type':
            'service',
            'name':
            'test',
            'state':
            'active',
            'launchConfig': {
                'imageUuid': 'mongo:latest',
                'environment': {
                    'MONGO_USER': '******',
                    'MONGO_PASS': '******'
                }
            },
            'links': {
                'stack': 'https://fake/stack',
                'instances': 'https://fake/instances',
            },
            'stack': {
                'name': 'stack-test'
            },
            'instances': [{
                'state': 'disabled',
                'primaryIpAddress': '10.0.0.1',
                'host': {
                    'name': 'host-1'
                },
                'links': {
                    'hosts': 'https://fake/hosts'
                }
            }, {
                'state': 'running',
                'primaryIpAddress': '10.0.0.2',
                'host': {
                    'name': 'host-1'
                },
                'links': {
                    'hosts': 'https://fake/hosts'
                }
            }, {
                'state': 'running',
                'primaryIpAddress': '10.0.0.3',
                'host': {
                    'name': 'host-1'
                },
                'links': {
                    'hosts': 'https://fake/hosts'
                }
            }],
        }]

        targetResult = [{
            'service':
            listServices[0],
            'target_dir':
            '/tmp/backup/stack-test/test',
            'commands': [
                'mongodump --host 10.0.0.2 -u user -p pass --out /tmp/backup/stack-test/test'
            ],
            'environments': [],
            'image':
            'mongo:latest'
        }]

        result = backupService.searchDump('/tmp/backup', listServices)
        self.assertEqual(targetResult, result)
Exemplo n.º 10
0
    def testTemplatePostgresql(self):
        backupService = Backup()

        # When user, password and database are setted
        listServices = [{
            'type':
            'service',
            'name':
            'test',
            'state':
            'active',
            'launchConfig': {
                'imageUuid': 'test/postgres:latest',
                'environment': {
                    'POSTGRES_USER': '******',
                    'POSTGRES_DB': 'test',
                    'POSTGRES_PASSWORD': '******'
                }
            },
            'links': {
                'stack': 'https://fake/stack',
                'instances': 'https://fake/instances',
            },
            'stack': {
                'name': 'stack-test'
            },
            'instances': [{
                'state': 'disabled',
                'primaryIpAddress': '10.0.0.1',
                'host': {
                    'name': 'host-1'
                },
                'links': {
                    'hosts': 'https://fake/hosts'
                }
            }, {
                'state': 'running',
                'primaryIpAddress': '10.0.0.2',
                'host': {
                    'name': 'host-1'
                },
                'links': {
                    'hosts': 'https://fake/hosts'
                }
            }, {
                'state': 'running',
                'primaryIpAddress': '10.0.0.3',
                'host': {
                    'name': 'host-1'
                },
                'links': {
                    'hosts': 'https://fake/hosts'
                }
            }],
        }]

        targetResult = [{
            'service':
            listServices[0],
            'target_dir':
            '/tmp/backup/stack-test/test',
            'commands': [
                'pg_dump -h 10.0.0.2 -U user -d test -f /tmp/backup/stack-test/test/test.dump'
            ],
            'environments': ['PGPASSWORD:pass'],
            'image':
            'postgres:latest'
        }]

        result = backupService.searchDump('/tmp/backup', listServices)
        self.assertEqual(targetResult, result)

        # When user, password are setted
        listServices = [{
            'type':
            'service',
            'name':
            'test',
            'state':
            'active',
            'launchConfig': {
                'imageUuid': 'test/postgres:latest',
                'environment': {
                    'POSTGRES_USER': '******',
                    'POSTGRES_PASSWORD': '******'
                }
            },
            'links': {
                'stack': 'https://fake/stack',
                'instances': 'https://fake/instances',
            },
            'stack': {
                'name': 'stack-test'
            },
            'instances': [{
                'state': 'disabled',
                'primaryIpAddress': '10.0.0.1',
                'host': {
                    'name': 'host-1'
                },
                'links': {
                    'hosts': 'https://fake/hosts'
                }
            }, {
                'state': 'running',
                'primaryIpAddress': '10.0.0.2',
                'host': {
                    'name': 'host-1'
                },
                'links': {
                    'hosts': 'https://fake/hosts'
                }
            }, {
                'state': 'running',
                'primaryIpAddress': '10.0.0.3',
                'host': {
                    'name': 'host-1'
                },
                'links': {
                    'hosts': 'https://fake/hosts'
                }
            }],
        }]

        targetResult = [{
            'service':
            listServices[0],
            'target_dir':
            '/tmp/backup/stack-test/test',
            'commands': [
                'pg_dump -h 10.0.0.2 -U user -d user -f /tmp/backup/stack-test/test/user.dump'
            ],
            'environments': ['PGPASSWORD:pass'],
            'image':
            'postgres:latest'
        }]

        result = backupService.searchDump('/tmp/backup', listServices)
        self.assertEqual(targetResult, result)

        # When password and database are setted
        listServices = [{
            'type':
            'service',
            'name':
            'test',
            'state':
            'active',
            'launchConfig': {
                'imageUuid': 'test/postgres:latest',
                'environment': {
                    'POSTGRES_DB': 'test',
                    'POSTGRES_PASSWORD': '******'
                }
            },
            'links': {
                'stack': 'https://fake/stack',
                'instances': 'https://fake/instances',
            },
            'stack': {
                'name': 'stack-test'
            },
            'instances': [{
                'state': 'disabled',
                'primaryIpAddress': '10.0.0.1',
                'host': {
                    'name': 'host-1'
                },
                'links': {
                    'hosts': 'https://fake/hosts'
                }
            }, {
                'state': 'running',
                'primaryIpAddress': '10.0.0.2',
                'host': {
                    'name': 'host-1'
                },
                'links': {
                    'hosts': 'https://fake/hosts'
                }
            }, {
                'state': 'running',
                'primaryIpAddress': '10.0.0.3',
                'host': {
                    'name': 'host-1'
                },
                'links': {
                    'hosts': 'https://fake/hosts'
                }
            }],
        }]

        targetResult = [{
            'service':
            listServices[0],
            'target_dir':
            '/tmp/backup/stack-test/test',
            'commands': [
                'pg_dump -h 10.0.0.2 -U postgres -d test -f /tmp/backup/stack-test/test/test.dump'
            ],
            'environments': ['PGPASSWORD:pass'],
            'image':
            'postgres:latest'
        }]

        result = backupService.searchDump('/tmp/backup', listServices)
        self.assertEqual(targetResult, result)

        # When password are setted
        listServices = [{
            'type':
            'service',
            'name':
            'test',
            'state':
            'active',
            'launchConfig': {
                'imageUuid': 'test/postgres:latest',
                'environment': {
                    'POSTGRES_PASSWORD': '******'
                }
            },
            'links': {
                'stack': 'https://fake/stack',
                'instances': 'https://fake/instances',
            },
            'stack': {
                'name': 'stack-test'
            },
            'instances': [{
                'state': 'disabled',
                'primaryIpAddress': '10.0.0.1',
                'host': {
                    'name': 'host-1'
                },
                'links': {
                    'hosts': 'https://fake/hosts'
                }
            }, {
                'state': 'running',
                'primaryIpAddress': '10.0.0.2',
                'host': {
                    'name': 'host-1'
                },
                'links': {
                    'hosts': 'https://fake/hosts'
                }
            }, {
                'state': 'running',
                'primaryIpAddress': '10.0.0.3',
                'host': {
                    'name': 'host-1'
                },
                'links': {
                    'hosts': 'https://fake/hosts'
                }
            }],
        }]

        targetResult = [{
            'service':
            listServices[0],
            'target_dir':
            '/tmp/backup/stack-test/test',
            'commands': [
                'pg_dumpall -h 10.0.0.2 -U postgres --clean -f /tmp/backup/stack-test/test/all-databases.dump'
            ],
            'environments': ['PGPASSWORD:pass'],
            'image':
            'postgres:latest'
        }]

        result = backupService.searchDump('/tmp/backup', listServices)
        self.assertEqual(targetResult, result)
Exemplo n.º 11
0
    def testTemplateMariadb(self):
        backupService = Backup()

        # When user, password and database are setted
        listServices = [{
            'type':
            'service',
            'name':
            'test2',
            'state':
            'active',
            'launchConfig': {
                'imageUuid': 'test/mariadb:latest',
                'environment': {
                    'MYSQL_USER': '******',
                    'MYSQL_DATABASE': 'test',
                    'MYSQL_PASSWORD': '******'
                }
            },
            'links': {
                'stack': 'https://fake/stack',
                'instances': 'https://fake/instances',
            },
            'stack': {
                'name': 'stack-test'
            },
            'instances': [{
                'state': 'disabled',
                'primaryIpAddress': '10.1.0.1',
                'host': {
                    'name': 'host-1'
                },
                'links': {
                    'hosts': 'https://fake/hosts'
                }
            }, {
                'state': 'running',
                'primaryIpAddress': '10.1.0.2',
                'host': {
                    'name': 'host-1'
                },
                'links': {
                    'hosts': 'https://fake/hosts'
                }
            }, {
                'state': 'running',
                'primaryIpAddress': '10.1.0.3',
                'host': {
                    'name': 'host-1'
                },
                'links': {
                    'hosts': 'https://fake/hosts'
                }
            }],
        }]

        targetResult = [{
            'service':
            listServices[0],
            'target_dir':
            '/backup/stack-test/test2',
            'commands': [
                "sh -c 'mysqldump -h 10.1.0.2 -u user test > /backup/stack-test/test2/test.dump'",
            ],
            'environments': ['MYSQL_PWD:pass'],
            'image':
            'mariadb:latest'
        }]

        result = backupService.searchDump('/backup', listServices)
        self.assertEqual(targetResult, result)

        # When user, password are setted
        listServices = [{
            'type':
            'service',
            'name':
            'test2',
            'state':
            'active',
            'launchConfig': {
                'imageUuid': 'test/mariadb:latest',
                'environment': {
                    'MYSQL_USER': '******',
                    'MYSQL_PASSWORD': '******'
                }
            },
            'links': {
                'stack': 'https://fake/stack',
                'instances': 'https://fake/instances',
            },
            'stack': {
                'name': 'stack-test'
            },
            'instances': [{
                'state': 'disabled',
                'primaryIpAddress': '10.1.0.1',
                'host': {
                    'name': 'host-1'
                },
                'links': {
                    'hosts': 'https://fake/hosts'
                }
            }, {
                'state': 'running',
                'primaryIpAddress': '10.1.0.2',
                'host': {
                    'name': 'host-1'
                },
                'links': {
                    'hosts': 'https://fake/hosts'
                }
            }, {
                'state': 'running',
                'primaryIpAddress': '10.1.0.3',
                'host': {
                    'name': 'host-1'
                },
                'links': {
                    'hosts': 'https://fake/hosts'
                }
            }],
        }]

        targetResult = [{
            'service':
            listServices[0],
            'target_dir':
            '/backup/stack-test/test2',
            'commands': [
                "sh -c 'mysqldump -h 10.1.0.2 -u user --all-databases > /backup/stack-test/test2/all-databases.dump'",
            ],
            'environments': ['MYSQL_PWD:pass'],
            'image':
            'mariadb:latest'
        }]

        result = backupService.searchDump('/backup', listServices)
        self.assertEqual(targetResult, result)

        # When root password and database are setted
        listServices = [{
            'type':
            'service',
            'name':
            'test2',
            'state':
            'active',
            'launchConfig': {
                'imageUuid': 'test/mariadb:latest',
                'environment': {
                    'MYSQL_DATABASE': 'test',
                    'MYSQL_ROOT_PASSWORD': '******'
                }
            },
            'links': {
                'stack': 'https://fake/stack',
                'instances': 'https://fake/instances',
            },
            'stack': {
                'name': 'stack-test'
            },
            'instances': [{
                'state': 'disabled',
                'primaryIpAddress': '10.1.0.1',
                'host': {
                    'name': 'host-1'
                },
                'links': {
                    'hosts': 'https://fake/hosts'
                }
            }, {
                'state': 'running',
                'primaryIpAddress': '10.1.0.2',
                'host': {
                    'name': 'host-1'
                },
                'links': {
                    'hosts': 'https://fake/hosts'
                }
            }, {
                'state': 'running',
                'primaryIpAddress': '10.1.0.3',
                'host': {
                    'name': 'host-1'
                },
                'links': {
                    'hosts': 'https://fake/hosts'
                }
            }],
        }]

        targetResult = [{
            'service':
            listServices[0],
            'target_dir':
            '/backup/stack-test/test2',
            'commands': [
                "sh -c 'mysqldump -h 10.1.0.2 -u root test > /backup/stack-test/test2/test.dump'",
            ],
            'environments': ['MYSQL_PWD:pass'],
            'image':
            'mariadb:latest'
        }]

        result = backupService.searchDump('/backup', listServices)
        self.assertEqual(targetResult, result)

        # When root password is setted
        listServices = [{
            'type':
            'service',
            'name':
            'test2',
            'state':
            'active',
            'launchConfig': {
                'imageUuid': 'test/mariadb:latest',
                'environment': {
                    'MYSQL_ROOT_PASSWORD': '******'
                }
            },
            'links': {
                'stack': 'https://fake/stack',
                'instances': 'https://fake/instances',
            },
            'stack': {
                'name': 'stack-test'
            },
            'instances': [{
                'state': 'disabled',
                'primaryIpAddress': '10.1.0.1',
                'host': {
                    'name': 'host-1'
                },
                'links': {
                    'hosts': 'https://fake/hosts'
                }
            }, {
                'state': 'running',
                'primaryIpAddress': '10.1.0.2',
                'host': {
                    'name': 'host-1'
                },
                'links': {
                    'hosts': 'https://fake/hosts'
                }
            }, {
                'state': 'running',
                'primaryIpAddress': '10.1.0.3',
                'host': {
                    'name': 'host-1'
                },
                'links': {
                    'hosts': 'https://fake/hosts'
                }
            }],
        }]

        targetResult = [{
            'service':
            listServices[0],
            'target_dir':
            '/backup/stack-test/test2',
            'commands': [
                "sh -c 'mysqldump -h 10.1.0.2 -u root --all-databases > /backup/stack-test/test2/all-databases.dump'",
            ],
            'environments': ['MYSQL_PWD:pass'],
            'image':
            'mariadb:latest'
        }]

        result = backupService.searchDump('/backup', listServices)
        self.assertEqual(targetResult, result)

        # When user, password, root password and database are setted
        listServices = [{
            'type':
            'service',
            'name':
            'test2',
            'state':
            'active',
            'launchConfig': {
                'imageUuid': 'test/mariadb:latest',
                'environment': {
                    'MYSQL_USER': '******',
                    'MYSQL_DATABASE': 'test',
                    'MYSQL_PASSWORD': '******',
                    'MYSQL_ROOT_PASSWORD': '******'
                }
            },
            'links': {
                'stack': 'https://fake/stack',
                'instances': 'https://fake/instances',
            },
            'stack': {
                'name': 'stack-test'
            },
            'instances': [{
                'state': 'disabled',
                'primaryIpAddress': '10.1.0.1',
                'host': {
                    'name': 'host-1'
                },
                'links': {
                    'hosts': 'https://fake/hosts'
                }
            }, {
                'state': 'running',
                'primaryIpAddress': '10.1.0.2',
                'host': {
                    'name': 'host-1'
                },
                'links': {
                    'hosts': 'https://fake/hosts'
                }
            }, {
                'state': 'running',
                'primaryIpAddress': '10.1.0.3',
                'host': {
                    'name': 'host-1'
                },
                'links': {
                    'hosts': 'https://fake/hosts'
                }
            }],
        }]

        targetResult = [{
            'service':
            listServices[0],
            'target_dir':
            '/backup/stack-test/test2',
            'commands': [
                "sh -c 'mysqldump -h 10.1.0.2 -u user test > /backup/stack-test/test2/test.dump'",
            ],
            'environments': ['MYSQL_PWD:pass'],
            'image':
            'mariadb:latest'
        }]

        result = backupService.searchDump('/backup', listServices)
        self.assertEqual(targetResult, result)
Exemplo n.º 12
0
    def testTemplateElasticsearch(self):
        backupService = Backup()

        listServices = [{
            'type':
            'service',
            'name':
            'test',
            'state':
            'active',
            'launchConfig': {
                'imageUuid': 'elasticsearch:latest',
                'environment': {}
            },
            'links': {
                'stack': 'https://fake/stack',
                'instances': 'https://fake/instances',
            },
            'stack': {
                'name': 'stack-test'
            },
            'instances': [{
                'state': 'disabled',
                'primaryIpAddress': '10.0.0.1',
                'host': {
                    'name': 'host-1'
                },
                'links': {
                    'hosts': 'https://fake/hosts'
                }
            }, {
                'state': 'running',
                'primaryIpAddress': '10.0.0.2',
                'host': {
                    'name': 'host-1'
                },
                'links': {
                    'hosts': 'https://fake/hosts'
                }
            }, {
                'state': 'running',
                'primaryIpAddress': '10.0.0.3',
                'host': {
                    'name': 'host-1'
                },
                'links': {
                    'hosts': 'https://fake/hosts'
                }
            }],
        }]

        targetResult = [{
            'service':
            listServices[0],
            'target_dir':
            '/tmp/backup/stack-test/test',
            'commands': [
                "-c 'rm -rf /tmp/backup/stack-test/test/*.json'",
                "-c 'elasticdump --input=http://10.0.0.2:9200/ --output=/tmp/backup/stack-test/test/dump_mapping.json --type=mapping'",
                "-c 'elasticdump --input=http://10.0.0.2:9200/ --output=/tmp/backup/stack-test/test/dump_data.json --type=data'",
            ],
            'environments': [],
            'entrypoint':
            "/bin/sh",
            'image':
            'taskrabbit/elasticsearch-dump:latest'
        }]

        result = backupService.searchDump('/tmp/backup', listServices)
        self.assertEqual(targetResult, result)