Skip to content

Commit 6c816d5

Browse files
committed
Ruby: Move ActionDispatch tests to own directory
1 parent 58d7af4 commit 6c816d5

File tree

11 files changed

+228
-140
lines changed

11 files changed

+228
-140
lines changed

ruby/ql/test/library-tests/frameworks/ActionDispatch.expected

Lines changed: 0 additions & 139 deletions
This file was deleted.
Lines changed: 68 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,68 @@
1+
actionDispatchRoutes
2+
| app/config/routes.rb:2:3:8:5 | call to resources | get | posts | posts | index |
3+
| app/config/routes.rb:2:3:8:5 | call to resources | get | posts/:id | posts | show |
4+
| app/config/routes.rb:3:5:6:7 | call to resources | delete | posts/:post_id/comments/:id | comments | destroy |
5+
| app/config/routes.rb:3:5:6:7 | call to resources | get | posts/:post_id/comments | comments | index |
6+
| app/config/routes.rb:3:5:6:7 | call to resources | get | posts/:post_id/comments/:id | comments | show |
7+
| app/config/routes.rb:3:5:6:7 | call to resources | get | posts/:post_id/comments/new | comments | new |
8+
| app/config/routes.rb:3:5:6:7 | call to resources | get | posts/:post_id/comments:id/edit | comments | edit |
9+
| app/config/routes.rb:3:5:6:7 | call to resources | patch | posts/:post_id/comments/:id | comments | update |
10+
| app/config/routes.rb:3:5:6:7 | call to resources | post | posts/:post_id/comments | comments | create |
11+
| app/config/routes.rb:3:5:6:7 | call to resources | put | posts/:post_id/comments/:id | comments | update |
12+
| app/config/routes.rb:4:7:4:41 | call to resources | post | posts/:post_id/comments/:comment_id/replies | replies | create |
13+
| app/config/routes.rb:5:7:5:28 | call to post | post | posts/:post_id/comments/:comment_id/flag | comments | flag |
14+
| app/config/routes.rb:7:5:7:37 | call to post | post | posts/:post_id/upvote | posts | upvote |
15+
| app/config/routes.rb:11:5:11:54 | call to post | post | destroy_all_posts | posts | destroy_alll |
16+
| app/config/routes.rb:15:5:15:46 | call to get | get | numbers/:number | numbers | show |
17+
| app/config/routes.rb:19:5:19:44 | call to get | get | admin/jobs | background_jobs | index |
18+
| app/config/routes.rb:23:5:23:64 | call to get | get | admin/secrets | secrets | view_secrets |
19+
| app/config/routes.rb:24:5:24:42 | call to delete | delete | admin/:user_id | users | destroy |
20+
| app/config/routes.rb:27:3:27:48 | call to match | get | photos/:id | photos | show |
21+
| app/config/routes.rb:28:3:28:50 | call to match | get | photos/:id | photos | show |
22+
| app/config/routes.rb:29:3:29:69 | call to match | get | photos/:id | photos | show |
23+
| app/config/routes.rb:30:3:30:50 | call to match | delete | photos/:id | photos | show |
24+
| app/config/routes.rb:30:3:30:50 | call to match | get | photos/:id | photos | show |
25+
| app/config/routes.rb:30:3:30:50 | call to match | patch | photos/:id | photos | show |
26+
| app/config/routes.rb:30:3:30:50 | call to match | post | photos/:id | photos | show |
27+
| app/config/routes.rb:30:3:30:50 | call to match | put | photos/:id | photos | show |
28+
| app/config/routes.rb:33:5:33:43 | call to post | post | upgrade | users | start_upgrade |
29+
| app/config/routes.rb:37:5:37:31 | call to get | get | current_billing_cycle | billing/enterprise | current_billing_cycle |
30+
| app/config/routes.rb:40:3:40:40 | call to resource | get | global_config | global_config | show |
31+
| app/config/routes.rb:43:5:45:7 | call to resources | get | foo/bar | foo/bar | index |
32+
| app/config/routes.rb:43:5:45:7 | call to resources | get | foo/bar/:id | foo/bar | show |
33+
| app/config/routes.rb:44:7:44:39 | call to get | get | foo/bar/:bar_id/show_debug | foo/bar | show_debug |
34+
| app/config/routes.rb:49:5:49:95 | call to delete | delete | users/:user/notifications | users/notifications | destroy |
35+
| app/config/routes.rb:50:5:50:94 | call to post | post | users/:user/notifications/:notification_id/mark_as_read | users/notifications | mark_as_read |
36+
actionDispatchControllerMethods
37+
| app/config/routes.rb:2:3:8:5 | call to resources | app/controllers/posts_controller.rb:2:3:3:5 | index |
38+
| app/config/routes.rb:2:3:8:5 | call to resources | app/controllers/posts_controller.rb:5:3:6:5 | show |
39+
| app/config/routes.rb:3:5:6:7 | call to resources | app/controllers/comments_controller.rb:2:3:36:5 | index |
40+
| app/config/routes.rb:3:5:6:7 | call to resources | app/controllers/comments_controller.rb:38:3:39:5 | show |
41+
| app/config/routes.rb:7:5:7:37 | call to post | app/controllers/posts_controller.rb:8:3:9:5 | upvote |
42+
| app/config/routes.rb:27:3:27:48 | call to match | app/controllers/photos_controller.rb:2:3:3:5 | show |
43+
| app/config/routes.rb:28:3:28:50 | call to match | app/controllers/photos_controller.rb:2:3:3:5 | show |
44+
| app/config/routes.rb:29:3:29:69 | call to match | app/controllers/photos_controller.rb:2:3:3:5 | show |
45+
| app/config/routes.rb:30:3:30:50 | call to match | app/controllers/photos_controller.rb:2:3:3:5 | show |
46+
| app/config/routes.rb:50:5:50:94 | call to post | app/controllers/users/notifications_controller.rb:3:5:4:7 | mark_as_read |
47+
underscore
48+
| Foo | foo |
49+
| Foo::Bar | foo/bar |
50+
| Foo::Bar::Baz | foo/bar/baz |
51+
| Foo::Bar::BazQuux | foo/bar/baz_quux |
52+
| FooBar | foo_bar |
53+
| FooBar::Baz | foo_bar/baz |
54+
| HTTPServerRequest | httpserver_request |
55+
| LotsOfCapitalLetters | lots_of_capital_letters |
56+
| invalid | invalid |
57+
mimeTypeInstances
58+
| mime_type.rb:2:6:2:28 | Use getMember("Mime").getContent(element_text/html) |
59+
| mime_type.rb:3:6:3:32 | Use getMember("Mime").getMember("Type").getMethod("new").getReturn() |
60+
| mime_type.rb:4:6:4:35 | Use getMember("Mime").getMember("Type").getMethod("lookup").getReturn() |
61+
| mime_type.rb:5:6:5:43 | Use getMember("Mime").getMember("Type").getMethod("lookup_by_extension").getReturn() |
62+
| mime_type.rb:6:6:6:47 | Use getMember("Mime").getMember("Type").getMethod("register").getReturn() |
63+
| mime_type.rb:7:6:7:64 | Use getMember("Mime").getMember("Type").getMethod("register_alias").getReturn() |
64+
mimeTypeMatchRegExpInterpretations
65+
| mime_type.rb:11:11:11:19 | "foo/bar" |
66+
| mime_type.rb:12:7:12:15 | "foo/bar" |
67+
| mime_type.rb:13:11:13:11 | s |
68+
| mime_type.rb:14:7:14:7 | s |

0 commit comments

Comments
 (0)