GODT-1553: RPC definition and mocks

WIP: updates

WIP: cache on disk and autostart.

WIP: mail, keychain and more.

WIP: updated grpc version in go mod file.

WIP: user list.

WIP: RPC service placeholder

WIP: test C++ RPC client skeleton.

Other: missing license script update.

WIP: use Qt test framework.

WIP: test for app and login calls.

WIP: test for update & cache on disk calls.

WIP: tests for mail settings calls.

WIP: all client tests.

WIP: linter fixes.

WIP: fix missing license link.

WIP: update dependency_license script for gRPC and protobuf.

WIP: removed unused file.

WIP: app & login event streaming tests.

WIP: update event stream tests.

WIP: completed event streaming tests.
This commit is contained in:
Xavier Michelon
2022-05-16 10:59:45 +02:00
committed by Jakub
parent b5321f8993
commit a4e54f063d
24 changed files with 49262 additions and 27 deletions

View File

@ -23,7 +23,12 @@ MISSING_FILES=$(find . \
-not -path "./vendor-cache/*" \
-not -path "./.cache/*" \
-not -name "*mock*.go" \
-regextype posix-egrep -regex ".*\.go|.*\.qml|.*\.sh|.*\.py" \
-not -path "*/cmake-build-*/*" \
-not -name "*.pb.go" \
-not -name "*.pb.h" \
-not -name "*.pb.cc" \
-not -name "*_moc.h" \
-regextype posix-egrep -regex ".*\.go|.*\.qml|.*\.sh|.*\.py|.*\.cpp|.*\.cc|.*\.h|.*\.hpp|.*\.m" \
-exec grep -L "Copyright (c) ${YEAR} Proton AG" {} \;)
for f in ${MISSING_FILES}