summaryrefslogtreecommitdiff
path: root/tests/giomm_ioerror_and_iodbuserror/main.cc
blob: f7d2717d28ddd9acef2331e7011066c68f3b564b (plain)
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
#include <gio/gio.h> //For the C enum values.
#include <giomm.h>
#include <iostream>
#include <string.h>

// This tests that both Gio::Error and Gio::DBus::Error are registered in
// Gio::wrap_init(), and that they are properly registered.
// This was previously a problem, but is now fixed, and we want to make sure
// that we don't regress.

int
main(int, char**)
{
  Glib::init();
  Gio::init();

  // Check that Gio::Error is thrown:
  bool gio_error_thrown = false;
  try
  {
    GError* gerror =
      g_error_new_literal(G_IO_ERROR, G_IO_ERROR_INVALID_ARGUMENT, "Arbitrary test error text.");
    ::Glib::Error::throw_exception(gerror);
  }
  catch (const Gio::Error& /* ex */)
  {
    gio_error_thrown = true;
  }
  catch (const Gio::DBus::Error& ex)
  {
    std::cerr << "Gio::DBus::Error caught when a Gio::Error was expected." << std::endl;
    return EXIT_FAILURE;
  }
  catch (const Glib::Error& ex)
  {
    std::cerr << "Glib::Error caught when a Gio::Error was expected." << std::endl;
    return EXIT_FAILURE;
  }

  if (!gio_error_thrown)
  {
    std::cerr << "Gio::Error was not thrown, but should have been thrown." << std::endl;
    return EXIT_FAILURE;
  }

  // Check that Gio::DBus::Error is thrown:
  bool gio_dbus_error_thrown = false;
  try
  {
    GError* gerror =
      g_error_new_literal(G_DBUS_ERROR, G_DBUS_ERROR_FAILED, "Arbitrary test error text.");
    ::Glib::Error::throw_exception(gerror);
  }
  catch (const Gio::DBus::Error& /* ex */)
  {
    gio_dbus_error_thrown = true;
  }
  catch (const Gio::Error& ex)
  {
    std::cerr << "Gio::Error caught when a Gio::Dbus::Error was expected." << std::endl;
    return EXIT_FAILURE;
  }
  catch (const Glib::Error& ex)
  {
    std::cerr << "Glib::Error caught when a Gio::DBus::Error was expected." << std::endl;
    return EXIT_FAILURE;
  }

  if (!gio_dbus_error_thrown)
  {
    std::cerr << "Gio::DBus::Error was not thrown, but should have been thrown." << std::endl;
    return EXIT_FAILURE;
  }

  return EXIT_SUCCESS;
}