-
Notifications
You must be signed in to change notification settings - Fork 2.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into search-support
- Loading branch information
Showing
54 changed files
with
1,276 additions
and
704 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
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,57 @@ | ||
name: RE Tests | ||
|
||
on: | ||
push: | ||
branches: [master] | ||
pull_request: | ||
|
||
permissions: | ||
contents: read | ||
|
||
jobs: | ||
build: | ||
name: build | ||
runs-on: ubuntu-latest | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
go-version: [1.21.x] | ||
re-build: ["7.4.2-54"] | ||
|
||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v4 | ||
|
||
- name: Clone Redis EE docker repository | ||
uses: actions/checkout@v4 | ||
with: | ||
repository: RedisLabs/redis-ee-docker | ||
path: redis-ee | ||
|
||
- name: Set up ${{ matrix.go-version }} | ||
uses: actions/setup-go@v5 | ||
with: | ||
go-version: ${{ matrix.go-version }} | ||
|
||
- name: Build cluster | ||
working-directory: redis-ee | ||
env: | ||
IMAGE: "redislabs/redis:${{ matrix.re-build }}" | ||
RE_USERNAME: [email protected] | ||
RE_PASS: 12345 | ||
RE_CLUSTER_NAME: re-test | ||
RE_USE_OSS_CLUSTER: false | ||
RE_DB_PORT: 6379 | ||
run: ./build.sh | ||
|
||
- name: Test | ||
env: | ||
RE_CLUSTER: "1" | ||
run: | | ||
go test \ | ||
--ginkgo.skip-file="ring_test.go" \ | ||
--ginkgo.skip-file="sentinel_test.go" \ | ||
--ginkgo.skip-file="osscluster_test.go" \ | ||
--ginkgo.skip-file="pubsub_test.go" \ | ||
--ginkgo.skip-file="gears_commands_test.go" \ | ||
--ginkgo.label-filter='!NonRedisEnterprise' |
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
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,98 @@ | ||
package redis_test | ||
|
||
import ( | ||
. "github.com/bsm/ginkgo/v2" | ||
. "github.com/bsm/gomega" | ||
"github.com/redis/go-redis/v9" | ||
) | ||
|
||
type bitCountExpected struct { | ||
Start int64 | ||
End int64 | ||
Expected int64 | ||
} | ||
|
||
var _ = Describe("BitCountBite", func() { | ||
var client *redis.Client | ||
key := "bit_count_test" | ||
|
||
BeforeEach(func() { | ||
client = redis.NewClient(redisOptions()) | ||
Expect(client.FlushDB(ctx).Err()).NotTo(HaveOccurred()) | ||
values := []int{0, 1, 0, 0, 1, 0, 1, 0, 1, 1} | ||
for i, v := range values { | ||
cmd := client.SetBit(ctx, key, int64(i), v) | ||
Expect(cmd.Err()).NotTo(HaveOccurred()) | ||
} | ||
}) | ||
|
||
AfterEach(func() { | ||
Expect(client.Close()).NotTo(HaveOccurred()) | ||
}) | ||
|
||
It("bit count bite", func() { | ||
var expected = []bitCountExpected{ | ||
{0, 0, 0}, | ||
{0, 1, 1}, | ||
{0, 2, 1}, | ||
{0, 3, 1}, | ||
{0, 4, 2}, | ||
{0, 5, 2}, | ||
{0, 6, 3}, | ||
{0, 7, 3}, | ||
{0, 8, 4}, | ||
{0, 9, 5}, | ||
} | ||
|
||
for _, e := range expected { | ||
cmd := client.BitCount(ctx, key, &redis.BitCount{Start: e.Start, End: e.End, Unit: redis.BitCountIndexBit}) | ||
Expect(cmd.Err()).NotTo(HaveOccurred()) | ||
Expect(cmd.Val()).To(Equal(e.Expected)) | ||
} | ||
}) | ||
}) | ||
|
||
var _ = Describe("BitCountByte", func() { | ||
var client *redis.Client | ||
key := "bit_count_test" | ||
|
||
BeforeEach(func() { | ||
client = redis.NewClient(redisOptions()) | ||
Expect(client.FlushDB(ctx).Err()).NotTo(HaveOccurred()) | ||
values := []int{0, 0, 0, 0, 0, 0, 0, 1, 1, 1} | ||
for i, v := range values { | ||
cmd := client.SetBit(ctx, key, int64(i), v) | ||
Expect(cmd.Err()).NotTo(HaveOccurred()) | ||
} | ||
}) | ||
|
||
AfterEach(func() { | ||
Expect(client.Close()).NotTo(HaveOccurred()) | ||
}) | ||
|
||
It("bit count byte", func() { | ||
var expected = []bitCountExpected{ | ||
{0, 0, 1}, | ||
{0, 1, 3}, | ||
} | ||
|
||
for _, e := range expected { | ||
cmd := client.BitCount(ctx, key, &redis.BitCount{Start: e.Start, End: e.End, Unit: redis.BitCountIndexByte}) | ||
Expect(cmd.Err()).NotTo(HaveOccurred()) | ||
Expect(cmd.Val()).To(Equal(e.Expected)) | ||
} | ||
}) | ||
|
||
It("bit count byte with no unit specified", func() { | ||
var expected = []bitCountExpected{ | ||
{0, 0, 1}, | ||
{0, 1, 3}, | ||
} | ||
|
||
for _, e := range expected { | ||
cmd := client.BitCount(ctx, key, &redis.BitCount{Start: e.Start, End: e.End}) | ||
Expect(cmd.Err()).NotTo(HaveOccurred()) | ||
Expect(cmd.Val()).To(Equal(e.Expected)) | ||
} | ||
}) | ||
}) |
Oops, something went wrong.