Bladeren bron

updated ignore file

bmallred 10 jaren geleden
bovenliggende
commit
e679388898
3 gewijzigde bestanden met toevoegingen van 62 en 59 verwijderingen
  1. 3 0
      .gitignore
  2. 29 29
      app/routes/routes.go
  3. 30 30
      app/tmp/main.go

+ 3 - 0
.gitignore

@ -21,3 +21,6 @@ _testmain.go
21 21
22 22
*.exe
23 23
*.test
24
test-results/
25
tmp/
26
routes/

+ 29 - 29
app/routes/routes.go

@ -71,35 +71,6 @@ func (_ tApp) Streak(
71 71
}
72 72
73 73
74
type tStatic struct {}
75
var Static tStatic
76
77
78
func (_ tStatic) Serve(
79
		prefix string,
80
		filepath string,
81
		) string {
82
	args := make(map[string]string)
83
	
84
	revel.Unbind(args, "prefix", prefix)
85
	revel.Unbind(args, "filepath", filepath)
86
	return revel.MainRouter.Reverse("Static.Serve", args).Url
87
}
88
89
func (_ tStatic) ServeModule(
90
		moduleName string,
91
		prefix string,
92
		filepath string,
93
		) string {
94
	args := make(map[string]string)
95
	
96
	revel.Unbind(args, "moduleName", moduleName)
97
	revel.Unbind(args, "prefix", prefix)
98
	revel.Unbind(args, "filepath", filepath)
99
	return revel.MainRouter.Reverse("Static.ServeModule", args).Url
100
}
101
102
103 74
type tTestRunner struct {}
104 75
var TestRunner tTestRunner
105 76
@ -130,3 +101,32 @@ func (_ tTestRunner) List(
130 101
}
131 102
132 103
104
type tStatic struct {}
105
var Static tStatic
106
107
108
func (_ tStatic) Serve(
109
		prefix string,
110
		filepath string,
111
		) string {
112
	args := make(map[string]string)
113
	
114
	revel.Unbind(args, "prefix", prefix)
115
	revel.Unbind(args, "filepath", filepath)
116
	return revel.MainRouter.Reverse("Static.Serve", args).Url
117
}
118
119
func (_ tStatic) ServeModule(
120
		moduleName string,
121
		prefix string,
122
		filepath string,
123
		) string {
124
	args := make(map[string]string)
125
	
126
	revel.Unbind(args, "moduleName", moduleName)
127
	revel.Unbind(args, "prefix", prefix)
128
	revel.Unbind(args, "filepath", filepath)
129
	return revel.MainRouter.Reverse("Static.ServeModule", args).Url
130
}
131
132

+ 30 - 30
app/tmp/main.go

@ -5,12 +5,12 @@ import (
5 5
	"flag"
6 6
	"reflect"
7 7
	"github.com/revel/revel"
8
	controllers0 "github.com/revel/revel/modules/static/app/controllers"
8
	_ "github.com/grassfed/app"
9
	controllers "github.com/grassfed/app/controllers"
10
	tests "github.com/grassfed/tests"
11
	controllers1 "github.com/revel/revel/modules/static/app/controllers"
9 12
	_ "github.com/revel/revel/modules/testrunner/app"
10
	controllers1 "github.com/revel/revel/modules/testrunner/app/controllers"
11
	_ "grassfed/app"
12
	controllers "grassfed/app/controllers"
13
	tests "grassfed/tests"
13
	controllers0 "github.com/revel/revel/modules/testrunner/app/controllers"
14 14
)
15 15
16 16
var (
@ -108,57 +108,57 @@ func main() {
108 108
			
109 109
		})
110 110
	
111
	revel.RegisterController((*controllers0.Static)(nil),
111
	revel.RegisterController((*controllers0.TestRunner)(nil),
112 112
		[]*revel.MethodType{
113 113
			&revel.MethodType{
114
				Name: "Serve",
114
				Name: "Index",
115 115
				Args: []*revel.MethodArg{ 
116
					&revel.MethodArg{Name: "prefix", Type: reflect.TypeOf((*string)(nil)) },
117
					&revel.MethodArg{Name: "filepath", Type: reflect.TypeOf((*string)(nil)) },
118 116
				},
119 117
				RenderArgNames: map[int][]string{ 
118
					46: []string{ 
119
						"testSuites",
120
					},
120 121
				},
121 122
			},
122 123
			&revel.MethodType{
123
				Name: "ServeModule",
124
				Name: "Run",
124 125
				Args: []*revel.MethodArg{ 
125
					&revel.MethodArg{Name: "moduleName", Type: reflect.TypeOf((*string)(nil)) },
126
					&revel.MethodArg{Name: "prefix", Type: reflect.TypeOf((*string)(nil)) },
127
					&revel.MethodArg{Name: "filepath", Type: reflect.TypeOf((*string)(nil)) },
126
					&revel.MethodArg{Name: "suite", Type: reflect.TypeOf((*string)(nil)) },
127
					&revel.MethodArg{Name: "test", Type: reflect.TypeOf((*string)(nil)) },
128 128
				},
129 129
				RenderArgNames: map[int][]string{ 
130
					69: []string{ 
131
						"error",
132
					},
130 133
				},
131 134
			},
132
			
133
		})
134
	
135
	revel.RegisterController((*controllers1.TestRunner)(nil),
136
		[]*revel.MethodType{
137 135
			&revel.MethodType{
138
				Name: "Index",
136
				Name: "List",
139 137
				Args: []*revel.MethodArg{ 
140 138
				},
141 139
				RenderArgNames: map[int][]string{ 
142
					46: []string{ 
143
						"testSuites",
144
					},
145 140
				},
146 141
			},
142
			
143
		})
144
	
145
	revel.RegisterController((*controllers1.Static)(nil),
146
		[]*revel.MethodType{
147 147
			&revel.MethodType{
148
				Name: "Run",
148
				Name: "Serve",
149 149
				Args: []*revel.MethodArg{ 
150
					&revel.MethodArg{Name: "suite", Type: reflect.TypeOf((*string)(nil)) },
151
					&revel.MethodArg{Name: "test", Type: reflect.TypeOf((*string)(nil)) },
150
					&revel.MethodArg{Name: "prefix", Type: reflect.TypeOf((*string)(nil)) },
151
					&revel.MethodArg{Name: "filepath", Type: reflect.TypeOf((*string)(nil)) },
152 152
				},
153 153
				RenderArgNames: map[int][]string{ 
154
					69: []string{ 
155
						"error",
156
					},
157 154
				},
158 155
			},
159 156
			&revel.MethodType{
160
				Name: "List",
157
				Name: "ServeModule",
161 158
				Args: []*revel.MethodArg{ 
159
					&revel.MethodArg{Name: "moduleName", Type: reflect.TypeOf((*string)(nil)) },
160
					&revel.MethodArg{Name: "prefix", Type: reflect.TypeOf((*string)(nil)) },
161
					&revel.MethodArg{Name: "filepath", Type: reflect.TypeOf((*string)(nil)) },
162 162
				},
163 163
				RenderArgNames: map[int][]string{ 
164 164
				},
@ -167,7 +167,7 @@ func main() {
167 167
		})
168 168
	
169 169
	revel.DefaultValidationKeys = map[string]map[int]string{ 
170
		"grassfed/app/controllers.App.Add": { 
170
		"github.com/grassfed/app/controllers.App.Add": { 
171 171
			26: "id",
172 172
			27: "product",
173 173
			28: "calories",