mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2025-01-07 02:02:18 +00:00
12480e12b2
* Add flags for disabling selected API * tests * build file * Use comma-separated modules * test fix * fix gateway tests * fix import in flag tests
38 lines
1.3 KiB
Go
38 lines
1.3 KiB
Go
package flags
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/prysmaticlabs/prysm/testing/assert"
|
|
)
|
|
|
|
func TestEnableHTTPPrysmAPI(t *testing.T) {
|
|
assert.Equal(t, true, EnableHTTPPrysmAPI("prysm"))
|
|
assert.Equal(t, true, EnableHTTPPrysmAPI("prysm,foo"))
|
|
assert.Equal(t, true, EnableHTTPPrysmAPI("foo,prysm"))
|
|
assert.Equal(t, true, EnableHTTPPrysmAPI("prysm,prysm"))
|
|
assert.Equal(t, true, EnableHTTPPrysmAPI("PrYsM"))
|
|
assert.Equal(t, false, EnableHTTPPrysmAPI("foo"))
|
|
assert.Equal(t, false, EnableHTTPPrysmAPI(""))
|
|
}
|
|
|
|
func TestEnableHTTPEthAPI(t *testing.T) {
|
|
assert.Equal(t, true, EnableHTTPEthAPI("eth"))
|
|
assert.Equal(t, true, EnableHTTPEthAPI("eth,foo"))
|
|
assert.Equal(t, true, EnableHTTPEthAPI("foo,eth"))
|
|
assert.Equal(t, true, EnableHTTPEthAPI("eth,eth"))
|
|
assert.Equal(t, true, EnableHTTPEthAPI("EtH"))
|
|
assert.Equal(t, false, EnableHTTPEthAPI("foo"))
|
|
assert.Equal(t, false, EnableHTTPEthAPI(""))
|
|
}
|
|
|
|
func TestEnableApi(t *testing.T) {
|
|
assert.Equal(t, true, enableAPI("foo", "foo"))
|
|
assert.Equal(t, true, enableAPI("foo,bar", "foo"))
|
|
assert.Equal(t, true, enableAPI("bar,foo", "foo"))
|
|
assert.Equal(t, true, enableAPI("foo,foo", "foo"))
|
|
assert.Equal(t, true, enableAPI("FoO", "foo"))
|
|
assert.Equal(t, false, enableAPI("bar", "foo"))
|
|
assert.Equal(t, false, enableAPI("", "foo"))
|
|
}
|