Mercurial > urweb
annotate tests/dbupload2.sh @ 2062:795b5b75453c
Add 'role' data attribute.
Note, that 'role' attribute is a part of reach ARIA API described here:
http://www.w3.org/TR/wai-aria/
Among 'role', it defines lots of aria-* attributes
author | Sergey Mironov <grrwlf@gmail.com> |
---|---|
date | Mon, 07 Jul 2014 10:05:04 +0400 |
parents | 229a299d739d |
children |
rev | line source |
---|---|
grrwlf@2053 | 1 #!/bin/sh |
grrwlf@2053 | 2 |
grrwlf@2053 | 3 set -e |
grrwlf@2053 | 4 |
grrwlf@2053 | 5 cd `dirname $0` |
grrwlf@2053 | 6 |
grrwlf@2053 | 7 urweb -dbms sqlite dbupload2 |
grrwlf@2053 | 8 |
grrwlf@2053 | 9 rm -rf dbupload2.db || true |
grrwlf@2053 | 10 sqlite3 dbupload2.db < dbupload2.sql |
grrwlf@2053 | 11 |
grrwlf@2053 | 12 ./dbupload2.exe -p 8083 & |
grrwlf@2053 | 13 sleep 1 |
grrwlf@2053 | 14 |
grrwlf@2053 | 15 touch /tmp/empty |
grrwlf@2053 | 16 curl --verbose -F"operation=upload" -F"filename=@/tmp/empty" http://localhost:8083/Blabla/bla |
grrwlf@2053 | 17 |