bson/testdata/server-discovery-and-monitoring/rs/stepdown_change_set_name.yml
2025-03-17 20:58:26 +01:00

66 lines
1.5 KiB
YAML

description: "Primary becomes a secondary with wrong setName"
uri: "mongodb://a/?replicaSet=rs"
phases: [
# Primary is discovered normally.
{
responses: [
["a:27017", {
ok: 1,
helloOk: true,
isWritablePrimary: true,
hosts: ["a:27017"],
setName: "rs",
minWireVersion: 0,
maxWireVersion: 6
}]
],
outcome: {
servers: {
"a:27017": {
type: "RSPrimary",
setName: "rs"
}
},
topologyType: "ReplicaSetWithPrimary",
logicalSessionTimeoutMinutes: null,
setName: "rs"
}
},
# Primary changes its setName and becomes secondary.
# Remove it and change the topologyType.
{
responses: [
["a:27017", {
ok: 1,
helloOk: true,
isWritablePrimary: false,
secondary: true,
hosts: ["a:27017"],
setName: "wrong",
minWireVersion: 0,
maxWireVersion: 6
}]
],
outcome: {
servers: {},
topologyType: "ReplicaSetNoPrimary",
logicalSessionTimeoutMinutes: null,
setName: "rs"
}
}
]