views:

1058

answers:

14

I need to test my web app in a scenario where there’s no disk space remaining, i.e. I cannot write any more files. But I don’t want to fill my hard drive with junk just to make sure there’s really no space left. What I want is to simulate this situation withing a particular process (actually, a PHP app).

Indeed, temporarily prohibiting disk writes to a process must be enough.

What’s the easiest way to do this? I’m using Mac OS X 10.6.2 with built-in Apache/PHP bundle. Thanks.

Edit: Disk free space check is not going to be reliable since it can change any moment. Many pages are being served simultaneously. There can be enough free space when checking, but none by the moment you actually write something. Also, checking for disk free space will require changing the code everywhere I write a file, which is not what I want :-) Finally, this solution is exactly the opposite of what I’m trying to test: how my app will behave when it cannot write any more.

+13  A: 

When I needed to do this I created a virtual machine with limited space allocated to the virtual disk.

ryeguy
+3  A: 

I used a thumb drive, as the volume for the process.

Cheeso
+2  A: 

A quick and easy solution would be setting up a Quota for a specialized user account. Quota support on Mac OS X

If you don't mind the hassle to set it up, and the fact that you probably need a second license for your operating system, a Virtual Machine is probably the best idea with the most long-term possibilities.

Pekka
A: 

Wherever you obtain the remaining disk space, just comment it out and run your app with a replacement values such as 0.1, 0, -1

AlastairDewar
This wouldn't work if you were relying on some kind of "NoFreeDiskSpace" exception to arise.
Noufal Ibrahim
+3  A: 

I'm not sure of how to do it on OSX but on Linux, I'd probably put a disk quota on my test user and then run the app.

Or maybe create a null file (a small one), format it as an ext3 partition, mount it using the loopback device and run the PHP app inside it. This would be closer to a physical disk that's short of space.

Noufal Ibrahim
+20  A: 

I bet you could also create your own .dmg file with file system of size ... say 2Mb and write to it. If this works, then it is super-easy for testing - you just mount it and switch the path for testing. If the dmg is small enough, you could probably even upload it to the source control.

Hamish Grubijan
or use a symlink.
envalid
+5  A: 

No need to use a prefilled dummy filesystem.
Use disk_free_space() to mock the FileSystem

disk_free_space() - Given a string containing a directory, this function will return the number of bytes available on the corresponding filesystem or disk partition.

To simulate, just wrap the function into a FileSystem Class. Then inject it to your class doing the saving as a dependency and check if the drive is full before you do the actual saving. In your UnitTest, just swap out the regular class with the class mocking a full file system and you're done. This way you don't have to recreate the full disk drive or keep the drive with your project files all the time whenever you want to rerun your test, e.g.

class MyFileSystem
{
    public static function df($drive)
    {
        return disk_free_space($drive);
    }
}

and to simulate a full FileSystem do

class MyFileSystemFull
{
    public static function df($drive)
    {
        return 0;
    }
}

If you want to overload the function to return 0 at all times, you could use the RunKit Pecl extension and do:

runkit_function_redefine('disk_free_space','string','return 0;');
Gordon
I am solidly incompetent regarding the php part, but this sounds like Mocking your dependency, which is exactly what I would try to do.
Mathias
@Mathias: yes, that's what it is supposed to be. It might need some tweaking to fit into the OP's code, but it's a mock. I've updated the answer to make it clearer.
Gordon
Sounds like a candidate for a race condition.
Georg
@gs you mean when two processes try to save files and both pass the check, but then the first file is written and then there is not enough space for the other left. Yes. True. But that's not what the code above is to solve. It's just for simulating there is no free disk space.
Gordon
+45  A: 

Give my sister access to the machine for 15 minutes.

Bonus: you'll be testing your virus/malware protection at the same time.

ceejayoz
+1 for laughs and brass *cojones*. "Funny" answers tend to get smacked down a lot around here.
zombat
truly amazing :D
Stefano Borini
+1 for the LOLs. This is comedy gold.
JasCav
Doesn't improve the overall answer. Isn't useful in any way. Not suited to this site.
Wes
@Wes There's always someone without a sense of humour, I guess. 44 upvotes would appear to disagree with your downvote.
ceejayoz
+2  A: 
Norman Ramsey
+1  A: 

Can't you use a Mock, and substitute the part of your code which actually writes to disk, with a fake test replacement which will throw the exception(s) you expect to see?

Mathias
A: 

recursively remove all write permissions from your webfolder, folders and files your app is going to write to.

knittl
A: 

Bottom line; don't do that. Seriously -- there are so many things that go horribly wrong when a volume runs out of space. Unless the volume targeted is not the boot volume and has not one other application writing to it, the behavior as the disk fills will be out of your control anyway.

If it is the boot drive, the system will quite likely panic or crash upon full disk anyway. Or, if not, it'll behave erratically.

If you are talking about a data volume, is yours the only app that is writing to it? If any other app is writing, do you know for certain how they might fail?

Disk space is so dirt cheap these days that you are far better off ensuring that out of disk space will simply never happen. Drop a 2TB drive in and put an alarm in when it reaches 50% capacity. Far cheaper to implement (unless your time is free) and far more reliable.

bbum
A: 

Have you tried mount with -f -r ? It's not really low disk space, but it should throw an error from the same level.

Justin Granger