]> git.eshelyaron.com Git - emacs.git/commitdiff
Add interface arg to D-Bus PropertiesChanged signal.
authorHugh Daschbach <hdasch@fastmail.com>
Mon, 12 Oct 2020 09:37:27 +0000 (11:37 +0200)
committerMichael Albinus <michael.albinus@gmx.de>
Mon, 12 Oct 2020 09:37:27 +0000 (11:37 +0200)
* lisp/net/dbus.el (dbus-register-property, dbus-property-handler):
Fix signal generation.  (Bug#43936)

* test/lisp/net/dbus-tests.el (dbus-test06-register-property-emits-signal):
Fix test.

lisp/net/dbus.el
test/lisp/net/dbus-tests.el

index 77ba5266dcb773f09b479d531c8e7bc014c593a1..bb2420e1f499cfb18ac5e12251886d7ea19dc28f 100644 (file)
@@ -1740,6 +1740,7 @@ clients from discovering the still incomplete interface.
     (when emits-signal
       (dbus-send-signal
        bus service path dbus-interface-properties "PropertiesChanged"
+       interface
        ;; changed_properties.
        (if (eq access :write)
            '(:array: :signature "{sv}")
@@ -1818,6 +1819,7 @@ It will be registered for all objects created by `dbus-register-property'."
            (when (nth 1 object)
              (dbus-send-signal
               bus service path dbus-interface-properties "PropertiesChanged"
+               interface
                ;; changed_properties.
               (if (eq :write (car object))
                    '(:array: :signature "{sv}")
index cd2e166c103b4405a68fb6f341c6fd782afd34df..f75f107dfb61e6387eff622d37404becf72ad88b 100644 (file)
@@ -1118,10 +1118,10 @@ is in progress."
        (with-timeout (1 (dbus--test-timeout-handler))
           (while (null dbus--test-signal-received)
             (read-event nil nil 0.1)))
-        ;; It returns two arguments, "changed_properties" (an array of
-        ;; dict entries) and "invalidated_properties" (an array of
-        ;; strings).
-        (should (equal dbus--test-signal-received `(((,property ("foo"))) ())))
+        ;; It returns three arguments, interface (a string),
+        ;; "changed_properties" (an array of dict entries) and
+        ;; "invalidated_properties" (an array of strings).
+        (should (equal dbus--test-signal-received `(,dbus--test-interface ((,property ("foo"))) ())))
 
         (should
          (equal
@@ -1144,7 +1144,8 @@ is in progress."
             (read-event nil nil 0.1)))
         (should
          (equal
-          dbus--test-signal-received `(((,property ((1 2 3)))) ())))
+          dbus--test-signal-received
+          `(,dbus--test-interface ((,property ((1 2 3)))) ())))
 
         (should
          (equal