1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55
|
#!/usr/bin/env perl
# Copyright (C) 2008-2010, Sebastian Riedel.
use strict;
use warnings;
use Mojo::IOLoop;
use Test::More;
# Make sure sockets are working
plan skip_all => 'working sockets required for this test!'
unless Mojo::IOLoop->new->generate_port;
plan tests => 12;
# Um, Leela, Armondo and I are going to the back seat of his car for coffee.
use Mojo::Asset::File;
use Mojolicious::Lite;
use Test::Mojo;
# Silence
app->log->level('error');
# GET /upload
post '/upload' => sub {
my $self = shift;
my $file = $self->req->upload('file');
my $h = $file->headers;
$self->render_text($file->filename
. $file->asset->slurp
. $self->param('test')
. $h->content_type
. ($h->header('X-X') || ''));
};
my $t = Test::Mojo->new;
# POST /upload (asset and filename)
my $file = Mojo::Asset::File->new->add_chunk('lalala');
$t->post_form_ok('/upload',
{file => {file => $file, filename => 'x'}, test => 'tset'})
->status_is(200)->content_is('xlalalatsetapplication/octet-stream');
# POST /upload (path)
$t->post_form_ok('/upload', {file => {file => $file->path}, test => 'foo'})
->status_is(200)->content_like(qr/lalalafooapplication\/octet-stream$/);
# POST /upload (memory)
$t->post_form_ok('/upload', {file => {content => 'alalal'}, test => 'tset'})
->status_is(200)->content_is('filealalaltsetapplication/octet-stream');
# POST /upload (memory with headers)
my $hash = {content => 'alalal', 'Content-Type' => 'foo/bar', 'X-X' => 'Y'};
$t->post_form_ok('/upload', {file => $hash, test => 'tset'})->status_is(200)
->content_is('filealalaltsetfoo/barY');
|