private/testplanet: add helper OpenProject method to testplanet uplink
This will simplify opening pure uplink.Project in tests. Change-Id: I076875e15e21608f49dc875bb445412f34609bdb
This commit is contained in:
parent
7eccfccfda
commit
cdeea1c999
@ -180,6 +180,16 @@ func (client *Uplink) DialPiecestore(ctx context.Context, destination Peer) (*pi
|
|||||||
return piecestore.DialNodeURL(ctx, client.Dialer, destination.NodeURL(), client.Log.Named("uplink>piecestore"), piecestore.DefaultConfig)
|
return piecestore.DialNodeURL(ctx, client.Dialer, destination.NodeURL(), client.Log.Named("uplink>piecestore"), piecestore.DefaultConfig)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// OpenProject opens project with predefined access grant and gives access to pure uplink API.
|
||||||
|
func (client *Uplink) OpenProject(ctx context.Context, satellite *Satellite) (*uplink.Project, error) {
|
||||||
|
_, found := testuplink.GetMaxSegmentSize(ctx)
|
||||||
|
if !found {
|
||||||
|
ctx = testuplink.WithMaxSegmentSize(ctx, satellite.Config.Metainfo.MaxSegmentSize)
|
||||||
|
}
|
||||||
|
|
||||||
|
return uplink.OpenProject(ctx, client.Access[satellite.ID()])
|
||||||
|
}
|
||||||
|
|
||||||
// Upload data to specific satellite.
|
// Upload data to specific satellite.
|
||||||
func (client *Uplink) Upload(ctx context.Context, satellite *Satellite, bucket string, path storj.Path, data []byte) error {
|
func (client *Uplink) Upload(ctx context.Context, satellite *Satellite, bucket string, path storj.Path, data []byte) error {
|
||||||
return client.UploadWithExpiration(ctx, satellite, bucket, path, data, time.Time{})
|
return client.UploadWithExpiration(ctx, satellite, bucket, path, data, time.Time{})
|
||||||
|
@ -276,3 +276,16 @@ func TestDeleteWithOfflineStoragenode(t *testing.T) {
|
|||||||
require.Equal(t, 0, len(objects))
|
require.Equal(t, 0, len(objects))
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func TestUplinkOpenProject(t *testing.T) {
|
||||||
|
testplanet.Run(t, testplanet.Config{
|
||||||
|
SatelliteCount: 1, StorageNodeCount: 0, UplinkCount: 1,
|
||||||
|
}, func(t *testing.T, ctx *testcontext.Context, planet *testplanet.Planet) {
|
||||||
|
project, err := planet.Uplinks[0].OpenProject(ctx, planet.Satellites[0])
|
||||||
|
require.NoError(t, err)
|
||||||
|
defer ctx.Check(project.Close)
|
||||||
|
|
||||||
|
_, err = project.EnsureBucket(ctx, "bucket-name")
|
||||||
|
require.NoError(t, err)
|
||||||
|
})
|
||||||
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user