ruby-trello 2.0.1 → 3.0.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +61 -10
- data/lib/trello.rb +57 -36
- data/lib/trello/action.rb +31 -23
- data/lib/trello/association_builder/has_many.rb +17 -0
- data/lib/trello/association_builder/has_one.rb +16 -0
- data/lib/trello/association_fetcher/has_many.rb +26 -0
- data/lib/trello/association_fetcher/has_many/fetch.rb +47 -0
- data/lib/trello/association_fetcher/has_many/params.rb +56 -0
- data/lib/trello/association_fetcher/has_one.rb +25 -0
- data/lib/trello/association_fetcher/has_one/fetch.rb +49 -0
- data/lib/trello/association_fetcher/has_one/params.rb +36 -0
- data/lib/trello/association_infer_tool.rb +13 -0
- data/lib/trello/association_proxy.rb +1 -1
- data/lib/trello/attachment.rb +40 -27
- data/lib/trello/basic_data.rb +112 -50
- data/lib/trello/board.rb +91 -101
- data/lib/trello/card.rb +53 -200
- data/lib/trello/checklist.rb +17 -71
- data/lib/trello/comment.rb +32 -22
- data/lib/trello/cover_image.rb +20 -0
- data/lib/trello/custom_field.rb +78 -0
- data/lib/trello/custom_field_item.rb +76 -0
- data/lib/trello/custom_field_option.rb +49 -0
- data/lib/trello/item.rb +27 -16
- data/lib/trello/item_state.rb +7 -15
- data/lib/trello/json_utils.rb +1 -1
- data/lib/trello/label.rb +15 -84
- data/lib/trello/label_name.rb +22 -25
- data/lib/trello/list.rb +31 -44
- data/lib/trello/member.rb +77 -31
- data/lib/trello/notification.rb +27 -20
- data/lib/trello/organization.rb +53 -25
- data/lib/trello/plugin_datum.rb +11 -16
- data/lib/trello/schema.rb +31 -0
- data/lib/trello/schema/attribute/base.rb +79 -0
- data/lib/trello/schema/attribute/board_pref.rb +45 -0
- data/lib/trello/schema/attribute/custom_field_display.rb +45 -0
- data/lib/trello/schema/attribute/default.rb +45 -0
- data/lib/trello/schema/attribute_builder.rb +42 -0
- data/lib/trello/schema/attribute_registration.rb +47 -0
- data/lib/trello/schema/serializer/default.rb +17 -0
- data/lib/trello/schema/serializer/labels.rb +23 -0
- data/lib/trello/schema/serializer/time.rb +25 -0
- data/lib/trello/schema/serializer/webhooks.rb +25 -0
- data/lib/trello/token.rb +15 -12
- data/lib/trello/webhook.rb +18 -71
- data/spec/action_spec.rb +2 -3
- data/spec/basic_data_spec.rb +58 -0
- data/spec/board_spec.rb +53 -100
- data/spec/card_spec.rb +177 -66
- data/spec/cassettes/action_find_with_id_and_get_all_fields.yml +104 -0
- data/spec/cassettes/board_find_with_id_and_get_all_fields.yml +96 -0
- data/spec/cassettes/board_find_with_id_and_get_specific_fields.yml +96 -0
- data/spec/cassettes/can_add_a_file_from_url_on_a_card.yml +189 -0
- data/spec/cassettes/can_add_a_file_on_a_card.yml +200 -0
- data/spec/cassettes/can_add_a_member_to_a_board.yml +191 -0
- data/spec/cassettes/can_add_a_member_to_a_card.yml +190 -0
- data/spec/cassettes/can_add_label_on_a_card.yml +281 -0
- data/spec/cassettes/can_arvhice_all_cards_of_list.yml +397 -0
- data/spec/cassettes/can_close_bong_a_card.yml +189 -0
- data/spec/cassettes/can_get_actions.yml +196 -0
- data/spec/cassettes/can_get_actions_of_board.yml +188 -0
- data/spec/cassettes/can_get_actions_of_list.yml +202 -0
- data/spec/cassettes/can_get_actions_of_members.yml +199 -0
- data/spec/cassettes/can_get_actions_of_organization.yml +201 -0
- data/spec/cassettes/can_get_attachments.yml +187 -0
- data/spec/cassettes/can_get_boards_of_custom_field.yml +198 -0
- data/spec/cassettes/can_get_boards_of_label.yml +197 -0
- data/spec/cassettes/can_get_boards_of_organization.yml +207 -0
- data/spec/cassettes/can_get_cards_of_board.yml +193 -0
- data/spec/cassettes/can_get_cards_of_list.yml +201 -0
- data/spec/cassettes/can_get_cards_of_member.yml +204 -0
- data/spec/cassettes/can_get_checklists_of_board.yml +187 -0
- data/spec/cassettes/can_get_comments.yml +193 -0
- data/spec/cassettes/can_get_custom_field_options_of_custom_field.yml +197 -0
- data/spec/cassettes/can_get_custom_fields_of_board.yml +187 -0
- data/spec/cassettes/can_get_label_names_of_board.yml +187 -0
- data/spec/cassettes/can_get_labels_of_board.yml +187 -0
- data/spec/cassettes/can_get_lists_of_board.yml +187 -0
- data/spec/cassettes/can_get_members_of_board.yml +188 -0
- data/spec/cassettes/can_get_members_of_organization.yml +200 -0
- data/spec/cassettes/can_get_notifications_of_member.yml +199 -0
- data/spec/cassettes/can_get_organization_of_board.yml +189 -0
- data/spec/cassettes/can_get_organizations_of_member.yml +203 -0
- data/spec/cassettes/can_get_plugin_data_of_board.yml +187 -0
- data/spec/cassettes/can_move_a_card_to_another_board_with_specific_list.yml +373 -0
- data/spec/cassettes/can_move_a_card_to_another_board_without_specific_list.yml +281 -0
- data/spec/cassettes/can_move_a_card_to_another_list.yml +281 -0
- data/spec/cassettes/can_move_all_cards_to_another_list.yml +886 -0
- data/spec/cassettes/can_remove_a_member_from_a_card.yml +185 -0
- data/spec/cassettes/can_remove_an_attachment_on_a_card.yml +277 -0
- data/spec/cassettes/can_remove_an_upvote_on_a_card.yml +465 -0
- data/spec/cassettes/can_remove_label_on_a_card.yml +279 -0
- data/spec/cassettes/can_success_add_comment_to_a_card.yml +196 -0
- data/spec/cassettes/can_success_copy_checklist_to_a_card.yml +281 -0
- data/spec/cassettes/can_success_copy_checklist_to_a_card_without_name_pos.yml +281 -0
- data/spec/cassettes/can_success_create_a_board.yml +98 -0
- data/spec/cassettes/can_success_create_a_board_with_full_parameters.yml +97 -0
- data/spec/cassettes/can_success_create_a_board_without_clone_from_other.yml +98 -0
- data/spec/cassettes/can_success_create_a_card.yml +99 -0
- data/spec/cassettes/can_success_create_a_card_when_due_is_datetime.yml +98 -0
- data/spec/cassettes/can_success_create_a_card_when_due_is_time.yml +98 -0
- data/spec/cassettes/can_success_create_a_checklist.yml +102 -0
- data/spec/cassettes/can_success_create_a_custom_field.yml +102 -0
- data/spec/cassettes/can_success_create_a_custom_field_option.yml +102 -0
- data/spec/cassettes/can_success_create_a_label.yml +102 -0
- data/spec/cassettes/can_success_create_a_list.yml +102 -0
- data/spec/cassettes/can_success_create_a_list_with_full_parameters.yml +102 -0
- data/spec/cassettes/can_success_create_a_organization.yml +104 -0
- data/spec/cassettes/can_success_create_a_webhook.yml +102 -0
- data/spec/cassettes/can_success_create_new_checklist_to_a_card.yml +189 -0
- data/spec/cassettes/can_success_delete_a_custom_field_option.yml +389 -0
- data/spec/cassettes/can_success_delete_card.yml +185 -0
- data/spec/cassettes/can_success_delete_checklist.yml +284 -0
- data/spec/cassettes/can_success_get_card_of_board_by_card_id.yml +188 -0
- data/spec/cassettes/can_success_remove_member_from_board.yml +186 -0
- data/spec/cassettes/can_success_return_all_boards_of_current_user.yml +195 -0
- data/spec/cassettes/can_success_upate_a_board.yml +191 -0
- data/spec/cassettes/can_success_upate_a_card.yml +189 -0
- data/spec/cassettes/can_success_upate_a_list.yml +296 -0
- data/spec/cassettes/can_success_update_bong_a_board.yml +283 -0
- data/spec/cassettes/can_success_update_bong_a_board_with_specific_fields.yml +284 -0
- data/spec/cassettes/can_success_update_bong_a_card.yml +191 -0
- data/spec/cassettes/can_success_update_bong_a_checklist_with_specific_fields.yml +296 -0
- data/spec/cassettes/can_success_update_bong_a_custom_field.yml +200 -0
- data/spec/cassettes/can_success_update_bong_a_label.yml +200 -0
- data/spec/cassettes/can_success_update_bong_a_list.yml +199 -0
- data/spec/cassettes/can_success_update_bong_a_list_with_specific_fields.yml +296 -0
- data/spec/cassettes/can_success_update_bong_a_organization.yml +203 -0
- data/spec/cassettes/can_success_update_bong_a_webhook.yml +296 -0
- data/spec/cassettes/can_upvote_on_a_card.yml +469 -0
- data/spec/cassettes/card_find_with_id_and_get_all_fields.yml +95 -0
- data/spec/cassettes/card_find_with_id_and_get_specific_fields.yml +96 -0
- data/spec/cassettes/checklist_can_add_an_item.yml +296 -0
- data/spec/cassettes/checklist_can_update_the_item_state.yml +296 -0
- data/spec/cassettes/checklist_find_with_id_and_get_all_fields.yml +100 -0
- data/spec/cassettes/custom_field_find_with_id_and_get_all_fields.yml +100 -0
- data/spec/cassettes/custom_field_find_with_id_and_get_specific_fields.yml +100 -0
- data/spec/cassettes/custom_field_item_save_1.yml +97 -0
- data/spec/cassettes/custom_field_item_save_2.yml +281 -0
- data/spec/cassettes/custom_field_option_find_with_id.yml +100 -0
- data/spec/cassettes/get_board_of_card.yml +187 -0
- data/spec/cassettes/get_board_of_list.yml +197 -0
- data/spec/cassettes/get_boards_of_member.yml +207 -0
- data/spec/cassettes/get_check_item_states_of_card.yml +188 -0
- data/spec/cassettes/get_checklists_of_card.yml +187 -0
- data/spec/cassettes/get_cover_image_of_card.yml +187 -0
- data/spec/cassettes/get_custom_field_items_of_card.yml +187 -0
- data/spec/cassettes/get_list_of_card.yml +188 -0
- data/spec/cassettes/get_lists.yml +187 -0
- data/spec/cassettes/get_members_of_card.yml +189 -0
- data/spec/cassettes/get_plugin_data_of_card.yml +187 -0
- data/spec/cassettes/get_voters_of_card.yml +188 -0
- data/spec/cassettes/label_delete.yml +285 -0
- data/spec/cassettes/label_find_with_id.yml +100 -0
- data/spec/cassettes/list_find_with_id_and_get_all_fields.yml +100 -0
- data/spec/cassettes/list_find_with_id_and_get_specific_fields.yml +100 -0
- data/spec/cassettes/member_find_with_id_and_get_all_fields.yml +101 -0
- data/spec/cassettes/member_find_with_id_and_get_specific_fields.yml +100 -0
- data/spec/cassettes/notification_find_with_id.yml +103 -0
- data/spec/cassettes/organization_find_with_id_and_get_all_fields.yml +102 -0
- data/spec/cassettes/organization_find_with_id_and_get_specific_fields.yml +100 -0
- data/spec/cassettes/remove_upvote_on_a_card_when_have_not_voted.yml +366 -0
- data/spec/cassettes/revote_on_a_card.yml +464 -0
- data/spec/cassettes/token_find_with_token_string.yml +100 -0
- data/spec/cassettes/webhook_delete.yml +286 -0
- data/spec/cassettes/webhook_find_with_id.yml +100 -0
- data/spec/checklist_spec.rb +27 -43
- data/spec/custom_field_item_spec.rb +192 -0
- data/spec/custom_field_option_spec.rb +49 -0
- data/spec/custom_field_spec.rb +273 -0
- data/spec/integration/action/find_spec.rb +23 -0
- data/spec/integration/basic_data/many_spec.rb +127 -0
- data/spec/integration/basic_data/one_spec.rb +84 -0
- data/spec/integration/basic_data/schema_spec.rb +156 -0
- data/spec/integration/board/add_member_spec.rb +21 -0
- data/spec/integration/board/all_spec.rb +20 -0
- data/spec/integration/board/associations/actions_spec.rb +18 -0
- data/spec/integration/board/associations/cards_spec.rb +18 -0
- data/spec/integration/board/associations/checklists_spec.rb +18 -0
- data/spec/integration/board/associations/custom_fields_spec.rb +18 -0
- data/spec/integration/board/associations/label_names_spec.rb +17 -0
- data/spec/integration/board/associations/labels_spec.rb +18 -0
- data/spec/integration/board/associations/lists_spec.rb +18 -0
- data/spec/integration/board/associations/members_spec.rb +18 -0
- data/spec/integration/board/associations/organization_spec.rb +19 -0
- data/spec/integration/board/associations/plugin_data_spec.rb +18 -0
- data/spec/integration/board/create_spec.rb +95 -0
- data/spec/integration/board/find_card_spec.rb +18 -0
- data/spec/integration/board/find_spec.rb +42 -0
- data/spec/integration/board/remove_member_spec.rb +21 -0
- data/spec/integration/board/save_spec.rb +37 -0
- data/spec/integration/board/update!_spec.rb +62 -0
- data/spec/integration/board_lists_spec.rb +21 -0
- data/spec/integration/card/add_and_remove_attachment_spec.rb +45 -0
- data/spec/integration/card/add_and_remove_label_spec.rb +35 -0
- data/spec/integration/card/add_checklist_spec.rb +32 -0
- data/spec/integration/card/add_comment_spec.rb +19 -0
- data/spec/integration/card/add_memeber_spec.rb +19 -0
- data/spec/integration/card/associations/actions_spec.rb +17 -0
- data/spec/integration/card/associations/attachments_spec.rb +18 -0
- data/spec/integration/card/associations/board_spec.rb +17 -0
- data/spec/integration/card/associations/check_item_states_spec.rb +17 -0
- data/spec/integration/card/associations/checklists_spec.rb +18 -0
- data/spec/integration/card/associations/comments_spec.rb +19 -0
- data/spec/integration/card/associations/cover_image_spec.rb +18 -0
- data/spec/integration/card/associations/custom_field_items_spec.rb +18 -0
- data/spec/integration/card/associations/list_spec.rb +16 -0
- data/spec/integration/card/associations/members_spec.rb +18 -0
- data/spec/integration/card/associations/plugin_data_spec.rb +18 -0
- data/spec/integration/card/associations/voters_spec.rb +17 -0
- data/spec/integration/card/close!_spec.rb +16 -0
- data/spec/integration/card/create_new_check_list_spec.rb +19 -0
- data/spec/integration/card/create_spec.rb +84 -0
- data/spec/integration/card/delete_spec.rb +16 -0
- data/spec/integration/card/find_spec.rb +67 -0
- data/spec/integration/card/move_to_board_spec.rb +36 -0
- data/spec/integration/card/move_to_list_spec.rb +20 -0
- data/spec/integration/card/remove_member_spec.rb +19 -0
- data/spec/integration/card/save_spec.rb +61 -0
- data/spec/integration/card/update!_spec.rb +53 -0
- data/spec/integration/card/vote_spec.rb +50 -0
- data/spec/integration/checklist/add_item_spec.rb +20 -0
- data/spec/integration/checklist/create_spec.rb +23 -0
- data/spec/integration/checklist/delete_spec.rb +17 -0
- data/spec/integration/checklist/find_spec.rb +22 -0
- data/spec/integration/checklist/update!_spec.rb +21 -0
- data/spec/integration/checklist/update_item_state_spec.rb +20 -0
- data/spec/integration/custom_field/association/board_spec.rb +18 -0
- data/spec/integration/custom_field/association/custom_field_options_spec.rb +18 -0
- data/spec/integration/custom_field/create_spec.rb +29 -0
- data/spec/integration/custom_field/find_spec.rb +41 -0
- data/spec/integration/custom_field/update!_spec.rb +25 -0
- data/spec/integration/custom_field_item_spec.rb +47 -0
- data/spec/integration/custom_field_option/create_spec.rb +23 -0
- data/spec/integration/custom_field_option/delete_spec.rb +19 -0
- data/spec/integration/custom_field_option/find_spec.rb +21 -0
- data/spec/integration/label/association/board_spec.rb +18 -0
- data/spec/integration/label/create_spec.rb +23 -0
- data/spec/integration/label/delete_spec.rb +21 -0
- data/spec/integration/label/find_spec.rb +20 -0
- data/spec/integration/label/update!_spec.rb +25 -0
- data/spec/integration/list/archive_all_cards_spec.rb +20 -0
- data/spec/integration/list/associations/actions_spec.rb +18 -0
- data/spec/integration/list/associations/board_spec.rb +18 -0
- data/spec/integration/list/associations/cards_spec.rb +18 -0
- data/spec/integration/list/create_spec.rb +44 -0
- data/spec/integration/list/find_spec.rb +37 -0
- data/spec/integration/list/move_all_cards_spec.rb +31 -0
- data/spec/integration/list/save_spec.rb +40 -0
- data/spec/integration/list/update!_spec.rb +43 -0
- data/spec/integration/member/associations/actions_spec.rb +17 -0
- data/spec/integration/member/associations/boards_spec.rb +18 -0
- data/spec/integration/member/associations/cards_spec.rb +18 -0
- data/spec/integration/member/associations/notifications_spec.rb +18 -0
- data/spec/integration/member/associations/organizations_spec.rb +18 -0
- data/spec/integration/member/find_spec.rb +39 -0
- data/spec/integration/member/update!_spec.rb +18 -0
- data/spec/integration/notification/find_spec.rb +27 -0
- data/spec/integration/organization/associations/actions_spec.rb +18 -0
- data/spec/integration/organization/associations/boards_spec.rb +18 -0
- data/spec/integration/organization/associations/members_spec.rb +18 -0
- data/spec/integration/organization/create_spec.rb +23 -0
- data/spec/integration/organization/find_spec.rb +37 -0
- data/spec/integration/organization/update!_spec.rb +28 -0
- data/spec/integration/token/find_spec.rb +24 -0
- data/spec/integration/webhook/create_spec.rb +27 -0
- data/spec/integration/webhook/delete_spec.rb +21 -0
- data/spec/integration/webhook/find_spec.rb +22 -0
- data/spec/integration/webhook/update!_spec.rb +24 -0
- data/spec/item_spec.rb +2 -2
- data/spec/label_spec.rb +105 -28
- data/spec/list_spec.rb +32 -14
- data/spec/notification_spec.rb +3 -3
- data/spec/organization_spec.rb +6 -5
- data/spec/spec_helper.rb +118 -37
- data/spec/token_spec.rb +10 -11
- data/spec/unit/trello/association_builder/has_many_spec.rb +36 -0
- data/spec/unit/trello/association_builder/has_one_spec.rb +36 -0
- data/spec/unit/trello/association_fetcher/has_many/fetch_spec.rb +38 -0
- data/spec/unit/trello/association_fetcher/has_many/params_spec.rb +107 -0
- data/spec/unit/trello/association_fetcher/has_many_spec.rb +50 -0
- data/spec/unit/trello/association_fetcher/has_one/fetch_spec.rb +51 -0
- data/spec/unit/trello/association_fetcher/has_one/params_spec.rb +81 -0
- data/spec/unit/trello/association_fetcher/has_one_spec.rb +49 -0
- data/spec/unit/trello/association_infer_tool_spec.rb +41 -0
- data/spec/unit/trello/basic_data_spec.rb +113 -0
- data/spec/unit/trello/board/new_spec.rb +370 -0
- data/spec/unit/trello/board/save_spec.rb +49 -0
- data/spec/unit/trello/board/update_fields_spec.rb +129 -0
- data/spec/unit/trello/board/update_spec.rb +197 -0
- data/spec/unit/trello/card_spec.rb +103 -0
- data/spec/unit/trello/member/new_spec.rb +62 -0
- data/spec/unit/trello/member/update_fields_spec.rb +80 -0
- data/spec/unit/trello/schema/attribute/base_spec.rb +349 -0
- data/spec/unit/trello/schema/attribute/board_pref_spec.rb +208 -0
- data/spec/unit/trello/schema/attribute/default_spec.rb +236 -0
- data/spec/unit/trello/schema/attribute_builder_spec.rb +55 -0
- data/spec/unit/trello/schema/attribute_registration_spec.rb +59 -0
- data/spec/unit/trello/schema/serializer/default_spec.rb +19 -0
- data/spec/unit/trello/schema/serializer/time_spec.rb +39 -0
- data/spec/unit/trello/schema_spec.rb +25 -0
- data/spec/webhook_spec.rb +23 -7
- metadata +542 -29
@@ -0,0 +1,17 @@
|
|
1
|
+
require 'spec_helper'
|
2
|
+
|
3
|
+
RSpec.describe 'Trell::Checklist.delete' do
|
4
|
+
include IntegrationHelpers
|
5
|
+
|
6
|
+
before { setup_trello }
|
7
|
+
|
8
|
+
it 'can delete an checklist' do
|
9
|
+
VCR.use_cassette('can_success_delete_checklist') do
|
10
|
+
checklist = Trello::Checklist.find('5f527c51adecdd18331874d5')
|
11
|
+
|
12
|
+
checklist.delete
|
13
|
+
|
14
|
+
expect{ Trello::Checklist.find('5f527c51adecdd18331874d5') }.to raise_error('The requested resource was not found.')
|
15
|
+
end
|
16
|
+
end
|
17
|
+
end
|
@@ -0,0 +1,22 @@
|
|
1
|
+
require 'spec_helper'
|
2
|
+
|
3
|
+
RSpec.describe 'Trello::Checklist#find' do
|
4
|
+
include IntegrationHelpers
|
5
|
+
|
6
|
+
before { setup_trello }
|
7
|
+
|
8
|
+
it 'find with id and get all fields' do
|
9
|
+
VCR.use_cassette('checklist_find_with_id_and_get_all_fields') do
|
10
|
+
checklist = Trello::Checklist.find('5f526c25f22acb4769d521ef')
|
11
|
+
|
12
|
+
expect(checklist).to be_a(Trello::Checklist)
|
13
|
+
expect(checklist.id).to eq('5f526c25f22acb4769d521ef')
|
14
|
+
expect(checklist.name).not_to be_nil
|
15
|
+
expect(checklist.position).not_to be_nil
|
16
|
+
expect(checklist.check_items).not_to be_nil
|
17
|
+
expect(checklist.board_id).not_to be_nil
|
18
|
+
expect(checklist.card_id).not_to be_nil
|
19
|
+
end
|
20
|
+
end
|
21
|
+
|
22
|
+
end
|
@@ -0,0 +1,21 @@
|
|
1
|
+
require 'spec_helper'
|
2
|
+
|
3
|
+
RSpec.describe 'Trell::Checklist.update!' do
|
4
|
+
include IntegrationHelpers
|
5
|
+
|
6
|
+
before { setup_trello }
|
7
|
+
|
8
|
+
it 'can update! a checklist with specific fields' do
|
9
|
+
VCR.use_cassette('can_success_update_bong_a_checklist_with_specific_fields') do
|
10
|
+
checklist = Trello::Checklist.find('5f527c51adecdd18331874d5')
|
11
|
+
expect(checklist.name).to eq('C2')
|
12
|
+
|
13
|
+
checklist.name = 'C2 - Changed'
|
14
|
+
|
15
|
+
checklist.update!
|
16
|
+
|
17
|
+
checklist = Trello::Checklist.find('5f527c51adecdd18331874d5')
|
18
|
+
expect(checklist.name).to eq('C2 - Changed')
|
19
|
+
end
|
20
|
+
end
|
21
|
+
end
|
@@ -0,0 +1,20 @@
|
|
1
|
+
require 'spec_helper'
|
2
|
+
|
3
|
+
RSpec.describe 'Trello::Checklist.update_item_state' do
|
4
|
+
include IntegrationHelpers
|
5
|
+
|
6
|
+
before { setup_trello }
|
7
|
+
|
8
|
+
it 'checklist can update and item state' do
|
9
|
+
VCR.use_cassette('checklist_can_update_the_item_state') do
|
10
|
+
checklist = Trello::Checklist.find('5f527c51adecdd18331874d5')
|
11
|
+
expect(checklist.check_items.first['state']).to eq('incomplete')
|
12
|
+
|
13
|
+
checklist.update_item_state('5f527dd00ac0cb4a43d85be7', 'complete')
|
14
|
+
|
15
|
+
checklist = Trello::Checklist.find('5f527c51adecdd18331874d5')
|
16
|
+
expect(checklist.check_items.first['state']).to eq('complete')
|
17
|
+
end
|
18
|
+
end
|
19
|
+
|
20
|
+
end
|
@@ -0,0 +1,18 @@
|
|
1
|
+
require 'spec_helper'
|
2
|
+
|
3
|
+
RSpec.describe 'Trello::CustomField#board' do
|
4
|
+
include IntegrationHelpers
|
5
|
+
|
6
|
+
before { setup_trello }
|
7
|
+
|
8
|
+
it 'can get board' do
|
9
|
+
VCR.use_cassette('can_get_boards_of_custom_field') do
|
10
|
+
custom_field = Trello::CustomField.find('5f60edcbe0610f8811951cae')
|
11
|
+
board = custom_field.board
|
12
|
+
|
13
|
+
expect(board).to be_a(Trello::Board)
|
14
|
+
expect(board.id).to eq(custom_field.model_id)
|
15
|
+
end
|
16
|
+
end
|
17
|
+
|
18
|
+
end
|
@@ -0,0 +1,18 @@
|
|
1
|
+
require 'spec_helper'
|
2
|
+
|
3
|
+
RSpec.describe 'Trello::CustomField#custom_field_options' do
|
4
|
+
include IntegrationHelpers
|
5
|
+
|
6
|
+
before { setup_trello }
|
7
|
+
|
8
|
+
it 'can get custom_field_options' do
|
9
|
+
VCR.use_cassette('can_get_custom_field_options_of_custom_field') do
|
10
|
+
custom_field = Trello::CustomField.find('5f60f07958388d26dc063c2d')
|
11
|
+
custom_field_options = custom_field.custom_field_options
|
12
|
+
|
13
|
+
expect(custom_field_options).to be_a(Array)
|
14
|
+
expect(custom_field_options[0]).to be_a(Trello::CustomFieldOption)
|
15
|
+
end
|
16
|
+
end
|
17
|
+
|
18
|
+
end
|
@@ -0,0 +1,29 @@
|
|
1
|
+
require 'spec_helper'
|
2
|
+
|
3
|
+
RSpec.describe 'Trello::CustomField.create' do
|
4
|
+
include IntegrationHelpers
|
5
|
+
|
6
|
+
before { setup_trello }
|
7
|
+
|
8
|
+
it 'can success create the custom_field' do
|
9
|
+
VCR.use_cassette('can_success_create_a_custom_field') do
|
10
|
+
custom_field = Trello::CustomField.create(
|
11
|
+
name: 'Started',
|
12
|
+
model_id: '5e93ba98614ac22d22f085c4',
|
13
|
+
model_type: 'board',
|
14
|
+
enable_display_on_card: true,
|
15
|
+
position: 'bottom',
|
16
|
+
type: 'checkbox'
|
17
|
+
)
|
18
|
+
expect(custom_field).to be_a(Trello::CustomField)
|
19
|
+
|
20
|
+
expect(custom_field.id).not_to be_nil
|
21
|
+
expect(custom_field.name).to eq('Started')
|
22
|
+
expect(custom_field.model_id).to eq('5e93ba98614ac22d22f085c4')
|
23
|
+
expect(custom_field.model_type).to eq('board')
|
24
|
+
expect(custom_field.enable_display_on_card).to eq(true)
|
25
|
+
expect(custom_field.position).not_to be_nil
|
26
|
+
expect(custom_field.type).to eq('checkbox')
|
27
|
+
end
|
28
|
+
end
|
29
|
+
end
|
@@ -0,0 +1,41 @@
|
|
1
|
+
require 'spec_helper'
|
2
|
+
|
3
|
+
RSpec.describe 'Trello::CustomField#find' do
|
4
|
+
include IntegrationHelpers
|
5
|
+
|
6
|
+
before { setup_trello }
|
7
|
+
|
8
|
+
it 'find with id and get all fields' do
|
9
|
+
VCR.use_cassette('custom_field_find_with_id_and_get_all_fields') do
|
10
|
+
custom_field = Trello::CustomField.find('5f60e443555b8432d959ae94')
|
11
|
+
expect(custom_field).to be_a(Trello::CustomField)
|
12
|
+
|
13
|
+
expect(custom_field.id).not_to be_nil
|
14
|
+
expect(custom_field.name).not_to be_nil
|
15
|
+
expect(custom_field.model_id).not_to be_nil
|
16
|
+
expect(custom_field.model_type).not_to be_nil
|
17
|
+
expect(custom_field.field_group).not_to be_nil
|
18
|
+
expect(custom_field.enable_display_on_card).not_to be_nil
|
19
|
+
expect(custom_field.position).not_to be_nil
|
20
|
+
expect(custom_field.type).not_to be_nil
|
21
|
+
end
|
22
|
+
end
|
23
|
+
|
24
|
+
it 'find with id and get specific fields' do
|
25
|
+
VCR.use_cassette('custom_field_find_with_id_and_get_specific_fields') do
|
26
|
+
custom_field = Trello::CustomField.find('5f60e443555b8432d959ae94', fields: 'name,type')
|
27
|
+
expect(custom_field).to be_a(Trello::CustomField)
|
28
|
+
|
29
|
+
expect(custom_field.id).not_to be_nil
|
30
|
+
expect(custom_field.name).not_to be_nil
|
31
|
+
expect(custom_field.type).not_to be_nil
|
32
|
+
|
33
|
+
expect(custom_field.model_id).to be_nil
|
34
|
+
expect(custom_field.model_type).to be_nil
|
35
|
+
expect(custom_field.field_group).to be_nil
|
36
|
+
expect(custom_field.enable_display_on_card).to be_nil
|
37
|
+
expect(custom_field.position).to be_nil
|
38
|
+
end
|
39
|
+
end
|
40
|
+
|
41
|
+
end
|
@@ -0,0 +1,25 @@
|
|
1
|
+
require 'spec_helper'
|
2
|
+
|
3
|
+
RSpec.describe 'Trell::CustomField.update!' do
|
4
|
+
include IntegrationHelpers
|
5
|
+
|
6
|
+
before { setup_trello }
|
7
|
+
|
8
|
+
it 'can update! a custom_field' do
|
9
|
+
VCR.use_cassette('can_success_update_bong_a_custom_field') do
|
10
|
+
custom_field = Trello::CustomField.find('5f60edcbe0610f8811951cae')
|
11
|
+
|
12
|
+
expect(custom_field.name).to eq('Started')
|
13
|
+
expect(custom_field.enable_display_on_card).to eq(true)
|
14
|
+
|
15
|
+
custom_field.name = 'Started - Change'
|
16
|
+
custom_field.enable_display_on_card = false
|
17
|
+
|
18
|
+
custom_field.update!
|
19
|
+
|
20
|
+
expect(custom_field.name).to eq('Started - Change')
|
21
|
+
expect(custom_field.enable_display_on_card).to eq(false)
|
22
|
+
end
|
23
|
+
end
|
24
|
+
|
25
|
+
end
|
@@ -0,0 +1,47 @@
|
|
1
|
+
require 'spec_helper'
|
2
|
+
|
3
|
+
RSpec.describe 'CustomFieldItem API' do
|
4
|
+
|
5
|
+
before do
|
6
|
+
Trello.configure do |config|
|
7
|
+
config.developer_public_key = ENV['TRELLO_DEVELOPER_PUBLIC_KEY'] || 'developerpublickey'
|
8
|
+
config.member_token = ENV['TRELLO_MEMBER_TOKEN'] || 'membertoken'
|
9
|
+
end
|
10
|
+
end
|
11
|
+
|
12
|
+
describe '#save' do
|
13
|
+
context 'when id does not exists' do
|
14
|
+
let(:custom_field_item) {
|
15
|
+
Trello::CustomFieldItem.new(
|
16
|
+
model_id: '5e679be5d53dfa748f41d775',
|
17
|
+
custom_field_id: '5e68e8e87c16bf75894df21a',
|
18
|
+
)
|
19
|
+
}
|
20
|
+
|
21
|
+
it 'update the custom field' do
|
22
|
+
VCR.use_cassette('custom_field_item_save_1') do
|
23
|
+
custom_field_item.value = { text: 'cool' }
|
24
|
+
custom_field_item.save
|
25
|
+
|
26
|
+
expect(custom_field_item.id).not_to be_nil
|
27
|
+
end
|
28
|
+
end
|
29
|
+
end
|
30
|
+
|
31
|
+
context 'when id exists' do
|
32
|
+
let(:custom_field_item) {
|
33
|
+
card = Trello::Card.find('5e679be5d53dfa748f41d775')
|
34
|
+
card.custom_field_items.find { |item| item.id == '5e68e8f02f77a28502efd036' }
|
35
|
+
}
|
36
|
+
|
37
|
+
it 'update the custom field' do
|
38
|
+
VCR.use_cassette('custom_field_item_save_2') do
|
39
|
+
custom_field_item.value = { text: 'nice' }
|
40
|
+
|
41
|
+
expect { custom_field_item.save }.not_to raise_error
|
42
|
+
end
|
43
|
+
end
|
44
|
+
end
|
45
|
+
end
|
46
|
+
|
47
|
+
end
|
@@ -0,0 +1,23 @@
|
|
1
|
+
require 'spec_helper'
|
2
|
+
|
3
|
+
RSpec.describe 'Trello::CustomFieldOption.create' do
|
4
|
+
include IntegrationHelpers
|
5
|
+
|
6
|
+
before { setup_trello }
|
7
|
+
|
8
|
+
it 'can success create the custom_field_option' do
|
9
|
+
VCR.use_cassette('can_success_create_a_custom_field_option') do
|
10
|
+
custom_field_option = Trello::CustomFieldOption.create(
|
11
|
+
custom_field_id: '5fa7589441b04c2cf1fc773a',
|
12
|
+
value: { 'text' => 'failed' }
|
13
|
+
)
|
14
|
+
expect(custom_field_option).to be_a(Trello::CustomFieldOption)
|
15
|
+
|
16
|
+
expect(custom_field_option.id).not_to be_nil
|
17
|
+
expect(custom_field_option.custom_field_id).to eq('5fa7589441b04c2cf1fc773a')
|
18
|
+
expect(custom_field_option.value).to eq({'text' => 'failed'})
|
19
|
+
expect(custom_field_option.color).not_to be_nil
|
20
|
+
expect(custom_field_option.position).not_to be_nil
|
21
|
+
end
|
22
|
+
end
|
23
|
+
end
|
@@ -0,0 +1,19 @@
|
|
1
|
+
require 'spec_helper'
|
2
|
+
|
3
|
+
RSpec.describe 'Trello::CustomFieldOption#delete' do
|
4
|
+
include IntegrationHelpers
|
5
|
+
|
6
|
+
before { setup_trello }
|
7
|
+
|
8
|
+
it 'can success delete the custom_field_option' do
|
9
|
+
VCR.use_cassette('can_success_delete_a_custom_field_option') do
|
10
|
+
custom_field_option = Trello::CustomFieldOption.find('5fa7bb27621fcf64876dcc85', custom_field_id: '5fa7589441b04c2cf1fc773a')
|
11
|
+
custom_field_option.delete
|
12
|
+
|
13
|
+
custom_field = Trello::CustomField.find('5fa7589441b04c2cf1fc773a')
|
14
|
+
custom_field_options = custom_field.custom_field_options
|
15
|
+
|
16
|
+
expect(custom_field_options.map(&:id)).not_to include('5fa7bb27621fcf64876dcc85')
|
17
|
+
end
|
18
|
+
end
|
19
|
+
end
|
@@ -0,0 +1,21 @@
|
|
1
|
+
require 'spec_helper'
|
2
|
+
|
3
|
+
RSpec.describe 'Trello::CustomFieldOption#find' do
|
4
|
+
include IntegrationHelpers
|
5
|
+
|
6
|
+
before { setup_trello }
|
7
|
+
|
8
|
+
it 'find with id' do
|
9
|
+
VCR.use_cassette('custom_field_option_find_with_id') do
|
10
|
+
custom_field_option = Trello::CustomFieldOption.find('5fa7589441b04c2cf1fc773b', custom_field_id: '5fa7589441b04c2cf1fc773a')
|
11
|
+
expect(custom_field_option).to be_a(Trello::CustomFieldOption)
|
12
|
+
|
13
|
+
expect(custom_field_option.id).not_to be_nil
|
14
|
+
expect(custom_field_option.custom_field_id).not_to be_nil
|
15
|
+
expect(custom_field_option.value).not_to be_nil
|
16
|
+
expect(custom_field_option.color).not_to be_nil
|
17
|
+
expect(custom_field_option.position).not_to be_nil
|
18
|
+
end
|
19
|
+
end
|
20
|
+
|
21
|
+
end
|
@@ -0,0 +1,18 @@
|
|
1
|
+
require 'spec_helper'
|
2
|
+
|
3
|
+
RSpec.describe 'Trello::Label#board' do
|
4
|
+
include IntegrationHelpers
|
5
|
+
|
6
|
+
before { setup_trello }
|
7
|
+
|
8
|
+
it 'can get board' do
|
9
|
+
VCR.use_cassette('can_get_boards_of_label') do
|
10
|
+
label = Trello::Label.find('5e70f5be7669b225494e4fff')
|
11
|
+
board = label.board
|
12
|
+
|
13
|
+
expect(board).to be_a(Trello::Board)
|
14
|
+
expect(board.id).to eq(label.board_id)
|
15
|
+
end
|
16
|
+
end
|
17
|
+
|
18
|
+
end
|
@@ -0,0 +1,23 @@
|
|
1
|
+
require 'spec_helper'
|
2
|
+
|
3
|
+
RSpec.describe 'Trello::Label.create' do
|
4
|
+
include IntegrationHelpers
|
5
|
+
|
6
|
+
before { setup_trello }
|
7
|
+
|
8
|
+
it 'can success create the custom_field' do
|
9
|
+
VCR.use_cassette('can_success_create_a_label') do
|
10
|
+
label = Trello::Label.create(
|
11
|
+
name: 'Test',
|
12
|
+
board_id: '5e70f5bed3f34a49e2f11409',
|
13
|
+
color: 'green'
|
14
|
+
)
|
15
|
+
expect(label).to be_a(Trello::Label)
|
16
|
+
|
17
|
+
expect(label.id).not_to be_nil
|
18
|
+
expect(label.name).to eq('Test')
|
19
|
+
expect(label.board_id).to eq('5e70f5bed3f34a49e2f11409')
|
20
|
+
expect(label.color).to eq('green')
|
21
|
+
end
|
22
|
+
end
|
23
|
+
end
|
@@ -0,0 +1,21 @@
|
|
1
|
+
require 'spec_helper'
|
2
|
+
|
3
|
+
RSpec.describe 'Trello::Label#delete' do
|
4
|
+
include IntegrationHelpers
|
5
|
+
|
6
|
+
before { setup_trello }
|
7
|
+
|
8
|
+
it 'find with id' do
|
9
|
+
VCR.use_cassette('label_delete') do
|
10
|
+
label = Trello::Label.find('5fa7f18181d21312d8c729ae')
|
11
|
+
expect(label).to be_a(Trello::Label)
|
12
|
+
|
13
|
+
label.delete
|
14
|
+
|
15
|
+
expect {
|
16
|
+
Trello::Label.find('5fa7f18181d21312d8c729ae')
|
17
|
+
}.to raise_error Trello::Error, 'The requested resource was not found.'
|
18
|
+
end
|
19
|
+
end
|
20
|
+
|
21
|
+
end
|
@@ -0,0 +1,20 @@
|
|
1
|
+
require 'spec_helper'
|
2
|
+
|
3
|
+
RSpec.describe 'Trello::Label#find' do
|
4
|
+
include IntegrationHelpers
|
5
|
+
|
6
|
+
before { setup_trello }
|
7
|
+
|
8
|
+
it 'find with id' do
|
9
|
+
VCR.use_cassette('label_find_with_id') do
|
10
|
+
label = Trello::Label.find('5e70f5be7669b225494e4ff8')
|
11
|
+
expect(label).to be_a(Trello::Label)
|
12
|
+
|
13
|
+
expect(label.id).not_to be_nil
|
14
|
+
expect(label.board_id).not_to be_nil
|
15
|
+
expect(label.name).not_to be_nil
|
16
|
+
expect(label.color).not_to be_nil
|
17
|
+
end
|
18
|
+
end
|
19
|
+
|
20
|
+
end
|
@@ -0,0 +1,25 @@
|
|
1
|
+
require 'spec_helper'
|
2
|
+
|
3
|
+
RSpec.describe 'Trell::Label.update!' do
|
4
|
+
include IntegrationHelpers
|
5
|
+
|
6
|
+
before { setup_trello }
|
7
|
+
|
8
|
+
it 'can update! a label' do
|
9
|
+
VCR.use_cassette('can_success_update_bong_a_label') do
|
10
|
+
label = Trello::Label.find('5fa7f18181d21312d8c729ae')
|
11
|
+
|
12
|
+
expect(label.name).to eq('Test')
|
13
|
+
expect(label.color).to eq('green')
|
14
|
+
|
15
|
+
label.name = 'Test - Changed'
|
16
|
+
label.color = 'red'
|
17
|
+
|
18
|
+
label.update!
|
19
|
+
|
20
|
+
expect(label.name).to eq('Test - Changed')
|
21
|
+
expect(label.color).to eq('red')
|
22
|
+
end
|
23
|
+
end
|
24
|
+
|
25
|
+
end
|