Skip to content

Commit 05ef672

Browse files
author
lindsey
committed
Add to do project
0 parents  commit 05ef672

13 files changed

+265
-0
lines changed

.rspec

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
--require spec_helper

Gemfile

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
source 'https://rubygems.org'
2+
3+
gem 'sinatra'
4+
gem 'pg'
5+
gem 'launchy'

Gemfile.lock

+30
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
GEM
2+
remote: https://rubygems.org/
3+
specs:
4+
addressable (2.7.0)
5+
public_suffix (>= 2.0.2, < 5.0)
6+
launchy (2.4.3)
7+
addressable (~> 2.3)
8+
mustermann (1.0.3)
9+
pg (1.1.4)
10+
public_suffix (4.0.1)
11+
rack (2.0.7)
12+
rack-protection (2.0.7)
13+
rack
14+
sinatra (2.0.7)
15+
mustermann (~> 1.0)
16+
rack (~> 2.0)
17+
rack-protection (= 2.0.7)
18+
tilt (~> 2.0)
19+
tilt (2.0.10)
20+
21+
PLATFORMS
22+
ruby
23+
24+
DEPENDENCIES
25+
launchy
26+
pg
27+
sinatra
28+
29+
BUNDLED WITH
30+
2.0.2

README.md

+29
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
# TodoList App
2+
3+
Getting started:
4+
5+
```
6+
cd to-do-list-db
7+
psql -f db/migrations/01_create_todolist_table.sql
8+
psql -f db/migrations/02_create_todolist_test_table.sql
9+
rspec
10+
```
11+
12+
There is a green feature test that can view a list of todo items
13+
14+
There is a failing feature test which (when green) can insert
15+
a new todo item from the browser and then displays the list of
16+
all the todo lists
17+
18+
### Step 1
19+
Implement the code to make the failing test green.
20+
21+
You will need to think about how to add data from the browser and how to store this in the database. You will also need to think about what unit tests you need to write.
22+
23+
### Step 2
24+
Add this feature. Remember to write a feature test
25+
26+
```
27+
As a user I would like to be able to set an optional deadline on
28+
my to do items
29+
```

app.rb

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
require 'sinatra/base'
2+
require_relative 'lib/todo.rb'
3+
4+
class TodoListApp < Sinatra::Base
5+
get '/' do
6+
"hello world"
7+
end
8+
get '/todos' do
9+
@items = Todo.all
10+
erb :todos
11+
end
12+
end

config.ru

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
require_relative 'app.rb'
2+
3+
run TodoListApp
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
CREATE DATABASE TodoList;
2+
\c todolist;
3+
CREATE TABLE Todo(id SERIAL PRIMARY KEY, title VARCHAR, body VARCHAR);
4+
INSERT INTO TODO (title, body) VALUES ('Today', 'Buy milk');
5+
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
CREATE DATABASE TodoList_test;
2+
\c todolist_test;
3+
CREATE TABLE todo(id SERIAL PRIMARY KEY, title VARCHAR, body VARCHAR);

lib/todo.rb

+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
require 'pg'
2+
class Todo
3+
4+
attr_reader :title, :body
5+
6+
def initialize(title, body)
7+
@title = title
8+
@body = body
9+
end
10+
11+
def self.all
12+
if ENV['RACK_ENV'] == 'test'
13+
conn = PG.connect(dbname: 'todolist_test')
14+
else
15+
conn = PG.connect(dbname: 'todolist')
16+
end
17+
rows = conn.query("SELECT * FROM TODO;")
18+
conn.close
19+
rows.map { |r|
20+
Todo.new(r["title"], r["body"])
21+
}
22+
end
23+
24+
end

spec/features/helloworld_spec.rb

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
require 'capybara/rspec'
2+
3+
feature "app" do
4+
5+
scenario 'can call the index page' do
6+
visit("/")
7+
expect(page).to have_content("hello world")
8+
end
9+
10+
end

spec/features/todolist_spec.rb

+32
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
require 'capybara/rspec'
2+
require 'pg'
3+
feature 'it can render todo items' do
4+
before(:all) do
5+
conn = PG.connect(dbname: 'todolist_test')
6+
conn.exec("INSERT INTO TODO (title, body) VALUES ('Things', 'Buy stamps');")
7+
conn.close
8+
end
9+
scenario 'visiting the page should show me a success response' do
10+
visit("/todos")
11+
expect(page.status_code).to eq(200)
12+
end
13+
14+
scenario 'visiting the page should show me a todo items' do
15+
visit("/todos")
16+
expect(page).to have_content ('Buy stamps')
17+
end
18+
19+
scenario 'I can add a new todo item' do
20+
visit("/todos")
21+
fill_in('title', :with => 'Today')
22+
fill_in('body', :with => 'Fill out taxes')
23+
click_button('submit')
24+
expect(page).to have_content ('Fill out taxes')
25+
end
26+
27+
after(:all) do
28+
conn = PG.connect(dbname: 'todolist')
29+
conn.exec("TRUNCATE TABLE TODO;")
30+
conn.close
31+
end
32+
end

spec/spec_helper.rb

+105
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,105 @@
1+
# This file was generated by the `rspec --init` command. Conventionally, all
2+
# specs live under a `spec` directory, which RSpec adds to the `$LOAD_PATH`.
3+
# The generated `.rspec` file contains `--require spec_helper` which will cause
4+
# this file to always be loaded, without a need to explicitly require it in any
5+
# files.
6+
#
7+
# Given that it is always loaded, you are encouraged to keep this file as
8+
# light-weight as possible. Requiring heavyweight dependencies from this file
9+
# will add to the boot time of your test suite on EVERY test run, even for an
10+
# individual file that may not need all of that loaded. Instead, consider making
11+
# a separate helper file that requires the additional dependencies and performs
12+
# the additional setup, and require it from the spec files that actually need
13+
# it.
14+
#
15+
# See http://rubydoc.info/gems/rspec-core/RSpec/Core/Configuration
16+
require 'capybara'
17+
require 'capybara/rspec'
18+
require 'rspec'
19+
require './app.rb'
20+
Capybara.app = TodoListApp
21+
ENV['RACK_ENV'] = 'test'
22+
RSpec.configure do |config|
23+
# rspec-expectations config goes here. You can use an alternate
24+
# assertion/expectation library such as wrong or the stdlib/minitest
25+
# assertions if you prefer.
26+
config.expect_with :rspec do |expectations|
27+
# This option will default to `true` in RSpec 4. It makes the `description`
28+
# and `failure_message` of custom matchers include text for helper methods
29+
# defined using `chain`, e.g.:
30+
# be_bigger_than(2).and_smaller_than(4).description
31+
# # => "be bigger than 2 and smaller than 4"
32+
# ...rather than:
33+
# # => "be bigger than 2"
34+
expectations.include_chain_clauses_in_custom_matcher_descriptions = true
35+
end
36+
37+
# rspec-mocks config goes here. You can use an alternate test double
38+
# library (such as bogus or mocha) by changing the `mock_with` option here.
39+
config.mock_with :rspec do |mocks|
40+
# Prevents you from mocking or stubbing a method that does not exist on
41+
# a real object. This is generally recommended, and will default to
42+
# `true` in RSpec 4.
43+
mocks.verify_partial_doubles = true
44+
end
45+
46+
# This option will default to `:apply_to_host_groups` in RSpec 4 (and will
47+
# have no way to turn it off -- the option exists only for backwards
48+
# compatibility in RSpec 3). It causes shared context metadata to be
49+
# inherited by the metadata hash of host groups and examples, rather than
50+
# triggering implicit auto-inclusion in groups with matching metadata.
51+
config.shared_context_metadata_behavior = :apply_to_host_groups
52+
# The settings below are suggested to provide a good initial experience
53+
# with RSpec, but feel free to customize to your heart's content.
54+
=begin
55+
# This allows you to limit a spec run to individual examples or groups
56+
# you care about by tagging them with `:focus` metadata. When nothing
57+
# is tagged with `:focus`, all examples get run. RSpec also provides
58+
# aliases for `it`, `describe`, and `context` that include `:focus`
59+
# metadata: `fit`, `fdescribe` and `fcontext`, respectively.
60+
config.filter_run_when_matching :focus
61+
62+
# Allows RSpec to persist some state between runs in order to support
63+
# the `--only-failures` and `--next-failure` CLI options. We recommend
64+
# you configure your source control system to ignore this file.
65+
config.example_status_persistence_file_path = "spec/examples.txt"
66+
67+
# Limits the available syntax to the non-monkey patched syntax that is
68+
# recommended. For more details, see:
69+
# - http://rspec.info/blog/2012/06/rspecs-new-expectation-syntax/
70+
# - http://www.teaisaweso.me/blog/2013/05/27/rspecs-new-message-expectation-syntax/
71+
# - http://rspec.info/blog/2014/05/notable-changes-in-rspec-3/#zero-monkey-patching-mode
72+
config.disable_monkey_patching!
73+
74+
# This setting enables warnings. It's recommended, but in some cases may
75+
# be too noisy due to issues in dependencies.
76+
config.warnings = true
77+
78+
# Many RSpec users commonly either run the entire suite or an individual
79+
# file, and it's useful to allow more verbose output when running an
80+
# individual spec file.
81+
if config.files_to_run.one?
82+
# Use the documentation formatter for detailed output,
83+
# unless a formatter has already been configured
84+
# (e.g. via a command-line flag).
85+
config.default_formatter = "doc"
86+
end
87+
88+
# Print the 10 slowest examples and example groups at the
89+
# end of the spec run, to help surface which specs are running
90+
# particularly slow.
91+
config.profile_examples = 10
92+
93+
# Run specs in random order to surface order dependencies. If you find an
94+
# order dependency and want to debug it, you can fix the order by providing
95+
# the seed, which is printed after each run.
96+
# --seed 1234
97+
config.order = :random
98+
99+
# Seed global randomization in this process using the `--seed` CLI option.
100+
# Setting this allows you to use `--seed` to deterministically reproduce
101+
# test failures related to randomization by passing the same `--seed` value
102+
# as the one that triggered the failure.
103+
Kernel.srand config.seed
104+
=end
105+
end

views/todos.erb

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
<% for @item in @items %>
2+
<li>
3+
<%= @item.title %>
4+
<%= @item.body %>
5+
</li>
6+
<% end %>

0 commit comments

Comments
 (0)