2019-08-06 23:17:29 +00:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2019-08-07 21:35:37 +00:00
|
|
|
require 'test_helper'
|
|
|
|
|
2019-08-06 23:17:29 +00:00
|
|
|
class PostTest < ActiveSupport::TestCase
|
|
|
|
setup do
|
2019-09-16 17:56:34 +00:00
|
|
|
@site = create :site
|
|
|
|
@post = @site.posts.create(title: SecureRandom.hex)
|
2019-08-06 23:17:29 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
teardown do
|
2019-09-16 17:56:34 +00:00
|
|
|
@site.destroy
|
2019-08-06 23:17:29 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
test 'se puede acceder a los valores' do
|
|
|
|
assert @site.posts.size.positive?
|
2019-08-09 18:45:08 +00:00
|
|
|
assert @post.title.value.size.positive?
|
2019-08-06 23:17:29 +00:00
|
|
|
assert @post.content.size.positive?
|
|
|
|
end
|
|
|
|
|
|
|
|
test 'no se puede setear cualquier atributo' do
|
|
|
|
assert_raise NoMethodError do
|
|
|
|
@post.verdura = 'verdura'
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
test 'se pueden eliminar' do
|
|
|
|
assert @post.destroy
|
2019-08-08 18:28:23 +00:00
|
|
|
assert_not File.exist?(@post.path.absolute)
|
2019-08-06 23:17:29 +00:00
|
|
|
assert_not @site.posts.include?(@post)
|
|
|
|
end
|
|
|
|
|
2019-08-07 21:35:37 +00:00
|
|
|
test 'se puede ver el contenido completo después de guardar' do
|
|
|
|
assert @post.save
|
|
|
|
|
|
|
|
# Queremos saber si todos los atributos del post terminaron en el
|
|
|
|
# archivo
|
|
|
|
@post.attributes.each do |attr|
|
|
|
|
metadata = @post.send(attr)
|
|
|
|
# ignorar atributos que no son datos
|
|
|
|
next unless metadata.is_a? MetadataTemplate
|
|
|
|
|
|
|
|
if metadata.empty?
|
|
|
|
assert_not @post.document.data[attr.to_s].present?
|
2019-09-17 21:27:51 +00:00
|
|
|
elsif metadata.type == :lang
|
|
|
|
assert @post.path.relative.starts_with?("_#{metadata.value}/")
|
2019-08-08 18:28:23 +00:00
|
|
|
elsif @post.document.respond_to? attr
|
|
|
|
assert_equal metadata.value, @post.document.send(attr), attr
|
2019-08-07 21:35:37 +00:00
|
|
|
else
|
2019-08-08 18:28:23 +00:00
|
|
|
assert_equal metadata.value, @post.document.data[attr.to_s], attr
|
2019-08-06 23:17:29 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
test 'se pueden validar' do
|
|
|
|
assert @post.valid?
|
|
|
|
|
|
|
|
# XXX: si usamos nil va a traer el valor original del documento, no
|
|
|
|
# queremos tener esa información sincronizada...
|
|
|
|
@post.title.value = ''
|
|
|
|
|
|
|
|
assert_not @post.valid?
|
|
|
|
end
|
|
|
|
|
|
|
|
test 'se pueden guardar los cambios' do
|
2019-08-07 15:10:14 +00:00
|
|
|
title = SecureRandom.hex
|
|
|
|
@post.title.value = title
|
|
|
|
@post.categories.value << title
|
|
|
|
|
|
|
|
assert @post.save
|
|
|
|
|
|
|
|
Dir.chdir(@site.path) do
|
|
|
|
collection = Jekyll::Collection.new(@site.jekyll, I18n.locale.to_s)
|
2019-08-08 18:28:23 +00:00
|
|
|
document = Jekyll::Document.new(@post.path.value,
|
2019-08-07 15:10:14 +00:00
|
|
|
site: @site.jekyll,
|
|
|
|
collection: collection)
|
|
|
|
document.read
|
|
|
|
|
|
|
|
assert document.data['categories'].include?(title)
|
|
|
|
assert_equal title, document.data['title']
|
|
|
|
assert_equal 'post', document.data['layout']
|
|
|
|
end
|
2019-08-06 23:17:29 +00:00
|
|
|
end
|
2019-08-07 21:35:37 +00:00
|
|
|
|
|
|
|
test 'attribute_name' do
|
|
|
|
assert_equal :hola, @post.send(:attribute_name, :hola)
|
|
|
|
assert_equal :hola, @post.send(:attribute_name, :hola?)
|
|
|
|
assert_equal :hola, @post.send(:attribute_name, :hola_was)
|
|
|
|
assert_equal :hola, @post.send(:attribute_name, :hola_changed?)
|
|
|
|
end
|
|
|
|
|
|
|
|
test 'se puede cambiar el slug' do
|
2019-09-16 17:56:34 +00:00
|
|
|
@post.title.value = SecureRandom.hex
|
2019-08-07 21:35:37 +00:00
|
|
|
assert_equal @post.slug_was, @post.slug.value
|
|
|
|
assert_not @post.slug_changed?
|
|
|
|
assert @post.slug.valid?
|
|
|
|
|
|
|
|
ex_slug = @post.slug.value
|
|
|
|
@post.slug.value = SecureRandom.hex
|
|
|
|
|
|
|
|
assert_not_equal ex_slug, @post.slug.value
|
|
|
|
assert_equal ex_slug, @post.slug_was
|
|
|
|
assert @post.slug_changed?
|
|
|
|
assert @post.slug.valid?
|
|
|
|
end
|
|
|
|
|
|
|
|
test 'se puede cambiar la fecha' do
|
|
|
|
assert_equal @post.date_was, @post.date.value
|
|
|
|
assert_not @post.date_changed?
|
|
|
|
assert @post.date.valid?
|
|
|
|
|
|
|
|
ex_date = @post.date.value
|
|
|
|
@post.date.value = 2.days.ago
|
|
|
|
|
|
|
|
assert_not_equal ex_date, @post.date.value
|
|
|
|
assert_equal ex_date, @post.date_was
|
|
|
|
assert @post.date_changed?
|
|
|
|
assert @post.date.valid?
|
|
|
|
end
|
2019-08-08 18:28:23 +00:00
|
|
|
|
|
|
|
test 'al cambiar slug o fecha cambia el archivo de ubicacion' do
|
2019-09-12 20:07:29 +00:00
|
|
|
hoy = 2.days.from_now.to_time
|
2019-08-08 18:28:23 +00:00
|
|
|
path_was = @post.path.absolute
|
2019-09-16 17:56:34 +00:00
|
|
|
@post.slug.value = title = SecureRandom.hex
|
2019-08-08 18:28:23 +00:00
|
|
|
@post.date.value = hoy
|
|
|
|
|
|
|
|
assert @post.path_changed?
|
2019-09-16 17:56:34 +00:00
|
|
|
assert_equal "_es/#{hoy.strftime('%F')}-#{title}.markdown",
|
2019-08-08 18:28:23 +00:00
|
|
|
@post.path.relative
|
|
|
|
|
|
|
|
assert @post.save
|
2019-09-16 17:56:34 +00:00
|
|
|
assert_equal "_es/#{hoy.strftime('%F')}-#{title}.markdown",
|
2019-08-08 18:28:23 +00:00
|
|
|
@post.document.relative_path
|
|
|
|
assert_not File.exist?(path_was)
|
|
|
|
assert File.exist?(@post.path.absolute)
|
|
|
|
end
|
|
|
|
|
2019-09-16 17:56:34 +00:00
|
|
|
test 'new?' do
|
|
|
|
post = @site.posts.build title: SecureRandom.hex
|
|
|
|
assert post.new?
|
|
|
|
assert post.save
|
|
|
|
assert_not post.new?
|
|
|
|
end
|
|
|
|
|
2019-08-08 18:28:23 +00:00
|
|
|
test 'no podemos pisar otros archivos' do
|
2019-09-16 17:56:34 +00:00
|
|
|
post = @site.posts.create title: SecureRandom.hex
|
2019-08-08 18:28:23 +00:00
|
|
|
|
|
|
|
@post.slug.value = post.slug.value
|
|
|
|
@post.date.value = post.date.value
|
|
|
|
|
|
|
|
assert_not @post.save
|
|
|
|
assert File.exist?(@post.path.absolute)
|
|
|
|
assert File.exist?(@post.path_was)
|
|
|
|
end
|
2019-08-08 19:26:47 +00:00
|
|
|
|
|
|
|
test 'se pueden crear nuevos' do
|
|
|
|
post = @site.posts.build(layout: :post)
|
2019-09-16 17:56:34 +00:00
|
|
|
post.title.value = SecureRandom.hex
|
|
|
|
post.content.value = SecureRandom.hex
|
2019-08-08 19:26:47 +00:00
|
|
|
|
|
|
|
assert post.new?
|
|
|
|
assert post.save
|
2019-08-09 18:45:08 +00:00
|
|
|
assert File.exist?(post.path.absolute)
|
2019-08-08 19:26:47 +00:00
|
|
|
end
|
2019-08-13 23:33:57 +00:00
|
|
|
|
|
|
|
test 'se pueden inicializar con valores' do
|
2019-09-16 17:56:34 +00:00
|
|
|
title = SecureRandom.hex
|
|
|
|
post = @site.posts.build(title: title, content: title)
|
2019-08-13 23:33:57 +00:00
|
|
|
|
2019-09-16 17:56:34 +00:00
|
|
|
assert_equal title, post.title.value
|
|
|
|
assert_equal title, post.content.value
|
2019-08-13 23:33:57 +00:00
|
|
|
assert post.save
|
|
|
|
end
|
2019-08-06 23:17:29 +00:00
|
|
|
end
|