mirror of
				https://github.com/go-gitea/gitea
				synced 2025-11-04 05:18:25 +00:00 
			
		
		
		
	Replace assert.Fail with assert.FailNow (#27578)
assert.Fail() will continue to execute the code while assert.FailNow() not. I thought those uses of assert.Fail() should exit immediately. PS: perhaps it's a good idea to use [require](https://pkg.go.dev/github.com/stretchr/testify/require) somewhere because the assert package's default behavior does not exit when an error occurs, which makes it difficult to find the root error reason.
This commit is contained in:
		@@ -51,7 +51,7 @@ func Test_SSHParsePublicKey(t *testing.T) {
 | 
				
			|||||||
				if err != nil {
 | 
									if err != nil {
 | 
				
			||||||
					// Some servers do not support ecdsa format.
 | 
										// Some servers do not support ecdsa format.
 | 
				
			||||||
					if !strings.Contains(err.Error(), "line 1 too long:") {
 | 
										if !strings.Contains(err.Error(), "line 1 too long:") {
 | 
				
			||||||
						assert.Fail(t, "%v", err)
 | 
											assert.FailNow(t, "%v", err)
 | 
				
			||||||
					}
 | 
										}
 | 
				
			||||||
				}
 | 
									}
 | 
				
			||||||
				assert.Equal(t, tc.keyType, keyTypeK)
 | 
									assert.Equal(t, tc.keyType, keyTypeK)
 | 
				
			||||||
@@ -60,7 +60,7 @@ func Test_SSHParsePublicKey(t *testing.T) {
 | 
				
			|||||||
			t.Run("SSHParseKeyNative", func(t *testing.T) {
 | 
								t.Run("SSHParseKeyNative", func(t *testing.T) {
 | 
				
			||||||
				keyTypeK, lengthK, err := SSHNativeParsePublicKey(tc.content)
 | 
									keyTypeK, lengthK, err := SSHNativeParsePublicKey(tc.content)
 | 
				
			||||||
				if err != nil {
 | 
									if err != nil {
 | 
				
			||||||
					assert.Fail(t, "%v", err)
 | 
										assert.FailNow(t, "%v", err)
 | 
				
			||||||
				}
 | 
									}
 | 
				
			||||||
				assert.Equal(t, tc.keyType, keyTypeK)
 | 
									assert.Equal(t, tc.keyType, keyTypeK)
 | 
				
			||||||
				assert.EqualValues(t, tc.length, lengthK)
 | 
									assert.EqualValues(t, tc.length, lengthK)
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -47,8 +47,7 @@ func checkForConsistency(t assert.TestingT, bean any) {
 | 
				
			|||||||
	assert.NoError(t, err)
 | 
						assert.NoError(t, err)
 | 
				
			||||||
	f := consistencyCheckMap[tb.Name]
 | 
						f := consistencyCheckMap[tb.Name]
 | 
				
			||||||
	if f == nil {
 | 
						if f == nil {
 | 
				
			||||||
		assert.Fail(t, "unknown bean type: %#v", bean)
 | 
							assert.FailNow(t, "unknown bean type: %#v", bean)
 | 
				
			||||||
		return
 | 
					 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
	f(t, bean)
 | 
						f(t, bean)
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -83,8 +83,7 @@ func LoadRepo(t *testing.T, ctx gocontext.Context, repoID int64) {
 | 
				
			|||||||
		ctx.Repo = repo
 | 
							ctx.Repo = repo
 | 
				
			||||||
		doer = ctx.Doer
 | 
							doer = ctx.Doer
 | 
				
			||||||
	default:
 | 
						default:
 | 
				
			||||||
		assert.Fail(t, "context is not *context.Context or *context.APIContext")
 | 
							assert.FailNow(t, "context is not *context.Context or *context.APIContext")
 | 
				
			||||||
		return
 | 
					 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	repo.Repository = unittest.AssertExistsAndLoadBean(t, &repo_model.Repository{ID: repoID})
 | 
						repo.Repository = unittest.AssertExistsAndLoadBean(t, &repo_model.Repository{ID: repoID})
 | 
				
			||||||
@@ -105,8 +104,7 @@ func LoadRepoCommit(t *testing.T, ctx gocontext.Context) {
 | 
				
			|||||||
	case *context.APIContext:
 | 
						case *context.APIContext:
 | 
				
			||||||
		repo = ctx.Repo
 | 
							repo = ctx.Repo
 | 
				
			||||||
	default:
 | 
						default:
 | 
				
			||||||
		assert.Fail(t, "context is not *context.Context or *context.APIContext")
 | 
							assert.FailNow(t, "context is not *context.Context or *context.APIContext")
 | 
				
			||||||
		return
 | 
					 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	gitRepo, err := git.OpenRepository(ctx, repo.Repository.RepoPath())
 | 
						gitRepo, err := git.OpenRepository(ctx, repo.Repository.RepoPath())
 | 
				
			||||||
@@ -130,8 +128,7 @@ func LoadUser(t *testing.T, ctx gocontext.Context, userID int64) {
 | 
				
			|||||||
	case *context.APIContext:
 | 
						case *context.APIContext:
 | 
				
			||||||
		ctx.Doer = doer
 | 
							ctx.Doer = doer
 | 
				
			||||||
	default:
 | 
						default:
 | 
				
			||||||
		assert.Fail(t, "context is not *context.Context or *context.APIContext")
 | 
							assert.FailNow(t, "context is not *context.Context or *context.APIContext")
 | 
				
			||||||
		return
 | 
					 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -27,7 +27,7 @@ func Test_nulSeparatedAttributeWriter_ReadAttribute(t *testing.T) {
 | 
				
			|||||||
		assert.Equal(t, "linguist-vendored", attr.Attribute)
 | 
							assert.Equal(t, "linguist-vendored", attr.Attribute)
 | 
				
			||||||
		assert.Equal(t, "unspecified", attr.Value)
 | 
							assert.Equal(t, "unspecified", attr.Value)
 | 
				
			||||||
	case <-time.After(100 * time.Millisecond):
 | 
						case <-time.After(100 * time.Millisecond):
 | 
				
			||||||
		assert.Fail(t, "took too long to read an attribute from the list")
 | 
							assert.FailNow(t, "took too long to read an attribute from the list")
 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
	// Write a second attribute again
 | 
						// Write a second attribute again
 | 
				
			||||||
	n, err = wr.Write([]byte(testStr))
 | 
						n, err = wr.Write([]byte(testStr))
 | 
				
			||||||
@@ -41,7 +41,7 @@ func Test_nulSeparatedAttributeWriter_ReadAttribute(t *testing.T) {
 | 
				
			|||||||
		assert.Equal(t, "linguist-vendored", attr.Attribute)
 | 
							assert.Equal(t, "linguist-vendored", attr.Attribute)
 | 
				
			||||||
		assert.Equal(t, "unspecified", attr.Value)
 | 
							assert.Equal(t, "unspecified", attr.Value)
 | 
				
			||||||
	case <-time.After(100 * time.Millisecond):
 | 
						case <-time.After(100 * time.Millisecond):
 | 
				
			||||||
		assert.Fail(t, "took too long to read an attribute from the list")
 | 
							assert.FailNow(t, "took too long to read an attribute from the list")
 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	// Write a partial attribute
 | 
						// Write a partial attribute
 | 
				
			||||||
@@ -52,14 +52,14 @@ func Test_nulSeparatedAttributeWriter_ReadAttribute(t *testing.T) {
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
	select {
 | 
						select {
 | 
				
			||||||
	case <-wr.ReadAttribute():
 | 
						case <-wr.ReadAttribute():
 | 
				
			||||||
		assert.Fail(t, "There should not be an attribute ready to read")
 | 
							assert.FailNow(t, "There should not be an attribute ready to read")
 | 
				
			||||||
	case <-time.After(100 * time.Millisecond):
 | 
						case <-time.After(100 * time.Millisecond):
 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
	_, err = wr.Write([]byte("attribute\x00"))
 | 
						_, err = wr.Write([]byte("attribute\x00"))
 | 
				
			||||||
	assert.NoError(t, err)
 | 
						assert.NoError(t, err)
 | 
				
			||||||
	select {
 | 
						select {
 | 
				
			||||||
	case <-wr.ReadAttribute():
 | 
						case <-wr.ReadAttribute():
 | 
				
			||||||
		assert.Fail(t, "There should not be an attribute ready to read")
 | 
							assert.FailNow(t, "There should not be an attribute ready to read")
 | 
				
			||||||
	case <-time.After(100 * time.Millisecond):
 | 
						case <-time.After(100 * time.Millisecond):
 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -71,7 +71,6 @@ func TestRepository_GetTag(t *testing.T) {
 | 
				
			|||||||
	if lTag == nil {
 | 
						if lTag == nil {
 | 
				
			||||||
		assert.NotNil(t, lTag)
 | 
							assert.NotNil(t, lTag)
 | 
				
			||||||
		assert.FailNow(t, "nil lTag: %s", lTagName)
 | 
							assert.FailNow(t, "nil lTag: %s", lTagName)
 | 
				
			||||||
		return
 | 
					 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
	assert.EqualValues(t, lTagName, lTag.Name)
 | 
						assert.EqualValues(t, lTagName, lTag.Name)
 | 
				
			||||||
	assert.EqualValues(t, lTagCommitID, lTag.ID.String())
 | 
						assert.EqualValues(t, lTagCommitID, lTag.ID.String())
 | 
				
			||||||
@@ -105,7 +104,6 @@ func TestRepository_GetTag(t *testing.T) {
 | 
				
			|||||||
	if aTag == nil {
 | 
						if aTag == nil {
 | 
				
			||||||
		assert.NotNil(t, aTag)
 | 
							assert.NotNil(t, aTag)
 | 
				
			||||||
		assert.FailNow(t, "nil aTag: %s", aTagName)
 | 
							assert.FailNow(t, "nil aTag: %s", aTagName)
 | 
				
			||||||
		return
 | 
					 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
	assert.EqualValues(t, aTagName, aTag.Name)
 | 
						assert.EqualValues(t, aTagName, aTag.Name)
 | 
				
			||||||
	assert.EqualValues(t, aTagID, aTag.ID.String())
 | 
						assert.EqualValues(t, aTagID, aTag.ID.String())
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -96,11 +96,10 @@ func TestBleveIndexAndSearch(t *testing.T) {
 | 
				
			|||||||
	idx := bleve.NewIndexer(dir)
 | 
						idx := bleve.NewIndexer(dir)
 | 
				
			||||||
	_, err := idx.Init(context.Background())
 | 
						_, err := idx.Init(context.Background())
 | 
				
			||||||
	if err != nil {
 | 
						if err != nil {
 | 
				
			||||||
		assert.Fail(t, "Unable to create bleve indexer Error: %v", err)
 | 
					 | 
				
			||||||
		if idx != nil {
 | 
							if idx != nil {
 | 
				
			||||||
			idx.Close()
 | 
								idx.Close()
 | 
				
			||||||
		}
 | 
							}
 | 
				
			||||||
		return
 | 
							assert.FailNow(t, "Unable to create bleve indexer Error: %v", err)
 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
	defer idx.Close()
 | 
						defer idx.Close()
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@@ -118,11 +117,10 @@ func TestESIndexAndSearch(t *testing.T) {
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
	indexer := elasticsearch.NewIndexer(u, "gitea_codes")
 | 
						indexer := elasticsearch.NewIndexer(u, "gitea_codes")
 | 
				
			||||||
	if _, err := indexer.Init(context.Background()); err != nil {
 | 
						if _, err := indexer.Init(context.Background()); err != nil {
 | 
				
			||||||
		assert.Fail(t, "Unable to init ES indexer Error: %v", err)
 | 
					 | 
				
			||||||
		if indexer != nil {
 | 
							if indexer != nil {
 | 
				
			||||||
			indexer.Close()
 | 
								indexer.Close()
 | 
				
			||||||
		}
 | 
							}
 | 
				
			||||||
		return
 | 
							assert.FailNow(t, "Unable to init ES indexer Error: %v", err)
 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	defer indexer.Close()
 | 
						defer indexer.Close()
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -50,7 +50,7 @@ func TestManager_Cancel(t *testing.T) {
 | 
				
			|||||||
	select {
 | 
						select {
 | 
				
			||||||
	case <-ctx.Done():
 | 
						case <-ctx.Done():
 | 
				
			||||||
	default:
 | 
						default:
 | 
				
			||||||
		assert.Fail(t, "Cancel should cancel the provided context")
 | 
							assert.FailNow(t, "Cancel should cancel the provided context")
 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
	finished()
 | 
						finished()
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@@ -62,7 +62,7 @@ func TestManager_Cancel(t *testing.T) {
 | 
				
			|||||||
	select {
 | 
						select {
 | 
				
			||||||
	case <-ctx.Done():
 | 
						case <-ctx.Done():
 | 
				
			||||||
	default:
 | 
						default:
 | 
				
			||||||
		assert.Fail(t, "Cancel should cancel the provided context")
 | 
							assert.FailNow(t, "Cancel should cancel the provided context")
 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
	finished()
 | 
						finished()
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -54,7 +54,7 @@ func TestPullRequest_AddToTaskQueue(t *testing.T) {
 | 
				
			|||||||
	case id := <-idChan:
 | 
						case id := <-idChan:
 | 
				
			||||||
		assert.EqualValues(t, pr.ID, id)
 | 
							assert.EqualValues(t, pr.ID, id)
 | 
				
			||||||
	case <-time.After(time.Second):
 | 
						case <-time.After(time.Second):
 | 
				
			||||||
		assert.Fail(t, "Timeout: nothing was added to pullRequestQueue")
 | 
							assert.FailNow(t, "Timeout: nothing was added to pullRequestQueue")
 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	has, err = prPatchCheckerQueue.Has(strconv.FormatInt(pr.ID, 10))
 | 
						has, err = prPatchCheckerQueue.Has(strconv.FormatInt(pr.ID, 10))
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -296,7 +296,7 @@ func TestPackageConan(t *testing.T) {
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
						assert.Equal(t, int64(len(contentConaninfo)), pb.Size)
 | 
											assert.Equal(t, int64(len(contentConaninfo)), pb.Size)
 | 
				
			||||||
					} else {
 | 
										} else {
 | 
				
			||||||
						assert.Fail(t, "unknown file: %s", pf.Name)
 | 
											assert.FailNow(t, "unknown file: %s", pf.Name)
 | 
				
			||||||
					}
 | 
										}
 | 
				
			||||||
				}
 | 
									}
 | 
				
			||||||
			})
 | 
								})
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -349,7 +349,7 @@ func TestPackageContainer(t *testing.T) {
 | 
				
			|||||||
								assert.Equal(t, "application/vnd.docker.image.rootfs.diff.tar.gzip", pfd.Properties.GetByName(container_module.PropertyMediaType))
 | 
													assert.Equal(t, "application/vnd.docker.image.rootfs.diff.tar.gzip", pfd.Properties.GetByName(container_module.PropertyMediaType))
 | 
				
			||||||
								assert.Equal(t, blobDigest, pfd.Properties.GetByName(container_module.PropertyDigest))
 | 
													assert.Equal(t, blobDigest, pfd.Properties.GetByName(container_module.PropertyDigest))
 | 
				
			||||||
							default:
 | 
												default:
 | 
				
			||||||
								assert.Fail(t, "unknown file: %s", pfd.File.Name)
 | 
													assert.FailNow(t, "unknown file: %s", pfd.File.Name)
 | 
				
			||||||
							}
 | 
												}
 | 
				
			||||||
						}
 | 
											}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -326,7 +326,7 @@ AAAjQmxvYgAAAGm7ENm9SGxMtAFVvPUsPJTF6PbtAAAAAFcVogEJAAAAAQAAAA==`)
 | 
				
			|||||||
					assert.Equal(t, nuget_module.PropertySymbolID, pps[0].Name)
 | 
										assert.Equal(t, nuget_module.PropertySymbolID, pps[0].Name)
 | 
				
			||||||
					assert.Equal(t, symbolID, pps[0].Value)
 | 
										assert.Equal(t, symbolID, pps[0].Value)
 | 
				
			||||||
				default:
 | 
									default:
 | 
				
			||||||
					assert.Fail(t, "unexpected file: %v", pf.Name)
 | 
										assert.FailNow(t, "unexpected file: %v", pf.Name)
 | 
				
			||||||
				}
 | 
									}
 | 
				
			||||||
			}
 | 
								}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -368,7 +368,7 @@ func TestAPIRepoMigrate(t *testing.T) {
 | 
				
			|||||||
			case "You can not import from disallowed hosts.":
 | 
								case "You can not import from disallowed hosts.":
 | 
				
			||||||
				assert.EqualValues(t, "private-ip", testCase.repoName)
 | 
									assert.EqualValues(t, "private-ip", testCase.repoName)
 | 
				
			||||||
			default:
 | 
								default:
 | 
				
			||||||
				assert.Failf(t, "unexpected error '%v' on url '%s'", respJSON["message"], testCase.cloneURL)
 | 
									assert.FailNow(t, "unexpected error '%v' on url '%s'", respJSON["message"], testCase.cloneURL)
 | 
				
			||||||
			}
 | 
								}
 | 
				
			||||||
		} else {
 | 
							} else {
 | 
				
			||||||
			assert.EqualValues(t, testCase.expectedStatus, resp.Code)
 | 
								assert.EqualValues(t, testCase.expectedStatus, resp.Code)
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -483,8 +483,7 @@ func runTestCase(t *testing.T, testCase *requiredScopeTestCase, user *user_model
 | 
				
			|||||||
				} else if minRequiredLevel == auth_model.Write {
 | 
									} else if minRequiredLevel == auth_model.Write {
 | 
				
			||||||
					unauthorizedLevel = auth_model.Read
 | 
										unauthorizedLevel = auth_model.Read
 | 
				
			||||||
				} else {
 | 
									} else {
 | 
				
			||||||
					assert.Failf(t, "Invalid test case", "Unknown access token scope level: %v", minRequiredLevel)
 | 
										assert.FailNow(t, "Invalid test case: Unknown access token scope level: %v", minRequiredLevel)
 | 
				
			||||||
					return
 | 
					 | 
				
			||||||
				}
 | 
									}
 | 
				
			||||||
			}
 | 
								}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -106,12 +106,10 @@ func TestGPGGit(t *testing.T) {
 | 
				
			|||||||
					assert.NotNil(t, response.Verification)
 | 
										assert.NotNil(t, response.Verification)
 | 
				
			||||||
					if response.Verification == nil {
 | 
										if response.Verification == nil {
 | 
				
			||||||
						assert.FailNow(t, "no verification provided with response! %v", response)
 | 
											assert.FailNow(t, "no verification provided with response! %v", response)
 | 
				
			||||||
						return
 | 
					 | 
				
			||||||
					}
 | 
										}
 | 
				
			||||||
					assert.True(t, response.Verification.Verified)
 | 
										assert.True(t, response.Verification.Verified)
 | 
				
			||||||
					if !response.Verification.Verified {
 | 
										if !response.Verification.Verified {
 | 
				
			||||||
						t.FailNow()
 | 
											t.FailNow()
 | 
				
			||||||
						return
 | 
					 | 
				
			||||||
					}
 | 
										}
 | 
				
			||||||
					assert.Equal(t, "gitea@fake.local", response.Verification.Signer.Email)
 | 
										assert.Equal(t, "gitea@fake.local", response.Verification.Signer.Email)
 | 
				
			||||||
				}))
 | 
									}))
 | 
				
			||||||
@@ -120,12 +118,10 @@ func TestGPGGit(t *testing.T) {
 | 
				
			|||||||
					assert.NotNil(t, response.Verification)
 | 
										assert.NotNil(t, response.Verification)
 | 
				
			||||||
					if response.Verification == nil {
 | 
										if response.Verification == nil {
 | 
				
			||||||
						assert.FailNow(t, "no verification provided with response! %v", response)
 | 
											assert.FailNow(t, "no verification provided with response! %v", response)
 | 
				
			||||||
						return
 | 
					 | 
				
			||||||
					}
 | 
										}
 | 
				
			||||||
					assert.True(t, response.Verification.Verified)
 | 
										assert.True(t, response.Verification.Verified)
 | 
				
			||||||
					if !response.Verification.Verified {
 | 
										if !response.Verification.Verified {
 | 
				
			||||||
						t.FailNow()
 | 
											t.FailNow()
 | 
				
			||||||
						return
 | 
					 | 
				
			||||||
					}
 | 
										}
 | 
				
			||||||
					assert.Equal(t, "gitea@fake.local", response.Verification.Signer.Email)
 | 
										assert.Equal(t, "gitea@fake.local", response.Verification.Signer.Email)
 | 
				
			||||||
				}))
 | 
									}))
 | 
				
			||||||
@@ -140,12 +136,10 @@ func TestGPGGit(t *testing.T) {
 | 
				
			|||||||
					assert.NotNil(t, response.Verification)
 | 
										assert.NotNil(t, response.Verification)
 | 
				
			||||||
					if response.Verification == nil {
 | 
										if response.Verification == nil {
 | 
				
			||||||
						assert.FailNow(t, "no verification provided with response! %v", response)
 | 
											assert.FailNow(t, "no verification provided with response! %v", response)
 | 
				
			||||||
						return
 | 
					 | 
				
			||||||
					}
 | 
										}
 | 
				
			||||||
					assert.True(t, response.Verification.Verified)
 | 
										assert.True(t, response.Verification.Verified)
 | 
				
			||||||
					if !response.Verification.Verified {
 | 
										if !response.Verification.Verified {
 | 
				
			||||||
						t.FailNow()
 | 
											t.FailNow()
 | 
				
			||||||
						return
 | 
					 | 
				
			||||||
					}
 | 
										}
 | 
				
			||||||
					assert.Equal(t, "gitea@fake.local", response.Verification.Signer.Email)
 | 
										assert.Equal(t, "gitea@fake.local", response.Verification.Signer.Email)
 | 
				
			||||||
				}))
 | 
									}))
 | 
				
			||||||
@@ -160,17 +154,14 @@ func TestGPGGit(t *testing.T) {
 | 
				
			|||||||
				assert.NotNil(t, branch.Commit)
 | 
									assert.NotNil(t, branch.Commit)
 | 
				
			||||||
				if branch.Commit == nil {
 | 
									if branch.Commit == nil {
 | 
				
			||||||
					assert.FailNow(t, "no commit provided with branch! %v", branch)
 | 
										assert.FailNow(t, "no commit provided with branch! %v", branch)
 | 
				
			||||||
					return
 | 
					 | 
				
			||||||
				}
 | 
									}
 | 
				
			||||||
				assert.NotNil(t, branch.Commit.Verification)
 | 
									assert.NotNil(t, branch.Commit.Verification)
 | 
				
			||||||
				if branch.Commit.Verification == nil {
 | 
									if branch.Commit.Verification == nil {
 | 
				
			||||||
					assert.FailNow(t, "no verification provided with branch commit! %v", branch.Commit)
 | 
										assert.FailNow(t, "no verification provided with branch commit! %v", branch.Commit)
 | 
				
			||||||
					return
 | 
					 | 
				
			||||||
				}
 | 
									}
 | 
				
			||||||
				assert.True(t, branch.Commit.Verification.Verified)
 | 
									assert.True(t, branch.Commit.Verification.Verified)
 | 
				
			||||||
				if !branch.Commit.Verification.Verified {
 | 
									if !branch.Commit.Verification.Verified {
 | 
				
			||||||
					t.FailNow()
 | 
										t.FailNow()
 | 
				
			||||||
					return
 | 
					 | 
				
			||||||
				}
 | 
									}
 | 
				
			||||||
				assert.Equal(t, "gitea@fake.local", branch.Commit.Verification.Signer.Email)
 | 
									assert.Equal(t, "gitea@fake.local", branch.Commit.Verification.Signer.Email)
 | 
				
			||||||
			}))
 | 
								}))
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user