X-Git-Url: https://irasnyder.com/gitweb/?a=blobdiff_plain;f=test%2Ffunctional%2Fvideo_controller_test.rb;fp=test%2Ffunctional%2Fvideo_controller_test.rb;h=32b1fc8bfb1a1d87e72ec8995c4c22f668c444c1;hb=0acc9549b65f2c3cd1840f39e31f2177a98bc55e;hp=0000000000000000000000000000000000000000;hpb=be6d865110840adfc90f572a4cf14f62bc4cf31e;p=cs356-p2-videostore.git diff --git a/test/functional/video_controller_test.rb b/test/functional/video_controller_test.rb new file mode 100644 index 0000000..32b1fc8 --- /dev/null +++ b/test/functional/video_controller_test.rb @@ -0,0 +1,92 @@ +require File.dirname(__FILE__) + '/../test_helper' +require 'video_controller' + +# Re-raise errors caught by the controller. +class VideoController; def rescue_action(e) raise e end; end + +class VideoControllerTest < Test::Unit::TestCase + fixtures :videos + + def setup + @controller = VideoController.new + @request = ActionController::TestRequest.new + @response = ActionController::TestResponse.new + + @first_id = videos(:first).id + end + + def test_index + get :index + assert_response :success + assert_template 'list' + end + + def test_list + get :list + + assert_response :success + assert_template 'list' + + assert_not_nil assigns(:videos) + end + + def test_show + get :show, :id => @first_id + + assert_response :success + assert_template 'show' + + assert_not_nil assigns(:video) + assert assigns(:video).valid? + end + + def test_new + get :new + + assert_response :success + assert_template 'new' + + assert_not_nil assigns(:video) + end + + def test_create + num_videos = Video.count + + post :create, :video => {} + + assert_response :redirect + assert_redirected_to :action => 'list' + + assert_equal num_videos + 1, Video.count + end + + def test_edit + get :edit, :id => @first_id + + assert_response :success + assert_template 'edit' + + assert_not_nil assigns(:video) + assert assigns(:video).valid? + end + + def test_update + post :update, :id => @first_id + assert_response :redirect + assert_redirected_to :action => 'show', :id => @first_id + end + + def test_destroy + assert_nothing_raised { + Video.find(@first_id) + } + + post :destroy, :id => @first_id + assert_response :redirect + assert_redirected_to :action => 'list' + + assert_raise(ActiveRecord::RecordNotFound) { + Video.find(@first_id) + } + end +end