Code Monkey home page Code Monkey logo

sinatra-user-auth's People

Contributors

annjohn avatar aspenjames avatar bhollan avatar brennenawana avatar dalmaboros avatar danielseehausen avatar dfenjves avatar drakeltheryuujin avatar franknowinski avatar gj avatar ihollander avatar jd2rogers2 avatar karuna24s avatar maxwellbenton avatar meg-gutshall avatar mjdele avatar ngevan avatar pletcher avatar sgharms avatar sophiedebenedetto avatar victhevenot avatar zcodedoc avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

sinatra-user-auth's Issues

!codalong

Hi! So this lab was particularly frustrating for me because it starts out with "In this codealong lab..." and as I was following along, several things were not aligning with what the lab said. For instance

  1. When I came the user sign up, for step 2, I had to set up the form for logging in on step 4 first or simultaneously to get tests to pass.
  2. When I reached the end of the lab there was logic required for the post '/sessions' route to account for incorrect logins.
    The frustrating part is when the lab tells you the tests should be passing and they aren't and you have no idea what you did wrong when really something is missing/out of order.
    Removing the "codealong" at the beginning and snippets throughout would be helpful to prevent unnecessary frustrations!
    Thank you!

So many issues with this code along

Basically ran into issues with the test every step of the way. Im not even going to list them because it would take too long. It needs a complete fix.

README Incorrect - session[:id] to session[:user_id]

Hi there,

Looks like the README needs to be updated in this lab. There are several times in the controller where 'session[:user_id]' is listed, but the README says to enter session[:id] in two different spots. I did so, following the README and it took a while to figure out that the README was just wrong and the code that came with the lab was actually correct. Seems like a simple fix that would save a bunch of folks a lot of time?

Thank you!
Rose

The part of the README that discusses the Controller, needs to be re-written.

Hi. I noticed that the README is worded as though most of the code in the application_controller.rb file needs to be written by the student. However, the needed code in that Controller file is already there from the get-go.

Additionally, the post '/sessions' route has some extra code that isn't mentioned at all in the README, but it is needed to pass the tests.

Thirdly, near the end of "Step 4: Logging In", the README has a few lines of code, followed by this sentence: "Notice that the last line of the route redirects the user to their homepage." The problem with this is that, while the Controller has that last line of code mentioned above, the README does NOT.

I don't know if the code in the Controller should be left as is, or deleted so that students can code along, but the README needs to be re-written either way.

Thanks as always for looking into this!

---Sdcrouse

Having Trouble running learn here

NoMethodError: undefined method needs_migration?' for ActiveRecord::Migrator:Class /home/shlokjoshi/sinatra-user-auth-cb-gh-000/spec/spec_helper.rb:8:in <top (required)>'
/usr/local/rvm/gems/ruby-2.3.1/gems/rspec-core-3.7.1/lib/rspec/core/configuration.rb:1455:in require' /usr/local/rvm/gems/ruby-2.3.1/gems/rspec-core-3.7.1/lib/rspec/core/configuration.rb:1455:in block in requires='
/usr/local/rvm/gems/ruby-2.3.1/gems/rspec-core-3.7.1/lib/rspec/core/configuration.rb:1455:in each' /usr/local/rvm/gems/ruby-2.3.1/gems/rspec-core-3.7.1/lib/rspec/core/configuration.rb:1455:in requires='
/usr/local/rvm/gems/ruby-2.3.1/gems/rspec-core-3.7.1/lib/rspec/core/configuration_options.rb:112:in block in process_options_into' /usr/local/rvm/gems/ruby-2.3.1/gems/rspec-core-3.7.1/lib/rspec/core/configuration_options.rb:111:in each'
/usr/local/rvm/gems/ruby-2.3.1/gems/rspec-core-3.7.1/lib/rspec/core/configuration_options.rb:111:in process_options_into' /usr/local/rvm/gems/ruby-2.3.1/gems/rspec-core-3.7.1/lib/rspec/core/configuration_options.rb:21:in configure'
/usr/local/rvm/gems/ruby-2.3.1/gems/rspec-core-3.7.1/lib/rspec/core/runner.rb:99:in setup' /usr/local/rvm/gems/ruby-2.3.1/gems/rspec-core-3.7.1/lib/rspec/core/runner.rb:86:in run'
/usr/local/rvm/gems/ruby-2.3.1/gems/rspec-core-3.7.1/lib/rspec/core/runner.rb:71:in run' /usr/local/rvm/gems/ruby-2.3.1/gems/rspec-core-3.7.1/lib/rspec/core/runner.rb:45:in invoke'
/usr/local/rvm/gems/ruby-2.3.1/gems/rspec-core-3.7.1/exe/rspec:4:in <top (required)>' /usr/local/rvm/gems/ruby-2.3.1/bin/rspec:23:in load'
/usr/local/rvm/gems/ruby-2.3.1/bin/rspec:23:in `<top (required)>'

help

none of my frigging labs will run bundle install or learn submit and no one is able to help me

db/migrate: Update File Name Required to Pass 1st Test

Hi,

To pass this first Step 1: Migration requires a _01 in front of the file name. Example: db/migrate/01_create_users_table.rb

I would not have intuited or thought of that. Over 1 hour to figure out and then with AAQ.

Please make it clearer in the lesson.


Step 1: Migration
Write a migration that creates a Users table with columns for name, email, and password. Run rake db:migrate SINATRA_ENV=test and then run your test suite.

You'll see that you're passing a number of tests, including these:

User
is invalid without a name
is invalid without a email
is invalid without an password

Instance Variables In POST route

The lesson shows instance variables in the post '/sessions' controller route. Shouldn't these instance variables be local variables since post routes do not render views and thus do not need instance variables?

Issues with codealong as well as the solution

The tests don't actually test for whether the session was cleared on logout, and the answer logout route doesn't clear the session either. This defeats the purpose of including it in the lab.

Apply Migrations To The Correct Database

There are two databases that come with this lab. It should probably be mentioned in the README that it is necessary to run rake db:migrate SINATRA_ENV=test in order to build the schema in the right database. If rake db:migrate is run like the README suggests, then it populates "user_authdevelopment.sqlite" database, but this one is not the one used by the specs.

User tests don't match existing erb text

The existing text in the sign up and log in erb files should probably be updated to be capitalized so that it matches the Capybara tests. 'sign up' to 'Sign Up', 'log in' to 'Log In', etc.

Rake db:create fails on Linux

Issue

When running on a local Linux Env or in the IDE, executing rake db:create is met with the following error:

[13:39:26] (master) sinatra-user-auth-v-000
// โ™ฅ rake db:create
WARNING: If you plan to load any of ActiveSupport's core extensions to Hash, be
sure to do so before loading Sinatra::Application or Sinatra::Base. If not,
you may disregard this warning.
rake aborted!
ActiveRecord::AdapterNotSpecified: 'development' database is not configured. Available: []
/home/aspen/.rvm/gems/ruby-2.3.7/gems/activerecord-4.2.0/lib/active_record/connection_adapters/connection_specification.rb:248:in resolve_symbol_connection' /home/aspen/.rvm/gems/ruby-2.3.7/gems/activerecord-4.2.0/lib/active_record/connection_adapters/connection_specification.rb:211:in resolve_connection'
/home/aspen/.rvm/gems/ruby-2.3.7/gems/activerecord-4.2.0/lib/active_record/connection_adapters/connection_specification.rb:139:in resolve' /home/aspen/.rvm/gems/ruby-2.3.7/gems/activerecord-4.2.0/lib/active_record/connection_adapters/connection_specification.rb:169:in spec'
/home/aspen/.rvm/gems/ruby-2.3.7/gems/activerecord-4.2.0/lib/active_record/connection_handling.rb:50:in establish_connection' /home/aspen/.rvm/gems/ruby-2.3.7/gems/activerecord-4.2.0/lib/active_record/tasks/database_tasks.rb:109:in create_current'
/home/aspen/.rvm/gems/ruby-2.3.7/gems/activerecord-4.2.0/lib/active_record/railties/databases.rake:17:in block (2 levels) in <top (required)>' /home/aspen/.rvm/gems/ruby-2.3.7/gems/rake-12.3.1/exe/rake:27:in <top (required)>'
/home/aspen/.rvm/gems/ruby-2.3.7/bin/ruby_executable_hooks:24:in eval' /home/aspen/.rvm/gems/ruby-2.3.7/bin/ruby_executable_hooks:24:in

'
Tasks: TOP => db:create
(See full trace by running task with --trace)

Replication

This was replicated on my instance of the IDE, as well as on my local machine running Ubuntu 18.10.
Attempted with Ruby versions 2.3.1, 2.3.3, and 2.3.7, all met with the same error.

Solution

The solution was creating an explicit database.yml file within the config directory. This is a fairly advanced issue and solution for students at this level of the curriculum, and should be acknowledged as moving from IDE to local environment is not advised until a later lesson.

Example database.yml file below:

development:
  adapter: sqlite3
  database: db/user_authdevelopment.sqlite
  pool: 5
  timeout: 5000

test:
  adapter: sqlite3
  database: db/user_authtest.sqlite
  pool: 5
  timeout: 5000

production:
  adapter: sqlite3
  database: db/user_authproduction.sqlite
  pool: 5
  timeout: 5000

#Staff

Broken lab

Something is wrong with either the tests or the code provided. Unable to get past a failed test because the element "email" could not be found (see screenshot). This was part of the supposedly working base code that was provided. Attempted multiple times to correct, replaced every page of my code with the solution (except for the application_controller.rb file, which was inexplicably not 'solved'), and still could not get past that error.
screen shot 2017-07-03 at 6 07 25 pm

NoMethodError in config/spec files

I was getting the following error when running the rspec test suite:
NoMethodError: undefined method needs_migration?' for ActiveRecord::Migrator:Class`

I was able to find this chunk of code in config.ru and spec_helper.rb:

if defined?(ActiveRecord::Migrator) && ActiveRecord::Migrator.needs_migration?
  raise 'Migrations are pending run `rake db:migrate SINATRA_ENV=test` to resolve the issue.'
end

When I comment this chunk out, the labs run fine, as does all database functionality.

Code-Along pre-completed

The code in app/controllers/application_controller.rb was already complete upon clone. The only coding left un-done was the forms in the views

new repository

good evening. I just deleted my repository to this lab as I was having a problem with the terminal on the version that I originally forked, and now I am unable to view the web page. I could use some help here please

Validations

In Step 1: Migration, the section ends with "Let's think about the concept of validations..." Should there be more info about validations here? The rest of the lesson doesn't mention anything else about it. Thanks!

BigDecimal.new issue

/.rvm/gems/ruby-2.6.1/gems/activesupport-4.2.0/lib/active_support/core_ext/object/duplicable.rb:85: warning: BigDecimal.new is deprecated; use BigDecimal() method instead.

This error may be "harmless" but defeats the whole learn experience when you cant run tests via learn or learn --f-f

Error with Rake and rspec

Rake was not running correctly, so changed rakefile to:

require_relative './config/environment'
require 'sinatra/activerecord/rake'

rspec giving error of:

bundler: failed to load command: rspec (/usr/local/rvm/gems/ruby-2.3.1/bin/rspec)
NoMethodError: undefined method `needs_migration?' for ActiveRecord::Migrator:Class

@avidor Student unable to run `Rake db:migrate` as per lab instructions

With a fresh clone of the lab, student gets the following error when attempting to run migrate:

LoadError: cannot load such file -- active_record/railties/databases.rake

I attempted to manually create the database, but student still ran into issues using Rake commands. Student was able to work on other labs which used Rake to build DBs/create migrations, so I suspect this lab may have some faulty instructions/dependencies (noted in the previously raised issue for this lab).

Codealong test left unpassed?

Hello,
When completing this codealong lab, it left one of the tests unsolved:

    it 'fails to log in with an incorrect password' do
      expect(current_path).to eq('/sessions/login')
      fill_in("email", :with => valid_user.email)
      fill_in("password", :with => "wrong")
      click_button('Log In')
      expect(current_path).to eq('/sessions/login')
    end

specifically, (# ./spec/features/user_feature_spec.rb:46) causes this failure:

  expected: "/sessions/login"
  got: "/sessions"

I was able to get the test to pass by checking with an if statement to make sure the computer had been able to find the correct User:

  post '/sessions' do
    @user = User.find_by(email: params["email"], password: params["password"])
    if @user == nil
      redirect '/sessions/login'
    else
      session[:id] = @user.id
      redirect '/users/home'
    end
  end

If your intention was to get students to figure it out on their own, it worked!
:)

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.