facebooker-fbg1 1.0.61.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (154) hide show
  1. data/.autotest +15 -0
  2. data/CHANGELOG.rdoc +24 -0
  3. data/COPYING.rdoc +19 -0
  4. data/Manifest.txt +150 -0
  5. data/README.rdoc +119 -0
  6. data/Rakefile +94 -0
  7. data/TODO.rdoc +4 -0
  8. data/examples/desktop_login.rb +14 -0
  9. data/facebooker.gemspec +42 -0
  10. data/generators/facebook/facebook_generator.rb +14 -0
  11. data/generators/facebook/templates/config/facebooker.yml +49 -0
  12. data/generators/facebook/templates/public/javascripts/facebooker.js +332 -0
  13. data/generators/facebook_controller/USAGE +33 -0
  14. data/generators/facebook_controller/facebook_controller_generator.rb +40 -0
  15. data/generators/facebook_controller/templates/controller.rb +7 -0
  16. data/generators/facebook_controller/templates/functional_test.rb +11 -0
  17. data/generators/facebook_controller/templates/helper.rb +2 -0
  18. data/generators/facebook_controller/templates/view.fbml.erb +2 -0
  19. data/generators/facebook_controller/templates/view.html.erb +2 -0
  20. data/generators/facebook_publisher/facebook_publisher_generator.rb +14 -0
  21. data/generators/facebook_publisher/templates/create_facebook_templates.rb +15 -0
  22. data/generators/facebook_publisher/templates/publisher.rb +3 -0
  23. data/generators/facebook_scaffold/USAGE +27 -0
  24. data/generators/facebook_scaffold/facebook_scaffold_generator.rb +118 -0
  25. data/generators/facebook_scaffold/templates/controller.rb +93 -0
  26. data/generators/facebook_scaffold/templates/facebook_style.css +2579 -0
  27. data/generators/facebook_scaffold/templates/functional_test.rb +89 -0
  28. data/generators/facebook_scaffold/templates/helper.rb +2 -0
  29. data/generators/facebook_scaffold/templates/layout.fbml.erb +6 -0
  30. data/generators/facebook_scaffold/templates/layout.html.erb +17 -0
  31. data/generators/facebook_scaffold/templates/style.css +74 -0
  32. data/generators/facebook_scaffold/templates/view_edit.fbml.erb +13 -0
  33. data/generators/facebook_scaffold/templates/view_edit.html.erb +18 -0
  34. data/generators/facebook_scaffold/templates/view_index.fbml.erb +24 -0
  35. data/generators/facebook_scaffold/templates/view_index.html.erb +24 -0
  36. data/generators/facebook_scaffold/templates/view_new.fbml.erb +12 -0
  37. data/generators/facebook_scaffold/templates/view_new.html.erb +17 -0
  38. data/generators/facebook_scaffold/templates/view_show.fbml.erb +10 -0
  39. data/generators/facebook_scaffold/templates/view_show.html.erb +10 -0
  40. data/generators/publisher/publisher_generator.rb +14 -0
  41. data/generators/xd_receiver/templates/xd_receiver.html +10 -0
  42. data/generators/xd_receiver/templates/xd_receiver_ssl.html +10 -0
  43. data/generators/xd_receiver/xd_receiver_generator.rb +10 -0
  44. data/init.rb +26 -0
  45. data/install.rb +12 -0
  46. data/lib/facebooker.rb +254 -0
  47. data/lib/facebooker/adapters/adapter_base.rb +91 -0
  48. data/lib/facebooker/adapters/bebo_adapter.rb +77 -0
  49. data/lib/facebooker/adapters/facebook_adapter.rb +60 -0
  50. data/lib/facebooker/admin.rb +42 -0
  51. data/lib/facebooker/application.rb +13 -0
  52. data/lib/facebooker/attachment.rb +51 -0
  53. data/lib/facebooker/batch_request.rb +45 -0
  54. data/lib/facebooker/data.rb +57 -0
  55. data/lib/facebooker/feed.rb +78 -0
  56. data/lib/facebooker/logging.rb +44 -0
  57. data/lib/facebooker/mobile.rb +20 -0
  58. data/lib/facebooker/mock/service.rb +50 -0
  59. data/lib/facebooker/mock/session.rb +18 -0
  60. data/lib/facebooker/model.rb +139 -0
  61. data/lib/facebooker/models/affiliation.rb +10 -0
  62. data/lib/facebooker/models/album.rb +11 -0
  63. data/lib/facebooker/models/applicationproperties.rb +39 -0
  64. data/lib/facebooker/models/applicationrestrictions.rb +10 -0
  65. data/lib/facebooker/models/cookie.rb +10 -0
  66. data/lib/facebooker/models/education_info.rb +11 -0
  67. data/lib/facebooker/models/event.rb +28 -0
  68. data/lib/facebooker/models/family_relative_info.rb +7 -0
  69. data/lib/facebooker/models/friend_list.rb +16 -0
  70. data/lib/facebooker/models/group.rb +36 -0
  71. data/lib/facebooker/models/info_item.rb +10 -0
  72. data/lib/facebooker/models/info_section.rb +10 -0
  73. data/lib/facebooker/models/location.rb +8 -0
  74. data/lib/facebooker/models/notifications.rb +17 -0
  75. data/lib/facebooker/models/page.rb +44 -0
  76. data/lib/facebooker/models/photo.rb +19 -0
  77. data/lib/facebooker/models/tag.rb +12 -0
  78. data/lib/facebooker/models/user.rb +575 -0
  79. data/lib/facebooker/models/video.rb +9 -0
  80. data/lib/facebooker/models/work_info.rb +10 -0
  81. data/lib/facebooker/parser.rb +724 -0
  82. data/lib/facebooker/rails/backwards_compatible_param_checks.rb +31 -0
  83. data/lib/facebooker/rails/controller.rb +372 -0
  84. data/lib/facebooker/rails/cucumber.rb +28 -0
  85. data/lib/facebooker/rails/cucumber/world.rb +40 -0
  86. data/lib/facebooker/rails/extensions/action_controller.rb +48 -0
  87. data/lib/facebooker/rails/extensions/rack_setup.rb +14 -0
  88. data/lib/facebooker/rails/extensions/routing.rb +15 -0
  89. data/lib/facebooker/rails/facebook_form_builder.rb +141 -0
  90. data/lib/facebooker/rails/facebook_pretty_errors.rb +22 -0
  91. data/lib/facebooker/rails/facebook_request_fix.rb +28 -0
  92. data/lib/facebooker/rails/facebook_request_fix_2-3.rb +31 -0
  93. data/lib/facebooker/rails/facebook_session_handling.rb +68 -0
  94. data/lib/facebooker/rails/facebook_url_helper.rb +192 -0
  95. data/lib/facebooker/rails/facebook_url_rewriting.rb +60 -0
  96. data/lib/facebooker/rails/helpers.rb +834 -0
  97. data/lib/facebooker/rails/helpers/fb_connect.rb +133 -0
  98. data/lib/facebooker/rails/helpers/stream_publish.rb +22 -0
  99. data/lib/facebooker/rails/integration_session.rb +38 -0
  100. data/lib/facebooker/rails/profile_publisher_extensions.rb +42 -0
  101. data/lib/facebooker/rails/publisher.rb +599 -0
  102. data/lib/facebooker/rails/routing.rb +49 -0
  103. data/lib/facebooker/rails/test_helpers.rb +68 -0
  104. data/lib/facebooker/rails/utilities.rb +22 -0
  105. data/lib/facebooker/server_cache.rb +24 -0
  106. data/lib/facebooker/service.rb +102 -0
  107. data/lib/facebooker/service/base_service.rb +19 -0
  108. data/lib/facebooker/service/curl_service.rb +44 -0
  109. data/lib/facebooker/service/net_http_service.rb +12 -0
  110. data/lib/facebooker/service/typhoeus_multi_service.rb +27 -0
  111. data/lib/facebooker/service/typhoeus_service.rb +17 -0
  112. data/lib/facebooker/session.rb +732 -0
  113. data/lib/facebooker/stream_post.rb +19 -0
  114. data/lib/facebooker/version.rb +9 -0
  115. data/lib/net/http_multipart_post.rb +123 -0
  116. data/lib/rack/facebook.rb +89 -0
  117. data/lib/rack/facebook_session.rb +21 -0
  118. data/lib/tasks/facebooker.rake +18 -0
  119. data/lib/tasks/facebooker.rb +2 -0
  120. data/lib/tasks/tunnel.rake +46 -0
  121. data/rails/init.rb +1 -0
  122. data/setup.rb +1585 -0
  123. data/templates/layout.erb +24 -0
  124. data/test/facebooker/adapters_test.rb +191 -0
  125. data/test/facebooker/admin_test.rb +102 -0
  126. data/test/facebooker/application_test.rb +41 -0
  127. data/test/facebooker/attachment_test.rb +72 -0
  128. data/test/facebooker/batch_request_test.rb +83 -0
  129. data/test/facebooker/data_test.rb +86 -0
  130. data/test/facebooker/logging_test.rb +43 -0
  131. data/test/facebooker/mobile_test.rb +45 -0
  132. data/test/facebooker/model_test.rb +133 -0
  133. data/test/facebooker/models/event_test.rb +15 -0
  134. data/test/facebooker/models/page_test.rb +51 -0
  135. data/test/facebooker/models/photo_test.rb +16 -0
  136. data/test/facebooker/models/user_test.rb +430 -0
  137. data/test/facebooker/rails/facebook_request_fix_2-3_test.rb +25 -0
  138. data/test/facebooker/rails/facebook_url_rewriting_test.rb +76 -0
  139. data/test/facebooker/rails/integration_session_test.rb +13 -0
  140. data/test/facebooker/rails/publisher_test.rb +532 -0
  141. data/test/facebooker/rails_integration_test.rb +1534 -0
  142. data/test/facebooker/server_cache_test.rb +44 -0
  143. data/test/facebooker/service_test.rb +58 -0
  144. data/test/facebooker/session_test.rb +883 -0
  145. data/test/facebooker_test.rb +951 -0
  146. data/test/fixtures/multipart_post_body_with_only_parameters.txt +33 -0
  147. data/test/fixtures/multipart_post_body_with_single_file.txt +38 -0
  148. data/test/fixtures/multipart_post_body_with_single_file_that_has_nil_key.txt +38 -0
  149. data/test/net/http_multipart_post_test.rb +52 -0
  150. data/test/rack/facebook_session_test.rb +34 -0
  151. data/test/rack/facebook_test.rb +73 -0
  152. data/test/rails_test_helper.rb +36 -0
  153. data/test/test_helper.rb +74 -0
  154. metadata +272 -0
@@ -0,0 +1,86 @@
1
+ require File.expand_path(File.dirname(__FILE__) + '/../test_helper')
2
+
3
+ class Facebooker::DataTest < Test::Unit::TestCase
4
+ def setup
5
+ @session = Facebooker::Session.create('apikey', 'secretkey')
6
+ #make sure we use net::http since that's what the tests expect
7
+ Facebooker.use_curl=false
8
+ end
9
+
10
+ def test_can_ask_facebook_to_set_a_cookies
11
+ expect_http_posts_with_responses(example_set_cookie_xml)
12
+ assert(@session.data.set_cookie(12345, 'name', 'value'))
13
+ end
14
+
15
+ def test_can_ask_facebook_to_get_cookies
16
+ expect_http_posts_with_responses(example_get_cookies_xml)
17
+ assert(@session.data.get_cookies(12345))
18
+ end
19
+
20
+ def test_can_get_cookies_for_user
21
+ mock_http = establish_session
22
+ mock_http.should_receive(:post_form).and_return(example_get_cookies_xml).once.ordered(:posts)
23
+ cookies = @session.data.get_cookies(508508326)
24
+ assert_equal 'Foo', cookies.first.name
25
+ assert_equal 'Bar', cookies.first.value
26
+ end
27
+
28
+ def test_can_ask_facebook_to_set_a_preference
29
+ expect_http_posts_with_responses(example_set_preference_xml)
30
+ assert(@session.data.set_preference(0, 'hello'))
31
+ end
32
+
33
+ def test_can_ask_facebook_to_get_preference
34
+ expect_http_posts_with_responses(example_get_preference_xml)
35
+ assert(@session.data.get_preference(0))
36
+ end
37
+
38
+ def test_can_get_preference
39
+ mock_http = establish_session
40
+ mock_http.should_receive(:post_form).and_return(example_get_preference_xml).once.ordered(:posts)
41
+ assert_equal 'hello', @session.data.get_preference(0)
42
+ end
43
+
44
+ private
45
+ def example_set_cookie_xml
46
+ <<-XML
47
+ <?xml version="1.0" encoding="UTF-8"?>
48
+ <data_setCookie_response xmlns="http://api.facebook.com/1.0/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
49
+ xsi:schemaLocation="http://api.facebook.com/1.0/ http://api.facebook.com/1.0/facebook.xsd">1</data_setCookie_response>
50
+ XML
51
+ end
52
+
53
+ def example_get_cookies_xml
54
+ <<-XML
55
+ <?xml version="1.0" encoding="UTF-8"?>
56
+ <data_getCookie_response xmlns="http://api.facebook.com/1.0/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
57
+ xsi:schemaLocation="http://api.facebook.com/1.0/ http://api.facebook.com/1.0/facebook.xsd">
58
+ <cookies>
59
+ <uid>508508326</uid>
60
+ <name>Foo</name>
61
+ <value>Bar</value>
62
+ <expires>0</expires>
63
+ <path>/tmp/</path>
64
+ </cookies>
65
+ </data_getCookie_response>
66
+ XML
67
+ end
68
+
69
+ def example_set_preference_xml
70
+ <<-XML
71
+ <?xml version="1.0" encoding="UTF-8"?>
72
+ <data_setUserPreference_response xmlns="http://api.facebook.com/1.0/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
73
+ xsi:schemaLocation="http://api.facebook.com/1.0/ http://api.facebook.com/1.0/facebook.xsd"/>
74
+ XML
75
+ end
76
+
77
+ def example_get_preference_xml
78
+ <<-XML
79
+ <?xml version="1.0" encoding="UTF-8"?>
80
+ <data_getUserPreference_response xmlns="http://api.facebook.com/1.0/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
81
+ xsi:schemaLocation="http://api.facebook.com/1.0/ http://api.facebook.com/1.0/facebook.xsd">
82
+ hello
83
+ </data_getUserPreference_response>
84
+ XML
85
+ end
86
+ end
@@ -0,0 +1,43 @@
1
+ require File.expand_path(File.dirname(__FILE__) + '/../test_helper')
2
+ require 'logger'
3
+
4
+ class Facebooker::LoggingTest < Test::Unit::TestCase
5
+ def setup
6
+ super
7
+ Facebooker.logger = Logger.new(STDERR)
8
+ Facebooker::Logging.skip_api_logging=false
9
+ end
10
+ def teardown
11
+ Facebooker.logger = nil
12
+ super
13
+ end
14
+
15
+ def test_does_not_crash_with_nil_logger
16
+ Facebooker.logger = nil
17
+ Facebooker::Logging.log_fb_api('sample.api.call',
18
+ {'param1' => true, 'param2' => 'value2'})
19
+ end
20
+
21
+ def test_does_not_crash_outside_rails
22
+ flexmock(Facebooker.logger, :logger).should_receive(:info).once.with(String)
23
+ Facebooker::Logging.log_fb_api('sample.api.call',
24
+ {'param1' => true, 'param2' => 'value2'})
25
+ end
26
+
27
+ def test_can_disable_logging
28
+ Facebooker::Logging.skip_api_logging = true
29
+ flexmock(Facebooker::Logging).should_receive(:log_info).never
30
+ Facebooker::Logging.log_fb_api('sample.api.call',
31
+ {'param1' => true, 'param2' => 'value2'})
32
+ end
33
+
34
+ def test_plain_format
35
+ flexmock(Facebooker.logger, :logger).should_receive(:info).once.with(
36
+ 'sample.api.call (0) param1 = true')
37
+ Facebooker::Logging.log_fb_api('sample.api.call',
38
+ {'param1' => true})
39
+ ensure
40
+ Facebooker.logger = nil
41
+ end
42
+
43
+ end
@@ -0,0 +1,45 @@
1
+ require File.expand_path(File.dirname(__FILE__) + '/../test_helper')
2
+
3
+ class Facebooker::MobileTest < Test::Unit::TestCase
4
+ def setup
5
+ @session = Facebooker::Session.create('apikey', 'secretkey')
6
+ @user = Facebooker::User.new(1234, @session)
7
+ Facebooker.use_curl=false
8
+ end
9
+
10
+ def test_can_send
11
+ expect_http_posts_with_responses(example_can_send_xml)
12
+ assert(@session.mobile.can_send(@user))
13
+ end
14
+
15
+ def test_send
16
+ expect_http_posts_with_responses(example_send_xml)
17
+ assert(@session.mobile.send(@user, "Some sort of message"))
18
+ end
19
+
20
+ private
21
+ def example_can_send_xml
22
+ <<-XML
23
+ <?xml version="1.0" encoding="UTF-8"?>
24
+ <sms_canSend_response
25
+ xmlns="http://api.facebook.com/1.0/"
26
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
27
+ xsi:schemaLocation="http://api.facebook.com/1.0/http://api.facebook.com/1.0/facebook.xsd">
28
+ 0
29
+ </sms_canSend_response>
30
+ XML
31
+ end
32
+
33
+ def example_send_xml
34
+ <<-XML
35
+ <?xml version="1.0" encoding="UTF-8"?>
36
+ <sms_send_response
37
+ xmlns="http://api.facebook.com/1.0/"
38
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
39
+ xsi:schemaLocation="http://api.facebook.com/1.0/http://api.facebook.com/1.0/facebook.xsd">
40
+ 0
41
+ </sms_send_response>
42
+ XML
43
+ end
44
+
45
+ end
@@ -0,0 +1,133 @@
1
+ require File.expand_path(File.dirname(__FILE__) + '/../test_helper')
2
+
3
+ class Facebooker::ModelTest < Test::Unit::TestCase
4
+
5
+ class ComplexThing
6
+ include Facebooker::Model
7
+ attr_accessor :weight, :height
8
+ end
9
+
10
+ class Thing
11
+ include Facebooker::Model
12
+ attr_accessor :name, :job
13
+ hash_settable_accessor :complex_thing, ComplexThing
14
+ hash_settable_list_accessor :list_of_complex_things, ComplexThing
15
+
16
+ def initialize *args
17
+ @session = nil
18
+ super
19
+ end
20
+ end
21
+
22
+ class PopulatingThing
23
+ include Facebooker::Model
24
+ populating_attr_accessor :first_name
25
+
26
+ def initialize
27
+ @first_name = nil
28
+ @populated = false
29
+ end
30
+ end
31
+
32
+ def test_can_instantiate_an_object_with_a_hash
33
+ h = {:name => "Blob", :job => "Monster"}
34
+ assert_equal("Blob", Thing.from_hash(h).name)
35
+ end
36
+
37
+ def test_ignores_non_model_keys
38
+ h = {:name => "Blob", :job => "Monster", :not_there=>true}
39
+ assert_equal("Blob", Thing.from_hash(h).name)
40
+ end
41
+
42
+ def test_logs_non_model_keys
43
+ flexmock(Facebooker::Logging).should_receive(:log_info)
44
+ h = {:name => "Blob", :job => "Monster", :not_there=>true}
45
+ Thing.from_hash(h)
46
+ end
47
+
48
+
49
+ def test_if_no_hash_is_given_to_model_constructor_no_attributes_are_set
50
+ assert_nothing_raised {
51
+ t = Thing.new
52
+ assert_nil(t.name)
53
+ }
54
+ end
55
+
56
+ def test_can_declare_hash_settable_attributes
57
+ t = Thing.new({})
58
+ t.complex_thing = {:weight => 123, :height => 5.4}
59
+ assert_equal(123, t.complex_thing.weight)
60
+ t.complex_thing = ComplexThing.new(:weight => 321)
61
+ assert_equal(321, t.complex_thing.weight)
62
+ end
63
+
64
+ def test_can_declare_attributes_which_are_settable_via_a_list_of_hashes
65
+ t = Thing.new
66
+ t.list_of_complex_things = [{:weight => 444, :height => 123.0}, {:weight => 222, :height => 321.1}]
67
+ assert_equal("123.0, 321.1", t.list_of_complex_things.map{|ct| ct.height.to_s}.sort.join(', '))
68
+ t.list_of_complex_things = [ComplexThing.new(:weight => 555), ComplexThing.new(:weight => 111)]
69
+ assert_equal("111, 555", t.list_of_complex_things.map{|ct| ct.weight.to_s}.sort.join(', '))
70
+ end
71
+
72
+ def test_if_you_try_to_use_a_models_session_without_initializing_it_first_you_get_a_descriptive_error
73
+ t = Thing.new
74
+ assert_raises(Facebooker::Model::UnboundSessionException) {
75
+ t.session
76
+ }
77
+ end
78
+
79
+ def test_populating_reader_will_call_populate_if_model_was_not_previously_populated
80
+ t = PopulatingThing.new
81
+ flexmock(t).should_receive(:populate).once
82
+ t.first_name
83
+ end
84
+
85
+ def test_populating_reader_will_not_call_populate_if_model_was_previously_populated
86
+ t = PopulatingThing.new
87
+ flexmock(t).should_receive(:populated?).and_return(true)
88
+ flexmock(t).should_receive(:populate).never
89
+ t.first_name
90
+ end
91
+
92
+ def test_attempting_to_access_a_populating_reader_will_raise_an_exception_if_populate_was_not_defined
93
+ t = PopulatingThing.new
94
+ assert_raises(NotImplementedError) {
95
+ t.first_name
96
+ }
97
+ end
98
+
99
+ def test_populate_from_hash_e_should_call_a_setter_for_a_key
100
+ t = PopulatingThing.new
101
+ flexmock(t).should_receive('mykey=').with('a value')
102
+ t.populate_from_hash!({ :mykey => 'a value' })
103
+ end
104
+
105
+ def test_populate_from_hash_e_should_call_a_setter_for_a_key_if_the_value_is_false
106
+ t = PopulatingThing.new
107
+ flexmock(t).should_receive('mykey=').with(false)
108
+ t.populate_from_hash!({ :mykey => false })
109
+ end
110
+
111
+ def test_populate_from_hash_e_should_call_not_a_setter_for_a_key_if_the_value_is_nil
112
+ t = PopulatingThing.new
113
+ flexmock(t).should_receive('mykey=').never
114
+ t.populate_from_hash!({ :mykey => nil })
115
+ end
116
+
117
+ def test_populate_from_hash_should_check_for_an_empty_hash
118
+ t = PopulatingThing.new
119
+ hash = {}
120
+ flexmock(hash).should_receive('empty?')
121
+ t.populate_from_hash!(hash)
122
+ end
123
+
124
+ def test_populate_from_hash_should_check_for_a_nil_param
125
+ t = PopulatingThing.new
126
+ hash = nil
127
+ assert_nothing_raised do
128
+ t.populate_from_hash!(hash)
129
+ end
130
+ end
131
+
132
+ end
133
+
@@ -0,0 +1,15 @@
1
+ require File.expand_path(File.dirname(__FILE__) + '/../../test_helper')
2
+
3
+ class Facebooker::EventTest < Test::Unit::TestCase
4
+ def test_attendance_will_query_for_event_when_asked_for_full_event_object
5
+ session = flexmock("a session object")
6
+ eid = 123
7
+ attendance = Facebooker::Event::Attendance.new
8
+ attendance.eid = eid
9
+ attendance.session = session
10
+ event = Facebooker::Event.new
11
+ event.eid = eid
12
+ session.should_receive(:post).once.with('facebook.events.get', :eids => [eid]).and_return([{:eid => eid}])
13
+ assert_equal(123, attendance.event.eid)
14
+ end
15
+ end
@@ -0,0 +1,51 @@
1
+ require File.expand_path(File.dirname(__FILE__) + '/../../test_helper')
2
+ require 'active_support'
3
+
4
+ class Facebooker::PageTest < Test::Unit::TestCase
5
+
6
+ def setup
7
+ super
8
+ Facebooker::Session.current = mock("session")
9
+ end
10
+
11
+ def test_should_be_able_to_populate_with_photo_id_as_integer
12
+ p = Facebooker::Page.new(12345)
13
+ assert_equal(12345,p.page_id)
14
+ end
15
+
16
+ def test_should_be_ble_to_initialize_with_photo_id_as_string
17
+ p = Facebooker::Page.new("12345")
18
+ assert_equal("12345",p.page_id)
19
+ end
20
+
21
+ def test_should_be_able_to_initialize_with_hash
22
+ p = Facebooker::Page.new(:page_id=>12345,:name=>"test page")
23
+ assert_equal("test page",p.name)
24
+ assert_equal(12345,p.page_id)
25
+ end
26
+
27
+ def test_should_be_able_to_see_if_user_is_fan_with_id
28
+ Facebooker::Session.current.expects(:post).with("facebook.pages.isFan",:page_id=>12345,:uid=>12451752).returns(true)
29
+ p = Facebooker::Page.new(12345)
30
+ assert p.user_is_fan?(12451752)
31
+ end
32
+
33
+ def test_should_be_able_to_see_if_user_is_fan_with_user
34
+ Facebooker::Session.current.expects(:post).with("facebook.pages.isFan",:page_id=>12345,:uid=>12451752).returns(false)
35
+ p = Facebooker::Page.new(12345)
36
+ assert !p.user_is_fan?(Facebooker::User.new(12451752))
37
+ end
38
+
39
+ def test_should_be_able_to_see_if_user_is_admin_with_id
40
+ Facebooker::Session.current.expects(:post).with("facebook.pages.isAdmin",:page_id=>12345,:uid=>12451752).returns(false)
41
+ p = Facebooker::Page.new(12345)
42
+ assert !p.user_is_admin?(12451752)
43
+
44
+ end
45
+
46
+ def test_should_be_able_to_see_if_user_is_admin_with_user
47
+ Facebooker::Session.current.expects(:post).with("facebook.pages.isAdmin",:page_id=>12345,:uid=>12451752).returns(true)
48
+ p = Facebooker::Page.new(12345)
49
+ assert p.user_is_admin?(Facebooker::User.new(12451752))
50
+ end
51
+ end
@@ -0,0 +1,16 @@
1
+ require File.expand_path(File.dirname(__FILE__) + '/../../test_helper')
2
+ require 'active_support'
3
+
4
+ class Facebooker::UserTest < Test::Unit::TestCase
5
+
6
+ def test_pid_should_be_treated_as_a_string
7
+ @photo = Facebooker::Photo.new(:pid=>"100000025509592_6801")
8
+ assert_equal("100000025509592_6801",@photo.pid)
9
+ end
10
+
11
+ def test_setting_id_should_also_use_new_method
12
+ @photo = Facebooker::Photo.new(:id=>"100000025509592_6801")
13
+ assert_equal("100000025509592_6801",@photo.id)
14
+ end
15
+
16
+ end
@@ -0,0 +1,430 @@
1
+ require File.expand_path(File.dirname(__FILE__) + '/../../test_helper')
2
+ require 'active_support'
3
+
4
+ class Facebooker::UserTest < Test::Unit::TestCase
5
+
6
+ def setup
7
+ @session = Facebooker::Session.create('apikey', 'secretkey')
8
+ @user = Facebooker::User.new(1234, @session)
9
+ @other_user = Facebooker::User.new(4321, @session)
10
+ ENV['FACEBOOK_CANVAS_PATH'] ='facebook_app_name'
11
+ ENV['FACEBOOK_API_KEY'] = '1234567'
12
+ ENV['FACEBOOK_SECRET_KEY'] = '7654321'
13
+
14
+ @user.friends = [@other_user]
15
+ end
16
+
17
+ def test_has_permission
18
+ expect_http_posts_with_responses(has_app_permission_response_xml)
19
+ assert @user.has_permission?("status_update")
20
+ end
21
+
22
+ def test_has_permissions
23
+ expect_http_posts_with_responses(has_app_permission_response_xml, has_app_permission_response_xml)
24
+ assert @user.has_permissions?(["status_update", "read_stream"])
25
+ end
26
+
27
+ def test_can_ask_user_if_he_or_she_is_friends_with_another_user
28
+ assert(@user.friends_with?(@other_user))
29
+ end
30
+
31
+ def test_can_ask_user_if_he_or_she_is_friends_with_another_user_by_user_id
32
+ assert(@user.friends_with?(@other_user.id))
33
+ end
34
+
35
+ def test_does_not_query_facebook_for_uid
36
+ @session.expects(:post).never
37
+ assert_equal 1234, Facebooker::User.new(1234, @session).uid
38
+ end
39
+
40
+ def test_uid_is_always_an_integer
41
+ assert_equal 1234, Facebooker::User.new(:uid => "1234").uid
42
+ assert_equal 1234, Facebooker::User.new(:id => "1234").uid
43
+
44
+ assert_equal 1234, Facebooker::User.new(:uid => "1234").id
45
+ assert_equal 1234, Facebooker::User.new(:id => "1234").id
46
+
47
+ assert_equal 1234, Facebooker::User.new(:uid => "1234").facebook_id
48
+ assert_equal 1234, Facebooker::User.new(:id => "1234").facebook_id
49
+ end
50
+
51
+ def test_cast_to_friend_list_id_with_nil
52
+ assert_nil @user.cast_to_friend_list_id(nil)
53
+ end
54
+ def test_cast_to_friend_list_id_with_integer
55
+ assert_equal 14,@user.cast_to_friend_list_id(14)
56
+ end
57
+ def test_cast_to_friend_list_id_with_string
58
+ @user.expects(:friend_lists).returns([Facebooker::FriendList.new(:flid=>199,:name=>"Work")])
59
+ assert_equal 199,@user.cast_to_friend_list_id("Work")
60
+ end
61
+ def test_cast_to_friend_list_id_with_friend_list
62
+ assert_equal 199,@user.cast_to_friend_list_id(Facebooker::FriendList.new(:flid=>199,:name=>"Work"))
63
+ end
64
+
65
+ def test_cast_to_friend_list_id_with_invalid_string_raises
66
+ @user.expects(:friend_lists).returns([Facebooker::FriendList.new(:flid=>1,:name=>"Not Picked")])
67
+ assert_nil @user.cast_to_friend_list_id("Something")
68
+ fail("No exception raised, Expected Facebooker::Session::InvalidFriendList")
69
+ rescue Facebooker::Session::InvalidFriendList
70
+ nil
71
+ end
72
+
73
+ def test_can_create_from_current_session
74
+ Facebooker::Session.expects(:current).returns("current")
75
+ user=Facebooker::User.new(1)
76
+ assert_equal("current",user.session)
77
+ end
78
+
79
+ def test_raises_when_no_session_bound
80
+ assert_raises(Facebooker::Model::UnboundSessionException) { Facebooker::User.new(1, nil).populate }
81
+ end
82
+
83
+ def test_can_set_mobile_fbml
84
+ @user.expects(:set_profile_fbml).with(nil,"test",nil,nil)
85
+ @user.mobile_fbml="test"
86
+ end
87
+ def test_can_set_profile_action
88
+ @user.expects(:set_profile_fbml).with(nil,nil,"test",nil)
89
+ @user.profile_action="test"
90
+ end
91
+ def test_can_set_profile_fbml
92
+ @user.expects(:set_profile_fbml).with("test",nil,nil,nil)
93
+ @user.profile_fbml="test"
94
+ end
95
+
96
+ def test_can_set_profile_main
97
+ @user.expects(:set_profile_fbml).with(nil,nil,nil,"test")
98
+ @user.profile_main="test"
99
+ end
100
+
101
+
102
+ def test_can_call_get_status
103
+ @session.expects(:post).with('facebook.status.get', {:uid => 1234, :limit => 4}).returns([{ "time" => 1233804858, "source" => 6628568379, "message" => "my message rocks!", "status_id" => 61436484312, 'uid' => 1234 }])
104
+ st = @user.statuses( 4 )
105
+ assert_equal st.size, 1
106
+ assert_equal st.first.message, 'my message rocks!'
107
+ end
108
+
109
+ def test_can_call_set_profile_fbml
110
+ @session.expects(:post).with('facebook.profile.setFBML', {:uid=>1234,:profile=>"profile",:profile_action=>"action",:mobile_profile=>"mobile"},false)
111
+ @user.set_profile_fbml("profile","mobile","action")
112
+ end
113
+
114
+ def test_can_call_set_profile_fbml_with_profile_main
115
+ @session.expects(:post).with('facebook.profile.setFBML', {:uid=>1234,:profile=>"profile",:profile_action=>"action",:mobile_profile=>"mobile", :profile_main => 'profile_main'},false)
116
+ @user.set_profile_fbml("profile","mobile","action",'profile_main')
117
+ end
118
+
119
+ def test_can_get_profile_photos
120
+ @user.expects(:profile_photos)
121
+ @user.profile_photos
122
+ end
123
+
124
+ def test_can_set_cookie
125
+ @user.expects(:set_cookie).with('name', 'value')
126
+ @user.set_cookie('name', 'value')
127
+ end
128
+
129
+ def test_can_get_cookies
130
+ @user.expects(:get_cookies).with('name')
131
+ @user.get_cookies('name')
132
+ end
133
+
134
+ def test_get_profile_photos
135
+ @user = Facebooker::User.new(548871286, @session)
136
+ expect_http_posts_with_responses(example_profile_photos_get_xml)
137
+ photos = @user.profile_photos
138
+ assert_equal "2357384227378429949", photos.first.aid
139
+ end
140
+
141
+ def test_prepare_publish_to_options_pass_only_neccessary_parameters
142
+ options = @user.prepare_publish_to_options(@user, {:message => 'Hey there', :action_links => [:text => 'Link', :href => 'http://example.com']})
143
+ assert_equal(options[:uid], @user.uid)
144
+ assert_equal(options[:target_id], @user.id)
145
+ assert_equal(options[:message], 'Hey there')
146
+ assert_nil(options[:attachment])
147
+ assert_equal(options[:action_links], [:text => 'Link', :href => 'http://example.com'].to_json )
148
+ end
149
+
150
+ def test_prepare_publish_to_options_to_page_on_behave_of_page
151
+ page_id = 12345678
152
+ options = @user.prepare_publish_to_options(@user, {:uid => 12345678, :post_as_page => true, :message => 'Hey there', :action_links => [:text => 'Link', :href => 'http://example.com']})
153
+ assert_equal(options[:uid], page_id)
154
+ assert_nil(options[:target_id])
155
+ assert_equal(options[:message], 'Hey there')
156
+ assert_nil(options[:attachment])
157
+ assert_equal(options[:action_links], [:text => 'Link', :href => 'http://example.com'].to_json )
158
+ end
159
+
160
+ def test_publish_to
161
+ @user = Facebooker::User.new(548871286, @session)
162
+ expect_http_posts_with_responses(example_profile_publish_to_get_xml)
163
+ @user.publish_to(@other_user, :message => 'i love you man')
164
+ end
165
+
166
+ def test_publish_to_converts_attachment_to_json
167
+ @user = Facebooker::User.new(548871286, @session)
168
+ @user.session.expects(:post).with("facebook.stream.publish",has_entry(:attachment=>instance_of(String)),false)
169
+ @user.publish_to(@other_user, :message => 'i love you man',:attachment=>{:a=>"b"})
170
+ end
171
+
172
+ def test_publish_to_converts_attachment_from_attachment_objecect
173
+ @user = Facebooker::User.new(548871286, @session)
174
+ @user.session.expects(:post).with("facebook.stream.publish",has_entry(:attachment=>instance_of(String)),false)
175
+ attachment = Facebooker::Attachment.new
176
+ attachment.name = "My name"
177
+ @user.publish_to(@other_user, :message => 'i love you man',:attachment=>attachment)
178
+ end
179
+
180
+ def test_comment_on
181
+ @user = Facebooker::User.new(548871286, @session)
182
+ expect_http_posts_with_responses(example_comment_on_response)
183
+ assert_equal('703826862_78463536863', @user.comment_on('703826862_78463536862', :message => 'that was hilarious!'))
184
+ end
185
+
186
+ def test_add_like_on
187
+ @user = Facebooker::User.new(548871286, @session)
188
+ expect_http_posts_with_responses(example_add_like_on_response)
189
+ assert_equal('1', @user.add_like_on('703826862_78463536862'))
190
+ end
191
+
192
+ def test_can_send_email
193
+ @user.expects(:send_email).with("subject", "body text")
194
+ @user.send_email("subject", "body text")
195
+
196
+ @user.expects(:send_email).with("subject", nil, "body fbml")
197
+ @user.send_email("subject", nil, "body fbml")
198
+ end
199
+
200
+ def test_doesnt_post_to_facebook_when_assigning_status
201
+ @session.expects(:post).never
202
+ @user.status="my status"
203
+ end
204
+ def test_can_set_status_with_string
205
+ @session.expects(:post).with('facebook.users.setStatus', {:status=>"my status",:status_includes_verb=>1, :uid => @user.uid}, false)
206
+ @user.set_status("my status")
207
+ end
208
+
209
+ def test_get_events
210
+ @user = Facebooker::User.new(9507801, @session)
211
+ expect_http_posts_with_responses(example_events_get_xml)
212
+ events = @user.events
213
+ assert_equal 29511517904, events.first.eid
214
+ end
215
+
216
+ def test_events_caching_honors_params
217
+ @user = Facebooker::User.new(9507801, @session)
218
+ @session.expects(:post).returns([{:eid=>1}])
219
+ assert_equal 1,@user.events.first.eid
220
+ @session.expects(:post).returns([{:eid=>2}])
221
+ assert_equal 2,@user.events(:start_time=>1.day.ago).first.eid
222
+ @session.expects(:post).never
223
+ assert_equal 1,@user.events.first.eid
224
+ end
225
+
226
+
227
+ def test_to_s
228
+ assert_equal("1234",@user.to_s)
229
+ end
230
+
231
+ def test_equality_with_same_id
232
+ assert_equal @user, @user.dup
233
+ assert_equal @user, Facebooker::User.new(:id => @user.id)
234
+ end
235
+
236
+ def test_not_equal_to_differnt_class
237
+ assert_not_equal @user, flexmock(:id => @user.id)
238
+ end
239
+
240
+ def test_hash_email
241
+ assert_equal "4228600737_c96da02bba97aedfd26136e980ae3761", Facebooker::User.hash_email("mary@example.com")
242
+ end
243
+ def test_hash_email_not_normalized
244
+ assert_equal "4228600737_c96da02bba97aedfd26136e980ae3761", Facebooker::User.hash_email(" MaRy@example.com ")
245
+ end
246
+
247
+ def test_register_with_array
248
+ expect_http_posts_with_responses(register_response_xml)
249
+ assert_equal ["4228600737_c96da02bba97aedfd26136e980ae3761"],Facebooker::User.register([{:email=>"mary@example.com",:account_id=>1}])
250
+ end
251
+
252
+ def test_unregister_with_array
253
+ expect_http_posts_with_responses(unregister_response_xml)
254
+ assert_equal ["4228600737_c96da02bba97aedfd26136e980ae3761"],Facebooker::User.unregister(["4228600737_c96da02bba97aedfd26136e980ae3761"])
255
+ end
256
+
257
+ def test_unregister_emails_with_array
258
+ expect_http_posts_with_responses(unregister_response_xml)
259
+ assert_equal ["mary@example.com"],Facebooker::User.unregister_emails(["mary@example.com"])
260
+ end
261
+
262
+ def test_register_with_array_raises_if_not_all_success
263
+ expect_http_posts_with_responses(register_response_xml)
264
+ assert_equal ["4228600737_c96da02bba97aedfd26136e980ae3761"],Facebooker::User.register([{:email=>"mary@example.com",:account_id=>1},{:email=>"mike@example.com",:account_id=>2}])
265
+ fail "Should have raised Facebooker::Session::UserRegistrationFailed"
266
+ rescue Facebooker::Session::UserRegistrationFailed => e
267
+ assert_equal({:email=>"mike@example.com",:account_id=>2},e.failed_users.first)
268
+ end
269
+
270
+ def test_unregister_with_array_raises_if_not_all_success
271
+ expect_http_posts_with_responses(unregister_response_xml)
272
+ assert_equal ["4228600737_c96da02bba97aedfd26136e980ae3761"],Facebooker::User.unregister(["4228600737_c96da02bba97aedfd26136e980ae3761","3587916587_791214eb452bf4de30e957d65a0234d4"])
273
+ fail "Should have raised Facebooker::Session::UserUnRegistrationFailed"
274
+ rescue Facebooker::Session::UserUnRegistrationFailed => e
275
+ assert_equal("3587916587_791214eb452bf4de30e957d65a0234d4",e.failed_users.first)
276
+ end
277
+
278
+ def test_unregister_emails_with_array_raises_if_not_all_success
279
+ expect_http_posts_with_responses(unregister_response_xml)
280
+ assert_equal ["mary@example.com"],Facebooker::User.unregister_emails(["mary@example.com","mike@example.com"])
281
+ fail "Should have raised Facebooker::Session::UserUnRegistrationFailed"
282
+ rescue Facebooker::Session::UserUnRegistrationFailed => e
283
+ assert_equal("mike@example.com",e.failed_users.first)
284
+ end
285
+
286
+
287
+ def test_get_locale
288
+ @user = Facebooker::User.new(9507801, @session)
289
+ expect_http_posts_with_responses(example_users_get_info_xml)
290
+ assert_equal "en_US", @user.locale
291
+ end
292
+
293
+ def test_get_profile_url
294
+ @user = Facebooker::User.new(8055, @session)
295
+ expect_http_posts_with_responses(example_users_get_info_xml)
296
+ assert_equal "http://www.facebook.com/profile.php?id=8055", @user.profile_url
297
+ end
298
+
299
+ def test_can_rsvp_to_event
300
+ expect_http_posts_with_responses(example_events_rsvp_xml)
301
+ result = @user.rsvp_event(1000, 'attending')
302
+ assert result
303
+ end
304
+
305
+ private
306
+ def example_profile_photos_get_xml
307
+ "<?xml version=\"1.0\" encoding=\"UTF-8\"?>
308
+ <photos_get_response xmlns=\"http://api.facebook.com/1.0/\"
309
+ xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\"
310
+ xsi:schemaLocation=\"http://api.facebook.com/1.0/ http://api.facebook.com/1.0/facebook.xsd\" list=\"true\">
311
+ <photo>
312
+ <pid>34585991612804</pid>
313
+ <aid>2357384227378429949</aid>
314
+ <owner>1240077</owner>
315
+ <src>http://ip002.facebook.com/v11/135/18/8055/s1240077_30043524_2020.jpg</src>
316
+ <src_big>http://ip002.facebook.com/v11/135/18/8055/n1240077_30043524_2020.jpg</src_big>
317
+ <src_small>http://ip002.facebook.com/v11/135/18/8055/t1240077_30043524_2020.jpg</src_small>
318
+ <link>http://www.facebook.com/photo.php?pid=30043524&amp;id=8055</link>
319
+ <caption>From The Deathmatch (Trailer) (1999)</caption>
320
+ <created>1132553361</created>
321
+ </photo>
322
+ <photo>
323
+ <pid>34585991612805</pid>
324
+ <aid>2357384227378429949</aid>
325
+ <owner>1240077</owner>
326
+ <src>http://ip002.facebook.com/v11/135/18/8055/s1240077_30043525_2184.jpg</src>
327
+ <src_big>http://ip002.facebook.com/v11/135/18/8055/n1240077_30043525_2184.jpg</src_big>
328
+ <src_small>http://ip002.facebook.com/v11/135/18/8055/t1240077_30043525_2184.jpg</src_small>
329
+ <link>http://www.facebook.com/photo.php?pid=30043525&amp;id=8055</link>
330
+ <caption>Mexico City, back cover of the CYHS Student Underground 1999.</caption>
331
+ <created>1132553362</created>
332
+ </photo>
333
+ </photos_get_response>"
334
+ end
335
+
336
+ def example_events_get_xml
337
+ "<?xml version=\"1.0\" encoding=\"UTF-8\"?>
338
+ <events_get_response xmlns=\"http://api.facebook.com/1.0/\" xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" xsi:schemaLocation=\"http://api.facebook.com/1.0/ http://api.facebook.com/1.0/facebook.xsd\" list=\"true\">
339
+ <event>
340
+ <eid>29511517904</eid>
341
+ <name>PUMA SALE</name>
342
+ <tagline/>
343
+ <nid>0</nid>
344
+ <pic>http://profile.ak.facebook.com/object3/370/66/s29511517904_6952.jpg</pic>
345
+ <pic_big>http://profile.ak.facebook.com/object3/370/66/n29511517904_6952.jpg</pic_big>
346
+ <pic_small>http://profile.ak.facebook.com/object3/370/66/t29511517904_6952.jpg</pic_small>
347
+ <host>PUMA</host>
348
+ <description>PUMA SALE</description>
349
+ <event_type>Education</event_type>
350
+ <event_subtype>Study Group</event_subtype>
351
+ <start_time>1212166800</start_time>
352
+ <end_time>1212364800</end_time>
353
+ <creator>1234261165</creator>
354
+ <update_time>1209768148</update_time>
355
+ <location>PUMA LOT</location>
356
+ <venue>
357
+ <street>5 LYBERTY WAY</street>
358
+ <city>Westford</city>
359
+ <state>Massachusetts</state>
360
+ <country>United States</country>
361
+ <latitude>42.5792</latitude>
362
+ <longitude>-71.4383</longitude>
363
+ </venue>
364
+ </event>
365
+ </events_get_response>"
366
+ end
367
+
368
+ def example_users_get_info_xml
369
+ <<-XML
370
+ <?xml version="1.0" encoding="UTF-8"?> <users_getInfo_response xmlns="http://api.facebook.com/1.0/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://api.facebook.com/1.0/ http://api.facebook.com/1.0/facebook.xsd" list="true"> <user> <uid>8055</uid> <about_me>This field perpetuates the glorification of the ego. Also, it has a character limit.</about_me> <activities>Here: facebook, etc. There: Glee Club, a capella, teaching.</activities> <affiliations list="true"> <affiliation> <nid>50453093</nid> <name>Facebook Developers</name> <type>work</type> <status/> <year/> </affiliation> </affiliations> <birthday>November 3</birthday> <books>The Brothers K, GEB, Ken Wilber, Zen and the Art, Fitzgerald, The Emporer's New Mind, The Wonderful Story of Henry Sugar</books> <current_location> <city>Palo Alto</city> <state>CA</state> <country>United States</country> <zip>94303</zip> </current_location> <education_history list="true"> <education_info> <name>Harvard</name> <year>2003</year> <concentrations list="true"> <concentration>Applied Mathematics</concentration> <concentration>Computer Science</concentration> </concentrations> </education_info> </education_history> <first_name>Dave</first_name> <hometown_location> <city>York</city> <state>PA</state> <country>United States</country> </hometown_location> <hs_info> <hs1_name>Central York High School</hs1_name> <hs2_name/> <grad_year>1999</grad_year> <hs1_id>21846</hs1_id> <hs2_id>0</hs2_id> </hs_info> <is_app_user>1</is_app_user> <has_added_app>1</has_added_app> <interests>coffee, computers, the funny, architecture, code breaking,snowboarding, philosophy, soccer, talking to strangers</interests> <last_name>Fetterman</last_name> <locale>en_US</locale> <meeting_for list="true"> <seeking>Friendship</seeking> </meeting_for> <meeting_sex list="true"> <sex>female</sex> </meeting_sex> <movies>Tommy Boy, Billy Madison, Fight Club, Dirty Work, Meet the Parents, My Blue Heaven, Office Space </movies> <music>New Found Glory, Daft Punk, Weezer, The Crystal Method, Rage, the KLF, Green Day, Live, Coldplay, Panic at the Disco, Family Force 5</music> <name>Dave Fetterman</name> <notes_count>0</notes_count> <pic>http://photos-055.facebook.com/ip007/profile3/1271/65/s8055_39735.jpg</pic> <pic_big>http://photos-055.facebook.com/ip007/profile3/1271/65/n8055_39735.jpg</pic_big> <pic_small>http://photos-055.facebook.com/ip007/profile3/1271/65/t8055_39735.jpg</pic_small> <pic_square>http://photos-055.facebook.com/ip007/profile3/1271/65/q8055_39735.jpg</pic_square> <political>Moderate</political> <profile_update_time>1170414620</profile_update_time> <profile_url>http://www.facebook.com/profile.php?id=8055</profile_url> <quotes/> <relationship_status>In a Relationship</relationship_status> <religion/> <sex>male</sex> <significant_other_id xsi:nil="true"/> <status> <message>Fast Company, November issue, page 84</message> <time>1193075616</time> </status> <timezone>-8</timezone> <tv>cf. Bob Trahan</tv> <wall_count>121</wall_count> <work_history list="true"> <work_info> <location> <city>Palo Alto</city> <state>CA</state> <country>United States</country> </location> <company_name>Facebook</company_name> <position>Software Engineer</position> <description>Tech Lead, Facebook Platform</description> <start_date>2006-01</start_date> <end_date/> </work_info> </work_history> </user> </users_getInfo_response>
371
+ XML
372
+ end
373
+
374
+ def register_response_xml
375
+ <<-XML
376
+ <?xml version="1.0" encoding="UTF-8"?>
377
+ <connect_registerUsers_response xmlns="http://api.facebook.com/1.0/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://api.facebook.com/1.0/facebook.xsd" list="true">
378
+ <connect_registerUsers_response_elt>4228600737_c96da02bba97aedfd26136e980ae3761</connect_registerUsers_response_elt>
379
+ </connect_registerUsers_response>
380
+ XML
381
+ end
382
+
383
+ def unregister_response_xml
384
+ <<-XML
385
+ <?xml version="1.0" encoding="UTF-8"?>
386
+ <connect_unregisterUsers_response xmlns="http://api.facebook.com/1.0/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://api.facebook.com/1.0/facebook.xsd" list="true">
387
+ <connect_unregisterUsers_response_elt>4228600737_c96da02bba97aedfd26136e980ae3761</connect_unregisterUsers_response_elt>
388
+ </connect_unregisterUsers_response>
389
+ XML
390
+ end
391
+
392
+ def has_app_permission_response_xml
393
+ <<-XML
394
+ <?xml version="1.0" encoding="UTF-8"?>
395
+ <users_hasAppPermission_response xmlns="http://api.facebook.com/1.0/"
396
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
397
+ xsi:schemaLocation="http://api.facebook.com/1.0/ http://api.facebook.com/1.0/facebook.xsd">1</users_hasAppPermission_response>
398
+ XML
399
+ end
400
+
401
+ def example_profile_publish_to_get_xml
402
+ <<-eoxml
403
+ <?xml version="1.0" encoding="UTF-8"?>
404
+ <stream_publish_response xmlns="http://api.facebook.com/1.0/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://api.facebook.com/1.0/ http://api.facebook.com/1.0/facebook.xsd">703826862_78463536862</stream_publish_response>
405
+ eoxml
406
+ end
407
+
408
+ def example_comment_on_response
409
+ <<-eoxml
410
+ <?xml version="1.0" encoding="UTF-8"?>
411
+ <stream_addComment_response xmlns="http://api.facebook.com/1.0/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://api.facebook.com/1.0/ http://api.facebook.com/1.0/facebook.xsd">703826862_78463536863</stream_addComment_response>
412
+ eoxml
413
+ end
414
+
415
+ def example_add_like_on_response
416
+ <<-eoxml
417
+ <?xml version="1.0" encoding="UTF-8"?>
418
+ <stream_addLike_response xmlns="http://api.facebook.com/1.0/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://api.facebook.com/1.0/ http://api.facebook.com/1.0/facebook.xsd">1</stream_addLike_response>
419
+ eoxml
420
+ end
421
+
422
+ def example_events_rsvp_xml
423
+ <<-E
424
+ <?xml version="1.0" encoding="UTF-8"?>
425
+ <events_rsvp_response xmlns="http://api.facebook.com/1.0/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
426
+ xsi:schemaLocation="http://api.facebook.com/1.0/ http://api.facebook.com/1.0/facebook.xsd">1
427
+ </events_rsvp_response>
428
+ E
429
+ end
430
+ end