Skip to content

Commit b1ec51a

Browse files
authored
Modify Internal Protos to Conform to the Linter (#4230)
Modify the internal protobuf messages to conform to the linter. This way we can have the fewest exceptions to the lint rules which will reduce the feeling that the linter is inconsistent. * Enforce FIELD_LOWER_SNAKE_CASE proto rule for interservice protos * Enforce more linter rules on interservice protos * Add lint exception to compliance profile proto * I fought the type checker and won and then lost * fix the rest of event service test * prepare to normalize request type names for interservice * Enforce SERVICE_SUFFIX for protos where possible * Fix `build_all_changed` not failing on error * Add some doc comments to buf.yaml * More updates for service suffix style rule * Deployment proto service definition is external and shouldn't change * improve wording of buf.yaml rationale * More updates for service suffix * Fixup healthchecks for service suffix * Add exception to service suffix for the purge service * More service suffix fixes
1 parent c7ae75a commit b1ec51a

File tree

238 files changed

+6454
-6345
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

238 files changed

+6454
-6345
lines changed

.studio/common

+14-3
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,12 @@ function compile_client_mocks() {
134134
#
135135
# https://github.com/golang/mock/issues/156#issuecomment-586213812
136136
#
137-
mockgen_debug -destination cfgmgmt/service/cfgmgmt.pb.client_mock.go -package service -self_package github.com/chef/automate/api/interservice/cfgmgmt/service github.com/chef/automate/api/interservice/cfgmgmt/service CfgMgmtClient,CfgMgmt_NodeExportClient,CfgMgmt_ReportExportClient,CfgMgmtServer,CfgMgmt_NodeExportServer,CfgMgmt_ReportExportServer
137+
mockgen_debug -destination cfgmgmt/service/cfgmgmt.pb.client_mock.go \
138+
-package service \
139+
-self_package \
140+
github.com/chef/automate/api/interservice/cfgmgmt/service \
141+
github.com/chef/automate/api/interservice/cfgmgmt/service \
142+
CfgMgmtServiceClient,CfgMgmtService_NodeExportClient,CfgMgmtService_ReportExportClient,CfgMgmtServiceServer,CfgMgmtService_NodeExportServer,CfgMgmtService_ReportExportServer
138143
mockgen_debug -source ingest/chef.pb.go -destination ingest/chef.pb.client_mock.go -package ingest -self_package github.com/chef/automate/api/interservice/ingest
139144
mockgen_debug -source event_feed/event_feed.pb.go -destination event_feed/event_feed.pb.client_mock.go -package event_feed -self_package github.com/chef/automate/api/interservice/event_feed
140145
mockgen_debug -source nodemanager/manager/manager.pb.go -destination nodemanager/manager/manager.pb.client_mock.go -package manager -self_package github.com/chef/automate/api/interservice/nodemanager/manager
@@ -530,11 +535,17 @@ function build_all_changed_components() {
530535
if [[ -n "$whitelist" ]]; then
531536
if [[ "$whitelist" == *"$(basename "$component")"* ]]; then
532537
log_line "Building $component"
533-
build "$component"
538+
if ! build "$component"; then
539+
popd
540+
return 1
541+
fi
534542
fi
535543
else
536544
log_line "Building $component"
537-
build "$component"
545+
if ! build "$component"; then
546+
popd
547+
return 1
548+
fi
538549
fi
539550
done
540551
popd >/dev/null

.studio/ingest-service

+9-9
Original file line numberDiff line numberDiff line change
@@ -49,36 +49,36 @@ document "mark_nodes_missing" <<DOC
4949
Run the mark nodes missing job now
5050
DOC
5151
function mark_nodes_missing() {
52-
ingest_grpcurl_get chef.automate.domain.ingest.JobScheduler.MarkNodesMissing
52+
ingest_grpcurl_get chef.automate.domain.ingest.JobSchedulerService.MarkNodesMissing
5353
}
5454

5555
function ingest_version() {
56-
ingest_grpcurl_get chef.automate.domain.ingest.ChefIngester.GetVersion
56+
ingest_grpcurl_get chef.automate.domain.ingest.ChefIngesterService.GetVersion
5757
}
5858

5959
document "ingest_job_status" <<DOC
6060
Get the Job Scheduler's status
6161
DOC
6262
function ingest_job_status() {
63-
ingest_grpcurl_get chef.automate.domain.ingest.JobScheduler.GetStatusJobScheduler
63+
ingest_grpcurl_get chef.automate.domain.ingest.JobSchedulerService.GetStatusJobScheduler
6464
}
6565

6666
document "ingest_job_stop" <<DOC
6767
Stop the Job Scheduler
6868
DOC
6969
function ingest_job_stop() {
70-
ingest_grpcurl_get chef.automate.domain.ingest.JobScheduler.StopJobScheduler
70+
ingest_grpcurl_get chef.automate.domain.ingest.JobSchedulerService.StopJobScheduler
7171
}
7272

7373
document "ingest_job_start" <<DOC
7474
Start the Job Scheduler
7575
DOC
7676
function ingest_job_start() {
77-
ingest_grpcurl_get chef.automate.domain.ingest.JobScheduler.StartJobScheduler
77+
ingest_grpcurl_get chef.automate.domain.ingest.JobSchedulerService.StartJobScheduler
7878
}
7979

8080
function ingest_migration_status() {
81-
ingest_grpcurl_get chef.automate.domain.ingest.IngestStatus.GetMigrationStatus
81+
ingest_grpcurl_get chef.automate.domain.ingest.IngestStatusService.GetMigrationStatus
8282
}
8383

8484
function install_ingest_test_framework {
@@ -283,9 +283,9 @@ document "ingest_grpcurl_list_services" <<DOC
283283
284284
@(arg:1) Optional: An RPC service to inspec
285285
286-
Example: Inspect the ChefIngester service
286+
Example: Inspect the ChefIngesterService service
287287
-----------------------------
288-
ingest_grpcurl_list_services chef.automate.domain.ingest.ChefIngester
288+
ingest_grpcurl_list_services chef.automate.domain.ingest.ChefIngesterService
289289
DOC
290290
function ingest_grpcurl_list_services() {
291291
chef-automate dev grpcurl ingest-service -- list "$1"
@@ -298,7 +298,7 @@ document "ingest_grpcurl_get" <<DOC
298298
299299
Example: Get the migration status (GetMigrationStatus)
300300
-----------------------------
301-
ingest_grpcurl_get chef.automate.domain.ingest.IngestStatus.GetMigrationStatus
301+
ingest_grpcurl_get chef.automate.domain.ingest.IngestStatusService.GetMigrationStatus
302302
303303
NOTE: Run 'ingest_grpcurl_list_services' to inspec the RPC services.
304304
DOC

api/interservice/authn/authenticate.pb.client_mock.go

+28-28
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

api/interservice/authn/authenticate.pb.go

+39-39
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)