Description:
added test_pair model
Commit status:
[Not Reviewed]
References:
Diff options:
Comments:
0 Commit comments
0 Inline Comments
Unresolved TODOs:
There are no unresolved TODOs
r209:491c30075d87 - - 6 files changed: 47 inserted, 1 deleted
@@ -0,0 +1,15 | |||
|
1 | + class CreateTestPairs < ActiveRecord::Migration | |
|
2 | + def self.up | |
|
3 | + create_table :test_pairs do |t| | |
|
4 | + t.integer :problem_id | |
|
5 | + t.text :input | |
|
6 | + t.text :solution | |
|
7 | + | |
|
8 | + t.timestamps | |
|
9 | + end | |
|
10 | + end | |
|
11 | + | |
|
12 | + def self.down | |
|
13 | + drop_table :test_pairs | |
|
14 | + end | |
|
15 | + end |
@@ -0,0 +1,11 | |||
|
1 | + # Read about fixtures at http://ar.rubyonrails.org/classes/Fixtures.html | |
|
2 | + | |
|
3 | + one: | |
|
4 | + problem_id: 1 | |
|
5 | + input: MyText | |
|
6 | + solution: MyText | |
|
7 | + | |
|
8 | + two: | |
|
9 | + problem_id: 1 | |
|
10 | + input: MyText | |
|
11 | + solution: MyText |
@@ -0,0 +1,8 | |||
|
1 | + require 'test_helper' | |
|
2 | + | |
|
3 | + class TestPairTest < ActiveSupport::TestCase | |
|
4 | + # Replace this with your real tests. | |
|
5 | + test "the truth" do | |
|
6 | + assert true | |
|
7 | + end | |
|
8 | + end |
@@ -1,93 +1,94 | |||
|
1 | 1 | class Problem < ActiveRecord::Base |
|
2 | 2 | |
|
3 | 3 | belongs_to :description |
|
4 | + has_many :test_pairs | |
|
4 | 5 | |
|
5 | 6 | validates_presence_of :name |
|
6 | 7 | validates_format_of :name, :with => /^\w+$/ |
|
7 | 8 | validates_presence_of :full_name |
|
8 | 9 | |
|
9 | 10 | DEFAULT_TIME_LIMIT = 1 |
|
10 | 11 | DEFAULT_MEMORY_LIMIT = 32 |
|
11 | 12 | |
|
12 | 13 | def self.find_available_problems |
|
13 | 14 | find(:all, :conditions => {:available => true}, :order => "date_added DESC") |
|
14 | 15 | end |
|
15 | 16 | |
|
16 | 17 | def self.new_from_import_form_params(params) |
|
17 | 18 | problem = Problem.new |
|
18 | 19 | import_params = Problem.extract_params_and_check(params, problem) |
|
19 | 20 | |
|
20 | 21 | if not problem.valid? |
|
21 | 22 | return problem |
|
22 | 23 | end |
|
23 | 24 | |
|
24 | 25 | importer = TestdataImporter.new |
|
25 | 26 | |
|
26 | 27 | if not importer.import_from_file(problem.name, |
|
27 | 28 | import_params[:file], |
|
28 | 29 | import_params[:time_limit], |
|
29 | 30 | import_params[:memory_limit]) |
|
30 | 31 | problem.errors.add_to_base('Import error.') |
|
31 | 32 | end |
|
32 | 33 | |
|
33 | 34 | problem.full_score = 100 |
|
34 | 35 | problem.date_added = Time.new |
|
35 | 36 | problem.test_allowed = true |
|
36 | 37 | problem.output_only = false |
|
37 | 38 | problem.available = false |
|
38 | 39 | return problem, importer.log_msg |
|
39 | 40 | end |
|
40 | 41 | |
|
41 | 42 | protected |
|
42 | 43 | |
|
43 | 44 | def self.to_i_or_default(st, default) |
|
44 | 45 | if st!='' |
|
45 | 46 | st.to_i |
|
46 | 47 | else |
|
47 | 48 | default |
|
48 | 49 | end |
|
49 | 50 | end |
|
50 | 51 | |
|
51 | 52 | def self.extract_params_and_check(params, problem) |
|
52 | 53 | time_limit = Problem.to_i_or_default(params[:time_limit], |
|
53 | 54 | DEFAULT_TIME_LIMIT) |
|
54 | 55 | memory_limit = Problem.to_i_or_default(params[:memory_limit], |
|
55 | 56 | DEFAULT_MEMORY_LIMIT) |
|
56 | 57 | |
|
57 | 58 | if time_limit==0 and time_limit_s!='0' |
|
58 | 59 | problem.errors.add_to_base('Time limit format errors.') |
|
59 | 60 | elsif time_limit<=0 or time_limit >60 |
|
60 | 61 | problem.errors.add_to_base('Time limit out of range.') |
|
61 | 62 | end |
|
62 | 63 | |
|
63 | 64 | if memory_limit==0 and memory_limit_s!='0' |
|
64 | 65 | problem.errors.add_to_base('Memory limit format errors.') |
|
65 | 66 | elsif memory_limit<=0 or memory_limit >512 |
|
66 | 67 | problem.errors.add_to_base('Memory limit out of range.') |
|
67 | 68 | end |
|
68 | 69 | |
|
69 | 70 | if params[:file]==nil or params[:file]=='' |
|
70 | 71 | problem.errors.add_to_base('No testdata file.') |
|
71 | 72 | end |
|
72 | 73 | |
|
73 | 74 | file = params[:file] |
|
74 | 75 | |
|
75 | 76 | if problem.errors.length!=0 |
|
76 | 77 | return problem |
|
77 | 78 | end |
|
78 | 79 | |
|
79 | 80 | problem.name = params[:name] |
|
80 | 81 | if params[:full_name]!='' |
|
81 | 82 | problem.full_name = params[:full_name] |
|
82 | 83 | else |
|
83 | 84 | problem.full_name = params[:name] |
|
84 | 85 | end |
|
85 | 86 | |
|
86 | 87 | return { |
|
87 | 88 | :time_limit => time_limit, |
|
88 | 89 | :memory_limit => memory_limit, |
|
89 | 90 | :file => file |
|
90 | 91 | } |
|
91 | 92 | end |
|
92 | 93 | |
|
93 | 94 | end |
@@ -1,196 +1,204 | |||
|
1 | 1 | # This file is auto-generated from the current state of the database. Instead of editing this file, |
|
2 | 2 | # please use the migrations feature of Active Record to incrementally modify your database, and |
|
3 | 3 | # then regenerate this schema definition. |
|
4 | 4 | # |
|
5 | 5 | # Note that this schema.rb definition is the authoritative source for your database schema. If you need |
|
6 | 6 | # to create the application database on another system, you should be using db:schema:load, not running |
|
7 | 7 | # all the migrations from scratch. The latter is a flawed and unsustainable approach (the more migrations |
|
8 | 8 | # you'll amass, the slower it'll run and the greater likelihood for issues). |
|
9 | 9 | # |
|
10 | 10 | # It's strongly recommended to check this file into your version control system. |
|
11 | 11 | |
|
12 |
- ActiveRecord::Schema.define(:version => 20 |
|
|
12 | + ActiveRecord::Schema.define(:version => 20100113094740) do | |
|
13 | 13 | |
|
14 | 14 | create_table "announcements", :force => true do |t| |
|
15 | 15 | t.string "author" |
|
16 | 16 | t.text "body" |
|
17 | 17 | t.boolean "published" |
|
18 | 18 | t.datetime "created_at" |
|
19 | 19 | t.datetime "updated_at" |
|
20 | 20 | t.boolean "frontpage", :default => false |
|
21 | 21 | t.boolean "contest_only", :default => false |
|
22 | 22 | t.string "title" |
|
23 | 23 | end |
|
24 | 24 | |
|
25 | 25 | create_table "configurations", :force => true do |t| |
|
26 | 26 | t.string "key" |
|
27 | 27 | t.string "value_type" |
|
28 | 28 | t.string "value" |
|
29 | 29 | t.datetime "created_at" |
|
30 | 30 | t.datetime "updated_at" |
|
31 | 31 | end |
|
32 | 32 | |
|
33 | 33 | create_table "countries", :force => true do |t| |
|
34 | 34 | t.string "name" |
|
35 | 35 | t.datetime "created_at" |
|
36 | 36 | t.datetime "updated_at" |
|
37 | 37 | end |
|
38 | 38 | |
|
39 | 39 | create_table "descriptions", :force => true do |t| |
|
40 | 40 | t.text "body" |
|
41 | 41 | t.boolean "markdowned" |
|
42 | 42 | t.datetime "created_at" |
|
43 | 43 | t.datetime "updated_at" |
|
44 | 44 | end |
|
45 | 45 | |
|
46 | 46 | create_table "grader_processes", :force => true do |t| |
|
47 | 47 | t.string "host", :limit => 20 |
|
48 | 48 | t.integer "pid" |
|
49 | 49 | t.string "mode" |
|
50 | 50 | t.boolean "active" |
|
51 | 51 | t.datetime "created_at" |
|
52 | 52 | t.datetime "updated_at" |
|
53 | 53 | t.integer "task_id" |
|
54 | 54 | t.string "task_type" |
|
55 | 55 | t.boolean "terminated" |
|
56 | 56 | end |
|
57 | 57 | |
|
58 | 58 | add_index "grader_processes", ["host", "pid"], :name => "index_grader_processes_on_ip_and_pid" |
|
59 | 59 | |
|
60 | 60 | create_table "languages", :force => true do |t| |
|
61 | 61 | t.string "name", :limit => 10 |
|
62 | 62 | t.string "pretty_name" |
|
63 | 63 | t.string "ext", :limit => 10 |
|
64 | 64 | t.string "common_ext" |
|
65 | 65 | end |
|
66 | 66 | |
|
67 | 67 | create_table "messages", :force => true do |t| |
|
68 | 68 | t.integer "sender_id" |
|
69 | 69 | t.integer "receiver_id" |
|
70 | 70 | t.integer "replying_message_id" |
|
71 | 71 | t.text "body" |
|
72 | 72 | t.boolean "replied" |
|
73 | 73 | t.datetime "created_at" |
|
74 | 74 | t.datetime "updated_at" |
|
75 | 75 | end |
|
76 | 76 | |
|
77 | 77 | create_table "problems", :force => true do |t| |
|
78 | 78 | t.string "name", :limit => 30 |
|
79 | 79 | t.string "full_name" |
|
80 | 80 | t.integer "full_score" |
|
81 | 81 | t.date "date_added" |
|
82 | 82 | t.boolean "available" |
|
83 | 83 | t.string "url" |
|
84 | 84 | t.integer "description_id" |
|
85 | 85 | t.boolean "test_allowed" |
|
86 | 86 | t.boolean "output_only" |
|
87 | 87 | end |
|
88 | 88 | |
|
89 | 89 | create_table "rights", :force => true do |t| |
|
90 | 90 | t.string "name" |
|
91 | 91 | t.string "controller" |
|
92 | 92 | t.string "action" |
|
93 | 93 | end |
|
94 | 94 | |
|
95 | 95 | create_table "rights_roles", :id => false, :force => true do |t| |
|
96 | 96 | t.integer "right_id" |
|
97 | 97 | t.integer "role_id" |
|
98 | 98 | end |
|
99 | 99 | |
|
100 | 100 | add_index "rights_roles", ["role_id"], :name => "index_rights_roles_on_role_id" |
|
101 | 101 | |
|
102 | 102 | create_table "roles", :force => true do |t| |
|
103 | 103 | t.string "name" |
|
104 | 104 | end |
|
105 | 105 | |
|
106 | 106 | create_table "roles_users", :id => false, :force => true do |t| |
|
107 | 107 | t.integer "role_id" |
|
108 | 108 | t.integer "user_id" |
|
109 | 109 | end |
|
110 | 110 | |
|
111 | 111 | add_index "roles_users", ["user_id"], :name => "index_roles_users_on_user_id" |
|
112 | 112 | |
|
113 | 113 | create_table "sessions", :force => true do |t| |
|
114 | 114 | t.string "session_id" |
|
115 | 115 | t.text "data" |
|
116 | 116 | t.datetime "updated_at" |
|
117 | 117 | end |
|
118 | 118 | |
|
119 | 119 | add_index "sessions", ["session_id"], :name => "index_sessions_on_session_id" |
|
120 | 120 | add_index "sessions", ["updated_at"], :name => "index_sessions_on_updated_at" |
|
121 | 121 | |
|
122 | 122 | create_table "sites", :force => true do |t| |
|
123 | 123 | t.string "name" |
|
124 | 124 | t.boolean "started" |
|
125 | 125 | t.datetime "start_time" |
|
126 | 126 | t.datetime "created_at" |
|
127 | 127 | t.datetime "updated_at" |
|
128 | 128 | t.integer "country_id" |
|
129 | 129 | t.string "password" |
|
130 | 130 | end |
|
131 | 131 | |
|
132 | 132 | create_table "submissions", :force => true do |t| |
|
133 | 133 | t.integer "user_id" |
|
134 | 134 | t.integer "problem_id" |
|
135 | 135 | t.integer "language_id" |
|
136 | 136 | t.text "source" |
|
137 | 137 | t.binary "binary" |
|
138 | 138 | t.datetime "submitted_at" |
|
139 | 139 | t.datetime "compiled_at" |
|
140 | 140 | t.text "compiler_message" |
|
141 | 141 | t.datetime "graded_at" |
|
142 | 142 | t.integer "points" |
|
143 | 143 | t.text "grader_comment" |
|
144 | 144 | t.integer "number" |
|
145 | 145 | t.string "source_filename" |
|
146 | 146 | end |
|
147 | 147 | |
|
148 | 148 | add_index "submissions", ["user_id", "problem_id", "number"], :name => "index_submissions_on_user_id_and_problem_id_and_number", :unique => true |
|
149 | 149 | add_index "submissions", ["user_id", "problem_id"], :name => "index_submissions_on_user_id_and_problem_id" |
|
150 | 150 | |
|
151 | 151 | create_table "tasks", :force => true do |t| |
|
152 | 152 | t.integer "submission_id" |
|
153 | 153 | t.datetime "created_at" |
|
154 | 154 | t.integer "status" |
|
155 | 155 | t.datetime "updated_at" |
|
156 | 156 | end |
|
157 | 157 | |
|
158 | + create_table "test_pairs", :force => true do |t| | |
|
159 | + t.integer "problem_id" | |
|
160 | + t.text "input" | |
|
161 | + t.text "solution" | |
|
162 | + t.datetime "created_at" | |
|
163 | + t.datetime "updated_at" | |
|
164 | + end | |
|
165 | + | |
|
158 | 166 | create_table "test_requests", :force => true do |t| |
|
159 | 167 | t.integer "user_id" |
|
160 | 168 | t.integer "problem_id" |
|
161 | 169 | t.integer "submission_id" |
|
162 | 170 | t.string "input_file_name" |
|
163 | 171 | t.string "output_file_name" |
|
164 | 172 | t.string "running_stat" |
|
165 | 173 | t.integer "status" |
|
166 | 174 | t.datetime "updated_at" |
|
167 | 175 | t.datetime "submitted_at" |
|
168 | 176 | t.datetime "compiled_at" |
|
169 | 177 | t.text "compiler_message" |
|
170 | 178 | t.datetime "graded_at" |
|
171 | 179 | t.string "grader_comment" |
|
172 | 180 | t.datetime "created_at" |
|
173 | 181 | t.float "running_time" |
|
174 | 182 | t.string "exit_status" |
|
175 | 183 | t.integer "memory_usage" |
|
176 | 184 | end |
|
177 | 185 | |
|
178 | 186 | add_index "test_requests", ["user_id", "problem_id"], :name => "index_test_requests_on_user_id_and_problem_id" |
|
179 | 187 | |
|
180 | 188 | create_table "users", :force => true do |t| |
|
181 | 189 | t.string "login", :limit => 50 |
|
182 | 190 | t.string "full_name" |
|
183 | 191 | t.string "hashed_password" |
|
184 | 192 | t.string "salt", :limit => 5 |
|
185 | 193 | t.string "alias" |
|
186 | 194 | t.string "email" |
|
187 | 195 | t.integer "site_id" |
|
188 | 196 | t.integer "country_id" |
|
189 | 197 | t.boolean "activated", :default => false |
|
190 | 198 | t.datetime "created_at" |
|
191 | 199 | t.datetime "updated_at" |
|
192 | 200 | end |
|
193 | 201 | |
|
194 | 202 | add_index "users", ["login"], :name => "index_users_on_login", :unique => true |
|
195 | 203 | |
|
196 | 204 | end |
You need to be logged in to leave comments.
Login now