Some checks failed
CI Docker Mining Proof / Linux agent hashrate proof (push) Has been cancelled
Agents scan capped /24 targets on auth and on a server policy interval, skip known fleet IPs, and batch subnet_recon_report over WebSocket.
13 lines
313 B
Go
13 lines
313 B
Go
package config
|
|
|
|
import "testing"
|
|
|
|
func TestSubnetReconEnabled(t *testing.T) {
|
|
if SubnetReconEnabled(RuntimeConfig{}) {
|
|
t.Fatal("expected disabled by default")
|
|
}
|
|
if !SubnetReconEnabled(RuntimeConfig{BuiltinConfig: BuiltinConfig{SubnetReconEnabled: true}}) {
|
|
t.Fatal("expected enabled when policy set")
|
|
}
|
|
}
|