Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feature/template improvements #54

Closed
wants to merge 14 commits into from

Conversation

aorfanos
Copy link
Contributor

@aorfanos aorfanos commented Sep 9, 2021

Allows use of a custom alert message template file.

Example invocation would be: -alert-template-file=alertfile.md .

I have commented out Test_formatIssueBody because I'm still working my way to make it work.


This change is Reviewable

@coveralls
Copy link

coveralls commented Sep 9, 2021

Pull Request Test Coverage Report for Build 171

  • 17 of 19 (89.47%) changed or added relevant lines in 4 files are covered.
  • No unchanged relevant lines lost coverage.
  • Overall coverage decreased (-0.5%) to 99.516%

Changes Missing Coverage Covered Lines Changed/Added Lines %
alerts/handler.go 7 9 77.78%
Totals Coverage Status
Change from base Build 162: -0.5%
Covered Lines: 411
Relevant Lines: 413

💛 - Coveralls

@Limess
Copy link

Limess commented Jun 1, 2022

We just started looking at using this project, this feature is a must have though - it'd be great to see this merged and released so we don't have to build and maintain a fork.

@SaiedKazemi SaiedKazemi changed the base branch from master to main August 11, 2022 15:39
@stephen-soltesz
Copy link
Contributor

Thank you for this change @aorfanos - I'm taking a look now. I'm not sure how we missed it this long.

@aorfanos
Copy link
Contributor Author

I've forgotten about it as well - better late than never 😄

Copy link
Contributor

@stephen-soltesz stephen-soltesz left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

If you still have a moment, a few small tweaks and complete unit test coverage, and I'd be happy to accept. (You should be able to access reviewable for replies to specific comments). Please let me know when I should take another look.

Reviewed 3 of 6 files at r1, 1 of 3 files at r2.
Reviewable status: 0 of 1 LGTMs obtained


alerts/handler.go line 184 at r2 (raw file):

			msgBody, err := rh.formatIssueBody(msg)
			if err != nil {
				return fmt.Errorf("format body for %q: %s", msg.GroupKey, err)

Is it possible to get unit test coverage for this error condition?


alerts/handler_test.go line 247 at r2 (raw file):

				},
			},
			titleTmpl: 	   `{{ (index .Data.Alerts 1).Status }}`,

Please run go fmt on all files.


alerts/template_test.go line 62 at r2 (raw file):

			body, err := rh.formatIssueBody(&msg)
			if tc.expectErrTxt == "" && err != nil {

Please simplify the conditional logic verifying the test; I see this is like the one below (it's on me for approving originally! I'll fix it after this change) but I find both hard to follow.

I recommend the (slightly modified) pattern auto-generated by VSCode's "Generate Unit Tests" for this function in Go.

Whether there was an error is sufficient; inspecting the error string content is not necessary imo. We know it will be due to the template execution by inspection.

For example:

func Test_formatIssueBody(t *testing.T) {
	tests := []struct {
		name     string
		template string
		want     string
		wantErr  bool
	}{
		{
			name:     "success",
			template: "foo",
			want:     "foo",
			wantErr:  false,
		},
	}
	for _, tt := range tests {
		t.Run(tt.name, func(t *testing.T) {
			got, err := formatIssueBody(tt.args.msg)
			if (err != nil) != tt.wantErr {
				t.Errorf("formatIssueBody() error = %v, wantErr %v", err, tt.wantErr)
				return
			}
			if got != tt.want {
				t.Errorf("formatIssueBody() = %v, want %v", got, tt.want)
			}
		})
	}
}

@stephen-soltesz
Copy link
Contributor

@aorfanos thank you for this change - the logic here was the basis of #59 now merged (your contribution is acknowledged in the commit). We'll prepare a new release this week. I'll close this PR since the functionality is now merged to the main branch.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants