Coder Social home page Coder Social logo

sinatra-secure-password-lab-v-000's Issues

Unneeded "success" route in starter code

The starter code has an unnecessary route that is not required by the tests. Upon successful login, the test expects to be redirected to the /account route, not /success.
Also, the /account route does not check to see if the user is logged in.

get "/success" do
if logged_in?
erb :success
else
redirect "/login"
end
end

Test passing without creating new user on sign up

Ok so I was looking at the tests on this lab and noticed currently I can pass without creating a user on sign up.

      post "/signup" do 
	if params.values.any?{|v| v.empty?}
	  redirect '/failure'
	else
	  redirect '/login'
	end
      end

The above code passes because the tests are creating the users for us.

I'd say add a test for sign up that checks if that user was created after filling the sign up form to ensure test doesn't pass with incomplete code.

needs_migration? no_method error

Change config.ru to the following:

require './config/environment'

if ActiveRecord::Migrator.needs_migration?
raise 'Migrations are pending. Run rake db:migrate to resolve the issue.'
end

run ApplicationController

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.