开发者

How far to check for errors and throw exceptions?

开发者 https://www.devze.com 2022-12-21 18:47 出处:网络
I\'m working on the back-end of my website and I\'m wondering how far I should be going to test for errors and throwing exceptions accordingly? Testing in the sense of improper usage of methods and fu

I'm working on the back-end of my website and I'm wondering how far I should be going to test for errors and throwing exceptions accordingly? Testing in the sense of improper usage of methods and functions. Not errors under correct usage.

My biggest concern is code bloat and uglying it up with a bunch of if/elses, type checks, and other such tests.

Should you go so far as to consider every possible way someone could use an object, catch all the improper uses, and throw exceptions to make it clear to the developer using it what they've done wrong?

Or is it a better approach to let the code break naturally (obviously catching and checking for things that would be a big deal, but not for every contingency), and depend on anyone using the code to read the available documentation and use it accor开发者_如何学Godingly?

Are there any general best practices or guidelines to follow when handling such issues? I'm working in PHP, is there anything specific to PHP, although this issue is generally language wide?

Thanks for any help on the matter.


At least, your application should not "break" : when an error is detected (be it because you detected a problem could happen and avoided it, or because a problem did happen), you should display some nice error message, and, eventually, log the technical informations of the error.

About bloating the code : I would not put too much tests and all that in my code : it would end up in something hard to understand and maintain -- which is important !


What I generally try to do is :

  • Test for errors in the user-supplied data
    • Using a specific class, for instance, so those checks are not in the middle of the code that deals with database and business rules.
    • Those tests are relatively precise, in order to generate useful error messages for the user
      • For instance : "You should not input more than 20 characters"
      • Or "there is already a user with that e-mail address"
    • Basically, the important thing here is the user.
  • When user-supplied data seems OK, I work with it.
    • And there, if some error happens, it'll most likely be a technical error
    • Which should be logged
    • And only a "oops, an error occured" should be displayed to the user.
    • Which means that, here, tests are not as precise : we only need to know if it works or not -- not necessarily in great details.

Of course, in the end, you should ensure that the data in the DB is correct, and that you don't save only half of the data.


A common way of dealing with technical errors is using exceptions ; here is a very basic idea :

try {
    // Begin transaction to the DB

    // Some code that might fail and throw an Exception

    // Some other code that might fail and throw an Exception

    // Code here will not be executed if an Exception has been thrown

    // Commit DB transaction
} catch (Exception $e) {
    // Rollback transaction (cancels the queries that were sent to the DB)
    // Log technical informations to a file
    // Display a nice message
}

The great thing is that it allows one to place all error-handling code in a single place, and put less testing code in the middle of the important stuff ; i.e. "let it fail, we'll deal with the problems later"


I usually just go as far as making sure method input parameters and/or public members are filled and of the proper type (string, int, etc...). Other than that I just let it break naturally. (If people aren't going to bother reading the documentation, they kind of deserve to have things break a little.)

As I see it, you don't bloat your code with error-checks, who's only purpose would be to support the laziness of your co-workers/clients/random-developers.

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号