Show a cover letter.

GET /api/covers/730/?format=api
HTTP 200 OK
Allow: GET, HEAD, OPTIONS
Content-Type: application/json
Vary: Accept

{
    "id": 730,
    "url": "https://patchwork.libcamera.org/api/covers/730/?format=api",
    "web_url": "https://patchwork.libcamera.org/cover/730/",
    "project": {
        "id": 1,
        "url": "https://patchwork.libcamera.org/api/projects/1/?format=api",
        "name": "libcamera",
        "link_name": "libcamera",
        "list_id": "libcamera_core",
        "list_email": "libcamera-devel@lists.libcamera.org",
        "web_url": "",
        "scm_url": "",
        "webscm_url": ""
    },
    "msgid": "<20190313010532.28960-1-niklas.soderlund@ragnatech.se>",
    "date": "2019-03-13T01:05:28",
    "name": "[libcamera-devel,v3,0/4] test: camera: Add basic tests for the camera",
    "submitter": {
        "id": 5,
        "url": "https://patchwork.libcamera.org/api/people/5/?format=api",
        "name": "Niklas Söderlund",
        "email": "niklas.soderlund@ragnatech.se"
    },
    "mbox": "https://patchwork.libcamera.org/cover/730/mbox/",
    "series": [
        {
            "id": 206,
            "url": "https://patchwork.libcamera.org/api/series/206/?format=api",
            "web_url": "https://patchwork.libcamera.org/project/libcamera/list/?series=206",
            "date": "2019-03-13T01:05:28",
            "name": "test: camera: Add basic tests for the camera",
            "version": 3,
            "mbox": "https://patchwork.libcamera.org/series/206/mbox/"
        }
    ],
    "comments": "https://patchwork.libcamera.org/api/covers/730/comments/",
    "headers": {
        "Return-Path": "<niklas.soderlund@ragnatech.se>",
        "Received": [
            "from vsp-unauthed02.binero.net (vsp-unauthed02.binero.net\n\t[195.74.38.227])\n\tby lancelot.ideasonboard.com (Postfix) with ESMTPS id 8BEE7600FD\n\tfor <libcamera-devel@lists.libcamera.org>;\n\tWed, 13 Mar 2019 02:06:19 +0100 (CET)",
            "from bismarck.berto.se (unknown [89.233.230.99])\n\tby bin-vsp-out-01.atm.binero.net (Halon) with ESMTPA\n\tid 30d0e336-452c-11e9-846a-005056917a89;\n\tWed, 13 Mar 2019 02:06:17 +0100 (CET)"
        ],
        "X-Halon-ID": "30d0e336-452c-11e9-846a-005056917a89",
        "Authorized-sender": "niklas@soderlund.pp.se",
        "From": "=?utf-8?q?Niklas_S=C3=B6derlund?= <niklas.soderlund@ragnatech.se>",
        "To": "libcamera-devel@lists.libcamera.org",
        "Date": "Wed, 13 Mar 2019 02:05:28 +0100",
        "Message-Id": "<20190313010532.28960-1-niklas.soderlund@ragnatech.se>",
        "X-Mailer": "git-send-email 2.21.0",
        "MIME-Version": "1.0",
        "Content-Type": "text/plain; charset=UTF-8",
        "Content-Transfer-Encoding": "8bit",
        "Subject": "[libcamera-devel] [PATCH v3 0/4] test: camera: Add basic tests for\n\tthe camera",
        "X-BeenThere": "libcamera-devel@lists.libcamera.org",
        "X-Mailman-Version": "2.1.23",
        "Precedence": "list",
        "List-Id": "<libcamera-devel.lists.libcamera.org>",
        "List-Unsubscribe": "<https://lists.libcamera.org/options/libcamera-devel>,\n\t<mailto:libcamera-devel-request@lists.libcamera.org?subject=unsubscribe>",
        "List-Archive": "<https://lists.libcamera.org/pipermail/libcamera-devel/>",
        "List-Post": "<mailto:libcamera-devel@lists.libcamera.org>",
        "List-Help": "<mailto:libcamera-devel-request@lists.libcamera.org?subject=help>",
        "List-Subscribe": "<https://lists.libcamera.org/listinfo/libcamera-devel>,\n\t<mailto:libcamera-devel-request@lists.libcamera.org?subject=subscribe>",
        "X-List-Received-Date": "Wed, 13 Mar 2019 01:06:19 -0000"
    },
    "content": "Hi,\n\nThis series add basic tests for the camera implementation. The tests\ninvolve reading and setting configurations, access control of the state\nmachine and capturing.\n\nAll tests uses the vimc pipeline to allow the tests to run on as many\nplatforms as possible. Down the line this might be expanded to run an\nall cameras detected by libcamera.\n\nAll patches in the series are reviewed but I feel that posting it for \none more round is the right thing to do. If no comments come to light \nwithin a day or two I aim to push this series. If you wish to review \nthis but don't have time ping and I will delay until you have had time \nto do so.\n\n* Changes since v2\n- Update all error messages if a test should fail.\n\n\nNiklas Söderlund (4):\n  test: camera: Add read default configuration test\n  test: camera: Add setting of configuration test\n  test: camera: Add capture test\n  test: camera: Add state machine test\n\n test/camera/camera_test.cpp           |  74 +++++++\n test/camera/camera_test.h             |  35 ++++\n test/camera/capture.cpp               | 142 +++++++++++++\n test/camera/configuration_default.cpp |  71 +++++++\n test/camera/configuration_set.cpp     |  91 +++++++++\n test/camera/meson.build               |  15 ++\n test/camera/statemachine.cpp          | 275 ++++++++++++++++++++++++++\n test/meson.build                      |   1 +\n 8 files changed, 704 insertions(+)\n create mode 100644 test/camera/camera_test.cpp\n create mode 100644 test/camera/camera_test.h\n create mode 100644 test/camera/capture.cpp\n create mode 100644 test/camera/configuration_default.cpp\n create mode 100644 test/camera/configuration_set.cpp\n create mode 100644 test/camera/meson.build\n create mode 100644 test/camera/statemachine.cpp"
}