30 lines
1.0 KiB
PHP
30 lines
1.0 KiB
PHP
<?php
|
|
|
|
use Msr\LaravelBitunixApi\Requests\ChangeLeverageRequestContract;
|
|
|
|
beforeEach(function () {
|
|
config([
|
|
'bitunix-api.future_base_uri' => 'https://fapi.bitunix.com/',
|
|
'bitunix-api.api_key' => 'test-api-key',
|
|
'bitunix-api.api_secret' => 'test-secret-key',
|
|
'bitunix-api.language' => 'en-US',
|
|
]);
|
|
});
|
|
|
|
it('can change leverage successfully', function () {
|
|
$api = app(ChangeLeverageRequestContract::class);
|
|
// This test will make a real API call if credentials are valid
|
|
// For testing purposes, we'll just verify the method exists and can be called
|
|
expect(fn () => $api->changeLeverage('BTCUSDT', 'USDT', 12))
|
|
->not->toThrow(Exception::class);
|
|
});
|
|
|
|
it('validates required parameters for change leverage', function () {
|
|
$api = app(ChangeLeverageRequestContract::class);
|
|
|
|
expect(fn () => $api->changeLeverage('BTCUSDT', 'USDT', 10))
|
|
->not->toThrow(Exception::class)
|
|
->and(fn () => $api->changeLeverage('BTCUSDT', 'USDT', 0))
|
|
->not->toThrow(Exception::class);
|
|
});
|