-
Notifications
You must be signed in to change notification settings - Fork 30
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #418 from irisnet/dreamer/module-independent
feat: split all modules to make them independently releaseable
- Loading branch information
Showing
535 changed files
with
31,099 additions
and
8,681 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,6 @@ vendor | |
.DS_Store | ||
.idea | ||
.vscode | ||
build/ | ||
.out | ||
docs/.vuepress/dist/ | ||
node_modules/ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,150 @@ | ||
run: | ||
tests: true | ||
timeout: 15m | ||
allow-parallel-runners: true | ||
build-tags: | ||
- e2e | ||
- ledger | ||
- test_ledger_mock | ||
|
||
|
||
linters: | ||
disable-all: true | ||
enable: | ||
- dogsled | ||
- errcheck | ||
- errorlint | ||
- exportloopref | ||
- gci | ||
- goconst | ||
- gocritic | ||
- gofumpt | ||
- gosec | ||
- gosimple | ||
- govet | ||
- ineffassign | ||
- misspell | ||
- nakedret | ||
- nolintlint | ||
- revive | ||
- staticcheck | ||
- stylecheck | ||
- thelper | ||
- typecheck | ||
- unconvert | ||
- unused | ||
|
||
issues: | ||
exclude-dirs: | ||
- testutil/testdata | ||
exclude-files: | ||
- server/grpc/gogoreflection/fix_registration.go | ||
- "fix_registration.go" | ||
- ".*\\.pb\\.go$" | ||
- ".*\\.pb\\.gw\\.go$" | ||
- ".*\\.pulsar\\.go$" | ||
exclude-rules: | ||
- text: "Use of weak random number generator" | ||
linters: | ||
- gosec | ||
- text: "ST1003:" | ||
linters: | ||
- stylecheck | ||
# FIXME: Disabled until golangci-lint updates stylecheck with this fix: | ||
# https://github.com/dominikh/go-tools/issues/389 | ||
- text: "ST1016:" | ||
linters: | ||
- stylecheck | ||
- path: "migrations" | ||
text: "SA1019:" | ||
linters: | ||
- staticcheck | ||
- text: "SA1019: codec.NewAminoCodec is deprecated" # TODO remove once migration path is set out | ||
linters: | ||
- staticcheck | ||
- text: "SA1019: legacybech32.MustMarshalPubKey" # TODO remove once ready to remove from the sdk | ||
linters: | ||
- staticcheck | ||
- text: "SA1019: legacybech32.MarshalPubKey" # TODO remove once ready to remove from the sdk | ||
linters: | ||
- staticcheck | ||
- text: "SA1019: legacybech32.UnmarshalPubKey" # TODO remove once ready to remove from the sdk | ||
linters: | ||
- staticcheck | ||
- text: "SA1019: params.SendEnabled is deprecated" # TODO remove once ready to remove from the sdk | ||
linters: | ||
- staticcheck | ||
- text: "leading space" | ||
linters: | ||
- nolintlint | ||
max-issues-per-linter: 10000 | ||
max-same-issues: 10000 | ||
|
||
linters-settings: | ||
gci: | ||
custom-order: true | ||
sections: | ||
- standard # Standard section: captures all standard packages. | ||
- default # Default section: contains all imports that could not be matched to another section type. | ||
- prefix(mods.irisnet.org) | ||
revive: | ||
rules: | ||
- name: redefines-builtin-id | ||
disabled: true | ||
|
||
gosec: | ||
# To select a subset of rules to run. | ||
# Available rules: https://github.com/securego/gosec#available-rules | ||
# Default: [] - means include all rules | ||
includes: | ||
# - G101 # Look for hard coded credentials | ||
- G102 # Bind to all interfaces | ||
- G103 # Audit the use of unsafe block | ||
- G104 # Audit errors not checked | ||
- G106 # Audit the use of ssh.InsecureIgnoreHostKey | ||
- G107 # Url provided to HTTP request as taint input | ||
- G108 # Profiling endpoint automatically exposed on /debug/pprof | ||
- G109 # Potential Integer overflow made by strconv.Atoi result conversion to int16/32 | ||
- G110 # Potential DoS vulnerability via decompression bomb | ||
- G111 # Potential directory traversal | ||
- G112 # Potential slowloris attack | ||
- G113 # Usage of Rat.SetString in math/big with an overflow (CVE-2022-23772) | ||
- G114 # Use of net/http serve function that has no support for setting timeouts | ||
- G201 # SQL query construction using format string | ||
- G202 # SQL query construction using string concatenation | ||
- G203 # Use of unescaped data in HTML templates | ||
- G204 # Audit use of command execution | ||
- G301 # Poor file permissions used when creating a directory | ||
- G302 # Poor file permissions used with chmod | ||
- G303 # Creating tempfile using a predictable path | ||
- G304 # File path provided as taint input | ||
- G305 # File traversal when extracting zip/tar archive | ||
- G306 # Poor file permissions used when writing to a new file | ||
- G307 # Deferring a method which returns an error | ||
- G401 # Detect the usage of DES, RC4, MD5 or SHA1 | ||
- G402 # Look for bad TLS connection settings | ||
- G403 # Ensure minimum RSA key length of 2048 bits | ||
- G404 # Insecure random number source (rand) | ||
- G501 # Import blocklist: crypto/md5 | ||
- G502 # Import blocklist: crypto/des | ||
- G503 # Import blocklist: crypto/rc4 | ||
- G504 # Import blocklist: net/http/cgi | ||
- G505 # Import blocklist: crypto/sha1 | ||
- G601 # Implicit memory aliasing of items from a range statement | ||
misspell: | ||
locale: US | ||
gofumpt: | ||
extra-rules: true | ||
dogsled: | ||
max-blank-identifiers: 6 | ||
nolintlint: | ||
allow-unused: false | ||
require-explanation: true | ||
require-specific: false | ||
gosimple: | ||
checks: ["all"] | ||
gocritic: | ||
disabled-checks: | ||
- regexpMust | ||
- appendAssign | ||
- ifElseChain |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,150 +1,8 @@ | ||
#!/usr/bin/make -f | ||
|
||
SIMAPP = ./simapp | ||
BINDIR ?= $(GOPATH)/bin | ||
CURRENT_DIR = $(shell pwd) | ||
|
||
PACKAGES_SIMTEST=$(shell go list ./... | grep '/simulation') | ||
PACKAGES_UNITTEST=$(shell go list ./... | grep -v '/simulation' | grep -v '/cli_test') | ||
DOCKER := $(shell which docker) | ||
DOCKER_BUF := $(DOCKER) run --rm -v $(CURDIR):/workspace --workdir /workspace bufbuild/buf:1.0.0-rc8 | ||
PROJECT_NAME = $(shell git remote get-url origin | xargs basename -s .git) | ||
|
||
ldflags = -X github.com/cosmos/cosmos-sdk/types.reDnmString=[a-zA-Z][a-zA-Z0-9/:]{2,127} | ||
|
||
all: tools lint | ||
|
||
# The below include contains the tools. | ||
include contrib/devtools/Makefile | ||
|
||
######################################## | ||
### Tools & dependencies | ||
|
||
go-mod-cache: go.sum | ||
@echo "--> Download go modules to local cache" | ||
@go mod download | ||
|
||
go.sum: go.mod | ||
@echo "--> Ensure dependencies have not been modified" | ||
@go mod verify | ||
|
||
draw-deps: | ||
@# requires brew install graphviz or apt-get install graphviz | ||
go get github.com/RobotsAndPencils/goviz | ||
@goviz -i ./cmd/iris -d 2 | dot -Tpng -o dependency-graph.png | ||
|
||
clean: | ||
rm -rf snapcraft-local.yaml build/ | ||
|
||
distclean: clean | ||
rm -rf vendor/ | ||
|
||
############################################################################### | ||
### Protobuf ### | ||
############################################################################### | ||
|
||
protoVer=0.13.0 | ||
protoImageName=ghcr.io/cosmos/proto-builder:$(protoVer) | ||
protoImage=$(DOCKER) run --rm -v $(CURDIR):/workspace --workdir /workspace $(protoImageName) | ||
|
||
proto-all: proto-format proto-lint proto-gen | ||
|
||
proto-gen: | ||
@echo "Generating Protobuf files" | ||
@$(protoImage) sh ./scripts/protocgen.sh | ||
|
||
proto-swagger-gen: | ||
@echo "Generating Protobuf Swagger" | ||
@$(protoImage) sh ./scripts/protoc-swagger-gen.sh | ||
|
||
proto-format: | ||
@$(protoImage) find ./ -name "*.proto" -exec clang-format -i {} \; | ||
|
||
proto-lint: | ||
@$(protoImage) buf lint --error-format=json | ||
|
||
######################################## | ||
### Testing | ||
|
||
test: test-unit | ||
|
||
test-unit: | ||
@VERSION=$(VERSION) go test -mod=readonly -tags='ledger test_ledger_mock' -ldflags '$(ldflags)' ${PACKAGES_UNITTEST} | ||
|
||
test-sim-nondeterminism: | ||
@echo "Running non-determinism test..." | ||
@cd ${CURRENT_DIR}/simapp && go test -mod=readonly -run TestAppStateDeterminism -Enabled=true \ | ||
-NumBlocks=100 -BlockSize=200 -Commit=true -Period=0 -v -timeout 24h | ||
|
||
test-sim-nondeterminism-fast: | ||
@echo "Running non-determinism test..." | ||
@cd ${CURRENT_DIR}/simapp && go test -mod=readonly -run TestAppStateDeterminism -Enabled=true \ | ||
-NumBlocks=10 -BlockSize=200 -Commit=true -Period=0 -v -timeout 24h | ||
|
||
test-sim-import-export: runsim | ||
@echo "Running application import/export simulation. This may take several minutes..." | ||
@cd ${CURRENT_DIR}/simapp && $(BINDIR)/runsim -Jobs=4 -SimAppPkg=. -ExitOnFail 50 5 TestAppImportExport | ||
|
||
test-sim-after-import: runsim | ||
@echo "Running application simulation-after-import. This may take several minutes..." | ||
@cd ${CURRENT_DIR}/simapp && $(BINDIR)/runsim -Jobs=4 -SimAppPkg=. -ExitOnFail 50 5 TestAppSimulationAfterImport | ||
|
||
test-sim-custom-genesis-multi-seed: runsim | ||
@echo "Running multi-seed custom genesis simulation..." | ||
@echo "By default, ${HOME}/.iris/config/genesis.json will be used." | ||
@$(BINDIR)/runsim -Genesis=${HOME}/.iris/config/genesis.json -SimAppPkg=$(SIMAPP) -ExitOnFail 400 5 TestFullAppSimulation | ||
|
||
test-sim-multi-seed-long: runsim | ||
@echo "Running long multi-seed application simulation. This may take awhile!" | ||
@$(BINDIR)/runsim -Jobs=4 -SimAppPkg=$(SIMAPP) -ExitOnFail 500 50 TestFullAppSimulation | ||
|
||
test-sim-multi-seed-short: runsim | ||
@echo "Running short multi-seed application simulation. This may take awhile!" | ||
@$(BINDIR)/runsim -Jobs=4 -SimAppPkg=$(SIMAPP) -ExitOnFail 50 10 TestFullAppSimulation | ||
|
||
test-sim-benchmark-invariants: | ||
@echo "Running simulation invariant benchmarks..." | ||
@go test -mod=readonly $(SIMAPP) -benchmem -bench=BenchmarkInvariants -run=^$ \ | ||
-Enabled=true -NumBlocks=1000 -BlockSize=200 \ | ||
-Period=1 -Commit=true -Seed=57 -v -timeout 24h | ||
|
||
lint: golangci-lint | ||
golangci-lint run | ||
find . -name '*.go' -type f -not -path "./vendor*" -not -path "*.git*" -not -path "./lite/*/statik.go" -not -path "*.pb.go" | xargs gofmt -d -s | ||
go mod verify | ||
|
||
format: | ||
find . -name '*.go' -type f -not -path "./vendor*" -not -path "*.git*" -not -path "./lite/*/statik.go" -not -path "*.pb.go" | xargs gofmt -w -s | ||
find . -name '*.go' -type f -not -path "./vendor*" -not -path "*.git*" -not -path "./lite/*/statik.go" -not -path "*.pb.go" | xargs misspell -w | ||
find . -name '*.go' -type f -not -path "./vendor*" -not -path "*.git*" -not -path "./lite/*/statik.go" -not -path "*.pb.go" -not -path "*.pulsar.go" | xargs goimports -w -local github.com/irisnet/irismod | ||
|
||
benchmark: | ||
@go test -mod=readonly -bench=. ./... | ||
|
||
############################################################################### | ||
### Compile Solidity Contracts ### | ||
############################################################################### | ||
|
||
CONTRACTS_DIR := contracts | ||
COMPILED_DIR := $(CONTRACTS_DIR)/compiled_contracts | ||
|
||
# Compile and format solidity contracts for the erc20 module. Also install | ||
# openzeppeling as the contracts are build on top of openzeppelin templates. | ||
contracts-compile: contracts-clean dep-install create-contracts-abi | ||
|
||
# Install openzeppelin solidity contracts | ||
dep-install: | ||
@echo "Importing openzeppelin contracts..." | ||
@npm install | ||
|
||
# Clean tmp files | ||
contracts-clean: | ||
@rm -rf node_modules | ||
|
||
# Compile, filter out and format contracts into the following format. | ||
create-contracts-abi: | ||
solc --combined-json abi,bin --optimize --optimize-runs 200 --evm-version paris --include-path node_modules --base-path $(CONTRACTS_DIR)/ $(CONTRACTS_DIR)/Token.sol | jq '.contracts["Token.sol:Token"]' > $(COMPILED_DIR)/Token.json \ | ||
&& solc --combined-json abi,bin --optimize --optimize-runs 200 --evm-version paris --include-path node_modules --base-path $(CONTRACTS_DIR)/ $(CONTRACTS_DIR)/TokenProxy.sol | jq '.contracts["TokenProxy.sol:TokenProxy"]' > $(COMPILED_DIR)/TokenProxy.json \ | ||
&& solc --combined-json abi,bin --optimize --optimize-runs 200 --evm-version paris --include-path node_modules --base-path $(CONTRACTS_DIR)/ $(CONTRACTS_DIR)/UpgradeableBeacon.sol | jq '.contracts["UpgradeableBeacon.sol:UpgradeableBeacon"]' > $(COMPILED_DIR)/UpgradeableBeacon.json \ | ||
|
||
|
||
include scripts/build/build.mk | ||
include scripts/build/godoc.mk | ||
include scripts/build/contract.mk | ||
include scripts/build/protobuf.mk | ||
include scripts/build/testing.mk | ||
include scripts/build/linting.mk |
Oops, something went wrong.