Git Product home page Git Product logo

Comments (10)

zuiderkwast avatar zuiderkwast commented on May 24, 2024 1

It would be great if anyone wants to add such tests, because we're a bit overloaded at this point. It doesn't have to be in TCL (maybe Python instead?) and it doesn't even have to be in this repo, if we're testing different forks. We can make a separate interop testing repo. It is about

  • cluster bus (nodes of different versions in the same cluster)
  • replication (primary/replica of different versions)
  • RDB and AOF files (read and write by different versions)
  • Anything else?

from valkey.

hpatro avatar hpatro commented on May 24, 2024

@valkey-io/core-team WDYT ?

from valkey.

pragnesh avatar pragnesh commented on May 24, 2024

i am willing to spend time. if anyone guide me some starting point.

from valkey.

madolson avatar madolson commented on May 24, 2024

We can make a separate interop testing repo. It is about

I think it should be this repo, I don't think we want to start introducing tests elsewhere for now.

from valkey.

zuiderkwast avatar zuiderkwast commented on May 24, 2024

I'm fine either way, but what id'd like to see is some prototyping to get something running. Use any language, any client lib, but be ready to discard it later.

from valkey.

zuiderkwast avatar zuiderkwast commented on May 24, 2024

There are potential benefits of having a completely separate repo for this. It would need to check out various versions of valkey anyway (so it can't just run out of the checked out repo). It could also test valkey against various forks and versions. We can have test a cluster with mixed nodes of KeyDB, Dragonfly, Redict, Redis, Valkey, various versions. We can run redis testsuites on the valkey binary. Etc.

from valkey.

suxb201 avatar suxb201 commented on May 24, 2024

@madolson @zuiderkwast @pragnesh @mattsta Hi everyone! Is anyone already working on this?
We currently have a Python test script that provides the same functionality as the TCL tests, but written in Python. It has been working well for the past two years and has significantly improved the efficiency of writing and debugging tests compared to TCL.
Here is a relatively old version: https://pypi.org/project/pybbt/
If you're interested, I'm willing to spend 1-2 weeks adapting it for Valkey and writing a few test examples.

from valkey.

hpatro avatar hpatro commented on May 24, 2024

@suxb201 how is the test setup/teardown done? How long does a similar tcl test takes in python?

from valkey.

suxb201 avatar suxb201 commented on May 24, 2024

@hpatro

  1. To create an instance, use a clear statement.
  2. Instances made inside an @subcase are safely destroyed when the @subcase ends.
  3. Instances created within an @case will be destroyed when the @case concludes.
  4. The @subcase is concurrent, which makes testing efficient.
  5. There is only one @case per file, and the tests are composed of multiple files.
  6. Logs, AOF and RDB files will be arranged in a temporary directory, making it easier to debug.

Here's a example:

from testsuite import *


# Master can replicate command longer than client-query-buffer-limit on replica
@subcase()
def replication_query_buffer_limit():
    t0 = Tair()  # create a process
    t1 = Tair()  # create another process
    t1.wait_slaveof(t0)  # call 'slaveof' and then wait for the replication connection to be set up
    t0.do("config", "set", "client-query-buffer-limit", 2000000)
    t1.do("config", "set", "client-query-buffer-limit", 1048576)  # 1024*1024 = 1mb

    value = "x" * 1100000
    ASSERT_TRUE(t0.do("set", "k", value))  # 2000000 > 1100000 > 1048576
    t0.wait_consistent()
    ASSERT_EQ(t1.do("get", "k"), value.encode())
    ASSERT_EQ(t1.digest(), t0.digest())


@case(tags=["flag0", "flag1", "flag2"])
def main():
    replication_query_buffer_limit()


if __name__ == '__main__':
    main()

from valkey.

zuiderkwast avatar zuiderkwast commented on May 24, 2024

It seems to me that porting the tests to a different language is a different topic. I think it can be discussed here: #94.

Personally, I think it would be beneficial to create a separate interoperability-testing repo where scripts and CI jobs can

  • check out multiple versions of Valkey, Redis, clients and other tools
  • test mixed clusters, e.g. test #52
  • test replication between different versions
  • create dumps (rdb and aof) and load them it in other versions, newer and older

@bjosv

from valkey.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.