1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490
|
# frozen_string_literal: true
require "cases/helper"
require "models/minimalistic"
require "models/developer"
require "models/auto_id"
require "models/author"
require "models/boolean"
require "models/computer"
require "models/topic"
require "models/company"
require "models/category"
require "models/reply"
require "models/contact"
require "models/keyboard"
require "models/numeric_data"
require "models/cpk"
class AttributeMethodsTest < ActiveRecord::TestCase
include InTimeZone
fixtures :topics, :developers, :companies, :computers
def setup
@old_matchers = ActiveRecord::Base.send(:attribute_method_patterns).dup
@target = Class.new(ActiveRecord::Base)
@target.table_name = "topics"
end
teardown do
ActiveRecord::Base.send(:attribute_method_patterns).clear
ActiveRecord::Base.send(:attribute_method_patterns).concat(@old_matchers)
end
test "#id_value alias is defined if id column exist" do
new_topic_model = Class.new(ActiveRecord::Base) do
self.table_name = "topics"
end
new_topic_model.define_attribute_methods
assert_includes new_topic_model.attribute_names, "id"
assert_includes new_topic_model.attribute_aliases, "id_value"
end
test "aliasing `id` attribute allows reading the column value" do
topic = Topic.create(id: 123_456, title: "title").becomes(TitlePrimaryKeyTopic)
assert_equal(123_456, topic.id_value)
end
test "aliasing `id` attribute allows reading the column value for a CPK model" do
order = ::Cpk::Order.create(id: [1, 123_456])
assert_not_nil(order.id_value)
assert_equal(123_456, order.id_value)
end
test "#id_value alias returns the value in the id column, when id column exists" do
topic = Topic.new
assert_nil topic.id_value
topic = Topic.find(1)
assert_equal 1, topic.id_value
end
test "#id_value alias is not defined if id column doesn't exist" do
keyboard = Keyboard.create!
assert_empty keyboard.attribute_aliases
end
test "#id_value alias returns id column only for composite primary key models" do
order = ::Cpk::Order.create(id: [1, 2])
assert_equal 2, order.id_value
end
test "attribute_for_inspect with a string" do
t = topics(:first)
t.title = "The First Topic Now Has A Title With\nNewlines And More Than 50 Characters"
assert_equal '"The First Topic Now Has A Title With\nNewlines And ..."', t.attribute_for_inspect(:title)
assert_equal '"The First Topic Now Has A Title With\nNewlines And ..."', t.attribute_for_inspect(:heading)
end
test "attribute_for_inspect with a date" do
t = topics(:first)
assert_equal %("#{t.written_on.to_fs(:inspect)}"), t.attribute_for_inspect(:written_on)
end
test "attribute_for_inspect with an array" do
t = topics(:first)
t.content = ["some_value"]
assert_match %r(\["some_value"\]), t.attribute_for_inspect(:content)
end
test "attribute_for_inspect with a long array" do
t = topics(:first)
t.content = (1..11).to_a
assert_equal "[1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11]", t.attribute_for_inspect(:content)
end
test "attribute_for_inspect with a non-primary key id attribute" do
t = topics(:first).becomes(TitlePrimaryKeyTopic)
t.title = "The First Topic Now Has A Title With\nNewlines And More Than 50 Characters"
assert_equal "1", t.attribute_for_inspect(:id)
end
test "attribute_present" do
t = Topic.new
t.title = "hello there!"
t.written_on = Time.now
t.author_name = ""
assert t.attribute_present?("title")
assert t.attribute_present?("heading")
assert t.attribute_present?("written_on")
assert_not t.attribute_present?("content")
assert_not t.attribute_present?("author_name")
end
test "attribute_present with booleans" do
b1 = Boolean.new
b1.value = false
assert b1.attribute_present?(:value)
b2 = Boolean.new
b2.value = true
assert b2.attribute_present?(:value)
b3 = Boolean.new
assert_not b3.attribute_present?(:value)
b4 = Boolean.new
b4.value = false
b4.save!
assert Boolean.find(b4.id).attribute_present?(:value)
end
test "caching a nil primary key" do
klass = Class.new(Minimalistic)
klass.primary_key # warm once
assert_not_called(klass, :reset_primary_key) do
klass.primary_key
end
end
test "attribute keys on a new instance" do
t = Topic.new
assert_nil t.title, "The topics table has a title column, so it should be nil"
assert_raise(NoMethodError) { t.title2 }
end
test "boolean attributes" do
assert_not_predicate Topic.find(1), :approved?
assert_predicate Topic.find(2), :approved?
end
test "set attributes" do
topic = Topic.find(1)
topic.attributes = { title: "Budget", author_name: "Jason" }
topic.save
assert_equal("Budget", topic.title)
assert_equal("Jason", topic.author_name)
assert_equal(topics(:first).author_email_address, Topic.find(1).author_email_address)
end
test "set attributes without a hash" do
topic = Topic.new
assert_raise(ArgumentError) { topic.attributes = "" }
end
test "integers as nil" do
test = AutoId.create(value: "")
assert_nil AutoId.find(test.id).value
end
test "set attributes with a block" do
topic = Topic.new do |t|
t.title = "Budget"
t.author_name = "Jason"
end
assert_equal("Budget", topic.title)
assert_equal("Jason", topic.author_name)
end
test "respond_to?" do
topic = Topic.find(1)
assert_respond_to topic, "title"
assert_respond_to topic, "title?"
assert_respond_to topic, "title="
assert_respond_to topic, :title
assert_respond_to topic, :title?
assert_respond_to topic, :title=
assert_respond_to topic, "author_name"
assert_respond_to topic, "attribute_names"
assert_not_respond_to topic, "nothingness"
assert_not_respond_to topic, :nothingness
end
test "respond_to? with a custom primary key" do
keyboard = Keyboard.create
assert_not_nil keyboard.key_number
assert_equal keyboard.key_number, keyboard.id
assert_respond_to keyboard, "key_number"
assert_respond_to keyboard, "id"
end
test "id_before_type_cast with a custom primary key" do
keyboard = Keyboard.create
keyboard.key_number = "10"
assert_equal "10", keyboard.id_before_type_cast
assert_nil keyboard.read_attribute_before_type_cast("id")
assert_equal "10", keyboard.read_attribute_before_type_cast("key_number")
assert_equal "10", keyboard.read_attribute_before_type_cast(:key_number)
end
# IRB inspects the return value of MyModel.allocate.
test "allocated objects can be inspected" do
topic = Topic.allocate
assert_equal "#<Topic not initialized>", topic.inspect
end
test "array content" do
content = %w( one two three )
topic = Topic.new
topic.content = content
topic.save
assert_equal content, Topic.find(topic.id).content
end
test "read attributes_before_type_cast" do
category = Category.new(name: "Test category", type: nil)
category_attrs = { "name" => "Test category", "id" => nil, "type" => nil, "categorizations_count" => nil }
assert_equal category_attrs, category.attributes_before_type_cast
end
if current_adapter?(:Mysql2Adapter, :TrilogyAdapter)
test "read attributes_before_type_cast on a boolean" do
bool = Boolean.create!("value" => false)
assert_equal 0, bool.reload.attributes_before_type_cast["value"]
end
end
test "read attributes_before_type_cast on a datetime" do
in_time_zone "Pacific Time (US & Canada)" do
record = @target.new
record.written_on = "345643456"
assert_equal "345643456", record.written_on_before_type_cast
assert_nil record.written_on
record.written_on = "2009-10-11 12:13:14"
assert_equal "2009-10-11 12:13:14", record.written_on_before_type_cast
assert_equal Time.zone.parse("2009-10-11 12:13:14"), record.written_on
assert_equal ActiveSupport::TimeZone["Pacific Time (US & Canada)"], record.written_on.time_zone
end
end
test "read_attribute_for_database" do
topic = Topic.new(content: ["ok"])
assert_equal "---\n- ok\n", topic.read_attribute_for_database("content")
end
test "read_attribute_for_database with aliased attribute" do
topic = Topic.new(title: "Hello")
assert_equal "Hello", topic.read_attribute_for_database(:heading)
end
test "attributes_for_database" do
topic = Topic.new
topic.content = { "one" => 1, "two" => 2 }
db_attributes = Topic.instantiate(topic.attributes_for_database).attributes
assert_equal topic.attributes, db_attributes
end
test "read attributes after type cast on a date" do
tz = "Pacific Time (US & Canada)"
in_time_zone tz do
record = @target.new
date_string = "2011-03-24"
time = Time.zone.parse date_string
record.written_on = date_string
assert_equal date_string, record.written_on_before_type_cast
assert_equal time, record.written_on
assert_equal ActiveSupport::TimeZone[tz], record.written_on.time_zone
record.save
record.reload
assert_equal time, record.written_on
end
end
test "hash content" do
topic = Topic.new
topic.content = { "one" => 1, "two" => 2 }
topic.save
assert_equal 2, Topic.find(topic.id).content["two"]
topic.content_will_change!
topic.content["three"] = 3
topic.save
assert_equal 3, Topic.find(topic.id).content["three"]
end
test "update array content" do
topic = Topic.new
topic.content = %w( one two three )
topic.content.push "four"
assert_equal(%w( one two three four ), topic.content)
topic.save
topic = Topic.find(topic.id)
topic.content << "five"
assert_equal(%w( one two three four five ), topic.content)
end
test "case-sensitive attributes hash" do
expected = ["created_at", "developer", "extendedWarranty", "id", "system", "timezone", "updated_at"]
assert_equal expected, Computer.first.attributes.keys.sort
end
test "attributes without primary key" do
klass = Class.new(ActiveRecord::Base) do
self.table_name = "developers_projects"
end
assert_equal klass.column_names, klass.new.attributes.keys
assert_not klass.new.has_attribute?("id")
end
test "hashes are not mangled" do
new_topic = { "title" => "New Topic", "content" => { "key" => "First value" } }
new_topic_values = { "title" => "AnotherTopic", "content" => { "key" => "Second value" } }
topic = Topic.new(new_topic)
assert_equal new_topic["title"], topic.title
assert_equal new_topic["content"], topic.content
topic.attributes = new_topic_values
assert_equal new_topic_values["title"], topic.title
assert_equal new_topic_values["content"], topic.content
end
test "create through factory" do
topic = Topic.create(title: "New Topic")
topicReloaded = Topic.find(topic.id)
assert_equal(topic, topicReloaded)
end
test "write_attribute" do
topic = Topic.new
topic.write_attribute :title, "Still another topic"
assert_equal "Still another topic", topic.title
topic[:title] = "Still another topic: part 2"
assert_equal "Still another topic: part 2", topic.title
topic.write_attribute "title", "Still another topic: part 3"
assert_equal "Still another topic: part 3", topic.title
topic["title"] = "Still another topic: part 4"
assert_equal "Still another topic: part 4", topic.title
end
test "write_attribute can write aliased attributes as well" do
topic = Topic.new(title: "Don't change the topic")
topic.write_attribute :heading, "New topic"
assert_equal "New topic", topic.title
end
test "write_attribute raises ActiveModel::MissingAttributeError when the attribute does not exist" do
topic = Topic.first
assert_raises(ActiveModel::MissingAttributeError) { topic.update_columns(no_column_exists: "Hello!") }
assert_raises(ActiveModel::UnknownAttributeError) { topic.update(no_column_exists: "Hello!") }
assert_raises(ActiveModel::MissingAttributeError) { topic[:no_column_exists] = "Hello!" }
end
test "write_attribute does not raise when the attribute isn't selected" do
topic = Topic.select(:id).first
assert_nothing_raised { topic[:title] = "Hello!" }
end
test "write_attribute allows writing to aliased attributes" do
topic = Topic.first
assert_nothing_raised { topic.update_columns(heading: "Hello!") }
assert_nothing_raised { topic.update(heading: "Hello!") }
end
test "read_attribute" do
topic = Topic.new
topic.title = "Don't change the topic"
assert_equal "Don't change the topic", topic.read_attribute("title")
assert_equal "Don't change the topic", topic["title"]
assert_equal "Don't change the topic", topic.read_attribute(:title)
assert_equal "Don't change the topic", topic[:title]
end
test "read_attribute can read aliased attributes as well" do
topic = Topic.new(title: "Don't change the topic")
assert_equal "Don't change the topic", topic.read_attribute("heading")
assert_equal "Don't change the topic", topic["heading"]
assert_equal "Don't change the topic", topic.read_attribute(:heading)
assert_equal "Don't change the topic", topic[:heading]
end
test "read_attribute raises ActiveModel::MissingAttributeError when the attribute isn't selected" do
computer = Computer.select(:id, :extendedWarranty).first
assert_raises(ActiveModel::MissingAttributeError, match: /attribute 'developer' for Computer/) do
computer[:developer]
end
assert_nothing_raised { computer[:extendedWarranty] }
assert_nothing_raised { computer[:no_column_exists] }
end
test "read_attribute when false" do
topic = topics(:first)
topic.approved = false
assert_not topic.approved?, "approved should be false"
topic.approved = "false"
assert_not topic.approved?, "approved should be false"
end
test "read_attribute when true" do
topic = topics(:first)
topic.approved = true
assert_predicate topic, :approved?, "approved should be true"
topic.approved = "true"
assert_predicate topic, :approved?, "approved should be true"
end
test "boolean attributes writing and reading" do
topic = Topic.new
topic.approved = "false"
assert_not topic.approved?, "approved should be false"
topic.approved = "false"
assert_not topic.approved?, "approved should be false"
topic.approved = "true"
assert_predicate topic, :approved?, "approved should be true"
topic.approved = "true"
assert_predicate topic, :approved?, "approved should be true"
end
test "overridden write_attribute" do
topic = Topic.new
def topic.write_attribute(attr_name, value)
super(attr_name, value.downcase)
end
topic.write_attribute :title, "Yet another topic"
assert_equal "yet another topic", topic.title
topic[:title] = "Yet another topic: part 2"
assert_equal "yet another topic: part 2", topic.title
topic.write_attribute "title", "Yet another topic: part 3"
assert_equal "yet another topic: part 3", topic.title
topic["title"] = "Yet another topic: part 4"
assert_equal "yet another topic: part 4", topic.title
end
test "overridden read_attribute" do
topic = Topic.new
topic.title = "Stop changing the topic"
def topic.read_attribute(attr_name)
super(attr_name).upcase
end
assert_equal "STOP CHANGING THE TOPIC", topic.read_attribute("title")
assert_equal "STOP CHANGING THE TOPIC", topic["title"]
assert_equal "STOP CHANGING THE TOPIC", topic.read_attribute(:title)
assert_equal "STOP CHANGING THE TOPIC", topic[:title]
end
test "read overridden attribute" do
topic = Topic.new(title: "a")
def topic.title() "b" end
assert_equal "a", topic[:title]
end
test "read overridden attribute with predicate respects override" do
topic = Topic.new
topic.approved = true
def topic.approved; false; end
assert_not topic.approved?, "overridden approved should be false"
end
test "string attribute predicate" do
[nil, "", " "].each do |value|
assert_equal false, Topic.new(author_name: value).author_name?
end
assert_equal true, Topic.new(author_name: "Name").author_name?
ActiveModel::Type::Boolean::FALSE_VALUES.each do |value|
assert_predicate Topic.new(author_name: value), :author_name?
end
end
test "number attribute predicate" do
[nil, 0, "0"].each do |value|
assert_equal false, Developer.new(salary: value).salary?
end
assert_equal true, Developer.new(salary: 1).salary?
assert_equal true, Developer.new(salary: "1").salary?
end
test "boolean attribute predicate" do
[nil, "", false, "false", "f", 0].each do |value|
assert_equal false, Topic.new(approved: value).approved?
end
[true, "true", "1", 1].each do |value|
assert_equal true, Topic.new(approved: value).approved?
end
end
test "user-defined text attribute predicate" do
klass = Class.new(ActiveRecord::Base) do
self.table_name = Topic.table_name
attribute :user_defined_text, :text
end
topic = klass.new(user_defined_text: "text")
assert_predicate topic, :user_defined_text?
ActiveModel::Type::Boolean::FALSE_VALUES.each do |value|
topic = klass.new(user_defined_text: value)
assert_predicate topic, :user_defined_text?
end
end
test "user-defined date attribute predicate" do
klass = Class.new(ActiveRecord::Base) do
self.table_name = Topic.table_name
attribute :user_defined_date, :date
end
topic = klass.new(user_defined_date: Date.current)
assert_predicate topic, :user_defined_date?
end
test "user-defined datetime attribute predicate" do
klass = Class.new(ActiveRecord::Base) do
self.table_name = Topic.table_name
attribute :user_defined_datetime, :datetime
end
topic = klass.new(user_defined_datetime: Time.current)
assert_predicate topic, :user_defined_datetime?
end
test "user-defined time attribute predicate" do
klass = Class.new(ActiveRecord::Base) do
self.table_name = Topic.table_name
attribute :user_defined_time, :time
end
topic = klass.new(user_defined_time: Time.current)
assert_predicate topic, :user_defined_time?
end
test "user-defined JSON attribute predicate" do
klass = Class.new(ActiveRecord::Base) do
self.table_name = Topic.table_name
attribute :user_defined_json, :json
end
topic = klass.new(user_defined_json: { key: "value" })
assert_predicate topic, :user_defined_json?
topic = klass.new(user_defined_json: {})
assert_not_predicate topic, :user_defined_json?
end
test "custom field attribute predicate" do
object = Company.find_by_sql(<<~SQL).first
SELECT c1.*, c2.type as string_value, c2.rating as int_value
FROM companies c1, companies c2
WHERE c1.firm_id = c2.id
AND c1.id = 2
SQL
assert_equal "Firm", object.string_value
assert_predicate object, :string_value?
object.string_value = " "
assert_not_predicate object, :string_value?
assert_equal 1, object.int_value.to_i
assert_predicate object, :int_value?
object.int_value = "0"
assert_not_predicate object, :int_value?
end
test "non-attribute read and write" do
topic = Topic.new
assert_not_respond_to topic, "mumbo"
assert_raise(NoMethodError) { topic.mumbo }
assert_raise(NoMethodError) { topic.mumbo = 5 }
end
test "undeclared attribute method does not affect respond_to? and method_missing" do
topic = @target.new(title: "Budget")
assert_respond_to topic, "title"
assert_equal "Budget", topic.title
assert_not_respond_to topic, "title_hello_world"
assert_raise(NoMethodError) { topic.title_hello_world }
end
test "declared prefixed attribute method affects respond_to? and method_missing" do
topic = @target.new(title: "Budget")
%w(default_ title_).each do |prefix|
@target.class_eval "def #{prefix}attribute(*args) args end"
@target.attribute_method_prefix prefix
meth = "#{prefix}title"
assert_respond_to topic, meth
assert_equal ["title"], topic.public_send(meth)
assert_equal ["title", "a"], topic.public_send(meth, "a")
assert_equal ["title", 1, 2, 3], topic.public_send(meth, 1, 2, 3)
end
end
test "declared suffixed attribute method affects respond_to? and method_missing" do
%w(_default _title_default _it! _candidate= able?).each do |suffix|
@target.class_eval "def attribute#{suffix}(*args) args end"
@target.attribute_method_suffix suffix
topic = @target.new(title: "Budget")
meth = "title#{suffix}"
assert_respond_to topic, meth
assert_equal ["title"], topic.public_send(meth)
assert_equal ["title", "a"], topic.public_send(meth, "a")
assert_equal ["title", 1, 2, 3], topic.public_send(meth, 1, 2, 3)
end
end
test "declared affixed attribute method affects respond_to? and method_missing" do
[["mark_", "_for_update"], ["reset_", "!"], ["default_", "_value?"]].each do |prefix, suffix|
@target.class_eval "def #{prefix}attribute#{suffix}(*args) args end"
@target.attribute_method_affix(prefix: prefix, suffix: suffix)
topic = @target.new(title: "Budget")
meth = "#{prefix}title#{suffix}"
assert_respond_to topic, meth
assert_equal ["title"], topic.public_send(meth)
assert_equal ["title", "a"], topic.public_send(meth, "a")
assert_equal ["title", 1, 2, 3], topic.public_send(meth, 1, 2, 3)
end
end
test "should unserialize attributes for frozen records" do
myobj = { "value1" => "value2" }
topic = Topic.create(content: myobj)
topic.freeze
assert_equal myobj, topic.content
end
test "typecast attribute from select to false" do
Topic.create(title: "Budget")
topic = Topic.all.merge!(select: "topics.*, 1=2 as is_test").first
assert_not_predicate topic, :is_test?
end
test "typecast attribute from select to true" do
Topic.create(title: "Budget")
topic = Topic.all.merge!(select: "topics.*, 2=2 as is_test").first
assert_predicate topic, :is_test?
end
test "raises ActiveRecord::DangerousAttributeError when defining an AR method or dangerous Object method in a model" do
%w(save create_or_update hash dup frozen?).each do |method|
klass = Class.new(ActiveRecord::Base)
klass.class_eval "def #{method}() 'defined #{method}' end"
assert_raise ActiveRecord::DangerousAttributeError do
klass.instance_method_already_implemented?(method)
end
end
end
test "converted values are returned after assignment" do
developer = Developer.new(name: 1337, salary: "50000")
assert_equal "50000", developer.salary_before_type_cast
assert_equal 1337, developer.name_before_type_cast
assert_equal 50000, developer.salary
assert_equal "1337", developer.name
developer.save!
assert_equal 50000, developer.salary
assert_equal "1337", developer.name
end
test "write nil to time attribute" do
in_time_zone "Pacific Time (US & Canada)" do
record = @target.new
record.written_on = nil
assert_nil record.written_on
end
end
test "write time to date attribute" do
in_time_zone "Pacific Time (US & Canada)" do
record = @target.new
record.last_read = Time.utc(2010, 1, 1, 10)
assert_equal Date.civil(2010, 1, 1), record.last_read
end
end
test "time attributes are retrieved in the current time zone" do
in_time_zone "Pacific Time (US & Canada)" do
utc_time = Time.utc(2008, 1, 1)
record = @target.new
record[:written_on] = utc_time
assert_equal utc_time, record.written_on # record.written on is equal to (i.e., simultaneous with) utc_time
assert_kind_of ActiveSupport::TimeWithZone, record.written_on # but is a TimeWithZone
assert_equal ActiveSupport::TimeZone["Pacific Time (US & Canada)"], record.written_on.time_zone # and is in the current Time.zone
assert_equal Time.utc(2007, 12, 31, 16), record.written_on.time # and represents time values adjusted accordingly
end
end
test "setting a time zone-aware attribute to UTC" do
in_time_zone "Pacific Time (US & Canada)" do
utc_time = Time.utc(2008, 1, 1)
record = @target.new
record.written_on = utc_time
assert_equal utc_time, record.written_on
assert_equal ActiveSupport::TimeZone["Pacific Time (US & Canada)"], record.written_on.time_zone
assert_equal Time.utc(2007, 12, 31, 16), record.written_on.time
end
end
test "setting time zone-aware attribute in other time zone" do
utc_time = Time.utc(2008, 1, 1)
cst_time = utc_time.in_time_zone("Central Time (US & Canada)")
in_time_zone "Pacific Time (US & Canada)" do
record = @target.new
record.written_on = cst_time
assert_equal utc_time, record.written_on
assert_equal ActiveSupport::TimeZone["Pacific Time (US & Canada)"], record.written_on.time_zone
assert_equal Time.utc(2007, 12, 31, 16), record.written_on.time
end
end
test "setting time zone-aware read attribute" do
utc_time = Time.utc(2008, 1, 1)
cst_time = utc_time.in_time_zone("Central Time (US & Canada)")
in_time_zone "Pacific Time (US & Canada)" do
record = @target.create(written_on: cst_time).reload
assert_equal utc_time, record[:written_on]
assert_equal ActiveSupport::TimeZone["Pacific Time (US & Canada)"], record[:written_on].time_zone
assert_equal Time.utc(2007, 12, 31, 16), record[:written_on].time
end
end
test "setting time zone-aware attribute with a string" do
utc_time = Time.utc(2008, 1, 1)
(-11..13).each do |timezone_offset|
time_string = utc_time.in_time_zone(timezone_offset).to_s
in_time_zone "Pacific Time (US & Canada)" do
record = @target.new
record.written_on = time_string
assert_equal Time.zone.parse(time_string), record.written_on
assert_equal ActiveSupport::TimeZone["Pacific Time (US & Canada)"], record.written_on.time_zone
assert_equal Time.utc(2007, 12, 31, 16), record.written_on.time
end
end
end
test "time zone-aware attribute saved" do
in_time_zone 1 do
record = @target.create(written_on: "2012-02-20 10:00")
record.written_on = "2012-02-20 09:00"
record.save
assert_equal Time.zone.local(2012, 02, 20, 9), record.reload.written_on
end
end
test "setting a time zone-aware attribute to a blank string returns nil" do
in_time_zone "Pacific Time (US & Canada)" do
record = @target.new
record.written_on = " "
assert_nil record.written_on
assert_nil record[:written_on]
end
end
test "setting a time zone-aware attribute interprets time zone-unaware string in time zone" do
time_string = "Tue Jan 01 00:00:00 2008"
(-11..13).each do |timezone_offset|
in_time_zone timezone_offset do
record = @target.new
record.written_on = time_string
assert_equal Time.zone.parse(time_string), record.written_on
assert_equal ActiveSupport::TimeZone[timezone_offset], record.written_on.time_zone
assert_equal Time.utc(2008, 1, 1), record.written_on.time
end
end
end
test "setting a time zone-aware datetime in the current time zone" do
utc_time = Time.utc(2008, 1, 1)
in_time_zone "Pacific Time (US & Canada)" do
record = @target.new
record.written_on = utc_time.in_time_zone
assert_equal utc_time, record.written_on
assert_equal ActiveSupport::TimeZone["Pacific Time (US & Canada)"], record.written_on.time_zone
assert_equal Time.utc(2007, 12, 31, 16), record.written_on.time
end
end
test "YAML dumping a record with time zone-aware attribute" do
in_time_zone "Pacific Time (US & Canada)" do
record = Topic.new(id: 1)
record.written_on = "Jan 01 00:00:00 2014"
payload = YAML.dump(record)
assert_equal record, YAML.respond_to?(:unsafe_load) ? YAML.unsafe_load(payload) : YAML.load(payload)
end
ensure
# NOTE: Reset column info because global topics
# don't have tz-aware attributes by default.
Topic.reset_column_information
end
test "setting a time zone-aware time in the current time zone" do
in_time_zone "Pacific Time (US & Canada)" do
record = @target.new
time_string = "10:00:00"
expected_time = Time.zone.parse("2000-01-01 #{time_string}")
record.bonus_time = time_string
assert_equal expected_time, record.bonus_time
assert_equal ActiveSupport::TimeZone["Pacific Time (US & Canada)"], record.bonus_time.time_zone
record.bonus_time = ""
assert_nil record.bonus_time
end
end
test "setting a time zone-aware time with DST" do
in_time_zone "Pacific Time (US & Canada)" do
current_time = Time.zone.local(2014, 06, 15, 10)
record = @target.new(bonus_time: current_time)
time_before_save = record.bonus_time
record.save
record.reload
assert_equal time_before_save, record.bonus_time
assert_equal ActiveSupport::TimeZone["Pacific Time (US & Canada)"], record.bonus_time.time_zone
end
end
test "setting invalid string to a zone-aware time attribute" do
in_time_zone "Pacific Time (US & Canada)" do
record = @target.new
time_string = "ABC"
record.bonus_time = time_string
assert_nil record.bonus_time
end
end
test "removing time zone-aware types" do
with_time_zone_aware_types(:datetime) do
in_time_zone "Pacific Time (US & Canada)" do
record = @target.new(bonus_time: "10:00:00")
expected_time = Time.utc(2000, 01, 01, 10)
assert_equal expected_time, record.bonus_time
assert_predicate record.bonus_time, :utc?
end
end
end
test "time zone-aware attributes do not recurse infinitely on invalid values" do
in_time_zone "Pacific Time (US & Canada)" do
record = @target.new(bonus_time: [])
assert_nil record.bonus_time
end
end
test "setting a time_zone_conversion_for_attributes should write the value on a class variable" do
Topic.skip_time_zone_conversion_for_attributes = [:field_a]
Minimalistic.skip_time_zone_conversion_for_attributes = [:field_b]
assert_equal [:field_a], Topic.skip_time_zone_conversion_for_attributes
assert_equal [:field_b], Minimalistic.skip_time_zone_conversion_for_attributes
end
test "attribute readers respect access control" do
privatize("title")
topic = @target.new(title: "The pros and cons of programming naked.")
assert_not_respond_to topic, :title
exception = assert_raise(NoMethodError) { topic.title }
assert_includes exception.message, "private method"
assert_equal "I'm private", topic.send(:title)
end
test "attribute writers respect access control" do
privatize("title=(value)")
topic = @target.new
assert_not_respond_to topic, :title=
exception = assert_raise(NoMethodError) { topic.title = "Pants" }
assert_includes exception.message, "private method"
topic.send(:title=, "Very large pants")
end
test "attribute predicates respect access control" do
privatize("title?")
topic = @target.new(title: "Isaac Newton's pants")
assert_not_respond_to topic, :title?
exception = assert_raise(NoMethodError) { topic.title? }
assert_includes exception.message, "private method"
assert topic.send(:title?)
end
test "bulk updates respect access control" do
privatize("title=(value)")
assert_raise(ActiveRecord::UnknownAttributeError) { @target.new(title: "Rants about pants") }
assert_raise(ActiveRecord::UnknownAttributeError) { @target.new.attributes = { title: "Ants in pants" } }
end
test "bulk update raises ActiveRecord::UnknownAttributeError" do
error = assert_raises(ActiveRecord::UnknownAttributeError) {
Topic.new(hello: "world")
}
assert_instance_of Topic, error.record
assert_equal "hello", error.attribute
assert_match "unknown attribute 'hello' for Topic.", error.message
end
test "method overrides in multi-level subclasses" do
klass = Class.new(Developer) do
def name
"dev:#{read_attribute(:name)}"
end
end
2.times { klass = Class.new(klass) }
dev = klass.new(name: "arthurnn")
dev.save!
assert_equal "dev:arthurnn", dev.reload.name
end
test "global methods are overwritten" do
klass = Class.new(ActiveRecord::Base) do
self.table_name = "computers"
end
assert_not klass.instance_method_already_implemented?(:system)
computer = klass.new
assert_nil computer.system
end
test "global methods are overwritten when subclassing" do
klass = Class.new(ActiveRecord::Base) do
self.abstract_class = true
end
subklass = Class.new(klass) do
self.table_name = "computers"
end
assert_not klass.instance_method_already_implemented?(:system)
assert_not subklass.instance_method_already_implemented?(:system)
computer = subklass.new
assert_nil computer.system
end
test "instance methods should be defined on the base class" do
subklass = Class.new(Topic)
Topic.define_attribute_methods
instance = subklass.new
instance.id = 5
assert_equal 5, instance.id
assert subklass.method_defined?(:id), "subklass is missing id method"
Topic.undefine_attribute_methods
assert_equal 5, instance.id
assert subklass.method_defined?(:id), "subklass is missing id method"
end
test "#undefine_attribute_methods undefines alias attribute methods" do
topic_class = Class.new(ActiveRecord::Base) do
self.table_name = "topics"
alias_attribute :subject_to_be_undefined, :title
end
topic = topic_class.new(title: "New topic")
assert_equal("New topic", topic.subject_to_be_undefined)
assert_equal true, topic_class.method_defined?(:subject_to_be_undefined)
topic_class.undefine_attribute_methods
assert_equal false, topic_class.method_defined?(:subject_to_be_undefined)
topic.subject_to_be_undefined
assert_equal true, topic_class.method_defined?(:subject_to_be_undefined)
topic_class.undefine_attribute_methods
assert_equal true, topic.respond_to?(:subject_to_be_undefined)
assert_equal true, topic_class.method_defined?(:subject_to_be_undefined)
end
test "#define_attribute_methods brings back undefined aliases" do
topic_class = Class.new(ActiveRecord::Base) do
self.table_name = "topics"
alias_attribute :title_alias_to_be_undefined, :title
end
topic = topic_class.new(title: "New topic")
assert_equal("New topic", topic.title_alias_to_be_undefined)
topic_class.undefine_attribute_methods
assert_equal false, topic_class.method_defined?(:title_alias_to_be_undefined)
topic_class.define_attribute_methods
assert_equal true, topic_class.method_defined?(:title_alias_to_be_undefined)
assert_equal "New topic", topic.title_alias_to_be_undefined
end
test "define_attribute_method works with both symbol and string" do
klass = Class.new(ActiveRecord::Base)
klass.table_name = "foo"
assert_nothing_raised { klass.define_attribute_method(:foo) }
assert_nothing_raised { klass.define_attribute_method("bar") }
end
test "read_attribute with nil should not asplode" do
assert_nil Topic.new.read_attribute(nil)
end
# If B < A, and A defines an accessor for 'foo', we don't want to override
# that by defining a 'foo' method in the generated methods module for B.
# (That module will be inserted between the two, e.g. [B, <GeneratedAttributes>, A].)
test "inherited custom accessors" do
klass = new_topic_like_ar_class do
self.abstract_class = true
def title; "omg"; end
def title=(val); self.author_name = val; end
end
subklass = Class.new(klass)
[klass, subklass].each(&:define_attribute_methods)
topic = subklass.find(1)
assert_equal "omg", topic.title
topic.title = "lol"
assert_equal "lol", topic.author_name
end
test "inherited custom accessors with reserved names" do
klass = Class.new(ActiveRecord::Base) do
self.table_name = "computers"
self.abstract_class = true
def system; "omg"; end
def system=(val); self.developer = val; end
end
subklass = Class.new(klass)
[klass, subklass].each(&:define_attribute_methods)
computer = subklass.find(1)
assert_equal "omg", computer.system
computer.developer = 99
assert_equal 99, computer.developer
end
test "on_the_fly_super_invokable_generated_attribute_methods_via_method_missing" do
klass = new_topic_like_ar_class do
def title
super + "!"
end
end
real_topic = topics(:first)
assert_equal real_topic.title + "!", klass.find(real_topic.id).title
end
test "on-the-fly super-invokable generated attribute predicates via method_missing" do
klass = new_topic_like_ar_class do
def title?
!super
end
end
real_topic = topics(:first)
assert_equal !real_topic.title?, klass.find(real_topic.id).title?
end
test "calling super when the parent does not define method raises NoMethodError" do
klass = new_topic_like_ar_class do
def some_method_that_is_not_on_super
super
end
end
assert_raise(NoMethodError) do
klass.new.some_method_that_is_not_on_super
end
end
test "attribute_method?" do
assert @target.attribute_method?(:title)
assert @target.attribute_method?(:title=)
assert_not @target.attribute_method?(:wibble)
end
test "attribute_method? returns false if the table does not exist" do
@target.table_name = "wibble"
assert_not @target.attribute_method?(:title)
end
test "attribute_names on a new record" do
model = @target.new
assert_equal @target.column_names, model.attribute_names
end
test "attribute_names on a queried record" do
model = @target.last!
assert_equal @target.column_names, model.attribute_names
end
test "attribute_names with a custom select" do
model = @target.select("id").last!
assert_equal ["id"], model.attribute_names
# Ensure other columns exist.
assert_not_equal ["id"], @target.column_names
end
test "came_from_user?" do
model = @target.first
assert_not_predicate model, :id_came_from_user?
model.id = "omg"
assert_predicate model, :id_came_from_user?
end
test "accessed_fields" do
model = @target.first
assert_equal [], model.accessed_fields
model.title
assert_equal ["title"], model.accessed_fields
end
test "generated attribute methods ancestors have correct module" do
mod = Topic.send(:generated_attribute_methods)
assert_equal "Topic::GeneratedAttributeMethods", mod.inspect
end
test "read_attribute_before_type_cast with aliased attribute" do
model = NumericData.new(new_bank_balance: "abcd")
assert_equal "abcd", model.read_attribute_before_type_cast("new_bank_balance")
end
ToBeLoadedFirst = Class.new(ActiveRecord::Base) do
self.table_name = "topics"
alias_attribute :subject, :author_name
end
ToBeLoadedSecond = Class.new(ActiveRecord::Base) do
self.table_name = "topics"
alias_attribute :subject, :title
end
test "#alias_attribute override methods defined in parent models" do
parent_model = Class.new(ActiveRecord::Base) do
self.abstract_class = true
def subject
"Abstract Subject"
end
end
subclass = Class.new(parent_model) do
self.table_name = "topics"
alias_attribute :subject, :title
end
obj = subclass.new
obj.title = "hey"
assert_equal("hey", obj.subject)
end
test "aliases to the same attribute name do not conflict with each other" do
first_model_object = ToBeLoadedFirst.new(author_name: "author 1")
assert_equal("author 1", first_model_object.subject)
assert_equal([nil, "author 1"], first_model_object.subject_change)
second_model_object = ToBeLoadedSecond.new(title: "foo")
assert_equal("foo", second_model_object.subject)
assert_equal([nil, "foo"], second_model_object.subject_change)
end
test "#alias_attribute with an overridden original method does not use the overridden original method" do
class_with_deprecated_alias_attribute_behavior = Class.new(ActiveRecord::Base) do
self.table_name = "topics"
alias_attribute :subject, :title
def title_was
"overridden_title_was"
end
end
obj = class_with_deprecated_alias_attribute_behavior.new
obj.title = "hey"
assert_equal("hey", obj.subject)
assert_nil(obj.subject_was)
end
test "#alias_attribute with an overridden original method from a module does not use the overridden original method" do
title_was_override = Module.new do
def title_was
"overridden_title_was"
end
end
class_with_deprecated_alias_attribute_behavior_from_module = Class.new(ActiveRecord::Base) do
self.table_name = "topics"
include title_was_override
alias_attribute :subject, :title
end
obj = class_with_deprecated_alias_attribute_behavior_from_module.new
obj.title = "hey"
assert_equal("hey", obj.subject)
assert_nil(obj.subject_was)
end
ClassWithDeprecatedAliasAttributeBehaviorResolved = Class.new(ActiveRecord::Base) do
self.table_name = "topics"
alias_attribute :subject, :title
def title_was
"overridden_title_was"
end
def subject_was
"overridden_subject_was"
end
end
test "#alias_attribute with an overridden original method along with an overridden alias method uses the overridden alias method" do
obj = ClassWithDeprecatedAliasAttributeBehaviorResolved.new
obj.title = "hey"
assert_equal("hey", obj.subject)
assert_equal("overridden_subject_was", obj.subject_was)
end
test "#alias_attribute with an overridden original method along with an overridden alias method in a parent class uses the overridden alias method" do
child_with_deprecated_behavior_resolved = Class.new(ClassWithDeprecatedAliasAttributeBehaviorResolved)
obj = child_with_deprecated_behavior_resolved.new
obj.title = "hey"
assert_equal("hey", obj.subject)
assert_equal("overridden_subject_was", obj.subject_was)
end
ParentWithAlias = Class.new(ActiveRecord::Base) do
self.table_name = "topics"
alias_attribute :parents_subject, :title
end
AbstractClassInBetween = Class.new(ParentWithAlias) do
self.abstract_class = true
alias_attribute :parents_subject, :title
end
ChildWithAnAliasFromAbstractClass = Class.new(AbstractClassInBetween) do
end
test "#alias_attribute with the same alias as parent doesn't issue a deprecation" do
ParentWithAlias.new # eagerly generate parents alias methods
obj = assert_not_deprecated(ActiveRecord.deprecator) do
ChildWithAnAliasFromAbstractClass.new
end
obj.title = "hey"
assert_equal("hey", obj.parents_subject)
end
test "#alias_attribute method on an abstract class is available on subclasses" do
superclass = Class.new(ActiveRecord::Base) do
self.abstract_class = true
alias_attribute :id_value, :id
end
subclass = Class.new(superclass) { self.table_name = "topics" }
object = subclass.build(id: 123_456)
assert_equal 123_456, object.id_value
end
test "#alias_attribute with an _in_database method issues raises an error" do
class_with_generated_attribute_method_target = Class.new(ActiveRecord::Base) do
def self.name
"ClassWithGeneratedAttributeMethodTarget"
end
self.table_name = "topics"
alias_attribute :saved_title, :title_in_database
end
message = <<~MESSAGE.squish
ClassWithGeneratedAttributeMethodTarget model aliases
`title_in_database`, but `title_in_database` is not an attribute.
Use `alias_method :saved_title, :title_in_database` or define the method manually.
MESSAGE
error = assert_raises(ArgumentError) do
class_with_generated_attribute_method_target.new
end
assert_equal message, error.message
end
test "#alias_attribute with enum method raises an error" do
class_with_enum_method_target = Class.new(ActiveRecord::Base) do
def self.name
"ClassWithEnumMethodTarget"
end
self.table_name = "books"
attribute :status, :string
enum :status, {
pending: "0",
completed: "1",
}
alias_attribute :is_pending?, :pending?
end
message = <<~MESSAGE.squish
ClassWithEnumMethodTarget model aliases `pending?`, but `pending?` is not an attribute. Use `alias_method :is_pending?, :pending?` or define the method manually.
MESSAGE
error = assert_raises(ArgumentError) do
class_with_enum_method_target.new
end
assert_equal message, error.message
end
test "#alias_attribute with an association method raises an error" do
class_with_association_target = Class.new(ActiveRecord::Base) do
def self.name
"ClassWithAssociationTarget"
end
self.table_name = "books"
belongs_to :author
alias_attribute :written_by, :author
end
message = <<~MESSAGE.squish
ClassWithAssociationTarget model aliases `author`, but `author` is not an attribute. Use `alias_method :written_by, :author` or define the method manually.
MESSAGE
error = assert_raises(ArgumentError) do
class_with_association_target.new
end
assert_equal message, error.message
end
test "#alias_attribute method on a STI class is available on subclasses" do
superclass = Class.new(ActiveRecord::Base) do
self.table_name = "comments"
alias_attribute :text, :body
end
subclass = Class.new(superclass) do
self.abstract_class = true
end
subsubclass = Class.new(subclass)
comment = subsubclass.build(body: "Text")
assert_equal "Text", comment.text
end
test "#alias_attribute with a manually defined method raises an error" do
class_with_aliased_manually_defined_method = Class.new(ActiveRecord::Base) do
def self.name
"ClassWithAliasedManuallyDefinedMethod"
end
self.table_name = "books"
alias_attribute :print, :publish
def publish
"Publishing!"
end
end
message = <<~MESSAGE.squish
ClassWithAliasedManuallyDefinedMethod model aliases `publish`, but `publish` is not an attribute.
Use `alias_method :print, :publish` or define the method manually.
MESSAGE
error = assert_raises(ArgumentError) do
class_with_aliased_manually_defined_method.new
end
assert_equal message, error.message
end
private
def new_topic_like_ar_class(&block)
klass = Class.new(ActiveRecord::Base) do
self.table_name = "topics"
class_eval(&block)
end
assert_empty klass.send(:generated_attribute_methods).instance_methods(false)
klass
end
def with_time_zone_aware_types(*types)
old_types = ActiveRecord::Base.time_zone_aware_types
ActiveRecord::Base.time_zone_aware_types = types
yield
ensure
ActiveRecord::Base.time_zone_aware_types = old_types
end
def privatize(method_signature)
@target.class_eval(<<-private_method, __FILE__, __LINE__ + 1)
private
def #{method_signature}
"I'm private"
end
private_method
end
end
|