From 11a59b933ff1ef1fedb06ad565fbcc46618a9982 Mon Sep 17 00:00:00 2001
From: Gonzalo Rodriguez <gonzalo@wyeworks.com>
Date: Sun, 23 Oct 2011 03:46:08 -0200
Subject: [PATCH] Add cukes scenarios: playing with the aspects-dropdown and
 posting.

---
 features/posts_from_main_page.feature         | 45 ++++++++++++++++++-
 features/step_definitions/custom_web_steps.rb |  2 +-
 2 files changed, 45 insertions(+), 2 deletions(-)

diff --git a/features/posts_from_main_page.feature b/features/posts_from_main_page.feature
index 2c63a0be0c..714c664735 100644
--- a/features/posts_from_main_page.feature
+++ b/features/posts_from_main_page.feature
@@ -3,7 +3,7 @@ Feature: posting from the main page
     In order to enlighten humanity for the good of society
     As a rock star
     I want to tell the world I am eating a yogurt
-    
+
     Background:
       Given a user with username "bob"
       And a user with username "alice"
@@ -149,3 +149,46 @@ Feature: posting from the main page
       When I am on the aspects page
       And I select only "NotPostingThingsHere" aspect
       Then I should not see "I am eating a yogurt and also cornflakes"
+
+    Scenario: change post target aspects with the aspect-dropdown before posting
+      When I expand the publisher
+      And I press the aspect dropdown
+      And I toggle the aspect "PostingTo"
+      And I append "I am eating a yogurt" to the publisher
+      And I press "Share"
+      And I wait for the ajax to finish
+
+      And I am on the aspects page
+      And I select only "PostingTo" aspect
+      Then I should see "I am eating a yogurt"
+      When I am on the aspects page
+      And I select only "NotPostingThingsHere" aspect
+      Then I should not see "I am eating a yogurt"
+
+    Scenario: post 2 in a row using the aspects-dropdown
+      When I expand the publisher
+      And I press the aspect dropdown
+      And I toggle the aspect "PostingTo"
+      And I append "I am eating a yogurt" to the publisher
+      And I press "Share"
+      And I wait for the ajax to finish
+
+      And I expand the publisher
+      And I press the aspect dropdown
+      And I toggle the aspect "Besties"
+      And I append "And cornflakes also" to the publisher
+      And I press "Share"
+      And I wait for the ajax to finish
+
+      And I am on the aspects page
+      And I select only "PostingTo" aspect
+      Then I should see "I am eating a yogurt"
+      Then I should see "And cornflakes also"
+      When I am on the aspects page
+      And I select only "Besties" aspect
+      Then I should not see "I am eating a yogurt"
+      Then I should see "And cornflakes also"
+      When I am on the aspects page
+      And I select only "NotPostingThingsHere" aspect
+      Then I should not see "I am eating a yogurt"
+      Then I should not see "And cornflakes also"
diff --git a/features/step_definitions/custom_web_steps.rb b/features/step_definitions/custom_web_steps.rb
index 17b87b19bb..89e22582ac 100644
--- a/features/step_definitions/custom_web_steps.rb
+++ b/features/step_definitions/custom_web_steps.rb
@@ -17,7 +17,7 @@ end
 
 And /^I toggle the aspect "([^"]*)"$/ do |aspect_name|
   aspect = @me.aspects.where(:name => aspect_name).first
-  find("li[data-aspect_id='#{aspect.id}']").click
+  find(".dropdown li[data-aspect_id='#{aspect.id}']").click
 end
 
 Then /^the publisher should be collapsed$/ do
-- 
GitLab