@@ -12,6 +12,8 @@ import (
12
12
"testing"
13
13
"time"
14
14
15
+ "github.com/numtide/treefmt/walk"
16
+
15
17
"github.com/numtide/treefmt/cmd"
16
18
17
19
"github.com/numtide/treefmt/config"
@@ -25,11 +27,6 @@ import (
25
27
26
28
"github.com/numtide/treefmt/test"
27
29
28
- "github.com/go-git/go-billy/v5/osfs"
29
- "github.com/go-git/go-git/v5"
30
- "github.com/go-git/go-git/v5/plumbing/cache"
31
- "github.com/go-git/go-git/v5/storage/filesystem"
32
-
33
30
"github.com/stretchr/testify/require"
34
31
)
35
32
@@ -733,7 +730,7 @@ func TestBustCacheOnFormatterChange(t *testing.T) {
733
730
})
734
731
}
735
732
736
- func TestGitWorktree (t * testing.T ) {
733
+ func TestGit (t * testing.T ) {
737
734
as := require .New (t )
738
735
739
736
tempDir := test .TempExamples (t )
@@ -751,20 +748,6 @@ func TestGitWorktree(t *testing.T) {
751
748
752
749
test .WriteConfig (t , configPath , cfg )
753
750
754
- // init a git repo
755
- repo , err := git .Init (
756
- filesystem .NewStorage (
757
- osfs .New (path .Join (tempDir , ".git" )),
758
- cache .NewObjectLRUDefault (),
759
- ),
760
- osfs .New (tempDir ),
761
- )
762
- as .NoError (err , "failed to init git repository" )
763
-
764
- // get worktree
765
- wt , err := repo .Worktree ()
766
- as .NoError (err , "failed to get git worktree" )
767
-
768
751
run := func (traversed int32 , matched int32 , formatted int32 , changed int32 ) {
769
752
_ , statz , err := treefmt (t , "-c" , "--config-file" , configPath , "--tree-root" , tempDir )
770
753
as .NoError (err )
@@ -777,16 +760,26 @@ func TestGitWorktree(t *testing.T) {
777
760
})
778
761
}
779
762
780
- // run before adding anything to the worktree
763
+ // init a git repo
764
+ gitCmd := exec .Command ("git" , "init" )
765
+ gitCmd .Dir = tempDir
766
+ as .NoError (gitCmd .Run (), "failed to init git repository" )
767
+
768
+ // run before adding anything to the index
781
769
run (0 , 0 , 0 , 0 )
782
770
783
- // add everything to the worktree
784
- as .NoError (wt .AddGlob ("." ))
785
- as .NoError (err )
771
+ // add everything to the index
772
+ gitCmd = exec .Command ("git" , "add" , "." )
773
+ gitCmd .Dir = tempDir
774
+ as .NoError (gitCmd .Run (), "failed to add everything to the index" )
775
+
786
776
run (32 , 32 , 32 , 0 )
787
777
788
- // remove python directory from the worktree
789
- as .NoError (wt .RemoveGlob ("python/*" ))
778
+ // remove python directory from the index
779
+ gitCmd = exec .Command ("git" , "rm" , "--cached" , "python/*" )
780
+ gitCmd .Dir = tempDir
781
+ as .NoError (gitCmd .Run (), "failed to remove python directory from the index" )
782
+
790
783
run (29 , 29 , 29 , 0 )
791
784
792
785
// remove nixpkgs.toml from the filesystem but leave it in the index
@@ -799,8 +792,9 @@ func TestGitWorktree(t *testing.T) {
799
792
as .NoError (err )
800
793
801
794
assertStats (t , as , statz , map [stats.Type ]int32 {
802
- stats .Traversed : 60 ,
803
- stats .Matched : 60 ,
795
+ stats .Traversed : 80 ,
796
+ stats .Matched : 80 ,
797
+ stats .Formatted : 80 ,
804
798
stats .Changed : 0 ,
805
799
})
806
800
@@ -1109,65 +1103,86 @@ func TestDeterministicOrderingInPipeline(t *testing.T) {
1109
1103
func TestRunInSubdir (t * testing.T ) {
1110
1104
as := require .New (t )
1111
1105
1112
- // capture current cwd, so we can replace it after the test is finished
1113
- cwd , err := os .Getwd ()
1114
- as .NoError (err )
1115
-
1116
- t .Cleanup (func () {
1117
- // return to the previous working directory
1118
- as .NoError (os .Chdir (cwd ))
1119
- })
1120
-
1121
- tempDir := test .TempExamples (t )
1122
- configPath := filepath .Join (tempDir , "/treefmt.toml" )
1123
-
1124
- // Also test that formatters are resolved relative to the treefmt root
1125
- echoPath , err := exec .LookPath ("echo" )
1126
- as .NoError (err )
1127
- echoRel := path .Join (tempDir , "echo" )
1128
- err = os .Symlink (echoPath , echoRel )
1129
- as .NoError (err )
1130
-
1131
- // change working directory to sub directory
1132
- as .NoError (os .Chdir (filepath .Join (tempDir , "elm" )))
1106
+ // Run the same test for each walk type
1107
+ for _ , walkType := range walk .TypeValues () {
1108
+ t .Run (walkType .String (), func (t * testing.T ) {
1109
+ // capture current cwd, so we can replace it after the test is finished
1110
+ cwd , err := os .Getwd ()
1111
+ as .NoError (err )
1112
+
1113
+ t .Cleanup (func () {
1114
+ // return to the previous working directory
1115
+ as .NoError (os .Chdir (cwd ))
1116
+ })
1117
+
1118
+ tempDir := test .TempExamples (t )
1119
+ configPath := filepath .Join (tempDir , "/treefmt.toml" )
1120
+
1121
+ // set the walk type via environment variable
1122
+ t .Setenv ("TREEFMT_WALK_TYPE" , walkType .String ())
1123
+
1124
+ // if we are testing git walking, init a git repo before continuing
1125
+ if walkType == walk .Git {
1126
+ // init a git repo
1127
+ gitCmd := exec .Command ("git" , "init" )
1128
+ gitCmd .Dir = tempDir
1129
+ as .NoError (gitCmd .Run (), "failed to init git repository" )
1130
+
1131
+ // add everything to the index
1132
+ gitCmd = exec .Command ("git" , "add" , "." )
1133
+ gitCmd .Dir = tempDir
1134
+ as .NoError (gitCmd .Run (), "failed to add everything to the index" )
1135
+ }
1133
1136
1134
- // basic config
1135
- cfg := & config.Config {
1136
- FormatterConfigs : map [string ]* config.Formatter {
1137
- "echo" : {
1138
- Command : "./echo" ,
1139
- Includes : []string {"*" },
1140
- },
1141
- },
1137
+ // test that formatters are resolved relative to the treefmt root
1138
+ echoPath , err := exec .LookPath ("echo" )
1139
+ as .NoError (err )
1140
+ echoRel := path .Join (tempDir , "echo" )
1141
+ err = os .Symlink (echoPath , echoRel )
1142
+ as .NoError (err )
1143
+
1144
+ // change working directory to subdirectory
1145
+ as .NoError (os .Chdir (filepath .Join (tempDir , "elm" )))
1146
+
1147
+ // basic config
1148
+ cfg := & config.Config {
1149
+ FormatterConfigs : map [string ]* config.Formatter {
1150
+ "echo" : {
1151
+ Command : "./echo" ,
1152
+ Includes : []string {"*" },
1153
+ },
1154
+ },
1155
+ }
1156
+ test .WriteConfig (t , configPath , cfg )
1157
+
1158
+ // without any path args, should reformat the whole tree
1159
+ _ , statz , err := treefmt (t )
1160
+ as .NoError (err )
1161
+
1162
+ assertStats (t , as , statz , map [stats.Type ]int32 {
1163
+ stats .Traversed : 32 ,
1164
+ stats .Matched : 32 ,
1165
+ stats .Formatted : 32 ,
1166
+ stats .Changed : 0 ,
1167
+ })
1168
+
1169
+ // specify some explicit paths, relative to the tree root
1170
+ // this should not work, as we're in a subdirectory
1171
+ _ , _ , err = treefmt (t , "-c" , "elm/elm.json" , "haskell/Nested/Foo.hs" )
1172
+ as .ErrorContains (err , "path elm/elm.json not found" )
1173
+
1174
+ // specify some explicit paths, relative to the current directory
1175
+ _ , statz , err = treefmt (t , "-c" , "elm.json" , "../haskell/Nested/Foo.hs" )
1176
+ as .NoError (err )
1177
+
1178
+ assertStats (t , as , statz , map [stats.Type ]int32 {
1179
+ stats .Traversed : 2 ,
1180
+ stats .Matched : 2 ,
1181
+ stats .Formatted : 2 ,
1182
+ stats .Changed : 0 ,
1183
+ })
1184
+ })
1142
1185
}
1143
- test .WriteConfig (t , configPath , cfg )
1144
-
1145
- // without any path args, should reformat the whole tree
1146
- _ , statz , err := treefmt (t )
1147
- as .NoError (err )
1148
-
1149
- assertStats (t , as , statz , map [stats.Type ]int32 {
1150
- stats .Traversed : 32 ,
1151
- stats .Matched : 32 ,
1152
- stats .Formatted : 32 ,
1153
- stats .Changed : 0 ,
1154
- })
1155
-
1156
- // specify some explicit paths, relative to the tree root
1157
- // this should not work, as we're in a subdirectory
1158
- _ , _ , err = treefmt (t , "-c" , "elm/elm.json" , "haskell/Nested/Foo.hs" )
1159
- as .ErrorContains (err , "path elm/elm.json not found" )
1160
-
1161
- // specify some explicit paths, relative to the current directory
1162
- _ , statz , err = treefmt (t , "-c" , "elm.json" , "../haskell/Nested/Foo.hs" )
1163
- as .NoError (err )
1164
-
1165
- assertStats (t , as , statz , map [stats.Type ]int32 {
1166
- stats .Traversed : 2 ,
1167
- stats .Matched : 2 ,
1168
- stats .Formatted : 2 ,
1169
- stats .Changed : 0 ,
1170
- })
1171
1186
}
1172
1187
1173
1188
func treefmt (t * testing.T , args ... string ) ([]byte , * stats.Stats , error ) {
0 commit comments