12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184 |
- ;;; test-org-clock.el --- Tests for org-clock.el
- ;; Copyright (C) 2012, 2014, 2015, 2019 Nicolas Goaziou
- ;; Author: Nicolas Goaziou <n.goaziou at gmail dot com>
- ;; Released under the GNU General Public License version 3
- ;; see: http://www.gnu.org/licenses/gpl-3.0.html
- ;;;; Comments
- ;;; Code:
- (defun org-test-clock-create-timestamp (input &optional inactive with-time)
- "Create a timestamp out of a date/time prompt string.
- INPUT is a string as expected in a date/time prompt, i.e \"+2d\"
- or \"2/5\".
- When optional argument INACTIVE is non-nil, return an inactive
- timestamp. When optional argument WITH-TIME is non-nil, also
- insert hours and minutes.
- Return the timestamp as a string."
- (org-element-interpret-data
- (let ((time (decode-time
- (apply #'encode-time
- (mapcar (lambda (el) (or el 0))
- (org-read-date-analyze
- input nil (decode-time (current-time))))))))
- (list 'timestamp
- (list :type (if inactive 'inactive 'active)
- :minute-start (and with-time (nth 1 time))
- :hour-start (and with-time (nth 2 time))
- :day-start (nth 3 time)
- :month-start (nth 4 time)
- :year-start (nth 5 time))))))
- (defun org-test-clock-create-clock (input1 &optional input2)
- "Create a clock line out of two date/time prompts.
- INPUT1 and INPUT2 are strings as expected in a date/time prompt,
- i.e \"+2d\" or \"2/5\". They respectively refer to start and end
- range. INPUT2 can be omitted if clock hasn't finished yet.
- Return the clock line as a string."
- (let* ((beg (org-test-clock-create-timestamp input1 t t))
- (end (and input2 (org-test-clock-create-timestamp input2 t t)))
- (sec-diff (and input2
- (floor (- (org-time-string-to-seconds end)
- (org-time-string-to-seconds beg))))))
- (concat org-clock-string " " beg
- (when end
- (concat "--" end " => "
- (format "%2d:%02d"
- (/ sec-diff 3600)
- (/ (mod sec-diff 3600) 60))))
- "\n")))
- (defun test-org-clock-clocktable-contents (options &optional initial)
- "Return contents of a Clock table for current buffer
- OPTIONS is a string of Clock table options. Optional argument
- INITIAL is a string specifying initial contents within the Clock
- table.
- Caption is ignored in contents. The clocktable doesn't appear in
- the buffer."
- (declare (indent 2))
- (goto-char (point-min))
- (save-excursion
- (insert "#+BEGIN: clocktable " options "\n")
- (when initial (insert initial))
- (unless (string-suffix-p "\n" initial) (insert "\n"))
- (insert "#+END:\n"))
- (unwind-protect
- (save-excursion
- (let ((org-duration-format 'h:mm)) (org-update-dblock))
- (forward-line)
- ;; Skip caption.
- (when (looking-at "#\\+CAPTION:") (forward-line))
- (buffer-substring-no-properties
- (point) (progn (search-forward "#+END:") (line-end-position 0))))
- ;; Remove clocktable.
- (delete-region (point) (search-forward "#+END:\n"))))
- ;;; Clock drawer
- (ert-deftest test-org-clock/into-drawer ()
- "Test `org-clock-into-drawer' specifications."
- ;; When `org-clock-into-drawer' is nil, do not use a clock drawer.
- (should-not
- (org-test-with-temp-text "* H"
- (let ((org-clock-into-drawer nil)
- (org-log-into-drawer nil))
- (org-clock-into-drawer))))
- (should-not
- (org-test-with-temp-text "* H"
- (let ((org-clock-into-drawer nil)
- (org-log-into-drawer t))
- (org-clock-into-drawer))))
- (should-not
- (org-test-with-temp-text "* H"
- (let ((org-clock-into-drawer nil)
- (org-log-into-drawer "BAR"))
- (org-clock-into-drawer))))
- ;; When `org-clock-into-drawer' is a string, use it
- ;; unconditionally.
- (should
- (equal "FOO"
- (org-test-with-temp-text "* H"
- (let ((org-clock-into-drawer "FOO")
- (org-log-into-drawer nil))
- (org-clock-into-drawer)))))
- (should
- (equal "FOO"
- (org-test-with-temp-text "* H"
- (let ((org-clock-into-drawer "FOO")
- (org-log-into-drawer t))
- (org-clock-into-drawer)))))
- (should
- (equal "FOO"
- (org-test-with-temp-text "* H"
- (let ((org-clock-into-drawer "FOO")
- (org-log-into-drawer "BAR"))
- (org-clock-into-drawer)))))
- ;; When `org-clock-into-drawer' is an integer, return it.
- (should
- (= 1
- (org-test-with-temp-text "* H"
- (let ((org-clock-into-drawer 1)
- (org-log-into-drawer nil))
- (org-clock-into-drawer)))))
- (should
- (= 1
- (org-test-with-temp-text "* H"
- (let ((org-clock-into-drawer 1)
- (org-log-into-drawer t))
- (org-clock-into-drawer)))))
- (should
- (= 1
- (org-test-with-temp-text "* H"
- (let ((org-clock-into-drawer 1)
- (org-log-into-drawer "BAR"))
- (org-clock-into-drawer)))))
- ;; Otherwise, any non-nil value defaults to `org-log-into-drawer' or
- ;; "LOGBOOK" if it is nil.
- (should
- (equal "LOGBOOK"
- (org-test-with-temp-text "* H"
- (let ((org-clock-into-drawer t)
- (org-log-into-drawer nil))
- (org-clock-into-drawer)))))
- (should
- (equal "LOGBOOK"
- (org-test-with-temp-text "* H"
- (let ((org-clock-into-drawer t)
- (org-log-into-drawer t))
- (org-clock-into-drawer)))))
- (should
- (equal "FOO"
- (org-test-with-temp-text "* H"
- (let ((org-clock-into-drawer t)
- (org-log-into-drawer "FOO"))
- (org-clock-into-drawer)))))
- ;; A non-nil "CLOCK_INTO_DRAWER" property overrides
- ;; `org-clock-into-drawer' value.
- (should
- (equal "LOGBOOK"
- (org-test-with-temp-text
- "* H\n:PROPERTIES:\n:CLOCK_INTO_DRAWER: t\n:END:"
- (let ((org-clock-into-drawer nil)
- (org-log-into-drawer nil))
- (org-clock-into-drawer)))))
- (should
- (equal "FOO"
- (org-test-with-temp-text
- "* H\n:PROPERTIES:\n:CLOCK_INTO_DRAWER: FOO\n:END:"
- (let ((org-clock-into-drawer nil)
- (org-log-into-drawer nil))
- (org-clock-into-drawer)))))
- (should-not
- (org-test-with-temp-text
- "* H\n:PROPERTIES:\n:CLOCK_INTO_DRAWER: nil\n:END:"
- (let ((org-clock-into-drawer t)
- (org-log-into-drawer nil))
- (org-clock-into-drawer))))
- ;; "CLOCK_INTO_DRAWER" can be inherited.
- (should
- (equal "LOGBOOK"
- (org-test-with-temp-text
- "* H\n:PROPERTIES:\n:CLOCK_INTO_DRAWER: t\n:END:\n** H2<point>"
- (let ((org-clock-into-drawer nil)
- (org-log-into-drawer nil))
- (org-clock-into-drawer)))))
- (should
- (equal "FOO"
- (org-test-with-temp-text
- "* H\n:PROPERTIES:\n:CLOCK_INTO_DRAWER: FOO\n:END:\n** H2<point>"
- (let ((org-clock-into-drawer nil)
- (org-log-into-drawer nil))
- (org-clock-into-drawer)))))
- (should-not
- (org-test-with-temp-text
- "* H\n:PROPERTIES:\n:CLOCK_INTO_DRAWER: nil\n:END:\n** H2<point>"
- (let ((org-clock-into-drawer t)
- (org-log-into-drawer nil))
- (org-clock-into-drawer)))))
- (ert-deftest test-org-clock/drawer-name ()
- "Test `org-clock-drawer-name' specifications."
- ;; A nil value for `org-clock-into-drawer' means no drawer is
- ;; expected whatsoever.
- (should-not
- (org-test-with-temp-text "* H"
- (let ((org-clock-into-drawer nil)
- (org-log-into-drawer nil))
- (org-clock-drawer-name))))
- (should-not
- (org-test-with-temp-text "* H"
- (let ((org-clock-into-drawer nil)
- (org-log-into-drawer t))
- (org-clock-drawer-name))))
- (should-not
- (org-test-with-temp-text "* H"
- (let ((org-clock-into-drawer nil)
- (org-log-into-drawer "FOO"))
- (org-clock-drawer-name))))
- ;; A string value for `org-clock-into-drawer' means to use it
- ;; unconditionally.
- (should
- (equal "FOO"
- (org-test-with-temp-text "* H"
- (let ((org-clock-into-drawer "FOO")
- (org-log-into-drawer nil))
- (org-clock-drawer-name)))))
- (should
- (equal "FOO"
- (org-test-with-temp-text "* H"
- (let ((org-clock-into-drawer "FOO")
- (org-log-into-drawer t))
- (org-clock-drawer-name)))))
- (should
- (equal "FOO"
- (org-test-with-temp-text "* H"
- (let ((org-clock-into-drawer "FOO")
- (org-log-into-drawer "BAR"))
- (org-clock-drawer-name)))))
- ;; When the value in `org-clock-into-drawer' is a number, re-use
- ;; `org-log-into-drawer' or use default "LOGBOOK" value.
- (should
- (equal "FOO"
- (org-test-with-temp-text "* H"
- (let ((org-clock-into-drawer 1)
- (org-log-into-drawer "FOO"))
- (org-clock-drawer-name)))))
- (should
- (equal "LOGBOOK"
- (org-test-with-temp-text "* H"
- (let ((org-clock-into-drawer 1)
- (org-log-into-drawer t))
- (org-clock-drawer-name)))))
- (should
- (equal "LOGBOOK"
- (org-test-with-temp-text "* H"
- (let ((org-clock-into-drawer 1)
- (org-log-into-drawer nil))
- (org-clock-drawer-name))))))
- ;;; Clocktable
- (ert-deftest test-org-clock/clocktable/insert ()
- "Test insert clocktable dynamic block with `org-dynamic-block-insert-dblock'."
- (should
- (equal
- "| Headline | Time |
- |--------------+--------|
- | *Total time* | *1:00* |
- |--------------+--------|
- | H1 | 1:00 |"
- (org-test-with-temp-text "* H1\n<point>"
- (insert (org-test-clock-create-clock ". 1:00" ". 2:00"))
- (goto-line 2)
- (require 'org-clock)
- (org-dynamic-block-insert-dblock "clocktable")
- (goto-line 1)
- (unwind-protect
- (save-excursion
- (when (search-forward "#+CAPTION:") (forward-line))
- (buffer-substring-no-properties
- (point) (progn (search-forward "#+END:") (line-end-position 0))))
- (delete-region (point) (search-forward "#+END:\n")))))))
- (ert-deftest test-org-clock/clocktable/ranges ()
- "Test ranges in Clock table."
- ;; Relative time: Previous two days.
- (should
- (equal
- "| Headline | Time | |
- |------------------------------+--------+------|
- | *Total time* | *8:00* | |
- |------------------------------+--------+------|
- | Relative times in clocktable | 8:00 | |
- | Foo | | 8:00 |"
- (org-test-with-temp-text
- "* Relative times in clocktable\n** Foo\n<point>"
- (insert (org-test-clock-create-clock "-3d 8:00" "-3d 12:00"))
- (insert (org-test-clock-create-clock "-2d 15:00" "-2d 18:00"))
- (insert (org-test-clock-create-clock "-1d 8:00" "-1d 13:00"))
- (test-org-clock-clocktable-contents
- ":tstart \"<-2d>\" :tend \"<today>\" :indent nil"))))
- ;; Relative time: Yesterday until now.
- (should
- (equal
- "| Headline | Time | |
- |------------------------------+--------+------|
- | *Total time* | *6:00* | |
- |------------------------------+--------+------|
- | Relative times in clocktable | 6:00 | |
- | Foo | | 6:00 |"
- (org-test-with-temp-text
- "* Relative times in clocktable\n** Foo\n<point>"
- (insert (org-test-clock-create-clock "-2d 15:00" "-2d 18:00"))
- (insert (org-test-clock-create-clock "-1d 8:00" "-1d 13:00"))
- (insert (org-test-clock-create-clock ". 1:00" ". 2:00"))
- (test-org-clock-clocktable-contents
- ":tstart \"<yesterday>\" :tend \"<tomorrow>\" :indent nil"))))
- ;; Test `untilnow' block.
- (should
- (equal
- "| Headline | Time | |
- |------------------------------+--------+------|
- | *Total time* | *6:00* | |
- |------------------------------+--------+------|
- | Relative times in clocktable | 6:00 | |
- | Foo | | 6:00 |"
- (org-test-with-temp-text
- "* Relative times in clocktable\n** Foo\n<point>"
- (insert (org-test-clock-create-clock "-10y 15:00" "-10y 18:00"))
- (insert (org-test-clock-create-clock "-2d 15:00" "-2d 18:00"))
- (test-org-clock-clocktable-contents ":block untilnow :indent nil")))))
- (ert-deftest test-org-clock/clocktable/match ()
- "Test \":match\" parameter in Clock table."
- ;; Test match filtering.
- (should
- (equal
- "| Headline | Time | |
- |--------------+--------+------|
- | *Total time* | *2:00* | |
- |--------------+--------+------|
- | H1 | | 2:00 |"
- (org-test-with-temp-text "** H1\n\n*** H2 :tag:\n\n*** H3\n<point>"
- (insert (org-test-clock-create-clock ". 1:00" ". 2:00"))
- (goto-line 4)
- (insert (org-test-clock-create-clock ". 2:00" ". 4:00"))
- (test-org-clock-clocktable-contents ":match \"tag\" :indent nil")))))
- (ert-deftest test-org-clock/clocktable/tags ()
- "Test \":tags\" parameter in Clock table."
- ;; Test tags column.
- (should
- (equal
- "| Tags | Headline | Time | |
- |------+--------------+--------+------|
- | | *Total time* | *1:00* | |
- |------+--------------+--------+------|
- | tag | H1 | | 1:00 |"
- (org-test-with-temp-text "** H1 :tag:\n\n*** H2 \n<point>"
- (insert (org-test-clock-create-clock ". 1:00" ". 2:00"))
- (goto-line 4)
- (test-org-clock-clocktable-contents ":tags t :indent nil")))))
- (ert-deftest test-org-clock/clocktable/scope ()
- "Test \":scope\" parameter in Clock table."
- ;; Test `file-with-archives' scope. In particular, preserve "TBLFM"
- ;; line, and ignore "file" column.
- (should
- (equal
- "| Headline | Time | |
- |--------------+--------+-----|
- | *Total time* | *8:40* | foo |
- |--------------+--------+-----|
- | Test | 8:40 | foo |
- #+TBLFM: $3=string(\"foo\")"
- (org-test-with-temp-text-in-file
- "* Test
- CLOCK: [2012-03-29 Thu 8:00]--[2012-03-29 Thu 16:40] => 8:40"
- (test-org-clock-clocktable-contents ":scope file-with-archives"
- "#+TBLFM: $3=string(\"foo\")"))))
- ;; Test "function" scope.
- (should
- (string-match-p
- (regexp-quote "| ALL *Total time* | *1:00* |")
- (org-test-with-temp-text-in-file
- "* Test
- CLOCK: [2012-03-29 Thu 16:00]--[2012-03-29 Thu 17:00] => 1:00"
- (let ((the-file (buffer-file-name)))
- (org-test-with-temp-text-in-file ""
- (test-org-clock-clocktable-contents
- (format ":scope (lambda () (list %S))" the-file))))))))
- (ert-deftest test-org-clock/clocktable/maxlevel ()
- "Test \":maxlevel\" parameter in Clock table."
- (should
- (equal "| Headline | Time | |
- |--------------+--------+------|
- | *Total time* | *6:00* | |
- |--------------+--------+------|
- | Foo | 6:00 | |
- | \\_ Bar | | 2:00 |"
- (org-test-with-temp-text
- "* Foo
- CLOCK: [2016-12-28 Wed 11:09]--[2016-12-28 Wed 15:09] => 4:00
- ** Bar
- CLOCK: [2016-12-28 Wed 13:09]--[2016-12-28 Wed 15:09] => 2:00"
- (test-org-clock-clocktable-contents ":maxlevel 3"))))
- (should
- (equal "| Headline | Time | |
- |--------------+--------+------|
- | *Total time* | *6:00* | |
- |--------------+--------+------|
- | Foo | 6:00 | |
- | \\_ Bar | | 2:00 |"
- (org-test-with-temp-text
- "* Foo
- CLOCK: [2016-12-28 Wed 11:09]--[2016-12-28 Wed 15:09] => 4:00
- ** Bar
- CLOCK: [2016-12-28 Wed 13:09]--[2016-12-28 Wed 15:09] => 2:00"
- (test-org-clock-clocktable-contents ":maxlevel 2"))))
- (should
- (equal "| Headline | Time |
- |--------------+--------|
- | *Total time* | *6:00* |
- |--------------+--------|
- | Foo | 6:00 |"
- (org-test-with-temp-text
- "* Foo
- CLOCK: [2016-12-28 Wed 11:09]--[2016-12-28 Wed 15:09] => 4:00
- ** Bar
- CLOCK: [2016-12-28 Wed 13:09]--[2016-12-28 Wed 15:09] => 2:00"
- (test-org-clock-clocktable-contents ":maxlevel 1"))))
- ;; Special ":maxlevel 0" case: only report total file time.
- (should
- (equal "| Headline | Time |
- |--------------+--------|
- | *Total time* | *6:00* |
- |--------------+--------|"
- (org-test-with-temp-text
- "* Foo
- CLOCK: [2016-12-28 Wed 11:09]--[2016-12-28 Wed 15:09] => 4:00
- ** Bar
- CLOCK: [2016-12-28 Wed 13:09]--[2016-12-28 Wed 15:09] => 2:00"
- (test-org-clock-clocktable-contents ":maxlevel 0")))))
- (ert-deftest test-org-clock/clocktable/formula ()
- "Test \":formula\" parameter in Clock table."
- ;; Test ":formula %". Handle various duration formats.
- (should
- (equal
- "| Headline | Time | % |
- |--------------+--------+-------|
- | *Total time* | *6:00* | 100.0 |
- |--------------+--------+-------|
- | Foo | 4:00 | 66.7 |
- | Bar | 2:00 | 33.3 |"
- (org-test-with-temp-text
- "* Foo
- CLOCK: [2016-12-28 Wed 11:09]--[2016-12-28 Wed 15:09] => 4:00
- * Bar
- CLOCK: [2016-12-28 Wed 13:09]--[2016-12-28 Wed 15:09] => 2:00"
- (test-org-clock-clocktable-contents ":maxlevel 1 :formula %"))))
- (should
- (equal
- "| Headline | Time | % |
- |--------------+---------+-------|
- | *Total time* | *28:00* | 100.0 |
- |--------------+---------+-------|
- | Foo | 26:00 | 92.9 |
- | Bar | 2:00 | 7.1 |"
- (org-test-with-temp-text
- "* Foo
- CLOCK: [2016-12-27 Wed 13:09]--[2016-12-28 Wed 15:09] => 26:00
- * Bar
- CLOCK: [2016-12-28 Wed 13:09]--[2016-12-28 Wed 15:09] => 2:00"
- (test-org-clock-clocktable-contents ":maxlevel 1 :formula %"))))
- ;; Properly align column with different depths.
- (should
- (equal "| Headline | Time | | | % |
- |---------------+--------+------+------+-------|
- | *Total time* | *1:00* | | | 100.0 |
- |---------------+--------+------+------+-------|
- | foo | 1:00 | | | 100.0 |
- | \\_ sub | | 0:15 | | 25.0 |
- | \\_ sub2 | | 0:15 | | 25.0 |
- | \\_ sub3 | | 0:30 | | 50.0 |
- | \\_ subsub1 | | | 0:15 | 25.0 |
- | \\_ subsub1 | | | 0:15 | 25.0 |"
- (org-test-with-temp-text
- "* foo
- ** sub
- :LOGBOOK:
- CLOCK: [2017-03-18 Sat 15:00]--[2017-03-18 Sat 15:15] => 0:15
- :END:
- ** sub2
- :LOGBOOK:
- CLOCK: [2017-03-18 Sat 15:15]--[2017-03-18 Sat 15:30] => 0:15
- :END:
- ** sub3
- *** subsub1
- :LOGBOOK:
- CLOCK: [2017-03-18 Sat 13:00]--[2017-03-18 Sat 13:15] => 0:15
- :END:
- *** subsub1
- :LOGBOOK:
- CLOCK: [2017-03-18 Sat 14:00]--[2017-03-18 Sat 14:15] => 0:15
- :END:"
- (test-org-clock-clocktable-contents ":maxlevel 3 :formula %")))))
- (ert-deftest test-org-clock/clocktable/lang ()
- "Test \":lang\" parameter in Clock table."
- ;; Test foreign translation
- (should
- (equal
- "| Headline | Time |
- |--------------+---------|
- | *Total time* | *26:00* |
- |--------------+---------|
- | Foo | 26:00 |"
- (org-test-with-temp-text
- "* Foo
- CLOCK: [2016-12-27 Wed 13:09]--[2016-12-28 Wed 15:09] => 26:00"
- (test-org-clock-clocktable-contents ":maxlevel 1 :lang en"))))
- (should
- (equal
- "| En-tête | Durée |
- |----------------+---------|
- | *Durée totale* | *26:00* |
- |----------------+---------|
- | Foo | 26:00 |"
- (org-test-with-temp-text
- "* Foo
- CLOCK: [2016-12-27 Wed 13:09]--[2016-12-28 Wed 15:09] => 26:00"
- (test-org-clock-clocktable-contents ":maxlevel 1 :lang fr"))))
- ;; No :lang parameter is equivalent to "en".
- (should
- (equal
- (org-test-with-temp-text
- "* Foo
- CLOCK: [2016-12-27 Wed 13:09]--[2016-12-28 Wed 15:09] => 26:00"
- (test-org-clock-clocktable-contents ":maxlevel 1 :lang en"))
- (org-test-with-temp-text
- "* Foo
- CLOCK: [2016-12-27 Wed 13:09]--[2016-12-28 Wed 15:09] => 26:00"
- (test-org-clock-clocktable-contents ":maxlevel 1"))))
- ;; Unknown translation fall backs to "en".
- (should
- (equal
- "| Headline | Time |
- |--------------+---------|
- | *Total time* | *26:00* |
- |--------------+---------|
- | Foo | 26:00 |"
- (org-test-with-temp-text
- "* Foo
- CLOCK: [2016-12-27 Wed 13:09]--[2016-12-28 Wed 15:09] => 26:00"
- (test-org-clock-clocktable-contents ":maxlevel 1 :lang foo")))))
- (ert-deftest test-org-clock/clocktable/link ()
- "Test \":link\" parameter in Clock table."
- ;; If there is no file attached to the document, link directly to
- ;; the headline.
- (let (org-link-descriptive)
- (should
- (equal
- "| Headline | Time |
- |--------------+---------|
- | *Total time* | *26:00* |
- |--------------+---------|
- | [[Foo][Foo]] | 26:00 |"
- (org-test-with-temp-text
- "* Foo
- CLOCK: [2016-12-27 Wed 13:09]--[2016-12-28 Wed 15:09] => 26:00"
- (test-org-clock-clocktable-contents ":link t"))))
- ;; Otherwise, link to the headline in the current file.
- (should
- (equal
- "| Headline | Time |
- |-----------------------------+---------|
- | *Total time* | *26:00* |
- |-----------------------------+---------|
- | [[file:filename::Foo][Foo]] | 26:00 |"
- (org-test-with-temp-text
- (org-test-with-temp-text-in-file
- "* Foo
- CLOCK: [2016-12-27 Wed 13:09]--[2016-12-28 Wed 15:09] => 26:00"
- (let ((file (buffer-file-name)))
- (replace-regexp-in-string
- (regexp-quote file) "filename"
- (test-org-clock-clocktable-contents ":link t :lang en"))))
- (org-table-align)
- (buffer-substring-no-properties (point-min) (point-max)))))
- ;; Ignore TODO keyword, priority cookie, COMMENT and tags in
- ;; headline.
- (should
- (equal
- "| Headline | Time |
- |--------------+---------|
- | *Total time* | *26:00* |
- |--------------+---------|
- | [[Foo][Foo]] | 26:00 |"
- (org-test-with-temp-text
- "* TODO Foo
- CLOCK: [2016-12-27 Wed 13:09]--[2016-12-28 Wed 15:09] => 26:00"
- (test-org-clock-clocktable-contents ":link t :lang en"))))
- (should
- (equal
- "| Headline | Time |
- |--------------+---------|
- | *Total time* | *26:00* |
- |--------------+---------|
- | [[Foo][Foo]] | 26:00 |"
- (org-test-with-temp-text
- "* [#A] Foo
- CLOCK: [2016-12-27 Wed 13:09]--[2016-12-28 Wed 15:09] => 26:00"
- (test-org-clock-clocktable-contents ":link t :lang en"))))
- (should
- (equal
- "| Headline | Time |
- |--------------+---------|
- | *Total time* | *26:00* |
- |--------------+---------|
- | [[Foo][Foo]] | 26:00 |"
- (org-test-with-temp-text
- "* COMMENT Foo
- CLOCK: [2016-12-27 Wed 13:09]--[2016-12-28 Wed 15:09] => 26:00"
- (test-org-clock-clocktable-contents ":link t"))))
- (should
- (equal
- "| Headline | Time |
- |--------------+---------|
- | *Total time* | *26:00* |
- |--------------+---------|
- | [[Foo][Foo]] | 26:00 |"
- (org-test-with-temp-text
- "* Foo :tag:
- CLOCK: [2016-12-27 Wed 13:09]--[2016-12-28 Wed 15:09] => 26:00"
- (test-org-clock-clocktable-contents ":link t :lang en"))))
- ;; Remove statistics cookie from headline description.
- (should
- (equal
- "| Headline | Time |
- |--------------+---------|
- | *Total time* | *26:00* |
- |--------------+---------|
- | [[Foo][Foo]] | 26:00 |"
- (org-test-with-temp-text
- "* Foo [50%]
- CLOCK: [2016-12-27 Wed 13:09]--[2016-12-28 Wed 15:09] => 26:00"
- (test-org-clock-clocktable-contents ":link t :lang en"))))
- (should
- (equal
- "| Headline | Time |
- |--------------+---------|
- | *Total time* | *26:00* |
- |--------------+---------|
- | [[Foo][Foo]] | 26:00 |"
- (org-test-with-temp-text
- "* Foo [1/2]
- CLOCK: [2016-12-27 Wed 13:09]--[2016-12-28 Wed 15:09] => 26:00"
- (test-org-clock-clocktable-contents ":link t :lang en"))))
- ;; Replace links with their description, or turn them into plain
- ;; links if there is no description.
- (should
- (equal
- "| Headline | Time |
- |-----------------------------------------------------------+---------|
- | *Total time* | *26:00* |
- |-----------------------------------------------------------+---------|
- | [[Foo [[https://orgmode.org\\][Org mode]\\]][Foo Org mode]] | 26:00 |"
- (org-test-with-temp-text
- "* Foo [[https://orgmode.org][Org mode]]
- CLOCK: [2016-12-27 Wed 13:09]--[2016-12-28 Wed 15:09] => 26:00"
- (test-org-clock-clocktable-contents ":link t :lang en"))))
- (should
- (equal
- "| Headline | Time |
- |-----------------------------------------------------------+---------|
- | *Total time* | *26:00* |
- |-----------------------------------------------------------+---------|
- | [[Foo [[https://orgmode.org]\\]][Foo https://orgmode.org]] | 26:00 |"
- (org-test-with-temp-text
- "* Foo [[https://orgmode.org]]
- CLOCK: [2016-12-27 Wed 13:09]--[2016-12-28 Wed 15:09] => 26:00"
- (test-org-clock-clocktable-contents ":link t :lang en"))))))
- (ert-deftest test-org-clock/clocktable/compact ()
- "Test \":compact\" parameter in Clock table."
- ;; With :compact, all headlines are in the same column.
- (should
- (equal
- "| Headline | Time |
- |--------------+---------|
- | *Total time* | *26:00* |
- |--------------+---------|
- | Foo | 26:00 |"
- (org-test-with-temp-text
- "* Foo
- CLOCK: [2016-12-27 Wed 13:09]--[2016-12-28 Wed 15:09] => 26:00"
- (test-org-clock-clocktable-contents ":compact t"))))
- (should
- (equal
- "| Headline | Time |
- |--------------+---------|
- | *Total time* | *52:00* |
- |--------------+---------|
- | Foo | 52:00 |
- | \\_ Bar | 26:00 |"
- (org-test-with-temp-text
- "* Foo
- CLOCK: [2016-12-27 Wed 13:09]--[2016-12-28 Wed 15:09] => 26:00
- ** Bar
- CLOCK: [2016-12-27 Wed 13:09]--[2016-12-28 Wed 15:09] => 26:00"
- (test-org-clock-clocktable-contents ":compact t"))))
- ;; :maxlevel does not affect :compact parameter.
- (should
- (equal
- "| Headline | Time |
- |--------------+---------|
- | *Total time* | *52:00* |
- |--------------+---------|
- | Foo | 52:00 |
- | \\_ Bar | 26:00 |"
- (org-test-with-temp-text
- "* Foo
- CLOCK: [2016-12-27 Wed 13:09]--[2016-12-28 Wed 15:09] => 26:00
- ** Bar
- CLOCK: [2016-12-27 Wed 13:09]--[2016-12-28 Wed 15:09] => 26:00"
- (test-org-clock-clocktable-contents ":compact t :maxlevel 2"))))
- ;; :compact implies a non-nil :indent parameter.
- (should
- (equal
- "| Headline | Time |
- |--------------+---------|
- | *Total time* | *52:00* |
- |--------------+---------|
- | Foo | 52:00 |
- | \\_ Bar | 26:00 |"
- (org-test-with-temp-text
- "* Foo
- CLOCK: [2016-12-27 Wed 13:09]--[2016-12-28 Wed 15:09] => 26:00
- ** Bar
- CLOCK: [2016-12-27 Wed 13:09]--[2016-12-28 Wed 15:09] => 26:00"
- (test-org-clock-clocktable-contents ":compact t :indent nil"))))
- ;; :compact implies a nil :level parameter.
- (should
- (equal
- "| Headline | Time |
- |--------------+---------|
- | *Total time* | *52:00* |
- |--------------+---------|
- | Foo | 52:00 |
- | \\_ Bar | 26:00 |"
- (org-test-with-temp-text
- "* Foo
- CLOCK: [2016-12-27 Wed 13:09]--[2016-12-28 Wed 15:09] => 26:00
- ** Bar
- CLOCK: [2016-12-27 Wed 13:09]--[2016-12-28 Wed 15:09] => 26:00"
- (test-org-clock-clocktable-contents ":compact t :level t")))))
- (ert-deftest test-org-clock/clocktable/properties ()
- "Test \":properties\" parameter in Clock table."
- ;; Include a new column with list properties.
- (should
- (equal
- "| A | Headline | Time |
- |---+--------------+---------|
- | | *Total time* | *26:00* |
- |---+--------------+---------|
- | 1 | Foo | 26:00 |"
- (org-test-with-temp-text
- "* Foo
- :PROPERTIES:
- :A: 1
- :END:
- CLOCK: [2016-12-27 Wed 13:09]--[2016-12-28 Wed 15:09] => 26:00"
- (test-org-clock-clocktable-contents ":properties (\"A\")"))))
- (should
- (equal
- "| A | Headline | Time | |
- |---+--------------+---------+-------|
- | | *Total time* | *52:00* | |
- |---+--------------+---------+-------|
- | | Foo | 52:00 | |
- | 1 | \\_ Bar | | 26:00 |"
- (org-test-with-temp-text
- "* Foo
- CLOCK: [2016-12-27 Wed 13:09]--[2016-12-28 Wed 15:09] => 26:00
- ** Bar
- :PROPERTIES:
- :A: 1
- :END:
- CLOCK: [2016-12-27 Wed 13:09]--[2016-12-28 Wed 15:09] => 26:00"
- (test-org-clock-clocktable-contents ":properties (\"A\")"))))
- ;; Handle missing properties.
- (should
- (equal
- "| A | Headline | Time |
- |---+--------------+---------|
- | | *Total time* | *26:00* |
- |---+--------------+---------|
- | 1 | Foo | 26:00 |"
- (org-test-with-temp-text
- "* Foo
- :PROPERTIES:
- :A: 1
- :END:
- CLOCK: [2016-12-27 Wed 13:09]--[2016-12-28 Wed 15:09] => 26:00"
- (test-org-clock-clocktable-contents ":properties (\"A\")")))))
- (ert-deftest test-org-clock/clocktable/tcolumns ()
- "Test \":tcolumns\" parameter in Clock table."
- ;; When :tcolumns is smaller than the deepest headline level, lump
- ;; lower levels in the last column.
- (should
- (equal
- "| Headline | Time |
- |--------------+---------|
- | *Total time* | *52:00* |
- |--------------+---------|
- | Foo | 52:00 |
- | \\_ Bar | 26:00 |"
- (org-test-with-temp-text
- "* Foo
- CLOCK: [2016-12-27 Wed 13:09]--[2016-12-28 Wed 15:09] => 26:00
- ** Bar
- CLOCK: [2016-12-27 Wed 13:09]--[2016-12-28 Wed 15:09] => 26:00"
- (test-org-clock-clocktable-contents ":tcolumns 1"))))
- ;; :tcolumns cannot create more columns than the deepest headline
- ;; level.
- (should
- (equal
- "| Headline | Time | |
- |--------------+---------+-------|
- | *Total time* | *52:00* | |
- |--------------+---------+-------|
- | Foo | 52:00 | |
- | \\_ Bar | | 26:00 |"
- (org-test-with-temp-text
- "* Foo
- CLOCK: [2016-12-27 Wed 13:09]--[2016-12-28 Wed 15:09] => 26:00
- ** Bar
- CLOCK: [2016-12-27 Wed 13:09]--[2016-12-28 Wed 15:09] => 26:00"
- (test-org-clock-clocktable-contents ":tcolumns 3"))))
- ;; Pathological case: when no headline contributes to the total
- ;; time, there is only one time column.
- (should
- (equal "| Headline | Time |
- |--------------+--------|
- | *Total time* | *0:00* |"
- (org-test-with-temp-text
- "* Foo
- CLOCK: [2016-12-28 Wed 11:09]--[2016-12-28 Wed 11:09] => 0:00
- ** Bar
- CLOCK: [2016-12-28 Wed 13:09]--[2016-12-28 Wed 13:09] => 0:00"
- (test-org-clock-clocktable-contents ":tcolumns 2")))))
- (ert-deftest test-org-clock/clocktable/step ()
- "Test \":step\" parameter in Clock table."
- ;; Regression test: week crossing month boundary before :wstart
- ;; day-of-week.
- (should
- (equal "
- Weekly report starting on: [2017-09-25 Mon]
- | Headline | Time |
- |--------------+--------|
- | *Total time* | *1:00* |
- |--------------+--------|
- | Foo | 1:00 |"
- (org-test-with-temp-text
- "* Foo
- CLOCK: [2017-09-30 Sat 12:00]--[2017-09-30 Sat 13:00] => 1:00
- CLOCK: [2017-10-01 Sun 11:00]--[2017-10-01 Sun 13:00] => 2:00
- CLOCK: [2017-10-02 Mon 11:00]--[2017-10-02 Mon 14:00] => 3:00"
- (let ((system-time-locale "en_US"))
- (test-org-clock-clocktable-contents
- ":step week :block 2017-09 :stepskip0 t")))))
- (should
- (equal "
- Weekly report starting on: [2017-10-01 Sun]
- | Headline | Time |
- |--------------+--------|
- | *Total time* | *2:00* |
- |--------------+--------|
- | Foo | 2:00 |
- Weekly report starting on: [2017-10-02 Mon]
- | Headline | Time |
- |--------------+--------|
- | *Total time* | *7:00* |
- |--------------+--------|
- | Foo | 7:00 |
- Weekly report starting on: [2017-10-09 Mon]
- | Headline | Time |
- |--------------+--------|
- | *Total time* | *5:00* |
- |--------------+--------|
- | Foo | 5:00 |
- "
- (org-test-with-temp-text
- "* Foo
- CLOCK: [2017-09-30 Sat 12:00]--[2017-09-30 Sat 13:00] => 1:00
- CLOCK: [2017-10-01 Sun 11:00]--[2017-10-01 Sun 13:00] => 2:00
- CLOCK: [2017-10-02 Mon 11:00]--[2017-10-02 Mon 14:00] => 3:00
- CLOCK: [2017-10-08 Sun 09:00]--[2017-10-08 Sun 13:00] => 4:00
- CLOCK: [2017-10-09 Mon 09:00]--[2017-10-09 Mon 14:00] => 5:00"
- (let ((system-time-locale "en_US"))
- (test-org-clock-clocktable-contents
- ":step week :block 2017-10 :stepskip0 t")))))
- ;; :step day
- (should
- (equal "
- Daily report: [2017-10-02 Mon]
- | Headline | Time |
- |--------------+--------|
- | *Total time* | *3:00* |
- |--------------+--------|
- | Foo | 3:00 |
- Daily report: [2017-10-03 Tue]
- | Headline | Time |
- |--------------+--------|
- | *Total time* | *0:00* |
- Daily report: [2017-10-04 Wed]
- | Headline | Time |
- |--------------+--------|
- | *Total time* | *0:00* |
- Daily report: [2017-10-05 Thu]
- | Headline | Time |
- |--------------+--------|
- | *Total time* | *0:00* |
- Daily report: [2017-10-06 Fri]
- | Headline | Time |
- |--------------+--------|
- | *Total time* | *0:00* |
- Daily report: [2017-10-07 Sat]
- | Headline | Time |
- |--------------+--------|
- | *Total time* | *0:00* |
- Daily report: [2017-10-08 Sun]
- | Headline | Time |
- |--------------+--------|
- | *Total time* | *4:00* |
- |--------------+--------|
- | Foo | 4:00 |"
- (org-test-with-temp-text
- "* Foo
- CLOCK: [2017-09-30 Sat 12:00]--[2017-09-30 Sat 13:00] => 1:00
- CLOCK: [2017-10-01 Sun 11:00]--[2017-10-01 Sun 13:00] => 2:00
- CLOCK: [2017-10-02 Mon 11:00]--[2017-10-02 Mon 14:00] => 3:00
- CLOCK: [2017-10-08 Sun 09:00]--[2017-10-08 Sun 13:00] => 4:00
- CLOCK: [2017-10-09 Mon 09:00]--[2017-10-09 Mon 14:00] => 5:00"
- (let ((system-time-locale "en_US"))
- (test-org-clock-clocktable-contents
- ":step day :block 2017-W40")))))
- ;; Regression test: take :tstart and :tend hours into consideration.
- (should
- (equal "
- Weekly report starting on: [2017-12-25 Mon]
- | Headline | Time |
- |--------------+--------|
- | *Total time* | *8:00* |
- |--------------+--------|
- | Foo | 8:00 |"
- (org-test-with-temp-text
- "* Foo
- CLOCK: [2017-12-27 Wed 08:00]--[2017-12-27 Wed 16:00] => 8:00"
- (let ((system-time-locale "en_US"))
- (test-org-clock-clocktable-contents
- (concat ":step week :tstart \"<2017-12-25 Mon>\" "
- ":tend \"<2017-12-27 Wed 23:59>\""))))))
- (should
- (equal "
- Daily report: [2017-12-27 Wed]
- | Headline | Time |
- |--------------+--------|
- | *Total time* | *8:00* |
- |--------------+--------|
- | Foo | 8:00 |"
- (org-test-with-temp-text
- "* Foo
- CLOCK: [2017-12-27 Wed 08:00]--[2017-12-27 Wed 16:00] => 8:00"
- (let ((system-time-locale "en_US"))
- (test-org-clock-clocktable-contents
- (concat ":step day :tstart \"<2017-12-25 Mon>\" "
- ":tend \"<2017-12-27 Wed 23:59>\" :stepskip0 t"))))))
- ;; Test :step week", without or with ":wstart" parameter.
- (should
- (equal "
- Weekly report starting on: [2012-03-26 Mon]
- | Headline | Time |
- |--------------+--------|
- | *Total time* | *8:00* |
- |--------------+--------|
- | Foo | 8:00 |
- Weekly report starting on: [2012-04-02 Mon]
- | Headline | Time |
- |--------------+--------|
- | *Total time* | *8:00* |
- |--------------+--------|
- | Foo | 8:00 |
- "
- (org-test-with-temp-text
- "* Foo
- CLOCK: [2012-03-29 Thu 08:00]--[2012-03-29 Thu 16:00] => 8:00
- CLOCK: [2012-04-03 Thu 08:00]--[2012-04-03 Thu 16:00] => 8:00"
- (let ((system-time-locale "en_US"))
- (test-org-clock-clocktable-contents
- ":step week :block 2012 :stepskip0 t")))))
- (should
- (equal "
- Weekly report starting on: [2012-03-29 Thu]
- | Headline | Time |
- |--------------+---------|
- | *Total time* | *16:00* |
- |--------------+---------|
- | Foo | 16:00 |
- "
- (org-test-with-temp-text
- "* Foo
- CLOCK: [2012-03-29 Thu 08:00]--[2012-03-29 Thu 16:00] => 8:00
- CLOCK: [2012-04-03 Thu 08:00]--[2012-04-03 Thu 16:00] => 8:00"
- (let ((system-time-locale "en_US"))
- (test-org-clock-clocktable-contents
- ":step week :wstart 4 :block 2012 :stepskip0 t")))))
- ;; Test ":step month" without and with ":mstart".
- (should
- (equal "
- Monthly report starting on: [2014-03-01 Sat]
- | Headline | Time |
- |--------------+--------|
- | *Total time* | *8:00* |
- |--------------+--------|
- | Foo | 8:00 |
- Monthly report starting on: [2014-04-01 Tue]
- | Headline | Time |
- |--------------+--------|
- | *Total time* | *8:00* |
- |--------------+--------|
- | Foo | 8:00 |
- "
- (org-test-with-temp-text
- "* Foo
- CLOCK: [2014-03-04 Tue 08:00]--[2014-03-04 Tue 16:00] => 8:00
- CLOCK: [2014-04-03 Thu 08:00]--[2014-04-03 Thu 16:00] => 8:00"
- (let ((system-time-locale "en_US"))
- (test-org-clock-clocktable-contents
- ":step month :block 2014 :stepskip0 t")))))
- (should
- (equal "
- Monthly report starting on: [2014-03-04 Tue]
- | Headline | Time |
- |--------------+---------|
- | *Total time* | *16:00* |
- |--------------+---------|
- | Foo | 16:00 |
- "
- (org-test-with-temp-text
- "* Foo
- CLOCK: [2014-03-04 Tue 08:00]--[2014-03-04 Tue 16:00] => 8:00
- CLOCK: [2014-04-03 Thu 08:00]--[2014-04-03 Thu 16:00] => 8:00"
- (let ((system-time-locale "en_US"))
- (test-org-clock-clocktable-contents
- ":step month :mstart 4 :block 2014 :stepskip0 t")))))
- ;; Test ":step year".
- (should
- (equal "
- Annual report starting on: [2012-01-01 Sun]
- | Headline | Time |
- |--------------+--------|
- | *Total time* | *8:00* |
- |--------------+--------|
- | Foo | 8:00 |
- Annual report starting on: [2014-01-01 Wed]
- | Headline | Time |
- |--------------+--------|
- | *Total time* | *8:00* |
- |--------------+--------|
- | Foo | 8:00 |
- "
- (org-test-with-temp-text
- "* Foo
- CLOCK: [2012-03-29 Thu 08:00]--[2012-03-29 Thu 16:00] => 8:00
- CLOCK: [2014-03-04 Tue 08:00]--[2014-03-04 Tue 16:00] => 8:00"
- (let ((system-time-locale "en_US"))
- (test-org-clock-clocktable-contents
- ":step year :block untilnow :stepskip0 t")))))
- ;; Regression test: Respect DST
- (should
- (equal "
- Daily report: [2018-10-29 Mon]
- | Headline | Time |
- |--------------+--------|
- | *Total time* | *8:00* |
- |--------------+--------|
- | Foo | 8:00 |
- "
- (org-test-with-temp-text
- "* Foo
- CLOCK: [2018-10-29 Mon 08:00]--[2018-10-29 Mon 16:00] => 8:00"
- (let ((system-time-locale "en_US"))
- (test-org-clock-clocktable-contents
- (concat ":step day "
- ":stepskip0 t "
- ":tstart \"2018-10-01\" "
- ":tend \"2018-11-01\"")))))))
- (ert-deftest test-org-clock/clocktable/extend-today-until ()
- "Test assignment of clock time to days in presence of \"org-extend-today-until\"."
- ;; Basic test of :block with org-extend-today-until - the report for
- ;; 2017-09-30 should include the time clocked on 2017-10-01 before
- ;; 04:00.
- (should
- (equal "| Headline | Time |
- |--------------+--------|
- | *Total time* | *2:00* |
- |--------------+--------|
- | Foo | 2:00 |"
- (org-test-with-temp-text
- "* Foo
- CLOCK: [2017-09-30 Sat 12:00]--[2017-09-30 Sat 13:00] => 1:00
- CLOCK: [2017-10-01 Sun 02:00]--[2017-10-01 Sun 03:00] => 1:00
- CLOCK: [2017-10-01 Sun 11:00]--[2017-10-01 Sun 13:00] => 2:00"
- (setq-local org-extend-today-until 4)
- (let ((system-time-locale "en_US"))
- (test-org-clock-clocktable-contents
- ":block 2017-09-30")))))
- ;; Week-length block - time on Monday before 04:00 should be
- ;; assigned to previous week.
- (should
- (equal "
- Weekly report starting on: [2017-10-01 Sun]
- | Headline | Time |
- |--------------+--------|
- | *Total time* | *2:00* |
- |--------------+--------|
- | Foo | 2:00 |
- Weekly report starting on: [2017-10-02 Mon]
- | Headline | Time |
- |--------------+--------|
- | *Total time* | *2:00* |
- |--------------+--------|
- | Foo | 2:00 |
- "
- (org-test-with-temp-text
- "* Foo
- CLOCK: [2017-10-01 Sun 12:00]--[2017-10-01 Sun 13:00] => 1:00
- CLOCK: [2017-10-02 Mon 02:00]--[2017-10-02 Mon 03:00] => 1:00
- CLOCK: [2017-10-02 Mon 11:00]--[2017-10-02 Mon 13:00] => 2:00"
- (setq-local org-extend-today-until 4)
- (let ((system-time-locale "en_US"))
- (test-org-clock-clocktable-contents
- ":step week :block 2017-10 :stepskip0 t"))))))
- (provide 'test-org-clock)
- ;;; test-org-clock.el end here
|