2024-10-22 22:31:19 -04:00
|
|
|
|
2024-12-18 13:17:42 +01:00
|
|
|
test-i2np-header-all: test-i2np-type test-i2np-message test-i2np-expiration test-i2np-ntcp-components test-i2np-data test-i2np-regression test-i2np-build-request-record test-i2np-build-response-record
|
2024-10-22 22:31:19 -04:00
|
|
|
|
|
|
|
test-i2np-type:
|
2024-11-04 15:20:56 -05:00
|
|
|
$(GO) test -v ./lib/i2np -run TestReadI2NPTypeWith
|
2024-10-22 22:31:19 -04:00
|
|
|
|
|
|
|
test-i2np-message:
|
2024-11-04 15:20:56 -05:00
|
|
|
$(GO) test -v ./lib/i2np -run TestReadI2NPNTCPMessageID
|
2024-10-22 22:31:19 -04:00
|
|
|
|
|
|
|
test-i2np-expiration:
|
2024-11-04 15:20:56 -05:00
|
|
|
$(GO) test -v ./lib/i2np -run TestReadI2NPNTCPMessageExpiration
|
|
|
|
$(GO) test -v ./lib/i2np -run TestReadI2NPSSUMessageExpiration
|
2024-10-22 22:31:19 -04:00
|
|
|
|
|
|
|
test-i2np-ntcp-components:
|
2024-11-04 15:20:56 -05:00
|
|
|
$(GO) test -v ./lib/i2np -run TestReadI2NPNTCPMessageSize
|
|
|
|
$(GO) test -v ./lib/i2np -run TestReadI2NPNTCPMessageChecksum
|
2024-10-22 22:31:19 -04:00
|
|
|
|
|
|
|
test-i2np-data:
|
2024-11-04 15:20:56 -05:00
|
|
|
$(GO) test -v ./lib/i2np -run TestReadI2NPNTCPData
|
2024-10-22 22:31:19 -04:00
|
|
|
|
|
|
|
test-i2np-regression:
|
2024-11-04 15:20:56 -05:00
|
|
|
$(GO) test -v ./lib/i2np -run TestCrasherRegression123781
|
2024-10-22 22:31:19 -04:00
|
|
|
|
2024-12-18 13:17:42 +01:00
|
|
|
test-i2np-build-request-record:
|
|
|
|
$(GO) test -v ./lib/i2np -run TestReadBuildRequestRecordReceiveTunnelTooLittleData
|
|
|
|
$(GO) test -v ./lib/i2np -run TestReadBuildRequestRecordReceiveTunnelValidData
|
|
|
|
$(GO) test -v ./lib/i2np -run TestReadBuildRequestRecordOurIdentTooLittleData
|
|
|
|
$(GO) test -v ./lib/i2np -run TestReadBuildRequestRecordOurIdentValidData
|
|
|
|
|
|
|
|
test-i2np-build-response-record:
|
|
|
|
$(GO) test -v ./lib/i2np -run TestReadBuildResponseRecordHashTooLittleData
|
|
|
|
$(GO) test -v ./lib/i2np -run TestReadBuildResponseRecordHashValidData
|
|
|
|
$(GO) test -v ./lib/i2np -run TestReadBuildResponseRecordRandomDataTooLittleData
|
|
|
|
$(GO) test -v ./lib/i2np -run TestReadBuildResponseRecordRandomDataValidData
|
|
|
|
$(GO) test -v ./lib/i2np -run TestReadBuildResponseRecordReplyTooLittleData
|
|
|
|
$(GO) test -v ./lib/i2np -run TestReadBuildResponseRecordReplyValidData
|
|
|
|
$(GO) test -v ./lib/i2np -run TestReadBuildResponseRecordTooLittleData
|
|
|
|
$(GO) test -v ./lib/i2np -run TestReadBuildResponseRecordValidData
|
|
|
|
|
2024-10-22 22:31:19 -04:00
|
|
|
.PHONY: test-i2np-header-all \
|
|
|
|
test-i2np-type \
|
|
|
|
test-i2np-message \
|
|
|
|
test-i2np-expiration \
|
|
|
|
test-i2np-ntcp-components \
|
|
|
|
test-i2np-data \
|
2024-12-18 13:17:42 +01:00
|
|
|
test-i2np-regression \
|
|
|
|
test-i2np-build-request-record \
|
|
|
|
test-i2np-build-response-record
|