-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(test): add no test dir tests, rename testdata dir (#2986)
* add web_templates render tests * add ansic strip tests * move fixtures into testdata dir which is golang specific test dir name * add server/metrics tests * add recovery test * add runtime stats test
- Loading branch information
Showing
221 changed files
with
506 additions
and
276 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
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
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 |
---|---|---|
@@ -0,0 +1,79 @@ | ||
package templates | ||
|
||
import ( | ||
"io" | ||
"testing" | ||
"time" | ||
|
||
. "github.com/runatlantis/atlantis/testing" | ||
) | ||
|
||
func TestIndexTemplate(t *testing.T) { | ||
err := IndexTemplate.Execute(io.Discard, IndexData{ | ||
Locks: []LockIndexData{ | ||
{ | ||
LockPath: "lock path", | ||
RepoFullName: "repo full name", | ||
PullNum: 1, | ||
Path: "path", | ||
Workspace: "workspace", | ||
Time: time.Now(), | ||
TimeFormatted: "02-01-2006 15:04:05", | ||
}, | ||
}, | ||
ApplyLock: ApplyLockData{ | ||
Locked: true, | ||
Time: time.Now(), | ||
TimeFormatted: "02-01-2006 15:04:05", | ||
}, | ||
AtlantisVersion: "v0.0.0", | ||
CleanedBasePath: "/path", | ||
}) | ||
Ok(t, err) | ||
} | ||
|
||
func TestLockTemplate(t *testing.T) { | ||
err := LockTemplate.Execute(io.Discard, LockDetailData{ | ||
LockKeyEncoded: "lock key encoded", | ||
LockKey: "lock key", | ||
PullRequestLink: "https://example.com", | ||
LockedBy: "locked by", | ||
Workspace: "workspace", | ||
AtlantisVersion: "v0.0.0", | ||
CleanedBasePath: "/path", | ||
RepoOwner: "repo owner", | ||
RepoName: "repo name", | ||
}) | ||
Ok(t, err) | ||
} | ||
|
||
func TestProjectJobsTemplate(t *testing.T) { | ||
err := ProjectJobsTemplate.Execute(io.Discard, ProjectJobData{ | ||
AtlantisVersion: "v0.0.0", | ||
ProjectPath: "project path", | ||
CleanedBasePath: "/path", | ||
}) | ||
Ok(t, err) | ||
} | ||
|
||
func TestProjectJobsErrorTemplate(t *testing.T) { | ||
err := ProjectJobsTemplate.Execute(io.Discard, ProjectJobsError{ | ||
AtlantisVersion: "v0.0.0", | ||
ProjectPath: "project path", | ||
CleanedBasePath: "/path", | ||
}) | ||
Ok(t, err) | ||
} | ||
|
||
func TestGithubAppSetupTemplate(t *testing.T) { | ||
err := GithubAppSetupTemplate.Execute(io.Discard, GithubSetupData{ | ||
Target: "target", | ||
Manifest: "manifest", | ||
ID: 1, | ||
Key: "key", | ||
WebhookSecret: "webhook secret", | ||
URL: "https://example.com", | ||
CleanedBasePath: "/path", | ||
}) | ||
Ok(t, err) | ||
} |
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
Oops, something went wrong.