Raven Replication: Scenarios

time to read 2 min | 391 words

I am currently writing the tests for the replication bundle. I managed to overcome the biggest problem (my stupidity), and we now have some passing tests :-)

What I am looking for is more scenarios like this, so we would have as many tested scenarios as possible. I don’t want code, or anything like that, just give me a set scenario to try against the replication system.

Feel free to make them as complex as you wish.

Here is an example of how I think about he tests that we currently have:

  Command Result
Replicating PUT PUT raven1/docs/ayende 200
  GET raven2/docs/ayende 200
Replicating DELETE PUT raven1/docs/ayende 200
  GET raven2/docs/ayende 200
  DELETE raven1/docs/ayende 201
  GET raven2/docs/ayende 404