2007-09-21 06:17:59 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
|
2012-05-21 11:12:37 +00:00
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
2007-09-21 06:17:59 +00:00
|
|
|
|
|
|
|
#include "TestHarness.h"
|
|
|
|
|
|
|
|
#include "nsIPipe.h"
|
|
|
|
#include "nsIMemory.h"
|
2012-06-20 03:41:56 +00:00
|
|
|
#include "mozilla/Attributes.h"
|
2013-09-23 17:29:27 +00:00
|
|
|
#include "nsIAsyncInputStream.h"
|
|
|
|
#include "nsIAsyncOutputStream.h"
|
2007-09-21 06:17:59 +00:00
|
|
|
|
2007-09-21 07:59:09 +00:00
|
|
|
/** NS_NewPipe2 reimplemented, because it's not exported by XPCOM */
|
2008-09-06 16:03:38 +00:00
|
|
|
nsresult TP_NewPipe2(nsIAsyncInputStream** input,
|
2007-09-21 07:59:09 +00:00
|
|
|
nsIAsyncOutputStream** output,
|
2011-09-29 06:19:26 +00:00
|
|
|
bool nonBlockingInput,
|
|
|
|
bool nonBlockingOutput,
|
2012-08-22 15:56:38 +00:00
|
|
|
uint32_t segmentSize,
|
2013-12-11 19:14:56 +00:00
|
|
|
uint32_t segmentCount)
|
2007-09-21 07:59:09 +00:00
|
|
|
{
|
|
|
|
nsCOMPtr<nsIPipe> pipe = do_CreateInstance("@mozilla.org/pipe;1");
|
|
|
|
if (!pipe)
|
|
|
|
return NS_ERROR_OUT_OF_MEMORY;
|
|
|
|
|
|
|
|
nsresult rv = pipe->Init(nonBlockingInput,
|
|
|
|
nonBlockingOutput,
|
|
|
|
segmentSize,
|
2013-12-11 19:14:56 +00:00
|
|
|
segmentCount);
|
2007-09-21 07:59:09 +00:00
|
|
|
|
|
|
|
if (NS_FAILED(rv))
|
|
|
|
return rv;
|
|
|
|
|
|
|
|
pipe->GetInputStream(input);
|
|
|
|
pipe->GetOutputStream(output);
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2013-12-11 19:14:56 +00:00
|
|
|
nsresult TestPipe()
|
2007-09-21 06:17:59 +00:00
|
|
|
{
|
2012-08-22 15:56:38 +00:00
|
|
|
const uint32_t SEGMENT_COUNT = 10;
|
|
|
|
const uint32_t SEGMENT_SIZE = 10;
|
2007-09-21 06:17:59 +00:00
|
|
|
|
|
|
|
nsCOMPtr<nsIAsyncInputStream> input;
|
|
|
|
nsCOMPtr<nsIAsyncOutputStream> output;
|
2013-12-11 19:14:56 +00:00
|
|
|
nsresult rv = TP_NewPipe2(getter_AddRefs(input),
|
2007-09-21 06:17:59 +00:00
|
|
|
getter_AddRefs(output),
|
2011-10-17 14:59:28 +00:00
|
|
|
false,
|
|
|
|
false,
|
2013-12-11 19:14:56 +00:00
|
|
|
SEGMENT_SIZE, SEGMENT_COUNT);
|
2007-09-21 06:17:59 +00:00
|
|
|
if (NS_FAILED(rv))
|
|
|
|
{
|
2009-02-10 22:05:28 +00:00
|
|
|
fail("TP_NewPipe2 failed: %x", rv);
|
2007-09-21 06:17:59 +00:00
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
|
2012-08-22 15:56:38 +00:00
|
|
|
const uint32_t BUFFER_LENGTH = 100;
|
2007-09-21 06:17:59 +00:00
|
|
|
const char written[] =
|
|
|
|
"0123456789"
|
|
|
|
"1123456789"
|
|
|
|
"2123456789"
|
|
|
|
"3123456789"
|
|
|
|
"4123456789"
|
|
|
|
"5123456789"
|
|
|
|
"6123456789"
|
|
|
|
"7123456789"
|
|
|
|
"8123456789"
|
|
|
|
"9123456789"; // not just a memset, to ensure the allocator works correctly
|
|
|
|
if (sizeof(written) < BUFFER_LENGTH)
|
|
|
|
{
|
2008-12-04 06:25:00 +00:00
|
|
|
fail("test error with string size");
|
2007-09-21 06:17:59 +00:00
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
}
|
|
|
|
|
2012-08-22 15:56:38 +00:00
|
|
|
uint32_t writeCount;
|
2007-09-21 06:17:59 +00:00
|
|
|
rv = output->Write(written, BUFFER_LENGTH, &writeCount);
|
|
|
|
if (NS_FAILED(rv) || writeCount != BUFFER_LENGTH)
|
|
|
|
{
|
2008-12-04 06:25:00 +00:00
|
|
|
fail("writing %d bytes (wrote %d bytes) to output failed: %x",
|
|
|
|
BUFFER_LENGTH, writeCount, rv);
|
2007-09-21 06:17:59 +00:00
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
|
|
|
|
char read[BUFFER_LENGTH];
|
2012-08-22 15:56:38 +00:00
|
|
|
uint32_t readCount;
|
2007-09-21 06:17:59 +00:00
|
|
|
rv = input->Read(read, BUFFER_LENGTH, &readCount);
|
|
|
|
if (NS_FAILED(rv) || readCount != BUFFER_LENGTH)
|
|
|
|
{
|
2008-12-04 06:25:00 +00:00
|
|
|
fail("reading %d bytes (got %d bytes) from input failed: %x",
|
|
|
|
BUFFER_LENGTH, readCount, rv);
|
2007-09-21 06:17:59 +00:00
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (0 != memcmp(written, read, BUFFER_LENGTH))
|
|
|
|
{
|
2008-12-04 06:25:00 +00:00
|
|
|
fail("didn't read the written data correctly!");
|
2007-09-21 06:17:59 +00:00
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
}
|
|
|
|
|
2013-12-11 19:14:56 +00:00
|
|
|
passed("TestPipe");
|
2007-09-21 06:17:59 +00:00
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
int main(int argc, char** argv)
|
|
|
|
{
|
|
|
|
ScopedXPCOM xpcom("nsPipe");
|
|
|
|
if (xpcom.failed())
|
|
|
|
return 1;
|
|
|
|
|
|
|
|
int rv = 0;
|
|
|
|
|
2013-12-11 19:14:56 +00:00
|
|
|
if (NS_FAILED(TestPipe()))
|
2007-09-21 06:17:59 +00:00
|
|
|
rv = 1;
|
|
|
|
|
|
|
|
return rv;
|
|
|
|
}
|