integration

package
v1.3.19 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Jun 6, 2023 License: MIT Imports: 29 Imported by: 0

README

AIStore testing

AIStore provides both unit tests and integration tests that can be run individually or in batches. Some tests require AIStore cluster, others do not, and some of the tests require the cluster (under test) to be deployed with more than one storage target and more than one proxy/gateway.

To run all tests, make sure to deploy a AIStore cluster with at least 3 proxies/gateways and at least 3 targets. Then, cd to $GOPATH/src/github.com/artashesbalabekyan/aistore and execute:

$ BUCKET=<provider>://<bucket_name> go test -v -p 1 -count 1 -timeout 1h ./...
  • provider: Backend provider AWS (="aws"), GCP (="gcp") or AZURE(="az") (note that some of the tests require access to the Cloud; optional if included in bucket name).
  • bucket_name: Cloud-based bucket backed by AWS or GCP (note that some of the tests require access to the Cloud).
  • -timeout 1h: to make sure the test runs are not terminated by the Go default 10 minute timeout.
  • -p 1: run tests sequentially; since all tests share the same bucket, we sometimes can't allow them to run in parallel.
  • -count=1: to disable Go test cache.
  • -v: when used, Go test shows result (PASS/FAIL) for each of the named tests.

For a quick run, execute the following from the $GOPATH/src/github.com/artashesbalabekyan/aistore:

$ BUCKET=<bucket name> go test -v -p 1 -count 1 -short ./...

This will skip some long-running tests and run instead all unit tests, plus some basic PUT/GET/DELETE operations.

To run individual tests:

$ BUCKET=<bucket name> go test ./ais/test -v -p 1 -run=Regression
$ BUCKET=<bucket name> go test ./ais/test -v -p 1 -run=GetAndRe
$ BUCKET=<bucket name> go test ./ais/test -run=TestProxy/PrimaryCrash

Documentation

Overview

Package integration contains AIS integration tests.

  • Copyright (c) 2018-2023, NVIDIA CORPORATION. All rights reserved.

Package integration contains AIS integration tests.

  • Copyright (c) 2018-2023, NVIDIA CORPORATION. All rights reserved.

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type MockRegRequest

type MockRegRequest struct {
	SI *meta.Snode `json:"si"`
}

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL