\ No newline at end of file
diff --git a/config/initializers/active_record_extensions.rb b/config/initializers/active_record_extensions.rb
index b83192c25..34500b6b7 100644
--- a/config/initializers/active_record_extensions.rb
+++ b/config/initializers/active_record_extensions.rb
@@ -1,6 +1,24 @@
module Danbooru
module Extensions
module ActiveRecord
+ extend ActiveSupport::Concern
+
+ module ClassMethods
+ def without_timeout
+ connection.execute("SET STATEMENT_TIMEOUT = 0")
+ yield
+ ensure
+ connection.execute("SET STATEMENT_TIMEOUT = 10000")
+ end
+
+ def with_timeout(n)
+ connection.execute("SET STATEMENT_TIMEOUT = #{n}")
+ yield
+ ensure
+ connection.execute("SET STATEMENT_TIMEOUT = 10000")
+ end
+ end
+
%w(execute select_value select_values select_all).each do |method_name|
define_method("#{method_name}_sql") do |sql, *params|
connection.__send__(method_name, self.class.sanitize_sql_array([sql, *params]))
diff --git a/config/routes.rb b/config/routes.rb
index 3fea37392..84d5d407a 100644
--- a/config/routes.rb
+++ b/config/routes.rb
@@ -1,7 +1,14 @@
Danbooru::Application.routes.draw do
namespace :admin do
- match 'users/edit' => 'users#edit', :via => :get
- match 'users' => 'users#update', :via => :put
+ resources :users, :only => [:get, :put, :destroy]
+ end
+ namespace :moderator do
+ resource :dashboard, :only => [:show]
+ resources :ip_addrs, :only => [:index] do
+ collection do
+ get :search
+ end
+ end
end
resources :advertisements do
resources :hits, :controller => "advertisement_hits", :only => [:create]
diff --git a/db/development_structure.sql b/db/development_structure.sql
index 14ee6d555..612948af8 100644
--- a/db/development_structure.sql
+++ b/db/development_structure.sql
@@ -3573,6 +3573,7 @@ CREATE TABLE janitor_trials (
id integer NOT NULL,
creator_id integer NOT NULL,
user_id integer NOT NULL,
+ original_level integer NOT NULL,
created_at timestamp without time zone,
updated_at timestamp without time zone
);
@@ -3604,6 +3605,7 @@ ALTER SEQUENCE janitor_trials_id_seq OWNED BY janitor_trials.id;
CREATE TABLE note_versions (
id integer NOT NULL,
note_id integer NOT NULL,
+ post_id integer NOT NULL,
updater_id integer NOT NULL,
updater_ip_addr inet NOT NULL,
x integer NOT NULL,
@@ -3936,9 +3938,9 @@ CREATE TABLE posts (
is_pending boolean DEFAULT false NOT NULL,
is_flagged boolean DEFAULT false NOT NULL,
is_deleted boolean DEFAULT false NOT NULL,
- uploader_string character varying(255) NOT NULL,
+ uploader_id integer NOT NULL,
uploader_ip_addr inet NOT NULL,
- approver_string character varying(255) DEFAULT ''::character varying NOT NULL,
+ approver_id integer,
fav_string text DEFAULT ''::text NOT NULL,
pool_string text DEFAULT ''::text NOT NULL,
last_noted_at timestamp without time zone,
@@ -4214,11 +4216,7 @@ CREATE TABLE users (
email_verification_key character varying(255),
inviter_id integer,
is_banned boolean DEFAULT false NOT NULL,
- is_privileged boolean DEFAULT false NOT NULL,
- is_contributor boolean DEFAULT false NOT NULL,
- is_janitor boolean DEFAULT false NOT NULL,
- is_moderator boolean DEFAULT false NOT NULL,
- is_admin boolean DEFAULT false NOT NULL,
+ level integer DEFAULT 0 NOT NULL,
base_upload_limit integer DEFAULT 10 NOT NULL,
last_logged_in_at timestamp without time zone,
last_forum_read_at timestamp without time zone,
@@ -7922,6 +7920,13 @@ CREATE INDEX index_janitor_trials_on_user_id ON janitor_trials USING btree (user
CREATE INDEX index_note_versions_on_note_id ON note_versions USING btree (note_id);
+--
+-- Name: index_note_versions_on_post_id; Type: INDEX; Schema: public; Owner: -; Tablespace:
+--
+
+CREATE INDEX index_note_versions_on_post_id ON note_versions USING btree (post_id);
+
+
--
-- Name: index_note_versions_on_updater_id; Type: INDEX; Schema: public; Owner: -; Tablespace:
--
@@ -8304,7 +8309,7 @@ CREATE TRIGGER trigger_notes_on_update
CREATE TRIGGER trigger_posts_on_tag_index_update
BEFORE INSERT OR UPDATE ON posts
FOR EACH ROW
- EXECUTE PROCEDURE tsvector_update_trigger('tag_index', 'public.danbooru', 'tag_string', 'fav_string', 'pool_string', 'uploader_string', 'approver_string');
+ EXECUTE PROCEDURE tsvector_update_trigger('tag_index', 'public.danbooru', 'tag_string', 'fav_string', 'pool_string');
--
diff --git a/db/migrate/20100204214746_create_posts.rb b/db/migrate/20100204214746_create_posts.rb
index 3216bea02..6848d6138 100644
--- a/db/migrate/20100204214746_create_posts.rb
+++ b/db/migrate/20100204214746_create_posts.rb
@@ -18,11 +18,11 @@ class CreatePosts < ActiveRecord::Migration
t.column :is_deleted, :boolean, :null => false, :default => false
# Uploader
- t.column :uploader_string, :string, :null => false
+ t.column :uploader_id, :integer, :null => false
t.column :uploader_ip_addr, "inet", :null => false
# Approver
- t.column :approver_string, :string, :null => false, :default => ""
+ t.column :approver_id, :integer
# Favorites
t.column :fav_string, :text, :null => false, :default => ""
@@ -101,7 +101,7 @@ class CreatePosts < ActiveRecord::Migration
execute "CREATE TEXT SEARCH CONFIGURATION public.danbooru (PARSER = public.testparser)"
execute "ALTER TEXT SEARCH CONFIGURATION public.danbooru ADD MAPPING FOR WORD WITH SIMPLE"
execute "SET default_text_search_config = 'public.danbooru'"
- execute "CREATE TRIGGER trigger_posts_on_tag_index_update BEFORE INSERT OR UPDATE ON posts FOR EACH ROW EXECUTE PROCEDURE tsvector_update_trigger('tag_index', 'public.danbooru', 'tag_string', 'fav_string', 'pool_string', 'uploader_string', 'approver_string')"
+ execute "CREATE TRIGGER trigger_posts_on_tag_index_update BEFORE INSERT OR UPDATE ON posts FOR EACH ROW EXECUTE PROCEDURE tsvector_update_trigger('tag_index', 'public.danbooru', 'tag_string', 'fav_string', 'pool_string')"
end
def self.down
diff --git a/db/migrate/20100309211553_create_janitor_trials.rb b/db/migrate/20100309211553_create_janitor_trials.rb
index d9ebe4030..d16fd7c9d 100644
--- a/db/migrate/20100309211553_create_janitor_trials.rb
+++ b/db/migrate/20100309211553_create_janitor_trials.rb
@@ -3,6 +3,7 @@ class CreateJanitorTrials < ActiveRecord::Migration
create_table :janitor_trials do |t|
t.column :creator_id, :integer, :null => false
t.column :user_id, :integer, :null => false
+ t.column :original_level, :integer, :null => false
t.timestamps
end
diff --git a/lib/danbooru/paginator/active_record_extension.rb b/lib/danbooru/paginator/active_record_extension.rb
index 37f9ab6ab..820c67f97 100644
--- a/lib/danbooru/paginator/active_record_extension.rb
+++ b/lib/danbooru/paginator/active_record_extension.rb
@@ -52,7 +52,7 @@ module Danbooru
page = [page.to_i, 1].max
if page > Danbooru.config.max_numbered_pages
- raise "You cannot go beyond page #{Danbooru.config.max_numbered_pages}. Please narrow your search terms."
+ raise PaginationError.new("You cannot go beyond page #{Danbooru.config.max_numbered_pages}. Please narrow your search terms.")
end
limit(records_per_page).offset((page - 1) * records_per_page).tap do |obj|
diff --git a/lib/danbooru/paginator/pagination_error.rb b/lib/danbooru/paginator/pagination_error.rb
new file mode 100644
index 000000000..f5da127c9
--- /dev/null
+++ b/lib/danbooru/paginator/pagination_error.rb
@@ -0,0 +1,6 @@
+module Danbooru
+ module Paginator
+ class PaginationError < Exception
+ end
+ end
+end
diff --git a/script/testing/reset_post_1.sh b/script/testing/reset_post_1.sh
index d38464344..176111dbb 100755
--- a/script/testing/reset_post_1.sh
+++ b/script/testing/reset_post_1.sh
@@ -1,4 +1,4 @@
#!/usr/bin/env bash
-psql -c "UPDATE posts SET is_flagged = false, is_pending = true, approver_string = '' WHERE id = 1" danbooru2
+psql -c "UPDATE posts SET is_flagged = false, is_pending = true, approver_id = null WHERE id = 1" danbooru2
psql -c "DELETE FROM unapprovals" danbooru2
diff --git a/test/factories/upload.rb b/test/factories/upload.rb
index 591f2b251..0ab078627 100644
--- a/test/factories/upload.rb
+++ b/test/factories/upload.rb
@@ -2,7 +2,7 @@ require 'fileutils'
Factory.define(:upload) do |f|
f.rating "s"
- f.uploader {|x| x.association(:user, :is_contributor => true)}
+ f.uploader {|x| x.association(:user, :level => 200)}
f.uploader_ip_addr "127.0.0.1"
f.tag_string "special"
f.status "pending"
diff --git a/test/factories/user.rb b/test/factories/user.rb
index 1fcc68dff..9abebc11f 100644
--- a/test/factories/user.rb
+++ b/test/factories/user.rb
@@ -13,21 +13,21 @@ Factory.define(:banned_user, :parent => :user) do |f|
end
Factory.define(:privileged_user, :parent => :user) do |f|
- f.is_privileged true
+ f.level 100
end
Factory.define(:contributor_user, :parent => :user) do |f|
- f.is_contributor true
+ f.level 200
end
Factory.define(:janitor_user, :parent => :user) do |f|
- f.is_janitor true
+ f.level 300
end
Factory.define(:moderator_user, :parent => :user) do |f|
- f.is_moderator true
+ f.level 400
end
Factory.define(:admin_user, :parent => :user) do |f|
- f.is_admin true
+ f.level 500
end
diff --git a/test/unit/post_sets/favorite_test.rb b/test/unit/post_sets/favorite_test.rb
index 2e8776eda..e05d53ab7 100644
--- a/test/unit/post_sets/favorite_test.rb
+++ b/test/unit/post_sets/favorite_test.rb
@@ -25,16 +25,11 @@ module PostSets
context "a favorite set for before the most recent post" do
setup do
id = ::Favorite.model_for(@user.id).where(:user_id => @user.id, :post_id => @post_3.id).first.id
- @set = PostSets::Base.new(:id => @user.id, :before_id => id)
- @set.stubs(:limit).returns(1)
- @set.extend(PostSets::Favorite)
+ ::Favorite.model_for(@user.id).stubs(:records_per_page).returns(1)
+ @set = PostSets::Favorite.new(@user.id, "b#{id}")
end
context "a sequential paginator" do
- setup do
- @set.extend(PostSets::Sequential)
- end
-
should "return the second most recent element" do
assert_equal(1, @set.posts.size)
assert_equal(@post_1.id, @set.posts.first.id)
@@ -45,35 +40,25 @@ module PostSets
context "a favorite set for after the second most recent post" do
setup do
id = ::Favorite.model_for(@user.id).where(:user_id => @user.id, :post_id => @post_2.id).first.id
- @set = PostSets::Base.new(:id => @user.id, :after_id => id)
- @set.stubs(:limit).returns(1)
- @set.extend(PostSets::Favorite)
+ ::Favorite.model_for(@user.id).stubs(:records_per_page).returns(1)
+ @set = PostSets::Favorite.new(@user.id, "a#{id}")
end
context "a sequential paginator" do
- setup do
- @set.extend(PostSets::Sequential)
- end
-
should "return the most recent element" do
assert_equal(1, @set.posts.size)
- assert_equal(@post_3.id, @set.posts.first.id)
+ assert_equal(@post_1.id, @set.posts.first.id)
end
end
end
context "a favorite set for page 2" do
setup do
- @set = PostSets::Base.new(:id => @user.id, :page => 2)
- @set.stubs(:limit).returns(1)
- @set.extend(PostSets::Favorite)
+ ::Favorite.model_for(@user.id).stubs(:records_per_page).returns(1)
+ @set = PostSets::Favorite.new(@user.id, 2)
end
context "a numbered paginator" do
- setup do
- @set.extend(PostSets::Numbered)
- end
-
should "return the second most recent element" do
assert_equal(1, @set.posts.size)
assert_equal(@post_1.id, @set.posts.first.id)
@@ -83,32 +68,13 @@ module PostSets
context "a favorite set with no page specified" do
setup do
- @set = PostSets::Base.new(:id => @user.id)
- @set.stubs(:limit).returns(1)
- @set.extend(PostSets::Favorite)
+ ::Favorite.model_for(@user.id).stubs(:records_per_page).returns(1)
+ @set = PostSets::Favorite.new(@user.id)
end
- context "a numbered paginator" do
- setup do
- @set.extend(PostSets::Numbered)
- end
-
- should "return the most recent element" do
- assert_equal(3, @set.count)
- assert_equal(1, @set.posts.size)
- assert_equal(@post_3.id, @set.posts.first.id)
- end
- end
-
- context "a sequential paginator" do
- setup do
- @set.extend(PostSets::Sequential)
- end
-
- should "return the most recent element" do
- assert_equal(1, @set.posts.size)
- assert_equal(@post_3.id, @set.posts.first.id)
- end
+ should "return the most recent element" do
+ assert_equal(1, @set.posts.size)
+ assert_equal(@post_3.id, @set.posts.first.id)
end
end
end
diff --git a/test/unit/post_sets/pool_test.rb b/test/unit/post_sets/pool_test.rb
index 54561acb3..bbf8ad1f5 100644
--- a/test/unit/post_sets/pool_test.rb
+++ b/test/unit/post_sets/pool_test.rb
@@ -25,40 +25,33 @@ module PostSets
context "a post pool set for page 2" do
setup do
- @set = PostSets::Base.new(:id => @pool.id, :page => 2)
+ @set = PostSets::Pool.new(@pool, 2)
@set.stubs(:limit).returns(1)
- @set.extend(PostSets::Pool)
end
- context "a numbered paginator" do
- setup do
- @set.extend(PostSets::Numbered)
- end
-
- should "return the second element" do
- assert_equal(1, @set.posts.size)
- assert_equal(@post_1.id, @set.posts.first.id)
- end
+ should "return the second element" do
+ assert_equal(1, @set.posts.size)
+ assert_equal(@post_1.id, @set.posts.first.id)
+ end
+
+ should "know the total number of pages" do
+ assert_equal(3, @set.total_pages)
+ end
+
+ should "know the current page" do
+ assert_equal(2, @set.current_page)
end
end
context "a post pool set with no page specified" do
setup do
- @set = PostSets::Base.new(:id => @pool.id)
+ @set = PostSets::Pool.new(@pool)
@set.stubs(:limit).returns(1)
- @set.extend(PostSets::Pool)
end
- context "a numbered paginator" do
- setup do
- @set.extend(PostSets::Numbered)
- end
-
- should "return the first element" do
- assert_equal(3, @set.count)
- assert_equal(1, @set.posts.size)
- assert_equal(@post_2.id, @set.posts.first.id)
- end
+ should "return the first element" do
+ assert_equal(1, @set.posts.size)
+ assert_equal(@post_2.id, @set.posts.first.id)
end
end
end
diff --git a/test/unit/post_sets/post_test.rb b/test/unit/post_sets/post_test.rb
index 9a0e4500c..a24ce63d7 100644
--- a/test/unit/post_sets/post_test.rb
+++ b/test/unit/post_sets/post_test.rb
@@ -1,4 +1,5 @@
require_relative '../../test_helper'
+require "danbooru/paginator/pagination_error"
module PostSets
class PostTest < ActiveSupport::TestCase
@@ -19,12 +20,10 @@ module PostSets
CurrentUser.ip_addr = nil
end
- context "a numbered set for page 2" do
+ context "a set for page 2" do
setup do
- @set = PostSets::Base.new(:page => 2)
- @set.extend(PostSets::Sequential)
- @set.extend(PostSets::Post)
- @set.stubs(:limit).returns(1)
+ @set = PostSets::Post.new("", 2)
+ ::Post.stubs(:records_per_page).returns(1)
end
should "return the second element" do
@@ -32,18 +31,16 @@ module PostSets
end
end
- context "a sequential set for the 'a' tag query" do
+ context "a set for the 'a' tag query" do
setup do
@post_4 = Factory.create(:post, :tag_string => "a")
@post_5 = Factory.create(:post, :tag_string => "a")
end
- context "with no before_id parameter" do
+ context "with no page" do
setup do
- @set = PostSets::Base.new(:tags => "a")
- @set.extend(PostSets::Sequential)
- @set.extend(PostSets::Post)
- @set.stubs(:limit).returns(1)
+ @set = PostSets::Post.new("a")
+ ::Post.stubs(:records_per_page).returns(1)
end
should "return the first element" do
@@ -51,12 +48,10 @@ module PostSets
end
end
- context "with a before_id parameter for the first element" do
+ context "for before the first element" do
setup do
- @set = PostSets::Base.new(:tags => "a", :before_id => @post_5.id)
- @set.extend(PostSets::Sequential)
- @set.extend(PostSets::Post)
- @set.stubs(:limit).returns(1)
+ @set = PostSets::Post.new("a", "b#{@post_5.id}")
+ ::Post.stubs(:records_per_page).returns(1)
end
should "return the second element" do
@@ -64,12 +59,10 @@ module PostSets
end
end
- context "with an after_id parameter for the second element" do
+ context "for after the second element" do
setup do
- @set = PostSets::Base.new(:tags => "a", :after_id => @post_4.id)
- @set.extend(PostSets::Sequential)
- @set.extend(PostSets::Post)
- @set.stubs(:limit).returns(1)
+ @set = PostSets::Post.new("a", "a#{@post_4.id}")
+ @set.stubs(:records_per_page).returns(1)
end
should "return the first element" do
@@ -78,11 +71,9 @@ module PostSets
end
end
- context "a new numbered set for the 'a b' tag query" do
+ context "a set for the 'a b' tag query" do
setup do
- @set = PostSets::Base.new(:tags => "a b")
- @set.extend(PostSets::Numbered)
- @set.extend(PostSets::Post)
+ @set = PostSets::Post.new("a b")
end
should "know it isn't a single tag" do
@@ -90,31 +81,27 @@ module PostSets
end
end
- context "a new numbered set going to the 1,001st page" do
+ context "a set going to the 1,001st page" do
setup do
- @set = PostSets::Base.new(:tags => "a", :page => 1_001)
- @set.extend(PostSets::Numbered)
- @set.extend(PostSets::Post)
+ @set = PostSets::Post.new("a", 1_001)
end
- should "not validate" do
- assert_raises(PostSets::Error) do
- @set.validate
+ should "fail" do
+ assert_raises(Danbooru::Paginator::PaginationError) do
+ @set.posts
end
end
end
- context "a new numbered set for the 'a b c' tag query" do
+ context "a set for the 'a b c' tag query" do
setup do
- @set = PostSets::Base.new(:tags => "a b c")
- @set.extend(PostSets::Numbered)
- @set.extend(PostSets::Post)
+ @set = PostSets::Post.new("a b c")
end
context "for a non-privileged user" do
- should "not validate" do
- assert_raises(PostSets::Error) do
- @set.validate
+ should "fail" do
+ assert_raises(PostSets::SearchError) do
+ @set.posts
end
end
end
@@ -124,25 +111,17 @@ module PostSets
CurrentUser.user = Factory.create(:privileged_user)
end
- should "not validate" do
+ should "pass" do
assert_nothing_raised do
- @set.validate
+ @set.posts
end
end
end
end
- context "a new numbered set for the 'a' tag query" do
+ context "a set for the 'a' tag query" do
setup do
- @set = PostSets::Base.new(:tags => "A")
- @set.extend(PostSets::Numbered)
- @set.extend(PostSets::Post)
- end
-
- should "validate" do
- assert_nothing_raised do
- @set.validate
- end
+ @set = PostSets::Post.new("a")
end
should "know it is a single tag" do
@@ -153,8 +132,8 @@ module PostSets
assert_equal("a", @set.tag_string)
end
- should "find the count" do
- assert_equal(1, @set.count)
+ should "know the count" do
+ assert_equal(1, @set.posts.total_count)
end
should "find the posts" do
diff --git a/test/unit/post_sets/wiki_page_test.rb b/test/unit/post_sets/wiki_page_test.rb
deleted file mode 100644
index d730b9f05..000000000
--- a/test/unit/post_sets/wiki_page_test.rb
+++ /dev/null
@@ -1,73 +0,0 @@
-require 'test_helper'
-
-module PostSets
- class WikiPageTest < ActiveSupport::TestCase
- context "In all cases" do
- setup do
- @user = Factory.create(:user)
- CurrentUser.user = @user
- CurrentUser.ip_addr = "127.0.0.1"
- MEMCACHE.flush_all
-
- @wiki_page = Factory.create(:wiki_page, :title => "a")
- @post_1 = Factory.create(:post, :tag_string => "a")
- @post_2 = Factory.create(:post, :tag_string => "a")
- @post_3 = Factory.create(:post, :tag_string => "a")
- end
-
- context "a numbered wiki page set" do
- setup do
- @set = PostSets::Base.new(:page => 2, :id => @wiki_page.id)
- @set.extend(PostSets::Numbered)
- @set.extend(PostSets::WikiPage)
- @set.stubs(:limit).returns(1)
- end
-
- should "return the count" do
- assert_equal(3, @set.count)
- end
- end
-
- context "a sequential wiki page set" do
- context "with a before_id for the first element" do
- setup do
- @set = PostSets::Base.new(:id => @wiki_page.id, :before_id => @post_3.id)
- @set.extend(PostSets::Sequential)
- @set.extend(PostSets::WikiPage)
- @set.stubs(:limit).returns(1)
- end
-
- should "return the second element" do
- assert_equal(@post_2.id, @set.posts.first.id)
- end
- end
-
- context "with an after_id for the second element" do
- setup do
- @set = PostSets::Base.new(:after_id => @post_2.id, :id => @wiki_page.id)
- @set.extend(PostSets::Sequential)
- @set.extend(PostSets::WikiPage)
- @set.stubs(:limit).returns(1)
- end
-
- should "return the first element" do
- assert_equal(@post_3.id, @set.posts.first.id)
- end
- end
- end
-
- context "a numbered wiki page set for page 2" do
- setup do
- @set = PostSets::Base.new(:page => 2, :id => @wiki_page.id)
- @set.extend(PostSets::Numbered)
- @set.extend(PostSets::WikiPage)
- @set.stubs(:limit).returns(1)
- end
-
- should "return the second element" do
- assert_equal(@post_2.id, @set.posts.first.id)
- end
- end
- end
- end
-end
diff --git a/test/unit/post_test.rb b/test/unit/post_test.rb
index f5368db64..5ade7165d 100644
--- a/test/unit/post_test.rb
+++ b/test/unit/post_test.rb
@@ -178,13 +178,13 @@ class PostTest < ActiveSupport::TestCase
should "preserve the approver's identity when approved" do
post = Factory.create(:post, :is_pending => true)
post.approve!
- assert_equal("approver:#{CurrentUser.name}", post.approver_string)
+ assert_equal(post.approver_id, CurrentUser.id)
end
context "that was previously approved by person X" do
should "not allow person X to reapprove that post" do
user = Factory.create(:janitor_user, :name => "xxx")
- post = Factory.create(:post, :approver_string => "approver:xxx")
+ post = Factory.create(:post, :approver_id => user.id)
post.flag!("bad")
CurrentUser.scoped(user, "127.0.0.1") do
assert_raises(Post::ApprovalError) do
@@ -396,10 +396,10 @@ class PostTest < ActiveSupport::TestCase
user3 = Factory.create(:user)
post.uploader = user1
- assert_equal("uploader:#{user1.id}", post.uploader_string)
+ assert_equal(user1.id, post.uploader_id)
post.uploader_id = user2.id
- assert_equal("uploader:#{user2.id}", post.uploader_string)
+ assert_equal(user2.id, post.uploader_id)
assert_equal(user2.id, post.uploader_id)
assert_equal(user2.name, post.uploader_name)
end
@@ -493,13 +493,15 @@ class PostTest < ActiveSupport::TestCase
should "return posts for the metatag" do
second_user = Factory.create(:user)
- post1 = Factory.create(:post)
+ post1 = Factory.create(:post, :uploader => CurrentUser.user)
+
+ assert_equal(CurrentUser.id, post1.uploader_id)
CurrentUser.scoped(second_user, "127.0.0.2") do
post2 = Factory.create(:post)
post3 = Factory.create(:post)
end
-
+
relation = Post.tag_match("uploader:#{CurrentUser.user.name}")
assert_equal(1, relation.count)
assert_equal(post1.id, relation.first.id)
diff --git a/test/unit/tag_alias_test.rb b/test/unit/tag_alias_test.rb
index d4a148e29..f38d92425 100644
--- a/test/unit/tag_alias_test.rb
+++ b/test/unit/tag_alias_test.rb
@@ -67,7 +67,7 @@ class TagAliasTest < ActiveSupport::TestCase
end
ta1 = Factory.create(:tag_alias, :antecedent_name => "aaa", :consequent_name => "xxx")
p1.reload
- assert_not_equal("uploader:#{ta1.creator_id}", p1.uploader_string)
+ assert_not_equal(ta1.creator_id, p1.uploader_id)
assert_equal(ta1.creator_id, p1.versions.last.updater_id)
end
end
diff --git a/test/unit/tag_implication_test.rb b/test/unit/tag_implication_test.rb
index 37153fa22..84e10d5c2 100644
--- a/test/unit/tag_implication_test.rb
+++ b/test/unit/tag_implication_test.rb
@@ -113,7 +113,7 @@ class TagImplicationTest < ActiveSupport::TestCase
end
ti1 = Factory.create(:tag_implication, :antecedent_name => "aaa", :consequent_name => "xxx")
p1.reload
- assert_not_equal("uploader:#{ti1.creator_id}", p1.uploader_string)
+ assert_not_equal(ti1.creator_id, p1.uploader_id)
assert_equal(ti1.creator_id, p1.versions.last.updater_id)
end
end
diff --git a/test/unit/upload_test.rb b/test/unit/upload_test.rb
index c0c52b66c..68a3bfe3b 100644
--- a/test/unit/upload_test.rb
+++ b/test/unit/upload_test.rb
@@ -1,181 +1,183 @@
require_relative '../test_helper'
class UploadTest < ActiveSupport::TestCase
- setup do
- user = Factory.create(:contributor_user)
- CurrentUser.user = user
- CurrentUser.ip_addr = "127.0.0.1"
- MEMCACHE.flush_all
- end
-
- teardown do
- CurrentUser.user = nil
- CurrentUser.ip_addr = nil
-
- @upload.delete_temp_file if @upload
- end
-
- context "An upload" do
+ context "In all cases" do
+ setup do
+ user = Factory.create(:contributor_user)
+ CurrentUser.user = user
+ CurrentUser.ip_addr = "127.0.0.1"
+ MEMCACHE.flush_all
+ end
+
teardown do
- FileUtils.rm_f(Dir.glob("#{Rails.root}/tmp/test.*"))
+ CurrentUser.user = nil
+ CurrentUser.ip_addr = nil
+
+ @upload.delete_temp_file if @upload
end
- context "image size calculator" do
- should "discover the dimensions for a JPG" do
- @upload = Factory.create(:jpg_upload)
- assert_nothing_raised {@upload.calculate_dimensions(@upload.file_path)}
- assert_equal(500, @upload.image_width)
- assert_equal(335, @upload.image_height)
- end
-
- should "discover the dimensions for a PNG" do
- @upload = Factory.create(:png_upload)
- assert_nothing_raised {@upload.calculate_dimensions(@upload.file_path)}
- assert_equal(768, @upload.image_width)
- assert_equal(1024, @upload.image_height)
- end
-
- should "discover the dimensions for a GIF" do
- @upload = Factory.create(:gif_upload)
- assert_nothing_raised {@upload.calculate_dimensions(@upload.file_path)}
- assert_equal(400, @upload.image_width)
- assert_equal(400, @upload.image_height)
- end
- end
-
- context "content type calculator" do
- should "know how to parse jpeg, png, gif, and swf file extensions" do
- @upload = Factory.create(:jpg_upload)
- assert_equal("image/jpeg", @upload.file_ext_to_content_type("test.jpeg"))
- assert_equal("image/gif", @upload.file_ext_to_content_type("test.gif"))
- assert_equal("image/png", @upload.file_ext_to_content_type("test.png"))
- assert_equal("application/x-shockwave-flash", @upload.file_ext_to_content_type("test.swf"))
- assert_equal("application/octet-stream", @upload.file_ext_to_content_type(""))
- end
-
- should "know how to parse jpeg, png, gif, and swf content types" do
- @upload = Factory.create(:jpg_upload)
- assert_equal("jpg", @upload.content_type_to_file_ext("image/jpeg"))
- assert_equal("gif", @upload.content_type_to_file_ext("image/gif"))
- assert_equal("png", @upload.content_type_to_file_ext("image/png"))
- assert_equal("swf", @upload.content_type_to_file_ext("application/x-shockwave-flash"))
- assert_equal("bin", @upload.content_type_to_file_ext(""))
- end
- end
-
- context "downloader" do
- should "initialize the final path and content type after downloading a file" do
- @upload = Factory.create(:source_upload)
- path = "#{Rails.root}/tmp/test.download.jpg"
- assert_nothing_raised {@upload.download_from_source(path)}
- assert(File.exists?(path))
- assert_equal(8558, File.size(path))
- assert_equal("image/gif", @upload.content_type)
- assert_equal(path, @upload.file_path)
- assert_equal("gif", @upload.file_ext)
- end
- end
-
- context "file processor" do
- should "parse and process a cgi file representation" do
- FileUtils.cp("#{Rails.root}/test/files/test.jpg", "#{Rails.root}/tmp")
- @upload = Upload.new(:file => upload_jpeg("#{Rails.root}/tmp/test.jpg"))
- assert_nothing_raised {@upload.convert_cgi_file}
- assert_equal("image/jpeg", @upload.content_type)
- assert(File.exists?(@upload.file_path))
- assert_equal(28086, File.size(@upload.file_path))
- assert_equal("jpg", @upload.file_ext)
- end
- end
-
- context "hash calculator" do
- should "caculate the hash" do
- @upload = Factory.create(:jpg_upload)
- @upload.calculate_hash(@upload.file_path)
- assert_equal("ecef68c44edb8a0d6a3070b5f8e8ee76", @upload.md5)
- end
- end
-
- context "resizer" do
+ context "An upload" do
teardown do
- FileUtils.rm_f(Dir.glob("#{Rails.root}/public/data/thumb/test.*.jpg"))
- FileUtils.rm_f(Dir.glob("#{Rails.root}/public/data/medium/test.*.jpg"))
- FileUtils.rm_f(Dir.glob("#{Rails.root}/public/data/large/test.*.jpg"))
- FileUtils.rm_f(Dir.glob("#{Rails.root}/public/data/original/test.*.jpg"))
+ FileUtils.rm_f(Dir.glob("#{Rails.root}/tmp/test.*"))
end
-
- should "generate several resized versions of the image" do
- @upload = Factory.create(:large_jpg_upload)
- @upload.calculate_hash(@upload.file_path)
- @upload.calculate_dimensions(@upload.file_path)
- assert_nothing_raised {@upload.generate_resizes(@upload.file_path)}
- assert(File.exists?(@upload.resized_file_path_for(Danbooru.config.small_image_width)))
- assert_equal(6556, File.size(@upload.resized_file_path_for(Danbooru.config.small_image_width)))
- assert(File.exists?(@upload.resized_file_path_for(Danbooru.config.medium_image_width)))
- assert_equal(39411, File.size(@upload.resized_file_path_for(Danbooru.config.medium_image_width)))
- assert(File.exists?(@upload.resized_file_path_for(Danbooru.config.large_image_width)))
- assert_equal(179324, File.size(@upload.resized_file_path_for(Danbooru.config.large_image_width)))
+
+ context "image size calculator" do
+ should "discover the dimensions for a JPG" do
+ @upload = Factory.create(:jpg_upload)
+ assert_nothing_raised {@upload.calculate_dimensions(@upload.file_path)}
+ assert_equal(500, @upload.image_width)
+ assert_equal(335, @upload.image_height)
+ end
+
+ should "discover the dimensions for a PNG" do
+ @upload = Factory.create(:png_upload)
+ assert_nothing_raised {@upload.calculate_dimensions(@upload.file_path)}
+ assert_equal(768, @upload.image_width)
+ assert_equal(1024, @upload.image_height)
+ end
+
+ should "discover the dimensions for a GIF" do
+ @upload = Factory.create(:gif_upload)
+ assert_nothing_raised {@upload.calculate_dimensions(@upload.file_path)}
+ assert_equal(400, @upload.image_width)
+ assert_equal(400, @upload.image_height)
+ end
+ end
+
+ context "content type calculator" do
+ should "know how to parse jpeg, png, gif, and swf file extensions" do
+ @upload = Factory.create(:jpg_upload)
+ assert_equal("image/jpeg", @upload.file_ext_to_content_type("test.jpeg"))
+ assert_equal("image/gif", @upload.file_ext_to_content_type("test.gif"))
+ assert_equal("image/png", @upload.file_ext_to_content_type("test.png"))
+ assert_equal("application/x-shockwave-flash", @upload.file_ext_to_content_type("test.swf"))
+ assert_equal("application/octet-stream", @upload.file_ext_to_content_type(""))
+ end
+
+ should "know how to parse jpeg, png, gif, and swf content types" do
+ @upload = Factory.create(:jpg_upload)
+ assert_equal("jpg", @upload.content_type_to_file_ext("image/jpeg"))
+ assert_equal("gif", @upload.content_type_to_file_ext("image/gif"))
+ assert_equal("png", @upload.content_type_to_file_ext("image/png"))
+ assert_equal("swf", @upload.content_type_to_file_ext("application/x-shockwave-flash"))
+ assert_equal("bin", @upload.content_type_to_file_ext(""))
+ end
+ end
+
+ context "downloader" do
+ should "initialize the final path and content type after downloading a file" do
+ @upload = Factory.create(:source_upload)
+ path = "#{Rails.root}/tmp/test.download.jpg"
+ assert_nothing_raised {@upload.download_from_source(path)}
+ assert(File.exists?(path))
+ assert_equal(8558, File.size(path))
+ assert_equal("image/gif", @upload.content_type)
+ assert_equal(path, @upload.file_path)
+ assert_equal("gif", @upload.file_ext)
+ end
+ end
+
+ context "file processor" do
+ should "parse and process a cgi file representation" do
+ FileUtils.cp("#{Rails.root}/test/files/test.jpg", "#{Rails.root}/tmp")
+ @upload = Upload.new(:file => upload_jpeg("#{Rails.root}/tmp/test.jpg"))
+ assert_nothing_raised {@upload.convert_cgi_file}
+ assert_equal("image/jpeg", @upload.content_type)
+ assert(File.exists?(@upload.file_path))
+ assert_equal(28086, File.size(@upload.file_path))
+ assert_equal("jpg", @upload.file_ext)
+ end
+ end
+
+ context "hash calculator" do
+ should "caculate the hash" do
+ @upload = Factory.create(:jpg_upload)
+ @upload.calculate_hash(@upload.file_path)
+ assert_equal("ecef68c44edb8a0d6a3070b5f8e8ee76", @upload.md5)
+ end
+ end
+
+ context "resizer" do
+ teardown do
+ FileUtils.rm_f(Dir.glob("#{Rails.root}/public/data/thumb/test.*.jpg"))
+ FileUtils.rm_f(Dir.glob("#{Rails.root}/public/data/medium/test.*.jpg"))
+ FileUtils.rm_f(Dir.glob("#{Rails.root}/public/data/large/test.*.jpg"))
+ FileUtils.rm_f(Dir.glob("#{Rails.root}/public/data/original/test.*.jpg"))
+ end
+
+ should "generate several resized versions of the image" do
+ @upload = Factory.create(:large_jpg_upload)
+ @upload.calculate_hash(@upload.file_path)
+ @upload.calculate_dimensions(@upload.file_path)
+ assert_nothing_raised {@upload.generate_resizes(@upload.file_path)}
+ assert(File.exists?(@upload.resized_file_path_for(Danbooru.config.small_image_width)))
+ assert_equal(6556, File.size(@upload.resized_file_path_for(Danbooru.config.small_image_width)))
+ assert(File.exists?(@upload.resized_file_path_for(Danbooru.config.medium_image_width)))
+ assert_equal(39411, File.size(@upload.resized_file_path_for(Danbooru.config.medium_image_width)))
+ assert(File.exists?(@upload.resized_file_path_for(Danbooru.config.large_image_width)))
+ assert_equal(179324, File.size(@upload.resized_file_path_for(Danbooru.config.large_image_width)))
+ end
+ end
+
+ should "process completely for a downloaded image" do
+ @upload = Factory.create(:source_upload,
+ :rating => "s",
+ :uploader_ip_addr => "127.0.0.1",
+ :tag_string => "hoge foo"
+ )
+ assert_difference("Post.count") do
+ assert_nothing_raised {@upload.process!}
+ end
+
+ post = Post.last
+ assert_equal("hoge foo", post.tag_string)
+ assert_equal("s", post.rating)
+ assert_equal(@upload.uploader_id, post.uploader_id)
+ assert_equal("127.0.0.1", post.uploader_ip_addr)
+ assert_equal(@upload.md5, post.md5)
+ assert_equal("gif", post.file_ext)
+ assert_equal(276, post.image_width)
+ assert_equal(110, post.image_height)
+ assert_equal(8558, post.file_size)
+ assert_equal(post.id, @upload.post_id)
+ assert_equal("completed", @upload.status)
end
end
-
- should "process completely for a downloaded image" do
- @upload = Factory.create(:source_upload,
+
+ should "process completely for an uploaded image" do
+ @upload = Factory.create(:jpg_upload,
:rating => "s",
:uploader_ip_addr => "127.0.0.1",
:tag_string => "hoge foo"
)
+ @upload.file = upload_jpeg("#{Rails.root}/test/files/test.jpg")
+ @upload.convert_cgi_file
+
assert_difference("Post.count") do
assert_nothing_raised {@upload.process!}
end
-
post = Post.last
assert_equal("hoge foo", post.tag_string)
assert_equal("s", post.rating)
assert_equal(@upload.uploader_id, post.uploader_id)
assert_equal("127.0.0.1", post.uploader_ip_addr)
assert_equal(@upload.md5, post.md5)
- assert_equal("gif", post.file_ext)
- assert_equal(276, post.image_width)
- assert_equal(110, post.image_height)
- assert_equal(8558, post.file_size)
+ assert_equal("jpg", post.file_ext)
+ assert(File.exists?(post.file_path))
+ assert_equal(28086, File.size(post.file_path))
assert_equal(post.id, @upload.post_id)
- assert_equal("completed", @upload.status)
+ assert_equal("completed", @upload.status)
end
- end
-
- should "process completely for an uploaded image" do
- @upload = Factory.create(:jpg_upload,
- :rating => "s",
- :uploader_ip_addr => "127.0.0.1",
- :tag_string => "hoge foo"
- )
- @upload.file = upload_jpeg("#{Rails.root}/test/files/test.jpg")
- @upload.convert_cgi_file
- assert_difference("Post.count") do
- assert_nothing_raised {@upload.process!}
+ should "delete the temporary file upon completion" do
+ @upload = Factory.create(:source_upload,
+ :rating => "s",
+ :uploader_ip_addr => "127.0.0.1",
+ :tag_string => "hoge foo"
+ )
+
+ @upload.process!
+ assert(!File.exists?(@upload.temp_file_path))
end
- post = Post.last
- assert_equal("hoge foo", post.tag_string)
- assert_equal("s", post.rating)
- assert_equal(@upload.uploader_id, post.uploader_id)
- assert_equal("127.0.0.1", post.uploader_ip_addr)
- assert_equal(@upload.md5, post.md5)
- assert_equal("jpg", post.file_ext)
- assert(File.exists?(post.file_path))
- assert_equal(28086, File.size(post.file_path))
- assert_equal(post.id, @upload.post_id)
- assert_equal("completed", @upload.status)
- end
-
- should "delete the temporary file upon completion" do
- @upload = Factory.create(:source_upload,
- :rating => "s",
- :uploader_ip_addr => "127.0.0.1",
- :tag_string => "hoge foo"
- )
-
- @upload.process!
- assert(!File.exists?(@upload.temp_file_path))
end
end
diff --git a/test/unit/user_test.rb b/test/unit/user_test.rb
index 17841e05e..4d773570b 100644
--- a/test/unit/user_test.rb
+++ b/test/unit/user_test.rb
@@ -24,9 +24,9 @@ class UserTest < ActiveSupport::TestCase
should "limit post uploads" do
assert(!@user.can_upload?)
- @user.update_attribute(:is_contributor, true)
+ @user.update_column(:level, User::Levels::CONTRIBUTOR)
assert(@user.can_upload?)
- @user.update_attribute(:is_contributor, false)
+ @user.update_column(:level, User::Levels::MEMBER)
40.times do
Factory.create(:post, :uploader => @user, :is_deleted => true)
@@ -49,10 +49,10 @@ class UserTest < ActiveSupport::TestCase
should "limit comments" do
assert(!@user.can_comment?)
- @user.update_attribute(:is_privileged, true)
+ @user.update_column(:level, User::Levels::PRIVILEGED)
assert(@user.can_comment?)
- @user.update_attribute(:is_privileged, false)
- @user.update_attribute(:created_at, 1.year.ago)
+ @user.update_column(:level, User::Levels::MEMBER)
+ @user.update_column(:created_at, 1.year.ago)
assert(@user.can_comment?)
(Danbooru.config.member_comment_limit).times do
Factory.create(:comment)
@@ -79,34 +79,34 @@ class UserTest < ActiveSupport::TestCase
end
should "normalize its level" do
- user = Factory.create(:user, :is_admin => true)
+ user = Factory.create(:user, :level => User::Levels::ADMIN)
assert(user.is_moderator?)
assert(user.is_janitor?)
assert(user.is_contributor?)
assert(user.is_privileged?)
- user = Factory.create(:user, :is_moderator => true)
+ user = Factory.create(:user, :level => User::Levels::MODERATOR)
assert(!user.is_admin?)
assert(user.is_moderator?)
assert(user.is_janitor?)
- assert(!user.is_contributor?)
+ assert(user.is_contributor?)
assert(user.is_privileged?)
- user = Factory.create(:user, :is_janitor => true)
+ user = Factory.create(:user, :level => User::Levels::JANITOR)
assert(!user.is_admin?)
assert(!user.is_moderator?)
assert(user.is_janitor?)
assert(!user.is_contributor?)
assert(user.is_privileged?)
- user = Factory.create(:user, :is_contributor => true)
+ user = Factory.create(:user, :level => User::Levels::CONTRIBUTOR)
assert(!user.is_admin?)
assert(!user.is_moderator?)
assert(!user.is_janitor?)
assert(user.is_contributor?)
assert(user.is_privileged?)
- user = Factory.create(:user, :is_privileged => true)
+ user = Factory.create(:user, :level => User::LEvels::PRIVILEGED)
assert(!user.is_admin?)
assert(!user.is_moderator?)
assert(!user.is_janitor?)
@@ -133,8 +133,8 @@ class UserTest < ActiveSupport::TestCase
should "be updated" do
@user = Factory.create(:user)
- @user.update_attribute(:name, "danzig")
- assert_equal("danzig", User.id_to_name(@user.id))
+ @user.update_column(:name, "danzig")
+ assert_equal(@user.name, User.id_to_name(@user.id))
end
end