up vote 3 down vote favorite
share [g+] share [fb]

I am unable to run rake test:functionals with SQLite3, it gives me this error :

rake aborted!
Permission denied - db/test.sqlite

(See full trace by running task with --trace)

My setup is on Windows XP. Tests were working a few weeks ago. Rails 2.3.2, Rake 0.8.7, sqlite3-ruby 1.2.5 gems

I am using Netbeans for development, but even when it's close I cannot run the test from a command prompt.

I also checked that no handles to test.sqlite are open (through the sysinternals task manager).

I checked the permissions, they are ok.

I tried to delete the file and recreate it, or copy to another filename without any luck either.

I tried running the command as soon as my computer is booted.

Any help is appreciated.

Thanks

link|improve this question

38% accept rate
other commands like rake db:migrate or purge or clone are working on this database. It's only test:functionals which fails. – user62605 Aug 5 '09 at 19:03
feedback

4 Answers

If you're running under Cygwin, try running this on your database files:

chmod 777 <your-files>

Cygwin can become confused about what permissions should be applied.

Yes I know these permissions are ridiculous, but so is Cygwin sometimes...

link|improve this answer
No I'm running under Windows. Tried it anyway, and not working. – user62605 Aug 5 '09 at 18:20
feedback

Very, very similar behavior on my part: Windows XP, SQLite3, Rails 2.3.4, Rake 0.8.7, Ruby 1.8.6

rake test

works (but I don't believe it's actually running the unit test)

rake test:units

and

rake test:functionals

both fail with a "Permission denied - db/test.sqlite3" With --trace enabled the specific error occurs at ../rails-2.3.4/lib/task/databases.rake:370 at a line that reads "File.delete(dbfile) if File.exist?(dbfile)

So... long story short... I commented it out.

This is NOT a fix, but it was enough of a hack to get the tests to work for me.

link|improve this answer
feedback

Just a punt, but have you tried changing the path in config/database.yml to

database: db\test.sqlite3

i.e. a backslash instead of a forwardslash. Or even a full dos style path. Issue could be related to this https://rails.lighthouseapp.com/projects/8994/tickets/4153-dbcreate-cannot-open-database-for-sqlite3-on-windows-with-cygwin

link|improve this answer
feedback

I just had this issue. For me, it was caused by me having my rails console opened in a test environment. Closed my session and it no longer threw the error.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.