-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
PBM-1389 disallow performing selective backup (#226)
- Loading branch information
1 parent
5e1dbce
commit 560f373
Showing
3 changed files
with
84 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,70 @@ | ||
import pytest | ||
import pymongo | ||
import bson | ||
import testinfra | ||
import time | ||
import os | ||
import docker | ||
|
||
from datetime import datetime | ||
from cluster import Cluster | ||
from packaging import version | ||
|
||
|
||
@pytest.fixture(scope="package") | ||
def mongod_version(): | ||
return docker.from_env().containers.run( | ||
image='replica_member/local', | ||
remove=True, | ||
command='bash -c \'mongod --version | head -n1 | sed "s/db version v//"\'' | ||
).decode("utf-8", errors="replace") | ||
|
||
@pytest.fixture(scope="package") | ||
def config(mongod_version): | ||
if version.parse(mongod_version) < version.parse("8.0.0"): | ||
pytest.skip("Unsupported version for config shards") | ||
else: | ||
return { "mongos": "mongos", | ||
"configserver": | ||
{"_id": "rscfg", "members": [{"host":"rscfg01"},{"host": "rscfg02"},{"host": "rscfg03" }]}, | ||
"shards":[ | ||
{"_id": "rs1", "members": [{"host":"rs101"},{"host": "rs102"},{"host": "rs103" }]} | ||
]} | ||
|
||
@pytest.fixture(scope="package") | ||
def cluster(config): | ||
return Cluster(config) | ||
|
||
@pytest.fixture(scope="function") | ||
def start_cluster(cluster,request): | ||
try: | ||
cluster.destroy() | ||
os.chmod("/backups",0o777) | ||
os.system("rm -rf /backups/*") | ||
cluster.create() | ||
client=pymongo.MongoClient(cluster.connection) | ||
Cluster.log(client.admin.command({'transitionFromDedicatedConfigServer': 1})) | ||
client.admin.command("enableSharding", "test") | ||
client.admin.command("shardCollection", "test.test", key={"_id": "hashed"}) | ||
cluster.setup_pbm() | ||
result = cluster.exec_pbm_cli("config --set storage.type=filesystem --set storage.filesystem.path=/backups --set backup.compression=none") | ||
assert result.rc == 0 | ||
Cluster.log("Setup PBM with fs storage:\n" + result.stdout) | ||
yield True | ||
finally: | ||
if request.config.getoption("--verbose"): | ||
cluster.get_logs() | ||
cluster.destroy() | ||
|
||
@pytest.mark.timeout(300,func_only=True) | ||
def test_logical_selective_PBM_T267(start_cluster,cluster): | ||
cluster.check_pbm_status() | ||
client=pymongo.MongoClient(cluster.connection) | ||
for i in range(100): | ||
client['test']['test'].insert_one({"doc":i}) | ||
client['test']['test1'].insert_one({"doc":i}) | ||
|
||
result = cluster.exec_pbm_cli("logical --ns=test.test --wait") | ||
assert result.rc != 0, result.stdout + result.stderr | ||
result = cluster.exec_pbm_cli("logical --ns=test.test1 --wait") | ||
assert result.rc != 0, result.stdout + result.stderr |